/* ============================================================
   CONTACT PAGE – COHESIVE WITH ABOUT & PARTNER
   ============================================================ */

/* ── Hero ── */
.hero-contact {
    position: relative;
    background: #0f1720;
    background-image: url("../assets/images/contactus.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 24px 80px;
    color: #fff;
    overflow: hidden;
}

.hero-contact .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 62, 0.65);  /* Dark overlay for readability */
}

.hero-contact .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-contact .hero-tag {
    display: inline-block;
    background: rgba(33, 150, 243, 0.15);
    color: #64b5f6;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    padding: 6px 18px;
    border-radius: 30px;
    border: 1px solid rgba(100, 181, 246, 0.2);
    margin-bottom: 24px;
}

.hero-contact .hero-content h1 {
    color: #fff;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
}

.hero-contact .hero-line {
    width: 70px;
    height: 4px;
    background: #2196f3;
    border-radius: 2px;
    margin: 0 auto 20px;
}

.hero-contact .hero-content p {
    color: #90caf9;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
}

/* ── Stats Bar ── */
.stats-bar {
    background: #fff;
    padding: 50px 20px;
    border-bottom: 1px solid #e8ecf1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-item .stat-number {
    font-size: 38px;
    font-weight: 800;
    color: #0d47a1;
    display: block;
    line-height: 1.2;
}

.stat-item .stat-label {
    font-size: 15px;
    color: #555;
    margin-top: 6px;
}

.stat-item .stat-sub {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

/* ── Sections ── */
.section {
    padding: clamp(60px, 7vw, 90px) clamp(16px, 4vw, 40px);
}

.white-bg   { background: #fff; }
.light-gray { background: #f8f9fb; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

/* ── Typography ── */
.section-title {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    color: #0d47a1;
    margin: 0 0 12px;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    text-align: center;
}

/* ===== CONTACT GRID – PERFECT ALIGNMENT & CENTERED ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0d47a1;
    margin: 0 0 10px;
}

.contact-info p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin: 0 0 4px;
}

.contact-info .contact-tag {
    display: inline-block;
    background: #e3f2fd;
    color: #0d47a1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.contact-link {
    color: #2196f3;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #0d47a1;
    text-decoration: underline;
}

.contact-info .divider {
    width: 40px;
    height: 3px;
    background: #2196f3;
    border-radius: 2px;
    margin: 18px 0 16px;
}

.phone-icon-simple {
    font-size: 36px;
    color: #0d47a1;
    font-weight: 300;
    display: block;
    margin: 4px 0 12px;
}

/* ── Callback Button ── */
.callback-btn {
    display: inline-block;
    background: #0d47a1;
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.callback-btn:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.3);
    color: #fff;
}

/* ── Highlight / Urgent Note ── */
.highlight {
    background: #e3f2fd;
    color: #1565c0;
    padding: 18px 24px;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Location Cards ── */
.map-grid,
.more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.location-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #fff;
    border-radius: 16px;
    padding: 24px 24px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.25s, box-shadow 0.25s;
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    margin-bottom: 6px;
}

.map-wrapper iframe {
    display: block;
}

.loc-title {
    font-size: 18px;
    font-weight: 800;
    color: #0d47a1;
    margin-top: 6px;
    margin-bottom: 4px;
}

.loc-addr {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin: 2px 0;
}

.loc-addr strong {
    color: #0d47a1;
}

/* ── CTA ── */
.cta-contact {
    background: #0f1720;
    padding: 70px 24px;
    text-align: center;
}

.cta-contact h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px;
}

.cta-contact p {
    color: #90caf9;
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 24px;
}

.cta-contact .cta-number {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.cta-contact .cta-link {
    color: #64b5f6;
    text-decoration: none;
}

.cta-contact .cta-link:hover {
    text-decoration: underline;
}

/* ── Brands ── */
.brands-label {
    font-size: 16px;
    color: #1565c0;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.brands-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 50px;
    justify-content: center;
    align-items: center;
}

.brand-name {
    font-size: 18px;
    font-weight: 900;
    color: #222;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-grid,
    .more-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .highlight {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-contact {
        padding: 60px 16px 50px;
        background-position: center;
    }

    .hero-contact .hero-content h1 {
        font-size: 28px;
    }

    .hero-contact .hero-content p {
        font-size: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item .stat-number {
        font-size: 30px;
    }

    .section {
        padding: 40px 16px;
    }

    .section-title {
        font-size: 26px;
    }

    .map-grid,
    .more-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-card {
        padding: 16px;
    }

    .callback-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        align-self: center;
    }

    .cta-contact h2 {
        font-size: 24px;
    }

    .cta-contact .cta-number {
        font-size: 24px;
    }

    .brands-row {
        gap: 15px 25px;
    }

    .brand-name {
        font-size: 14px;
    }

    .container {
        padding: 0 10px;
    }
}