/* ============================================
   Latina Medical Office — Stylesheet
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --emerald-900: #042f23;
    --emerald-800: #064e3b;
    --emerald-700: #065f46;
    --emerald-600: #047857;
    --emerald-500: #10b981;
    --emerald-400: #34d399;
    --emerald-100: #d1fae5;
    --emerald-50:  #ecfdf5;
    --cream-50:    #fafaf9;
    --cream-100:   #f5f5f4;
    --cream-200:   #e7e5e4;
    --cream-300:   #d6d3d1;
    --stone-500:   #57534e;
    --stone-600:   #44403c;
    --stone-700:   #292524;
    --stone-800:   #1c1917;
    --stone-900:   #0c0a09;
    --white:       #ffffff;
    --radius-sm:   6px;
    --radius-md:   10px;
    --radius-lg:   16px;
    --radius-xl:   24px;
    --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:   0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.06);
    --shadow-lg:   0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08);
    --transition:  0.25s cubic-bezier(.4,0,.2,1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--stone-700);
    background: var(--cream-50);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--stone-800);
    line-height: 1.2;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background: var(--emerald-600);
    color: var(--white);
    border-color: var(--emerald-600);
}
.btn-primary:hover {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--stone-700);
    border-color: var(--cream-300);
}
.btn-outline:hover {
    border-color: var(--emerald-600);
    color: var(--emerald-600);
}

.btn-outline-dark {
    background: transparent;
    color: var(--stone-700);
    border-color: var(--stone-300, #d6d3d1);
}
.btn-outline-dark:hover {
    border-color: var(--emerald-600);
    color: var(--emerald-600);
}

.btn-white {
    background: var(--white);
    color: var(--emerald-700);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--emerald-50);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; padding: 14px 24px; }

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 250, 249, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-200);
    transition: box-shadow var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--stone-800);
}
.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--emerald-600);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.375rem;
    font-weight: 300;
    line-height: 1;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav a:not(.btn) {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--stone-600);
    transition: color var(--transition);
    position: relative;
}
.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-600);
    transition: width var(--transition);
}
.nav a:not(.btn):hover {
    color: var(--emerald-600);
}
.nav a:not(.btn):hover::after {
    width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--stone-700);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 90;
    opacity: 0;
    transition: opacity var(--transition);
}
.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ---------- Hero ---------- */
.hero {
    padding: 80px 0 100px;
    background: var(--cream-50);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(4,120,87,.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--emerald-700);
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--emerald-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    color: var(--stone-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.hero-title em {
    font-style: normal;
    color: var(--emerald-600);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--stone-500);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--emerald-700);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--stone-500);
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--cream-300);
}

/* Hero image */
.hero-image {
    position: relative;
}
.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/720;
}
.hero-image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100px;
    height: 100px;
    background: var(--emerald-100);
    border-radius: var(--radius-md);
    z-index: -1;
}

.hero-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.hero-card-icon {
    width: 40px;
    height: 40px;
    background: var(--emerald-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    flex-shrink: 0;
}
.hero-card-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--stone-700);
}
.hero-card-sub {
    font-size: 0.8125rem;
    color: var(--stone-500);
    margin-top: 2px;
}
.hero-card-sub a {
    color: var(--emerald-600);
    font-weight: 600;
}

/* ---------- Section shared ---------- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}
.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--emerald-600);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.section-subtitle {
    font-size: 1.0625rem;
    color: var(--stone-500);
    line-height: 1.7;
}

/* ---------- Services ---------- */
.services {
    padding: 100px 0;
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    padding: 36px 28px;
    background: var(--cream-50);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.service-card:hover {
    border-color: var(--emerald-200, #a7f3d0);
    background: var(--emerald-50);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.service-icon {
    width: 52px;
    height: 52px;
    background: var(--emerald-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    margin-bottom: 20px;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--emerald-600);
    color: var(--white);
}
.service-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--stone-800);
    margin-bottom: 10px;
}
.service-desc {
    font-size: 0.9375rem;
    color: var(--stone-500);
    line-height: 1.65;
}

/* ---------- About ---------- */
.about {
    padding: 100px 0;
    background: var(--cream-50);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image-group {
    position: relative;
}
.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 560/640;
}
.about-image-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream-50);
}
.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 400/300;
    display: block;
}
.about-experience-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--emerald-600);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about-exp-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.about-exp-label {
    font-size: 0.75rem;
    opacity: 0.85;
    line-height: 1.4;
    margin-top: 4px;
}

.about-content .section-label { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 20px; }
.about-text {
    font-size: 1rem;
    color: var(--stone-500);
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-top: 28px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--stone-700);
}
.about-feature-check {
    width: 20px;
    height: 20px;
    background: var(--emerald-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* ---------- Why Us ---------- */
.why-us {
    padding: 100px 0;
    background: var(--emerald-900);
    color: var(--white);
}
.why-us-header {
    text-align: center;
    margin-bottom: 64px;
}
.why-us-header .section-label { color: var(--emerald-400); }
.why-us-header .section-title { color: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-4px);
}
.why-card-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--emerald-400);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 16px;
}
.why-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}
.why-card-desc {
    font-size: 0.9375rem;
    color: rgba(255,255,255,.65);
    line-height: 1.65;
}

/* ---------- Insurance ---------- */
.insurance {
    padding: 100px 0;
    background: var(--white);
}
.insurance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.insurance-left .section-label { margin-bottom: 12px; }
.insurance-left .section-title { margin-bottom: 16px; }
.insurance-text {
    font-size: 1rem;
    color: var(--stone-500);
    line-height: 1.75;
    margin-bottom: 24px;
}
.insurance-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 32px;
}
.insurance-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--stone-700);
}
.insurance-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--emerald-500);
    border-radius: 50%;
    flex-shrink: 0;
}
.insurance-right {
    background: var(--cream-50);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.insurance-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.insurance-card {
    background: var(--white);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-md);
    padding: 20px;
}
.insurance-card-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--stone-500);
    margin-bottom: 4px;
}
.insurance-card-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald-700);
}
.insurance-note {
    font-size: 0.8125rem;
    color: var(--stone-500);
    font-style: italic;
}

/* ---------- Contact ---------- */
.contact {
    padding: 100px 0;
    background: var(--cream-50);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.contact-info .section-label { margin-bottom: 12px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-text {
    font-size: 1rem;
    color: var(--stone-500);
    line-height: 1.75;
    margin-bottom: 36px;
}
.contact-details {
    display: grid;
    gap: 24px;
}
.contact-detail {
    display: flex;
    gap: 16px;
}
.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    flex-shrink: 0;
}
.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--stone-500);
    margin-bottom: 2px;
}
.contact-detail-value {
    display: block;
    font-size: 0.9375rem;
    color: var(--stone-700);
    font-weight: 500;
}
.contact-detail-value a {
    color: var(--emerald-600);
    transition: color var(--transition);
}
.contact-detail-value a:hover {
    color: var(--emerald-700);
    text-decoration: underline;
}

/* Contact form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.contact-form-title {
    font-size: 1.375rem;
    margin-bottom: 24px;
    color: var(--stone-800);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--stone-700);
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    padding: 10px 14px;
    border: 1.5px solid var(--cream-300);
    border-radius: var(--radius-sm);
    background: var(--cream-50);
    color: var(--stone-800);
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(16,185,129,.12);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-privacy {
    font-size: 0.8125rem;
    color: var(--stone-500);
    text-align: center;
    margin-top: 12px;
}
.form-success {
    text-align: center;
    padding: 24px;
}
.form-success-icon {
    width: 56px;
    height: 56px;
    background: var(--emerald-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--emerald-600);
}
.form-success-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--stone-800);
}
.form-success-text {
    font-size: 0.9375rem;
    color: var(--stone-500);
    line-height: 1.65;
    margin-bottom: 20px;
}

/* ---------- Map ---------- */
.map-section {
    background: var(--cream-200);
}
.map-container {
    border-radius: 0;
    overflow: hidden;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--stone-900);
    color: rgba(255,255,255,.7);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}
.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255,255,255,.55);
    max-width: 280px;
}
.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}
.footer-links nav,
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}
.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,.65);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--emerald-400);
}
.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.9375rem;
    line-height: 1.65;
}
.footer-contact a {
    color: rgba(255,255,255,.65);
    transition: color var(--transition);
}
.footer-contact a:hover {
    color: var(--emerald-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,.4);
}
.footer-bottom a {
    color: rgba(255,255,255,.5);
    transition: color var(--transition);
}
.footer-bottom a:hover {
    color: var(--emerald-400);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-image {
        max-width: 480px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 110;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 100;
    }
    .nav.open {
        transform: translateX(0);
    }
    .nav a:not(.btn) {
        font-size: 1.125rem;
    }

    .hero {
        padding: 48px 0 64px;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    .hero-stat-divider {
        display: none;
    }
    .hero-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image-secondary {
        right: 0;
        bottom: -24px;
    }
    .about-experience-badge {
        left: 0;
    }
    .about-features {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .insurance-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .insurance-card-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-title {
        font-size: 1.875rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .contact-form-wrap {
        padding: 24px;
    }
}

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
