/* ===== Contact Us page redesign (matches Figma "Contact Us" frame) ===== */

.cnt-hero {
    background: #F1F5F9;
    padding: 140px 8% 64px;
    text-align: center;
}

.cnt-tag {
    color: #2B6485;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cnt-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #031F41;
    margin-bottom: 16px;
}

.cnt-hero p {
    color: #45464D;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.cnt-cards-section {
    padding: 0 8% 64px;
    background: #F1F5F9;
}

.cnt-cards-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    max-width: 1200px;
    margin: -20px auto 0;
}

.cnt-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.cnt-card-support::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #EFF4FF;
}

.cnt-live-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #16A34A;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cnt-card h3 {
    position: relative;
    font-size: 1.25rem;
    font-weight: 700;
    color: #031F41;
    margin-bottom: 8px;
}

.cnt-card p {
    position: relative;
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cnt-whatsapp-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
}

.cnt-icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #EFF4FF;
    color: #2B6485;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.cnt-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.85rem;
    color: #45464D;
    border-bottom: 1px solid #F1F5F9;
}

.cnt-hours-row:last-child {
    border-bottom: none;
}

.cnt-hours-row strong {
    color: #031F41;
}

.cnt-hours-closed {
    color: #DC2626;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.cnt-card-small {
    padding: 24px;
}

.cnt-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2B6485;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    margin: 0;
}

/* ---- Physical Hubs ---- */
.cnt-hubs-section {
    padding: 80px 8%;
    background: #FFFFFF;
}

.cnt-hubs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 40px;
}

.cnt-hubs-header p.cnt-hubs-note {
    color: #6B7280;
    max-width: 340px;
    margin: 0;
    text-align: right;
}

.cnt-hubs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cnt-hub-card {
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
}

.cnt-hub-map {
    height: 200px;
    background: #E5E7EB;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
}

.cnt-hub-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(3, 31, 65, 0.85);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
}

.cnt-hub-body {
    padding: 24px;
}

.cnt-hub-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #031F41;
    margin-bottom: 8px;
}

.cnt-hub-body > p {
    color: #6B7280;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F1F5F9;
}

.cnt-hub-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.cnt-hub-phones p {
    color: #45464D;
    font-size: 0.85rem;
    margin: 0 0 4px;
}

@media (max-width: 991px) {
    .cnt-cards-grid {
        grid-template-columns: 1fr;
    }

    .cnt-card-support {
        grid-row: auto;
    }

    .cnt-hubs-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cnt-hubs-header p.cnt-hubs-note {
        text-align: left;
    }

    .cnt-hubs-grid {
        grid-template-columns: 1fr;
    }
}
