/* ============================================================
   CONTACT PAGE — Specific Styles
   ============================================================ */

/* ── Page Hero ── */
.contact-page-hero {
    position: relative;
    background: linear-gradient(120deg, rgba(13, 30, 69, 0.92) 0%, rgba(26, 86, 219, 0.80) 50%, rgba(13, 30, 69, 0.85) 100%),
        url('../images/about-conter-bg.png') center/cover no-repeat;
    padding: 160px 0 90px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.contact-page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
}

.contact-page-hero p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 20px;
    position: relative;
}

/* ── Eyebrow ── */
.contact-eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0px;
}

/* ── Info Boxes ── */
.contact-info-box {
    background: #faf8f8;
    border: 1.5px solid #c9cbcd6e;
    border-radius: var(--radius-sm);
    padding: 22px 20px;
    box-shadow: none;
    transition: all var(--t) var(--ease);
    height: auto;
    margin-bottom: 10px !important;
  
}

.contact-info-box:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: #3c6bf0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
    transition: all var(--t);
}

.contact-info-box:hover .contact-info-icon {
    /* background: linear-gradient(135deg, #1c47a4, #5177df);
  color: #fff; */
}

.contact-info-box h6 {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a48cb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-info-box a,
.contact-info-box span {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
    transition: color var(--t);
}

.contact-info-box a:hover {
    color: var(--primary);
}

/* ── Social Row ── */
.contact-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-social span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    margin-right: 4px;
}

.contact-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f6f6f6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary);
    transition: all var(--t) var(--ease);
}

.contact-social a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(26, 86, 219, 0.3);
}

.contact-social a[aria-label="WhatsApp"]:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

/* ── Form wrap (override for this page) ── */
.contact-form-wrap {
    background: #f9f7f7d1;
    border-radius: var(--radius);
    padding: 44px 40px;
    box-shadow: none;
    border: none;
}

.contact-form-wrap h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
}

/* ── Field Error ── */
.field-error {
    font-size: 0.78rem;
    color: #dc2626;
    margin-top: 5px;
    min-height: 18px;
    font-weight: 500;
}

/* ── Alert ── */
.contact-alert {
    padding: 14px 18px;
    border-radius: var(--radius-xs);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-alert.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.contact-alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ── Select styling ── */
select.form-control-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

/* ── Quick Contact Strip ── */
.contact-strip-row {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 0;
    flex-wrap: wrap;
    margin-top: -30px;
}

.contact-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-strip-item i {
    font-size: 1.6rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-strip-item small {
    display: block;
    font-size: 0.72rem;
    color: #036aff;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 3px;
}

.contact-strip-item a,
.contact-strip-item span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
    line-height: 1;
}

.contact-strip-item a:hover {
    color: var(--primary);
}

.contact-strip-divider {
    width: 1px;
    height: 44px;
    background: var(--border);
    flex-shrink: 0;
}

/* ── Map ── */
.map-section-wrap {
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary);
}

/* ── Invalid field state ── */
.form-control-custom.is-invalid-custom {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.section-title {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    color: var(--dark);
    font-family: "SN Pro", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

p {
    line-height: 1.3rem;
    color: #000;
    font-family: "SN Pro", sans-serif;
    font-optical-sizing: auto;
    font-weight: initial;
    font-style: normal;
}

.btn-submit {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 700;
    padding: 10px 33px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    width: auto;
    transition: all var(--t) var(--ease);
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.contact-strip-item small {
    display: block;
    font-size: 0.9rem;
    color: #036aff !important;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 3px;
    color: black;
}

.field-error {
  color: red !important;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .contact-form-wrap {
        padding: 32px 28px;
    }

    .contact-strip-row {
        padding: 20px 24px;
    }

    .contact-strip-divider {
        display: none;
    }

    .contact-strip-row {
        gap: 16px;
        margin-top: -30px;
    }
}

@media (max-width: 767px) {
    .contact-page-hero {
        padding: 130px 0 70px;
    }

    .contact-form-wrap {
        padding: 24px 20px;
    }

    .contact-strip-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        margin-top: -30px;
    }

    .contact-strip-divider {
        display: none !important;
    }

    .navbar-toggler {
        color: rgb(1, 53, 201);
        background-color: #e5e8f2;
        border-radius: 12px;
        padding: 7px;
        margin-right: 14px;
    }

    .navbar-toggler:focus {
        text-decoration: none;
        outline: 0;
        box-shadow: none;
    }
}