/* ===================================================================
   🎨 ULTRA-MODERN DESIGN SYSTEM - Mansour's Innovations
   Jaw-Dropping Aesthetic Design with Cutting-Edge UI/UX
   =================================================================== */

/* ===================================================================
   Design Tokens & Premium Variables
   =================================================================== */

:root {
    /* Light Theme - Clean and Professional */
    --primary: #1e293b;              /* Slate gray for text */
    --primary-dark: #0f172a;         /* Darker slate */
    --primary-light: #334155;        /* Light slate */
    --primary-gradient: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    --primary-glow: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);

    --secondary: #ffffff;             /* Pristine white */
    --secondary-dark: #f8fafc;       /* Very light gray */
    --secondary-light: #ffffff;      /* Pure white */
    --secondary-glass: rgba(255, 255, 255, 0.9);

    --accent: #3b82f6;               /* Blue accent */
    --accent-dark: #2563eb;          /* Deeper blue */
    --accent-light: #60a5fa;         /* Light blue */
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    --accent-electric: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    --accent-neon-glow: 0 0 20px rgba(59, 130, 246, 0.3), 0 0 40px rgba(59, 130, 246, 0.2);

    --gradient-aurora: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 25%, #ec4899 50%, #f59e0b 75%, #3b82f6 100%);
    --gradient-sunset: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f97316 100%);
    --gradient-ocean: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #6366f1 100%);
    --gradient-cosmic: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    --gradient-holographic: linear-gradient(45deg,
        rgba(59, 130, 246, 0.1) 0%,
        rgba(139, 92, 246, 0.1) 25%,
        rgba(236, 72, 153, 0.1) 50%,
        rgba(245, 158, 11, 0.1) 75%,
        rgba(59, 130, 246, 0.1) 100%);
    --gradient-premium: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 25%, #ec4899 50%, #f59e0b 100%);
    --gradient-royal: linear-gradient(135deg, #6366f1 0%, #8b5cf6 25%, #d946ef 50%, #ec4899 75%, #f43f5e 100%);

    /* Enhanced Success/Warning/Info Colors */
    --success: #4ade80;
    --success-gradient: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    --warning: #fbbf24;
    --warning-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --info: #60a5fa;
    --info-gradient: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    --danger: #f87171;
    --danger-gradient: linear-gradient(135deg, #f87171 0%, #ef4444 100%);

    /* Glass Morphism Palette - Light Theme */
    --glass-white: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(226, 232, 240, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(148, 163, 184, 0.2);
    --glass-blur: blur(20px);
    --glass-dark: rgba(248, 250, 252, 0.9);

    /* Sophisticated Text Colors - Optimized for Light Backgrounds */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --text-slate: #1e293b;
    --text-inverse: #ffffff;
    --text-gradient: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    --text-gradient-warm: linear-gradient(135deg, #f59e0b, #f97316);

    /* Premium Typography Stack */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Clash Display', 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Monaco, monospace;

    /* Fluid Typography Scale with Golden Ratio */
    --font-size-xs: clamp(0.75rem, 1.5vw, 0.875rem);
    --font-size-sm: clamp(0.875rem, 2vw, 1rem);
    --font-size-base: clamp(1rem, 2.5vw, 1.125rem);
    --font-size-lg: clamp(1.25rem, 3vw, 1.5rem);
    --font-size-xl: clamp(1.5rem, 3.5vw, 1.875rem);
    --font-size-2xl: clamp(1.875rem, 4vw, 2.25rem);
    --font-size-3xl: clamp(2.25rem, 5vw, 3rem);
    --font-size-4xl: clamp(3rem, 6vw, 4rem);
    --font-size-5xl: clamp(4rem, 8vw, 5rem);
    --font-size-6xl: clamp(5rem, 10vw, 6rem);

    /* Enhanced Font Weights */
    --font-thin: 100;
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;

    /* Premium Spacing System */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;
    --space-10: 4rem;
    --space-12: 5rem;
    --space-16: 6rem;
    --space-20: 8rem;
    --space-24: 10rem;
    --space-32: 12rem;

    /* Advanced Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-3xl: 3rem;
    --radius-full: 9999px;

    /* Multi-Layer Shadow System */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 40px rgba(100, 255, 218, 0.4);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --shadow-neumorphic: 12px 12px 24px #b8b9be, -12px -12px 24px #ffffff;
    --shadow-neumorphic-inset: inset 6px 6px 12px #b8b9be, inset -6px -6px 12px #ffffff;
    --shadow-floating: 0 30px 60px -15px rgba(0, 0, 0, 0.3), 0 0 40px -10px rgba(100, 255, 218, 0.2);

    /* Advanced Transitions with Spring Physics */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-bounce: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Z-index Hierarchy */
    --z-negative: -1;
    --z-base: 0;
    --z-elevated: 10;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-notification: 1080;
    --z-maximum: 9999;

    /* Layout System */
    --container-max: 1440px;
    --container-padding: clamp(1rem, 5vw, 3rem);

    /* Animation Timing */
    --duration-instant: 50ms;
    --duration-fast: 100ms;
    --duration-normal: 200ms;
    --duration-slow: 300ms;
    --duration-slower: 500ms;
    --duration-slowest: 1000ms;
}

/* ===================================================================
   Global Reset & Base Styles
   =================================================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-normal);
    line-height: 1.6;
    color: var(--text-primary);
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%233b82f6' d='M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z'/%3E%3Cpath fill='%23ffffff' stroke='%233b82f6' stroke-width='1' d='M5 5l10 10'/%3E%3C/svg%3E"), auto;
}

* {
    cursor: inherit;
}

a, button, .btn, [role="button"], input[type="submit"], input[type="button"] {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%233b82f6' d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z'/%3E%3Cpath fill='%232563eb' d='M8 6L6.59 7.41 11.17 12l-4.58 4.59L8 18l6-6-6-6z'/%3E%3C/svg%3E"), pointer !important;
}

/* Animated Background with Particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.02) 0%, transparent 50%);
    z-index: var(--z-negative);
    animation: floatBackground 30s infinite ease-in-out;
}

/* Floating Orbs Animation */
body::after {
    content: '';
    position: fixed;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: morphOrb 20s infinite ease-in-out;
    z-index: var(--z-negative);
}

@keyframes floatBackground {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, -30px) scale(1.05); }
    66% { transform: translate(30px, -30px) scale(0.95); }
}

@keyframes morphOrb {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        border-radius: 50%;
    }
    25% {
        transform: translate(-60%, -40%) scale(1.3);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    50% {
        transform: translate(-40%, -60%) scale(0.8);
        border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    }
    75% {
        transform: translate(-60%, -60%) scale(1.1);
        border-radius: 30% 70% 70% 30% / 30% 70% 30% 70%;
    }
}

/* ===================================================================
   Container & Layout System
   =================================================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
}

/* ===================================================================
   Enhanced Typography with Animations
   =================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: var(--font-bold);
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    letter-spacing: -0.03em;
}

h1 {
    font-size: var(--font-size-6xl);
    font-weight: var(--font-black);
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

h2 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-extrabold);
}

h3 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-bold);
}

.text-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: textShine 3s linear infinite;
}

@keyframes textShine {
    to { background-position: 200% center; }
}

.text-glow {
    text-shadow: var(--accent-neon-glow);
}

/* ===================================================================
   Header & Navigation - Ultra-Modern Glass Design
   =================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    backdrop-filter: blur(20px) saturate(180%);
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.9)
    );
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    padding: var(--space-4) 0;
    transition: all var(--transition-base);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-10);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    font-weight: var(--font-bold);
    font-size: var(--font-size-xl);
    color: var(--text-slate);
    transition: all var(--transition-spring);
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-spring);
    z-index: -1;
}

.logo:hover::before {
    opacity: 0.1;
    transform: scale(1);
}

.logo:hover {
    transform: scale(1.05);
    color: var(--accent);
}

.logo-icon {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-4);
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: var(--font-medium);
    font-size: var(--font-size-sm);
    position: relative;
    padding: var(--space-2);
    transition: all var(--transition-base);
    overflow: hidden;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transform: translateX(-50%);
    transition: width var(--transition-spring);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transform: translateY(100%);
    transition: all var(--transition-spring);
    z-index: -1;
}

.nav-link:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover::after {
    opacity: 0.05;
    transform: translateY(0);
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    cursor: pointer;
}

.dropdown-toggle svg {
    transition: transform var(--transition-base);
}

.nav-item-dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-2);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
    margin-top: var(--space-4);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: var(--space-3) var(--space-4);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: var(--font-medium);
    font-size: var(--font-size-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--accent);
    color: white;
    transform: translateX(4px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-left: auto;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    text-decoration: none;
    color: var(--text-slate);
    font-weight: var(--font-medium);
    transition: all var(--transition-base);
}

.phone-link:hover {
    color: var(--accent);
}

.icon-phone {
    flex-shrink: 0;
}

/* Mobile Menu Toggle - Animated Hamburger */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: var(--z-maximum);
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: var(--radius-full);
    transition: all var(--transition-spring);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: var(--radius-full);
    transition: all var(--transition-spring);
    left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.mobile-menu-toggle.active .hamburger {
    background: transparent;
    box-shadow: none;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ===================================================================
   Buttons - Ultra-Premium Design with Animations
   =================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--font-size-base);
    font-weight: var(--font-semibold);
    text-decoration: none;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-spring);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    isolation: isolate;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-inverse);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    font-weight: var(--font-bold);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    transform: none;
}

.btn-secondary {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent);
    border: 2px solid var(--accent);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-glass {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-slate);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-glow {
    background: var(--gradient-aurora);
    color: white;
    animation: glowPulse 2s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
        background-position: 0% 50%;
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.8);
        background-position: 100% 50%;
    }
}

.btn-nav {
    font-size: var(--font-size-sm);
    padding: var(--space-2) var(--space-4);
    white-space: nowrap;
}

/* ===================================================================
   Hero Section - Modern Card Design with Background Image
   =================================================================== */

.hero-waterproofing {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: calc(var(--space-16) + 60px) var(--space-4) var(--space-10);
}

/* Background Image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Background image with fallback gradient */
    background-image: url('../images/inner-banner.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

/* Semi-transparent Overlay - Removed for full image visibility */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

/* Centered Card Container - Minimal Blur */
.hero-card {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: var(--radius-2xl);
    padding: var(--space-8) var(--space-8);
    box-shadow:
        0 8px 32px 0 rgba(31, 38, 135, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: heroCardFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(59, 130, 246, 0.08);
    border-radius: var(--radius-full);
    color: var(--accent);
    font-size: var(--font-size-sm);
    font-weight: var(--font-medium);
    margin: 0 auto var(--space-4);
    width: fit-content;
}

.hero-badge svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin: var(--space-6) 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-black);
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: var(--font-medium);
}

/* Trust Badges Row */
.hero-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-5);
    flex-wrap: wrap;
}

.trust-badge-small {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(59, 130, 246, 0.08);
    border-radius: var(--radius-full);
    color: var(--text-slate);
    font-size: var(--font-size-sm);
    font-weight: var(--font-medium);
}

.trust-badge-small svg {
    color: var(--accent);
}

/* Hero Card Title */
.hero-card-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: var(--font-bold);
    color: var(--text-slate);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.hero-card-title .text-accent {
    display: inline;
}

/* Hero Card Subtitle */
.hero-card-subtitle {
    text-align: center;
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    font-weight: var(--font-normal);
    line-height: 1.6;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin: var(--space-6) 0;
    flex-wrap: wrap;
}

.hero-cta-group .btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-base);
}

.btn-lg {
    padding: var(--space-3) var(--space-6);
}

.btn-icon {
    flex-shrink: 0;
}

.btn-icon-right {
    flex-shrink: 0;
    margin-left: var(--space-2);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin: var(--space-6) 0 var(--space-5) 0;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-full);
    color: var(--text-slate);
    font-size: var(--font-size-sm);
    font-weight: var(--font-medium);
    transition: all var(--transition-base);
}

.trust-badges .badge:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.trust-badges .badge-icon {
    color: var(--accent);
    flex-shrink: 0;
}

/* Quick Quote Form */
.hero-quick-form {
    position: relative;
    margin-top: var(--space-6);
}

/* 3-Column Form Grid */
.form-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

/* Select Dropdown Styling */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-3) center;
    background-size: 12px;
    padding-right: var(--space-8);
    cursor: pointer;
}

.form-select option {
    padding: var(--space-2);
}

/* Privacy Note */
.form-privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    color: var(--text-light);
    font-size: var(--font-size-xs);
    margin-top: var(--space-3);
    text-align: center;
}

.form-privacy-note svg {
    flex-shrink: 0;
    color: var(--accent);
    opacity: 0.7;
}

/* Hero Submit Button */
.hero-submit-btn {
    width: auto;
    max-width: 400px;
    padding: var(--space-3) var(--space-8);
    font-size: var(--font-size-base);
    font-weight: var(--font-semibold);
    margin: 0 auto;
}

/* ===================================================================
   Old Hero Section Styles (Legacy - for other pages)
   =================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    padding: var(--space-24) 0 var(--space-20);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(248, 250, 252, 1) 50%,
        rgba(241, 245, 249, 1) 100%
    );
}

/* Animated Background Layers */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-negative);
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: var(--gradient-aurora);
    animation: heroGradientRotate 20s linear infinite;
    opacity: 0.1;
    filter: blur(100px);
}

@keyframes heroGradientRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(100, 255, 218, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 8px 8px, rgba(0, 212, 255, 0.2) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    animation: particlesFloat 60s linear infinite;
}

@keyframes particlesFloat {
    from { transform: translate(0, 0); }
    to { transform: translate(-50px, -50px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: heroFadeInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes heroFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: var(--font-black);
    margin-bottom: var(--space-6);
    line-height: 1;
    color: var(--text-slate);
    position: relative;
}

.hero-title span {
    display: block;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    margin-bottom: var(--space-8);
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s 0.3s forwards;
}

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

.hero-cta-group {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s 0.5s forwards;
}

/* Trust Badges with Glass Effect */
.trust-badges {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s 0.7s forwards;
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-slate);
    transition: all var(--transition-spring);
}

.badge:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.badge-icon {
    color: var(--accent);
    filter: drop-shadow(0 0 4px var(--accent));
}

/* Hero Form - Ultra-Modern Glass Design */
.hero-form-wrapper {
    animation: heroFadeInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

@keyframes heroFadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.quote-form {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(248, 250, 252, 1) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(59, 130, 246, 0.03);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.quote-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-holographic);
    opacity: 0.1;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    from { transform: translateX(-100%) rotate(45deg); }
    to { transform: translateX(100%) rotate(45deg); }
}

.form-title {
    font-size: var(--font-size-2xl);
    color: var(--text-slate);
    margin-bottom: var(--space-2);
    text-align: center;
    font-weight: var(--font-bold);
}

.form-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: var(--space-6);
}

.form-group {
    position: relative;
    margin-bottom: var(--space-5);
}

.form-input {
    width: 100%;
    padding: var(--space-3);
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    transition: all var(--transition-base);
    outline: none;
}

.form-input:focus {
    background: rgba(255, 255, 255, 1);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-label {
    position: absolute;
    left: var(--space-4);
    top: -8px;
    background: linear-gradient(to bottom, transparent 50%, rgba(255, 255, 255, 0.9) 50%);
    padding: 0 var(--space-2);
    color: var(--accent);
    font-size: var(--font-size-sm);
    font-weight: var(--font-medium);
    opacity: 0;
    transition: all var(--transition-spring);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    opacity: 1;
    transform: translateY(-4px);
}

/* ===================================================================
   Services Section - 3D Card Design
   =================================================================== */

.services {
    padding: var(--space-20) 0;
    background: linear-gradient(
        180deg,
        rgba(255, 254, 251, 1) 0%,
        rgba(250, 249, 247, 1) 100%
    );
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
    position: relative;
}

.section-title {
    font-size: var(--font-size-3xl);
    color: var(--primary);
    margin-bottom: var(--space-4);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(255, 119, 119, 0.4);
}

.section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    perspective: 1000px;
}

.service-card {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(248, 250, 252, 1) 100%
    );
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all var(--transition-base);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-holographic);
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: -1;
}

.service-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.service-card:hover::before {
    opacity: 0;
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--gradient-royal);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(10, 25, 47, 0.5) 100%
    );
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    z-index: 1;
}

.service-tag {
    background: var(--accent-gradient);
    color: var(--text-inverse);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-bold);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(59, 130, 246, 0.6); }
}

.service-content {
    padding: var(--space-6);
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: var(--font-size-2xl);
    color: var(--primary);
    margin-bottom: var(--space-3);
    font-weight: var(--font-bold);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-6);
}

.service-features li {
    padding: var(--space-2) 0;
    padding-left: var(--space-6);
    position: relative;
    color: var(--text-light);
    transition: all var(--transition-base);
}

.service-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: var(--font-size-lg);
    font-weight: bold;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.service-features li:hover {
    color: var(--text-slate);
    transform: translateX(5px);
}

.service-actions {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.service-actions .btn {
    flex: 1;
    justify-content: center;
    font-size: var(--font-size-sm);
    padding: var(--space-3) var(--space-4);
}

/* ===================================================================
   Benefits Section - Neumorphic Cards
   =================================================================== */

.benefits {
    padding: var(--space-20) 0;
    background: transparent;
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.benefit-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    padding: var(--space-4);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    position: relative;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.benefit-card:hover .benefit-icon {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(96, 165, 250, 0.15) 100%);
    border-color: rgba(59, 130, 246, 0.4);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
    stroke-width: 2;
}

.benefit-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-3);
    color: var(--primary);
    font-weight: var(--font-bold);
}

.benefit-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--font-size-sm);
}

/* ===================================================================
   Testimonials Section - Carousel Design
   =================================================================== */

.testimonials {
    padding: var(--space-20) 0;
    background: transparent;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.testimonial-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(248, 250, 252, 1) 100%
    );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    position: relative;
    transition: all var(--transition-spring);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: var(--space-4);
    left: var(--space-6);
    opacity: 0;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-premium);
    opacity: 0;
    transition: opacity var(--transition-slow);
    filter: blur(60px);
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(59, 130, 246, 0.15),
        inset 0 0 20px rgba(59, 130, 246, 0.05);
}

.testimonial-card:hover::after {
    opacity: 0.05;
}

.testimonial-rating {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}

.star {
    color: #ffd700;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    animation: starTwinkle 2s ease-in-out infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.9); }
}

.testimonial-text {
    color: var(--text-lighter);
    line-height: 1.8;
    margin-bottom: var(--space-6);
    font-style: italic;
    font-size: var(--font-size-lg);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    padding-top: var(--space-4);
    border-top: 1px solid var(--glass-border);
}

.testimonial-author strong {
    color: var(--text-slate);
    font-weight: var(--font-bold);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-aurora);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    color: white;
    font-size: var(--font-size-xl);
}

.author-info {
    flex: 1;
}

.author-name {
    color: var(--text-slate);
    font-size: var(--font-size-lg);
    font-weight: var(--font-bold);
    display: block;
}

.author-title {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

/* ===================================================================
   Footer - Modern Dark Theme Design
   =================================================================== */

.footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    opacity: 0.5;
}

.footer-top {
    padding: var(--space-16) 0 var(--space-12);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer .footer-logo {
    width: 180px;
    height: auto;
    background: #ffffff;
    padding: var(--space-3);
    border-radius: var(--radius-md);
}

.footer-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-bold);
    color: #ffffff;
    margin: 0;
    display: none;
}

.footer-description {
    color: #e2e8f0;
    margin-bottom: var(--space-6);
    line-height: 1.7;
    font-size: var(--font-size-base);
    font-weight: var(--font-normal);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    color: #60a5fa;
    transition: all var(--transition-spring);
    text-decoration: none;
}

.social-link:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
    border-color: #3b82f6;
}

.footer-heading {
    font-size: var(--font-size-xl);
    color: #ffffff;
    margin-bottom: var(--space-6);
    position: relative;
    padding-bottom: var(--space-3);
    font-weight: var(--font-bold);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: var(--radius-full);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    padding: var(--space-3) 0;
    color: #e2e8f0;
    font-size: var(--font-size-base);
}

.footer-list a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    padding-left: var(--space-5);
    display: block;
    font-size: var(--font-size-base);
}

.footer-list a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #60a5fa;
    opacity: 0;
    transition: all var(--transition-base);
}

.footer-list a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-list a:hover::before {
    opacity: 1;
}

/* Location Badges */
.footer-locations {
    grid-column: 1 / -1;
}

.location-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-full);
    color: #e2e8f0;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    white-space: nowrap;
}

.location-badge:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.footer-cta-banner {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-5);
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
    margin-bottom: var(--space-12);
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.footer-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotateGlow 8s linear infinite;
}

.footer-cta-title {
    color: #ffffff;
    font-weight: var(--font-black);
    margin-bottom: var(--space-3);
    font-size: var(--font-size-2xl);
    position: relative;
    z-index: 1;
}

.footer-cta-text,
.footer-emergency-text {
    position: relative;
    z-index: 1;
}

.footer-emergency-text {
    color: #ffffff !important;
    font-size: var(--font-size-base);
    margin-bottom: var(--space-3);
    font-weight: var(--font-semibold);
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: var(--font-bold);
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    margin-bottom: var(--space-2);
    position: relative;
    z-index: 1;
}

.footer-cta-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.7);
}

.footer-hours {
    color: #94a3b8;
    font-size: var(--font-size-sm);
    line-height: 1.8;
    margin-top: var(--space-2);
    position: relative;
    z-index: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(51, 65, 85, 0.5);
    padding: var(--space-6) 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-copyright {
    color: #64748b;
    font-size: var(--font-size-sm);
}

.footer-legal {
    display: flex;
    gap: var(--space-4);
    align-items: center;
}

.footer-legal a {
    color: #64748b;
    text-decoration: none;
    transition: all var(--transition-base);
    font-size: var(--font-size-sm);
}

.footer-legal a:hover {
    color: #60a5fa;
}

.footer-legal .separator {
    color: #475569;
}

/* ===================================================================
   Floating Elements & Animations
   =================================================================== */

/* WhatsApp Float Button - Premium Design */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 30px rgba(37, 211, 102, 0.5),
        0 0 40px rgba(37, 211, 102, 0.3);
    z-index: var(--z-fixed);
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        padding 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-radius 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    animation: floatButton 3s ease-in-out infinite;
    cursor: pointer;
}

@keyframes floatButton {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 70%
    );
    animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow:
        0 15px 40px rgba(37, 211, 102, 0.6),
        0 0 60px rgba(37, 211, 102, 0.4);
    width: auto;
    padding: 0 var(--space-6);
    border-radius: var(--radius-full);
    animation: none;
}

.whatsapp-icon {
    font-size: 30px;
    position: relative;
    z-index: 1;
}

.whatsapp-text {
    display: none;
    margin-left: var(--space-3);
    font-weight: var(--font-bold);
    font-size: var(--font-size-lg);
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-text {
    display: inline;
    animation: slideInRight 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Back to Top Button - Premium Design */
.back-to-top {
    position: fixed;
    bottom: var(--space-8);
    left: var(--space-8);
    background: white;
    color: var(--accent);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    cursor: pointer;
    z-index: var(--z-fixed);
    transition: all var(--transition-spring);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.back-to-top:hover {
    transform: scale(1.1) translateY(-5px);
    background: var(--accent-gradient);
    color: white;
    border-color: var(--accent);
    box-shadow:
        0 15px 40px rgba(59, 130, 246, 0.5),
        0 0 30px rgba(59, 130, 246, 0.3);
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    animation: pulseRing 1.5s ease-out infinite;
}

@keyframes pulseRing {
    to {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* ===================================================================
   Loading Animation - DISABLED (No Preloader)
   =================================================================== */

/* Loading screen removed for faster page loads */

/* .loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-maximum);
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
}

.loading-logo {
    width: 300px;
    height: auto;
    margin: 0 auto var(--space-6) auto;
    display: block;
    animation: loadingFloat 2s ease-in-out infinite;
}

@keyframes loadingFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--glass-border);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    margin: 0 auto var(--space-4);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
} */

.loading-text {
    color: var(--text-slate);
    font-size: var(--font-size-lg);
    font-weight: var(--font-medium);
    animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===================================================================
   Scroll Reveal Animations
   =================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ===================================================================
   Utility Classes
   =================================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }

.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }

/* ===================================================================
   Responsive Design - Mobile First
   =================================================================== */

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .hero-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    /* Hero form - 2 columns on tablets */
    .form-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-card {
        max-width: 900px;
    }

    .hero-stats {
        gap: var(--space-6);
    }

    .stat-number {
        font-size: var(--font-size-xl);
    }

    /* iPad Hero Section Spacing */
    .hero-waterproofing {
        padding: var(--space-10) var(--space-4);
    }

    .hero-card {
        margin-top: 120px;
    }

    .hero-cta-group .btn {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: clamp(1rem, 4vw, 2rem);
    }

    /* Fix blurry hero background on mobile */
    .hero-bg-image {
        background-attachment: scroll !important;
        background-position: center center !important;
        background-size: auto 100% !important;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        min-height: 100vh;
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(248, 250, 252, 0.98) 100%
        );
        backdrop-filter: blur(20px);
        padding: 80px var(--space-6) var(--space-8);
        transition: left var(--transition-base);
        z-index: var(--z-modal);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-4);
        align-items: center;
        margin-bottom: var(--space-6);
    }

    .nav-link {
        font-size: var(--font-size-lg);
        padding: var(--space-3) var(--space-4);
    }

    /* Mobile Dropdown Styles */
    .nav-item-dropdown {
        width: 100%;
        text-align: center;
    }

    .nav-item-dropdown .nav-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-2);
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        margin-top: var(--space-2);
        transition: all var(--transition-base);
        background: rgba(255, 255, 255, 0.5);
        border-radius: var(--radius-md);
    }

    .nav-item-dropdown:hover .dropdown-menu,
    .nav-item-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .dropdown-menu a {
        font-size: var(--font-size-base);
        padding: var(--space-3) var(--space-4);
    }

    .nav-actions {
        flex-direction: column;
        margin-top: 0;
        width: 100%;
        gap: var(--space-4);
        align-items: center;
    }

    .phone-link {
        justify-content: center;
        padding: var(--space-3) var(--space-4);
        background: rgba(59, 130, 246, 0.1);
        border-radius: var(--radius-md);
        width: 100%;
        max-width: 280px;
    }

    .btn-nav {
        justify-content: center;
        max-width: 200px;
    }

    /* New Hero Section Responsive */
    .hero-waterproofing {
        padding: var(--space-8) var(--space-4);
    }

    .hero-card {
        margin-top: 140px;
        padding: var(--space-6) var(--space-4);
    }

    .hero-cta-group .btn {
        max-width: 350px;
        width: 100%;
        margin: 0 auto;
    }

    .hero-card-title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        margin-bottom: var(--space-3);
    }

    .hero-card-subtitle {
        font-size: var(--font-size-sm);
        margin-bottom: var(--space-4);
    }

    .hero-stats {
        gap: var(--space-4);
        margin: var(--space-4) 0;
    }

    .stat-number {
        font-size: var(--font-size-xl);
    }

    .hero-cta-group {
        flex-direction: column;
        gap: var(--space-3);
        margin: var(--space-4) 0;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .trust-badges {
        gap: var(--space-2);
        margin: var(--space-4) 0;
    }

    .trust-badges .badge {
        font-size: 0.75rem;
        padding: var(--space-1) var(--space-3);
    }

    .form-grid-3col {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .hero-trust-row {
        gap: var(--space-3);
    }

    .hero-submit-btn {
        width: 100%;
        max-width: 100%;
    }

    /* Old Hero Responsive */
    .hero {
        padding: var(--space-16) 0 var(--space-12);
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .testimonials-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: var(--space-6);
        right: var(--space-6);
    }

    .back-to-top {
        width: 48px;
        height: 48px;
        bottom: var(--space-6);
        left: var(--space-6);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-8);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-list a {
        padding-left: 0;
    }

    .footer-list a::before {
        display: none;
    }

    .footer-brand {
        flex-direction: column;
    }

    .location-badges {
        justify-content: center;
        gap: var(--space-2);
    }

    .location-badge {
        font-size: var(--font-size-xs);
        padding: var(--space-1) var(--space-3);
    }

    .footer-cta-banner {
        padding: var(--space-6);
        margin-bottom: var(--space-8);
    }

    .footer-cta-title {
        font-size: var(--font-size-2xl);
    }

    .footer-cta-button {
        font-size: var(--font-size-lg);
        padding: var(--space-4) var(--space-6);
    }

    .footer-emergency-text {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===================================================================
   Print Styles
   =================================================================== */

@media print {
    body {
        background: white;
        color: black;
    }

    .header,
    .whatsapp-float,
    .back-to-top,
    .loading-screen,
    .btn,
    form {
        display: none !important;
    }

    .hero,
    .services,
    .benefits,
    .testimonials,
    .footer {
        background: white !important;
        color: black !important;
    }

    h1, h2, h3, h4, h5, h6 {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }
}

/* ===================================================================
   Custom Scrollbar
   =================================================================== */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) #f1f5f9;
}

/* ===================================================================
   Gallery Section
   =================================================================== */

.gallery-section {
    margin-top: var(--space-12);
    padding-top: var(--space-12);
    border-top: 1px solid var(--glass-border);
}

.gallery-title {
    font-size: var(--font-size-3xl);
    color: var(--text-slate);
    text-align: center;
    margin-bottom: var(--space-8);
    font-weight: var(--font-bold);
}

.gallery-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.gallery-item {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.gallery-item.active {
    display: block;
    opacity: 1;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
}

.before, .after {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.before img, .after img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.before .label, .after .label {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    background: var(--accent-gradient);
    color: var(--primary-dark);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    font-weight: var(--font-bold);
    font-size: var(--font-size-sm);
}

.gallery-caption {
    text-align: center;
    margin-top: var(--space-4);
    color: var(--text-light);
    font-size: var(--font-size-base);
}

.gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-4);
    pointer-events: none;
}

.gallery-prev, .gallery-next {
    pointer-events: all;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.gallery-prev:hover, .gallery-next:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.trust-section {
    margin-top: var(--space-12);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
}

.trust-item {
    text-align: center;
    padding: var(--space-6);
    background: var(--glass-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.trust-logo {
    width: 80px;
    height: auto;
    margin: 0 auto var(--space-3);
}

.trust-rating {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-black);
    color: var(--accent);
    margin-bottom: var(--space-2);
}

.trust-text {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

/* ===================================================================
   Service Area Section
   =================================================================== */

.service-area {
    padding: var(--space-20) 0;
    background: linear-gradient(
        180deg,
        rgba(241, 245, 249, 1) 0%,
        rgba(226, 232, 240, 1) 100%
    );
    position: relative;
}

.area-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-12);
    margin-top: var(--space-10);
    align-items: start;
}

.area-map {
    position: relative;
}

.map-illustration {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(59, 130, 246, 0.2));
}

.area-list-title {
    font-size: var(--font-size-2xl);
    color: var(--text-slate);
    margin-bottom: var(--space-6);
    font-weight: var(--font-bold);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.city-column h4 {
    color: var(--accent);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-3);
    font-weight: var(--font-bold);
}

.city-list {
    list-style: none;
}

.city-list li {
    padding: var(--space-2) 0;
    color: var(--text-light);
    position: relative;
    padding-left: var(--space-5);
}

.city-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.area-note {
    margin-top: var(--space-8);
    padding: var(--space-4);
    background: var(--glass-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--accent);
    color: var(--text-slate);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.icon-clock {
    flex-shrink: 0;
    color: var(--accent);
}

/* ===================================================================
   Lead Capture Section
   =================================================================== */

.lead-capture {
    padding: var(--space-20) 0;
    background: transparent;
    position: relative;
}

.lead-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: center;
}

.lead-title {
    font-size: var(--font-size-4xl);
    color: var(--text-slate);
    margin-bottom: var(--space-4);
    font-weight: var(--font-black);
}

.lead-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    margin-bottom: var(--space-8);
}

.lead-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.lead-benefit {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--text-slate);
    font-size: var(--font-size-lg);
}

.lead-benefit svg {
    flex-shrink: 0;
    color: var(--accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

/* ===================================================================
   End of Stylesheet
   =================================================================== */