/* ============================================================
   City Scan — Patient Portal Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    /* --- Main Logo Color Codes (Approx Same-to-Same) --- */
    /* 🔵 Blue Gradient (Top Vertical) */
    --blue-dark:       #0A7BFF;
    --blue-main:       #179CFF;
    --blue-cyan:       #42D7FF;

    /* 🟢 Green Gradient (Left Horizontal) */
    --green-dark:      #6EDB00;
    --green-main:      #8BEE00;
    --green-light:     #C8FF42;

    /* 🔴 Red Gradient (Right Horizontal) */
    --red-dark:        #A30000;
    --red-main:        #E00000;
    --red-light:       #FF2B2B;

    /* 🔴 Bottom Dark Red */
    --red-deep:        #7A0000;
    --red-dk-main:     #B30000;
    --red-dk-lt:       #FF0000;

    /* 🟡 Orbit / Ring Color */
    --yellow-neon:     #F6FF00;
    --yellow-lime:     #D8FF1A;
    --yellow-shade:    #BFFF00;

    /* ⚫ Background */
    --bg-black:        #000000;

    /* ✨ Gloss / Highlight Colors */
    --gloss-white:     #FFFFFF;
    --reflect-soft:    #DFFBFF;

    /* --- Theme Core Mappings --- */
    --primary:         var(--blue-dark);
    --primary-dk:      #0862cc;
    --primary-lt:      var(--reflect-soft);
    --secondary:       var(--blue-cyan);
    --success:         var(--green-main);
    --danger:          var(--red-main);
    --warning:         var(--yellow-lime);

    --bg-light:        #F8FAFF;
    --text-dk:         #0D1B2A; /* Professional deep navy */
    --text-md:         #475569;
    --text-lt:         #94A3B8;
    --border:          #E2E8F0;
    --shadow-sm:       0 4px 12px rgba(10, 123, 255, 0.06);
    --shadow-md:       0 12px 32px rgba(10, 123, 255, 0.12);
    --shadow-lg:       0 24px 64px rgba(10, 123, 255, 0.15);
    --radius:          10px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-md);
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}

/* Page Transition Effects */
main {
    animation: contentFadeIn 0.5s ease-out forwards;
}

@keyframes contentFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

body.is-transitioning main {
    animation: contentFadeOut 0.3s ease-in forwards;
}

@keyframes contentFadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: var(--text-dk);
    font-weight: 700;
    line-height: 1.2;
}

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

/* ============================================================
   TYPOGRAPHY & UTILS
   ============================================================ */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-label {
    display: inline-block;
    background: var(--primary-lt);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.section-title-lg { font-size: 36px; margin-bottom: 16px; }
.section-subtitle { font-size: 16px; color: var(--text-md); }

.btn-primary-lg, .btn-outline-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
    border: 2.5px solid transparent;
}
.btn-primary-lg {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main), var(--blue-cyan));
    color: #fff;
    box-shadow: 0 8px 24px rgba(10, 123, 255, 0.25);
    border: none;
}
.btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 123, 255, 0.4), 0 0 12px rgba(216, 255, 26, 0.3);
    background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
}
.btn-outline-lg {
    border-color: var(--blue-dark);
    color: var(--blue-dark);
    background: transparent;
}
.btn-outline-lg:hover {
    background: var(--reflect-soft);
    transform: translateY(-3px);
    border-color: var(--blue-main);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-cyan));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}
.nav-brand-name { display: block; font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: var(--text-dk); line-height: 1.1; }
.nav-brand-sub { display: block; font-size: 12px; color: var(--text-md); font-weight: 500; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}
.nav-link {
    text-decoration: none;
    color: var(--text-md);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--primary);
    transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.btn-book-nav {
    background: var(--reflect-soft);
    color: var(--blue-dark);
    padding: 10px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.btn-book-nav:hover {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-cyan));
    color: #fff;
    box-shadow: 0 8px 16px rgba(10, 123, 255, 0.25);
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    width: 30px; height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}
.nav-hamburger span {
    position: absolute; left: 0; width: 100%; height: 2px;
    background: var(--text-dk); border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-hamburger span:nth-child(3) { bottom: 0; }

.nav-hamburger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    padding: 80px 0 120px;
    background: linear-gradient(135deg, var(--reflect-soft) 0%, #FFFFFF 50%, rgba(216, 255, 26, 0.04) 100%);
    overflow: hidden;
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-shape { position: absolute; border-radius: 50%; opacity: 0.1; filter: blur(40px); }
.hero-shape-1 { width: 600px; height: 600px; background: var(--blue-dark); top: -200px; right: -100px; }
.hero-shape-2 { width: 400px; height: 400px; background: var(--blue-cyan); bottom: -100px; left: -100px; }

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content { 
    .hero-badge {
        display: inline-flex; align-items: center; gap: 8px;
        background: rgba(10, 123, 255, 0.08); color: var(--blue-dark);
        border: 1.5px solid rgba(10, 123, 255, 0.15);
        padding: 8px 16px; border-radius: 20px; font-weight: 600; font-size: 13px; margin-bottom: 24px;
    }
    .hero-title { font-size: 48px; line-height: 1.15; margin-bottom: 24px; }
    .hero-highlight { color: var(--blue-dark); background: linear-gradient(135deg, var(--blue-dark), var(--blue-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .hero-subtitle { font-size: 18px; color: var(--text-md); margin-bottom: 32px; line-height: 1.7; }
    
    .hero-trust { display: flex; gap: 24px; margin-bottom: 40px; }
    .trust-item { display: flex; align-items: center; gap: 12px; }
    .trust-item i { font-size: 24px; color: var(--blue-main); }
    .trust-item span { display: flex; flex-direction: column; }
    .trust-item strong { color: var(--text-dk); font-size: 15px; font-weight: 700; line-height: 1.2; }
    .trust-item small { color: var(--text-lt); font-size: 12px; }
    
    .hero-cta { display: flex; gap: 16px; }
}

.hero-visual { position: relative; height: 500px; }
.hero-image-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image-blob {
    width: 380px; height: 380px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main), var(--blue-cyan));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(10, 123, 255, 0.25), 0 0 0 10px rgba(216, 255, 26, 0.15);
}
@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}
.hero-center-icon { font-size: 120px; color: #fff; opacity: 0.9; }

.hero-card-float {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
    animation: float-card 4s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.5);
}
.hero-card-1 { top: 40px; left: -20px; animation-delay: 0s; border-left: 4px solid var(--green-dark); }
.hero-card-2 { bottom: 60px; right: -20px; animation-delay: 2s; border-left: 4px solid var(--green-main); }
.hero-card-float strong { display: block; font-size: 14px; color: var(--text-dk); margin-bottom: 2px; }
.hero-card-float small { font-size: 12px; color: var(--text-md); }

@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 123, 255, 0.12), 0 0 15px rgba(66, 215, 255, 0.1);
    border-color: var(--blue-cyan);
}
.service-icon {
    width: 64px; height: 64px;
    background: var(--reflect-soft);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--blue-dark);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--blue-dark), var(--blue-cyan)); color: #fff; transform: scale(1.1); }
.service-name { font-size: 20px; margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--text-md); margin-bottom: 24px; flex: 1; }
.service-book-btn {
    font-size: 14px; font-weight: 700; color: var(--blue-dark); text-decoration: none;
    display: flex; align-items: center; gap: 8px; transition: gap 0.2s;
}
.service-book-btn:hover { gap: 12px; }

/* ============================================================
   HOW IT WORKS (STEPS)
   ============================================================ */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}
.step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    flex: 1;
    position: relative;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-card-highlight {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
    color: #fff;
    border-color: var(--blue-dark);
    border-top: 4px solid var(--yellow-neon);
    box-shadow: 0 20px 40px rgba(10, 123, 255, 0.25);
}
.step-number {
    position: absolute; top: -15px; left: 30px;
    background: #fff; color: var(--text-lt);
    font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 800; padding: 0 10px;
}
.step-card-highlight .step-number { background: var(--blue-dark); color: rgba(255,255,255,0.3); }
.step-icon {
    font-size: 40px; color: var(--blue-cyan); margin-bottom: 24px;
}
.step-card-highlight .step-icon { color: var(--yellow-neon); }
.step-card h3 { font-size: 20px; margin-bottom: 12px; }
.step-card-highlight h3 { color: #fff; }
.step-card p { font-size: 14px; }
.step-card-highlight p { color: rgba(255,255,255,0.9); }

.step-connector { color: #CFD8DC; font-size: 24px; }
.steps-cta { text-align: center; }

/* ============================================================
   FEATURES (WHY US)
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.feature-item {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.feature-item:hover { box-shadow: var(--shadow-sm); border-color: transparent; }
.feature-icon {
    width: 56px; height: 56px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 20px;
}
.feature-blue   { background: var(--reflect-soft); color: var(--blue-dark); }
.feature-teal   { background: rgba(66, 215, 255, 0.15); color: var(--blue-dark); }
.feature-green  { background: rgba(139, 238, 0, 0.12); color: var(--green-dark); }
.feature-orange { background: rgba(224, 0, 0, 0.08); color: var(--red-main); }
.feature-purple { background: rgba(246, 255, 0, 0.1); color: #B38F00; }

.feature-item h4 { font-size: 18px; margin-bottom: 10px; }
.feature-item p { font-size: 14px; color: var(--text-md); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.testimonial-featured {
    background: linear-gradient(135deg, var(--red-deep), var(--red-dk-main));
    color: #fff;
    border: 2.5px solid var(--red-dk-lt);
    box-shadow: 0 20px 40px rgba(122, 0, 0, 0.25);
    transform: scale(1.05);
}
.testimonial-stars { color: #FFB300; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; font-style: italic; margin-bottom: 24px; flex: 1; line-height: 1.7; }
.testimonial-featured p { color: rgba(255,255,255,0.9); }
.testimonial-author { display: flex; align-items: center; gap: 16px; border-top: 1px solid var(--border); padding-top: 20px; }
.testimonial-featured .testimonial-author { border-color: rgba(255,255,255,0.1); }
.author-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--reflect-soft); color: var(--blue-dark);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px;
}
.testimonial-featured .author-avatar { background: rgba(255,255,255,0.15); color: var(--yellow-neon); }
.testimonial-author strong { display: block; font-size: 15px; color: var(--text-dk); }
.testimonial-featured .testimonial-author strong { color: #fff; }
.testimonial-author small { font-size: 13px; color: var(--text-lt); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.info-items { display: flex; flex-direction: column; gap: 24px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--bg-light); color: var(--secondary);
    display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.info-item strong { display: block; font-size: 16px; margin-bottom: 4px; color: var(--text-dk); }
.info-item p { font-size: 14px; margin: 0; }
.info-item a { color: var(--primary); text-decoration: none; font-weight: 600; }
.map-box { min-height: 400px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-black);
    color: #A0AEC0;
    padding: 80px 0 20px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.footer-logo { width: 40px; height: 40px; background: linear-gradient(135deg, var(--blue-dark), var(--blue-cyan)); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.footer-tagline { margin-bottom: 24px; line-height: 1.6; }
.footer-trust-badges { display: flex; gap: 12px; }
.trust-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.05); padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; color: #CCD6F6; border: 1px solid rgba(255,255,255,0.1); }

.footer-col h4 { color: #fff; font-size: 18px; margin-bottom: 24px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: #A0AEC0; text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-col ul a:hover { color: var(--yellow-neon); }
.footer-col ul a i { font-size: 10px; }

.footer-contact .contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-contact .contact-item i { color: var(--blue-cyan); width: 16px; text-align: center; }
.footer-contact .contact-item a { color: #A0AEC0; text-decoration: none; transition: color 0.2s; }
.footer-contact .contact-item a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
    .hero-title { font-size: 40px; }
    .hero-inner { gap: 40px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-featured { transform: scale(1); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 48px 0; }
    .section-header { margin-bottom: 32px; }
    .section-title-lg { font-size: 20px; }
    
    /* Navbar Mobile */
    .nav-links {
        position: fixed; top: 80px; left: 0; right: 0;
        background: #fff; flex-direction: column; padding: 24px; gap: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-top: 1px solid var(--border);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.3s ease;
    }
    .nav-links.open { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .btn-book-nav { display: none; }
    .nav-hamburger { display: block; }
    
    /* Hero Section */
    .hero { padding: 48px 0 80px; }
    .hero-title { font-size: 32px; margin-bottom: 16px; }
    .hero-subtitle { font-size: 15px; margin-bottom: 24px; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    
    .hero-trust {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 30px;
        width: 100%;
    }
    .trust-item {
        width: calc(33.333% - 8px);
        max-width: none;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
    }
    .trust-item i { font-size: 20px; }
    .trust-item span { align-items: center; text-align: center; }
    .trust-item strong { font-size: 13px; line-height: 1.2; }
    .trust-item small { font-size: 10px; line-height: 1.3; }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        gap: 12px;
    }
    .hero-cta a {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .hero-visual { display: none; } /* Hide visual on mobile */
    
    /* Steps */
    .steps-grid { flex-direction: column; gap: 16px; }
    .step-card { padding: 32px 24px; }
    .step-connector { transform: rotate(90deg); margin: 6px 0; }
    
    /* Services & Cards */
    .services-grid { gap: 20px; }
    .service-card { padding: 24px 20px; }
    .features-grid { grid-template-columns: repeat(auto-fill, minmax(285px, 1fr)); gap: 20px; }
    .feature-item { padding: 24px; }
    
    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
    .testimonial-card { padding: 24px; }
    
    /* Contact */
    .contact-grid { grid-template-columns: 1fr; padding: 24px; gap: 30px; }
    .map-box { min-height: 300px; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: left; }
    .footer-brand { justify-content: flex-start; }
    .footer-trust-badges { justify-content: flex-start; }
    .footer-col ul a { justify-content: flex-start; }
    .footer-contact .contact-item { justify-content: flex-start; text-align: left; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; align-items: center; justify-content: center; }
}
