/* Contact Page Styles */

/* ========================
   Hero Section
======================== */
.contact-hero {
    background: linear-gradient(135deg, #003294 0%, #1a6fb8 60%, #5a9fd4 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: white;
}

.contact-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-hero-content p {
    font-family: 'ABeeZee', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================
   Main Contact Section
======================== */
.contact-main {
    padding: 80px 0 100px;
    background: #f7f8fc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

/* ========================
   Form Wrapper
======================== */
.contact-form-wrapper,
.contact-info-wrapper {
    background: white;
    border-radius: 20px;
    padding: 48px 44px;
    box-shadow: 0 4px 30px rgba(0, 50, 148, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #003294;
    margin-bottom: 8px;
}

.form-subtitle {
    font-family: 'ABeeZee', sans-serif;
    font-size: 15px;
    color: #777;
    margin-bottom: 32px;
}

/* ========================
   Form Elements
======================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-verifier {
    padding: 14px;
    border: 1px dashed #c9d5f1;
    border-radius: 12px;
    background: #f2f6ff;
}

.form-verifier label {
    font-weight: 700;
    color: #1f3a7d;
}

.form-verifier .g-recaptcha {
    margin-top: 2px;
}

.form-helper {
    min-height: 14px;
    font-family: 'ABeeZee', sans-serif;
    font-size: 12px;
    color: #5f6e8f;
}

#recaptcha-feedback {
    color: #b33a2b;
}

.form-group label {
    font-family: 'ABeeZee', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'ABeeZee', sans-serif;
    font-size: 15px;
    padding: 12px 16px;
    border: 1.5px solid #e0e4ef;
    border-radius: 10px;
    background: #f7f8fc;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #003294;
    box-shadow: 0 0 0 3px rgba(0, 50, 148, 0.1);
    background: white;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #003294;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
    align-self: flex-start;
}

.btn-submit svg {
    width: 18px;
    height: 18px;
}

.btn-submit:hover {
    background: #001f6b;
    transform: translateY(-2px);
}

.form-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    max-width: 360px;
    width: calc(100% - 32px);
    padding: 14px 18px;
    border-radius: 14px;
    color: #fff;
    font-family: 'ABeeZee', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
}

.form-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.form-toast.success {
    background: linear-gradient(135deg, #1f8f4d, #1da851);
}

.form-toast.error {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

/* ========================
   Contact Info
======================== */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: #f0f4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon .icon-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.contact-info-icon.whatsapp-icon {
    background: #e7f7ee;
}

.contact-info-icon.whatsapp-icon svg {
    width: 22px;
    height: 22px;
    color: #25d366;
}

.contact-info-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #003294;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item a,
.contact-info-item span:not(.info-label) {
    font-family: 'ABeeZee', sans-serif;
    font-size: 15px;
    color: #444;
    text-decoration: none;
    line-height: 1.5;
}

.contact-info-item a:hover {
    color: #003294;
    text-decoration: underline;
}

/* Social icons in contact info */
.contact-social p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #003294;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.contact-social .social-icons {
    display: flex;
    gap: 12px;
}

.contact-social .social-icons a {
    width: 40px;
    height: 40px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003294;
    transition: background 0.2s, color 0.2s;
}

.contact-social .social-icons a svg {
    width: 18px;
    height: 18px;
}

.contact-social .social-icons a:hover {
    background: #003294;
    color: white;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-top: 28px;
    transition: background 0.2s, transform 0.2s;
    width: fit-content;
}

.btn-whatsapp svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* Active nav link */
.nav-link.active {
    color: #003294;
    font-weight: 700;
}

/* ========================
   Responsive
======================== */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .contact-hero-content h1 {
        font-size: 36px;
    }

    .contact-hero-content p {
        font-size: 15px;
    }

    .contact-hero {
        padding: 100px 20px 60px;
    }

    .contact-main {
        padding: 48px 0 64px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .btn-submit {
        width: 100%;
    }

    .form-toast {
        right: 16px;
        bottom: 16px;
        max-width: none;
        width: calc(100% - 32px);
    }
}
