/* --------------------------------------------------
 * lollie Exterior Cleaning Services - Custom Stylesheet
 * Vanilla CSS - Replicating Premium Hero Layout
 * -------------------------------------------------- */

/* 1. CSS VARIABLES & SYSTEM DESIGN */
:root {
    --primary: #0c2340;          /* Deep Navy Blue */
    --primary-light: #183354;
    --secondary: #7ac143;        /* Vivid Green */
    --secondary-hover: #66a336;
    --accent-blue: #99c5f5;      /* Light Sky Blue */
    --accent-blue-light: #e6f1fe;
    --dark: #0b0f19;             /* Rich Dark / Charcoal */
    --light: #f8fafc;            /* Off-white */
    --white: #ffffff;
    
    --text: #1e293b;             /* Slate 800 */
    --text-muted: #64748b;       /* Slate 500 */
    --border: #e2e8f0;           /* Slate 200 */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* 2. RESET & BASE ELEMENTS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* 3. REUSABLE UTILITIES */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.grid {
    display: grid;
    gap: 32px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.py-large {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light);
}

.text-center {
    text-align: center;
}

.max-w-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mt-small { margin-top: 16px; }
.mt-medium { margin-top: 32px; }
.mt-large { margin-top: 56px; }
.mb-small { margin-bottom: 16px; }
.mb-medium { margin-bottom: 32px; }
.mb-large { margin-bottom: 56px; }

.text-white { color: var(--white) !important; }

/* 4. BUTTONS & TAGS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(122, 193, 67, 0.4);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 193, 67, 0.5);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-text {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    position: relative;
    padding-bottom: 4px;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0.7);
    transform-origin: left;
    transition: var(--transition);
}

.btn-text:hover::after {
    transform: scaleX(1.0);
}

.btn-arrow {
    gap: 8px;
}

.btn-arrow:hover .arrow-icon {
    transform: translateX(4px);
}

.arrow-icon {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--accent-blue-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* 5. HEADER & NAVIGATION */
.header {
    width: 100%;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* 6. HERO SECTION */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-blue-light) 100%);
    padding-top: 60px;
    padding-bottom: 300px; /* Space for overlapping bottom bar */
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

/* Hero Left Content */
.hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.video-preview-card {
    position: absolute;
    left: 50%;
    transform: translateX(-240px) rotate(-3deg);
    bottom: 50px;
    width: 180px;
    height: 110px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
    transition: var(--transition);
    z-index: 12;
}

.video-preview-card:hover {
    transform: translateX(-240px) rotate(0deg) scale(1.05);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 35, 64, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: pulsePlay 2s infinite;
}

.play-btn svg {
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

.play-btn:hover {
    transform: scale(1.1);
    background-color: var(--secondary);
    color: var(--white);
}

@keyframes pulsePlay {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.highlight-green {
    color: var(--secondary);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
}

.hero-reviews {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-group {
    display: flex;
    margin-right: 8px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.avatar:first-child {
    margin-left: 0;
}

.review-text {
    display: flex;
    flex-direction: column;
}

.review-text .stars {
    color: #f7b731;
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 4px;
}

.review-count {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Hero Right Graphic Column */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arch-container {
    position: relative;
    width: 380px;
    height: 480px;
    z-index: 5;
}

.arch-backdrop {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: linear-gradient(180deg, var(--accent-blue) 0%, rgba(153, 197, 245, 0.4) 100%);
    border-radius: 200px 200px 30px 30px;
    z-index: 1;
}

.technician-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 105%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 15px 20px rgba(12, 35, 64, 0.15));
}

.badge-stamp {
    position: absolute;
    top: 25px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.badge-text-svg {
    width: 100%;
    height: 100%;
    animation: rotateStamp 20s linear infinite;
}

.stamp-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 8.5px;
    fill: var(--primary);
    letter-spacing: 0.5px;
}

.badge-inner-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

@keyframes rotateStamp {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-socials {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 6;
}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.social-circle svg {
    width: 16px;
    height: 16px;
}

.social-circle:hover {
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* 7. OVERLAPPING CURVED STATS BOTTOM BAR */
.stats-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 15;
    background-color: var(--dark);
    padding-bottom: 50px;
}

.notch-svg-wrapper {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 42px;
    pointer-events: none;
}

.notch-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.stats-content-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    align-items: center;
    padding-top: 15px;
    z-index: 16;
}

.stats-tagline {
    padding-right: 40px;
    z-index: 17;
}

.stats-tagline p {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.45rem;
    line-height: 1.35;
}

.stats-right-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.metrics-row {
    display: flex;
    gap: 32px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-item.border-left {
    border-left: 1px solid rgba(255,255,255,0.15);
    padding-left: 32px;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.metric-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-services-row {
    display: flex;
    gap: 16px;
    flex-grow: 1;
    justify-content: flex-end;
}

.quick-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 190px;
    transition: var(--transition);
}

.quick-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.quick-card-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.quick-card-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.quick-card-icon-wrapper.red-bg { background-color: #eb3b5a; }
.quick-card-icon-wrapper.teal-bg { background-color: #2bcbba; }
.quick-card-icon-wrapper.yellow-bg { background-color: #f7b731; }

.quick-card-info {
    display: flex;
    flex-direction: column;
}

.quick-card-title {
    font-size: 0.9375rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 2px;
}

.quick-card-link {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.quick-card-link span {
    transition: var(--transition);
    display: inline-block;
}

.quick-card:hover .quick-card-link {
    color: var(--secondary);
}

.quick-card:hover .quick-card-link span {
    transform: translateX(3px);
}

/* 8. ABOUT US SECTION */
.about-image-wrapper {
    position: relative;
}

.about-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 480px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--white);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.badge-lbl {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 600;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--accent-blue-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* 9. SERVICES GRID SECTION */
.services-section {
    position: relative;
    background: linear-gradient(180deg, var(--white) 0%, var(--accent-blue-light) 50%, var(--white) 100%);
    overflow: hidden;
    z-index: 1;
}

/* Background blurs matching hero styling */
.services-decor-blur {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    opacity: 0.12;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.services-decor-blur.blur-left {
    top: 10%;
    left: -150px;
}

.services-decor-blur.blur-right {
    bottom: 15%;
    right: -150px;
    background-color: var(--secondary); /* Green blur */
    opacity: 0.08;
}

.services-tabs-container {
    display: none; /* Removed old tabs */
}

/* 9. SERVICES SHOWCASE DASHBOARD */
.services-showcase-container {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 10;
}

.services-showcase-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.showcase-menu-item {
    background-color: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    text-align: left;
    box-shadow: 0 4px 6px -1px rgba(12, 35, 64, 0.01), 0 2px 4px -1px rgba(12, 35, 64, 0.01);
    border-left: 4px solid transparent;
    width: 100%;
}

.showcase-menu-item:hover {
    transform: translateX(6px);
    border-color: rgba(122, 193, 67, 0.2);
    box-shadow: var(--shadow-md);
    background-color: var(--white);
}

.showcase-menu-item.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    border-left-color: var(--secondary);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.menu-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-blue-light);
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.showcase-menu-item:hover .menu-icon-wrapper {
    background-color: var(--secondary);
    color: var(--white);
}

.showcase-menu-item.active .menu-icon-wrapper {
    background-color: var(--secondary);
    color: var(--white);
}

.showcase-menu-item .menu-icon-wrapper svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2px;
}

/* Icon glow colors matching services icons */
.blue-glow { color: #3b82f6; }
.green-glow { color: #10b981; }
.red-glow { color: #ef4444; }
.purple-glow { color: #8b5cf6; }
.yellow-glow { color: #f59e0b; }
.cyan-glow { color: #06b6d4; }
.orange-glow { color: #f97316; }
.navy-glow { color: #0c2340; }

/* Right Panel Styles */
.services-showcase-panel {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid rgba(12, 35, 64, 0.08);
    box-shadow: 0 20px 50px -15px rgba(12, 35, 64, 0.08);
    overflow: hidden;
    min-height: 480px;
    position: relative;
}

.showcase-panel-card {
    display: none;
    grid-template-columns: 1.05fr 0.95fr;
    height: 100%;
}

.showcase-panel-card.active {
    display: grid;
    animation: cardSlideFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cardSlideFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.showcase-panel-image {
    position: relative;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.showcase-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.showcase-panel-card:hover .showcase-panel-image img {
    transform: scale(1.08);
}

.showcase-panel-price-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: var(--secondary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(122, 193, 67, 0.3);
    font-size: 0.875rem;
    z-index: 5;
}

.showcase-panel-info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    align-self: flex-start;
}

.blue-tag { background-color: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.green-tag { background-color: rgba(16, 185, 129, 0.1); color: #10b981; }
.red-tag { background-color: rgba(239, 68, 68, 0.1); color: #ef4444; }
.purple-tag { background-color: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.yellow-tag { background-color: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.cyan-tag { background-color: rgba(6, 182, 212, 0.1); color: #06b6d4; }
.orange-tag { background-color: rgba(249, 115, 22, 0.1); color: #f97316; }
.navy-tag { background-color: var(--accent-blue-light); color: var(--primary); }

.showcase-panel-info h3 {
    font-size: 1.85rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 800;
}

.info-description {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.info-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
    margin-bottom: 36px;
}

.info-checklist li {
    font-size: 0.875rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.info-checklist li span {
    color: var(--secondary);
    font-weight: 800;
}

.info-actions {
    display: flex;
    gap: 16px;
}

/* Scrollbar styling for horizontal scrolling menu on mobile */
.services-showcase-sidebar::-webkit-scrollbar {
    height: 4px;
}
.services-showcase-sidebar::-webkit-scrollbar-thumb {
    background: rgba(12, 35, 64, 0.1);
    border-radius: 4px;
}

/* Showcase responsive overrides */
@media (max-width: 1024px) {
    .services-showcase-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-showcase-sidebar {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 12px;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
    }
    
    .showcase-menu-item {
        flex-shrink: 0;
        width: auto;
        padding: 12px 18px;
        font-size: 0.875rem;
        transform: none !important;
    }
    
    .showcase-panel-card {
        grid-template-columns: 1fr;
    }
    
    .showcase-panel-image {
        min-height: 280px;
        height: 280px;
    }
    
    .showcase-panel-info {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .info-checklist {
        grid-template-columns: 1fr;
    }
    .info-actions {
        flex-direction: column;
    }
}

/* 10. BEFORE/AFTER SLIDER SHOWCASE */
.comparison-wrapper {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison-container {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    user-select: none;
    cursor: ew-resize;
}

.comparison-container .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison-container .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-before {
    z-index: 1;
    filter: brightness(0.75);
}

.img-after {
    z-index: 2;
    width: 50%; /* JS will control this */
    overflow: hidden;
    border-right: 2px solid var(--white);
}

.after-img-scaled {
    width: 900px; /* Must equal the width of comparison-container wrapper for alignment */
    max-width: none !important;
}

.label-badge {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--white);
    z-index: 10;
}

.badge-before {
    left: 20px;
    background-color: rgba(12, 35, 64, 0.8);
}

.badge-after {
    right: 20px;
    background-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%; /* JS will control this */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--secondary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 12;
    transform: translate(-50%, 218px); /* centered vertically */
    box-shadow: var(--shadow-xl);
}

.handle-line {
    position: absolute;
    top: -220px;
    bottom: -220px;
    left: 50%;
    width: 3px;
    background-color: var(--white);
    transform: translateX(-50%);
    pointer-events: none;
}

.handle-arrow-left { margin-right: 2px; }
.handle-arrow-right { margin-left: 2px; }

.showcase-selectors {
    display: flex;
    gap: 12px;
    background-color: var(--light);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

.selector-btn {
    background: none;
    border: none;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-muted);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.selector-btn:hover {
    color: var(--primary);
}

.selector-btn.active {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* SERVICE AREAS SECTION */
.service-areas-section {
    position: relative;
    background-color: var(--white);
    z-index: 1;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.area-card {
    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.area-card:hover {
    background-color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(12, 35, 64, 0.08);
}

.area-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.area-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* 11. TESTIMONIALS SECTION */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.review-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(12, 35, 64, 0.08);
}

.review-card .stars {
    color: #f7b731;
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.review-heading {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.review-body {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-blue-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9375rem;
}

.reviewer-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
}

.reviewer-status {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* FAQ SECTION */
.faq-section {
    position: relative;
    z-index: 2;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(122, 193, 67, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: var(--secondary);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 12. CONTACT / LEAD FORM SECTION */
.contact-info-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-blue-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.detail-item h5 {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.detail-item p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    word-break: break-word;
}

.contact-form-wrapper {
    background-color: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background-color: var(--light);
    transition: var(--transition);
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    background-color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(122, 193, 67, 0.15);
}

.form-status {
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--transition);
}

.form-status.success { color: var(--secondary); }
.form-status.error { color: #eb3b5a; }

/* 13. FOOTER */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .footer-tagline {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 16px;
}

.social-links-footer {
    display: flex;
    gap: 16px;
}

.social-links-footer a {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.social-links-footer a:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer ul a {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.footer ul a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.hours-text {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.phone-link a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-bottom {
    padding: 30px 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* Desktop defaults for mobile app features */
.phone-call-header-mobile {
    display: none;
}

.mobile-bottom-nav {
    display: none;
}

/* 14. RESPONSIVE DESIGN (BREAKPOINTS) */

/* Widescreen / Desktop adjustment */
@media (min-width: 1400px) {
    .stats-bottom-bar {
        padding-bottom: 70px;
    }
}

/* Notebook / Large Tablet (<= 1024px) */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-section {
        padding-bottom: 40px; /* Reduced huge padding since bottom stats bar is relative now */
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem; /* Scale down title size slightly on tablet */
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-reviews {
        justify-content: center;
    }
    
    .hero-right {
        margin-top: 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .arch-container {
        width: 100%;
        max-width: 320px;
        height: 400px;
        margin: 0 auto;
    }
    
    .video-preview-card {
        position: absolute;
        left: 50%;
        transform: translateX(-170px) rotate(-3deg);
        bottom: 30px;
        width: 160px;
        height: 100px;
        margin-bottom: 0;
    }
    
    .video-preview-card:hover {
        transform: translateX(-170px) rotate(0deg) scale(1.05);
    }
    
    .badge-stamp {
        position: absolute;
        left: 50%;
        transform: translateX(110px);
        top: 20px;
        width: 80px;
        height: 80px;
    }
    
    /* Align socials horizontally below the technician arch on tablet */
    .hero-socials {
        position: relative;
        flex-direction: row;
        right: auto;
        top: auto;
        transform: none;
        justify-content: center;
        margin-top: 24px;
        gap: 16px;
        z-index: 6;
    }
    
    /* Position stats naturally on tablet */
    .stats-bottom-bar {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 40px;
        padding-top: 30px;
        padding-bottom: 30px;
        width: 100%;
    }
    
    .stats-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .stats-tagline {
        padding-right: 0;
    }
    
    .stats-tagline p {
        font-size: 1.35rem;
    }
    
    .stats-right-wrapper {
        flex-direction: column;
        gap: 32px;
    }
    
    .quick-services-row {
        justify-content: center;
        width: 100%;
    }
    
    .services-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Tablet / Mobile (<= 768px) */
@media (max-width: 768px) {
    body {
        padding-bottom: 64px; /* Space for fixed bottom app nav bar */
    }
    
    .container {
        padding: 0 16px; /* Squeeze padding for mobile screens */
    }
    
    .py-large {
        padding: 50px 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    /* Top Header App Upgrades */
    .header-actions {
        display: flex !important;
        align-items: center;
        gap: 8px;
    }
    
    .header-actions #nav-quote-btn {
        display: none !important; /* Hide Estimate text button on mobile header */
    }
    
    .phone-call-header-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: var(--secondary); /* Green circle */
        color: var(--white);
        box-shadow: 0 4px 10px rgba(122, 193, 67, 0.3);
        transition: var(--transition);
        flex-shrink: 0;
    }
    
    .phone-call-header-mobile svg {
        width: 16px;
        height: 16px;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        z-index: 1001; /* Layer above the slide-out menu drawer */
        background: none;
        border: none;
        cursor: pointer;
        margin-left: 8px;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--primary);
        border-radius: 2px;
        transition: var(--transition);
    }
    
    /* When the drawer is open, transform hamburger to X and change lines to white */
    .mobile-menu-toggle.open span {
        background-color: var(--white) !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%; /* Slide out of view initially */
        width: 75%;
        max-width: 280px;
        height: 100vh;
        background-color: rgba(12, 35, 64, 0.98); /* Deep navy blue solid/glass backdrop */
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        padding: 80px 40px;
        box-shadow: -10px 0 45px rgba(0, 0, 0, 0.25);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--white) !important;
        padding: 8px 16px;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        transition: var(--transition);
    }
    
    .nav-menu .nav-link:hover, .nav-menu .nav-link.active {
        color: var(--secondary) !important; /* Vivid green */
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu .nav-link.active::after {
        display: none; /* Hide bottom line of link inside mobile drawer */
    }
    
    /* Mobile App Bottom Tab Bar Navigation */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 64px;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(12, 35, 64, 0.06);
        justify-content: space-around;
        align-items: center;
        z-index: 999;
        box-shadow: 0 -4px 25px rgba(12, 35, 64, 0.05);
        padding: 0 16px;
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        gap: 4px;
        text-decoration: none;
        width: 60px;
        height: 100%;
        transition: var(--transition);
    }
    
    .mobile-nav-item svg {
        width: 22px;
        height: 22px;
        stroke-width: 2.2px;
    }
    
    .mobile-nav-item span {
        font-size: 0.65rem;
        font-family: var(--font-heading);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }
    
    .mobile-nav-item:hover, .mobile-nav-item.active {
        color: var(--secondary); /* Green active tint */
    }
    
    /* Hero Responsiveness Fixes */
    .hero-section {
        padding-top: 40px;
        padding-bottom: 0; /* Natural flow stack, no extra padding needed */
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .video-preview-card {
        position: absolute;
        left: 50%;
        transform: translateX(-140px) rotate(-3deg); /* float on left side of 300px arch */
        bottom: 50px; /* Shifted higher up to avoid overlapping social media icons below */
        width: 130px;
        height: 80px;
        margin-bottom: 0;
        z-index: 12;
    }
    
    .video-preview-card:hover {
        transform: translateX(-140px) rotate(0deg) scale(1.05);
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 2.6rem);
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 24px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
        width: 100%;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .hero-reviews {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    /* Arch scaling and centered layout on mobile */
    .hero-right {
        margin-top: 10px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .arch-container {
        width: 100%;
        max-width: 300px; /* Made technician arch backdrop larger on mobile as requested */
        height: 380px;
        margin: 0 auto;
    }
    
    .badge-stamp {
        position: absolute;
        left: 50%;
        transform: translateX(75px); /* overlap further to the left, sitting more inside the arch as requested */
        top: 20px;
        width: 76px;
        height: 76px;
        box-shadow: var(--shadow-md);
    }
    
    .stamp-text {
        font-size: 11px;
    }
    
    .badge-inner-icon {
        width: 32px;
        height: 32px;
    }
    
    .badge-inner-icon svg {
        width: 16px;
        height: 16px;
    }
    
    /* Align social bar horizontally under the arch on mobile */
    .hero-socials {
        position: relative;
        flex-direction: row;
        right: auto;
        top: auto;
        transform: none;
        justify-content: center;
        margin-top: 36px; /* Increased top margin so social media icons are fully separated from video card overlay */
        gap: 20px;
    }
    
    /* Stats Overlapping Banner Mobile Fixes */
    .stats-bottom-bar {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 30px;
        padding-top: 30px;
        padding-bottom: 40px;
        width: 100%;
    }
    
    .notch-svg-wrapper {
        display: none; /* Hide curve on mobile and use standard flat border */
    }
    
    .stats-bottom-bar::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 0;
        width: 100%;
        height: 10px;
        background-color: var(--dark);
        border-radius: 16px 16px 0 0;
    }
    
    .stats-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 20px;
    }
    
    .stats-tagline p {
        font-size: 1.25rem;
    }
    
    .stats-right-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    
    .metrics-row {
        gap: 24px;
    }
    
    .metric-item.border-left {
        padding-left: 24px;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .quick-services-row {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .quick-card {
        width: 100%;
        max-width: 320px;
    }
    
    /* General Grid Items */
    .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-card {
        height: 280px;
    }
    
    .comparison-container {
        height: 280px;
    }
    
    .after-img-scaled {
        width: 480px; /* adjusted scaling width */
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-wrapper {
        padding: 24px 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================= */
/* LOCAL CITY PAGES SPECIFIC STYLES          */
/* ========================================= */

.local-hero-section {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--dark) 0%, #153969 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.local-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -1px;
}

.local-hero-title .highlight-green {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.local-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.local-hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.local-stat-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.local-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.local-stat-label {
    font-size: 0.9rem;
    color: var(--light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.city-hero-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 480px;
    border-radius: 200px 200px 30px 30px;
    object-fit: cover;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Header Dropdown Menu */
.nav-item-dropdown { position: relative; display: inline-block; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background-color: var(--white); min-width: 200px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 12px; padding: 12px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 100; border: 1px solid var(--border); }
.nav-item-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 24px; color: var(--text); font-weight: 500; text-decoration: none; transition: all 0.2s; }
.dropdown-menu a:hover { background-color: var(--light); color: var(--secondary); padding-left: 28px; }
@media (max-width: 992px) { .nav-item-dropdown { width: 100%; } .dropdown-menu { position: static; box-shadow: none; border: none; background-color: rgba(0,0,0,0.03); transform: none; visibility: visible; opacity: 1; display: none; margin-top: 10px; border-radius: 8px; } .nav-item-dropdown:hover .dropdown-menu { display: block; } .dropdown-menu a { padding: 12px 24px; } }

.nav-menu { align-items: center; }
.nav-item-dropdown { display: flex; align-items: center; }
