/* ============================================================
   CONTACT & CLINIC LOCATION — Dr. Kishor Tanir Dental Website
   Scope: .contact-section
   ============================================================ */

.contact-section {
    background-color: #ffffff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1A73E8, #0D9488);
}

/* ---- Section Header ---- */
.contact-section__header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 3.5rem;
    position: relative;
    z-index: 1;
}

.contact-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0D9488;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background-color: #CCFBF1;
    border: 1px solid rgba(13, 148, 136, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.contact-section__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.contact-section__title-accent {
    background: linear-gradient(135deg, #1A73E8, #0D9488);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-section__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #64748B;
    line-height: 1.75;
}

/* ---- Left: Contact Info ---- */
.contact-section__info-col {
    position: relative;
    z-index: 1;
}

.contact-section__info-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
}

/* Contact cards */
.contact-section__cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-section__card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #F7F9FC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1.125rem 1.375rem;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: default;
}

a.contact-section__card {
    cursor: pointer;
}

a.contact-section__card:hover {
    background-color: #EBF4FF;
    border-color: rgba(26, 115, 232, 0.2);
    transform: translateX(4px);
}

.contact-section__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1A73E8, #0D9488);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(26, 115, 232, 0.28);
}

.contact-section__card-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
}

.contact-section__card-body {
    flex: 1;
    min-width: 0;
}

.contact-section__card-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.contact-section__card-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.4;
    word-break: break-word;
}

/* Hours table */
.contact-section__hours {
    background-color: #F7F9FC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1.375rem;
    margin-bottom: 2rem;
}

.contact-section__hours-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-section__hours-heading svg {
    width: 18px;
    height: 18px;
    stroke: #1A73E8;
    fill: none;
    stroke-width: 2;
}

.contact-section__hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E2E8F0;
}

.contact-section__hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-section__hours-day {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
}

.contact-section__hours-time {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0F172A;
}

.contact-section__hours-time--closed {
    color: #EF4444;
}

/* CTAs */
.contact-section__ctas {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.contact-section__cta-primary {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #1A73E8 0%, #0D9488 100%);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(26, 115, 232, 0.32);
}

.contact-section__cta-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26, 115, 232, 0.44);
}

.contact-section__cta-primary svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.contact-section__cta-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0F172A;
    background-color: transparent;
    border: 2px solid #E2E8F0;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}

.contact-section__cta-secondary:hover {
    color: #1A73E8;
    border-color: #1A73E8;
    background-color: #EBF4FF;
}

.contact-section__cta-secondary svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ---- Right: Map ---- */
.contact-section__map-col {
    position: relative;
    z-index: 1;
}

.contact-section__map-wrap {
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    background: linear-gradient(145deg, #DBEAFE, #EBF4FF);
}

.contact-section__map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Map placeholder */
.contact-section__map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(145deg, #DBEAFE, #EBF4FF);
}

.contact-section__map-placeholder svg {
    width: 56px;
    height: 56px;
    stroke: #93C5FD;
    fill: none;
}

.contact-section__map-placeholder-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #93C5FD;
    text-align: center;
    padding: 0 2rem;
}

/* ---- Reveal ---- */
.contact-section .reveal-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.contact-section .reveal-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .contact-section {
        padding: 4rem 0;
    }
    .contact-section__map-wrap {
        height: 360px;
        margin-top: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .contact-section__ctas {
        flex-direction: column;
    }
    .contact-section__cta-primary,
    .contact-section__cta-secondary {
        justify-content: center;
    }
    .contact-section__map-wrap {
        height: 280px;
    }
}
