/* ============================================================================
   HELPFULMOVING - COMPLETE MOBILE-FIRST OPTIMIZED CSS
   Professional Moving Company | Performance & Design Optimized
   Version: 2.0 - Enhanced Hero & Mobile-First Responsive
   ============================================================================ */

/* ============================================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================================ */
:root {
    /* Premium Brand Colors */
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --primary-glow: rgba(59, 130, 246, 0.25);
    
    --secondary: #f59e0b;
    --secondary-light: #fbbf24;
    --secondary-dark: #d97706;
    
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    
    /* Status Colors */
    --success: #22c55e;
    --success-light: #4ade80;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Refined Neutrals */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;
    
    /* Legacy color mappings */
    --text-dark: var(--text-primary);
    
    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-hero: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    --bg-hero-pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e40af' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    
    /* Borders */
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Premium Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px var(--primary-glow);
    --shadow-image: 0 32px 64px -16px rgba(15, 23, 42, 0.25);
    
    /* Smooth Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-fast: 200ms var(--ease-smooth);
    --ease-normal: 300ms var(--ease-smooth);
    --ease-slow: 500ms var(--ease-smooth);
    
    /* Typography */
    --font-display: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Fluid Typography */
    --hero-title-size: clamp(1.75rem, 6vw + 0.5rem, 4rem);
    --hero-subtitle-size: clamp(1rem, 2vw + 0.5rem, 1.35rem);
    --hero-badge-size: clamp(0.75rem, 1.5vw + 0.25rem, 0.9rem);
    
    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Legacy spacing mappings */
    --space-xs: var(--space-1);
    --space-sm: var(--space-2);
    --space-md: var(--space-4);
    --space-lg: var(--space-6);
    --space-xl: var(--space-8);
    --space-2xl: var(--space-12);
    --space-3xl: var(--space-16);
}

/* ============================================================================
   2. CSS RESET & BASE
   ============================================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transform: translateZ(0);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ============================================================================
   3. TYPOGRAPHY
   ============================================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

/* ============================================================================
   4. LAYOUT UTILITIES
   ============================================================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.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;
}

/* ============================================================================
   5. BUTTONS
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--ease-fast), box-shadow var(--ease-fast), background var(--ease-fast);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(30, 64, 175, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    opacity: 0;
    transition: opacity 300ms;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 0 4px rgba(30, 64, 175, 0.15);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary span,
.btn-primary .btn-arrow {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(30, 64, 175, 0.05);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

.btn-quote {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-arrow {
    display: inline-block;
    transition: transform var(--ease-fast);
}

.btn-animated:hover .btn-arrow {
    transform: translateX(4px);
}



/* ============================================================================
   8. HERO SECTION - MOBILE FIRST
   ============================================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(70px + var(--space-6)) var(--space-4) var(--space-8);
    background: var(--bg-hero);
    overflow: hidden;
    isolation: isolate;
}

/* Decorative Background Pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--bg-hero-pattern);
    opacity: 1;
    z-index: -2;
}

/* Gradient Overlay for Depth */


/* Content Grid - Mobile: Single Column */
.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

/* Hero Text Content */
.hero-text {
    text-align: center;
    order: 1;
    display: flex;
    flex-direction: column;
}

/* Mobile: Reorder elements to show CTA above the fold */

/* .hero-badge { order: 2; } */
.hero-title { order: 2; }
.hero-subtitle { order: 3; }
.hero-features { order: 5; }
.hero-cta { order: 1; margin-bottom: var(--space-5); }
.review-platforms { order: 6; }

/* Premium Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--hero-badge-size);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-sm), 0 0 20px rgba(30, 64, 175, 0.2);
    animation: badgeFloat 3s ease-in-out infinite, fadeInUp 0.5s var(--ease-smooth) 0.15s forwards;
    opacity: 0;
    align-self: center;
}

.hero-badge::before {
    content: '★';
    font-size: 0.9em;
    animation: starPulse 2s ease-in-out infinite;
}

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

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

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: var(--hero-title-size);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-primary) 40%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleReveal 0.6s var(--ease-smooth) 0.25s forwards;
    opacity: 0;
}

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

/* Title Highlight */
.hero-title .highlight {
    position: relative;
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    right: 0;
    height: 0.12em;
    background: var(--secondary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineReveal 0.6s var(--ease-smooth) 0.5s forwards;
}

@keyframes underlineReveal {
    to { transform: scaleX(1); }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: var(--hero-subtitle-size);
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-5);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.5s var(--ease-smooth) 0.35s forwards;
    opacity: 0;
}

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

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
    animation: fadeInUp 0.5s var(--ease-smooth) 0.45s forwards;
    opacity: 0;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 300ms var(--ease-smooth);
}

.hero-feature:hover {
    background: white;
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.feature-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    animation: fadeInUp 0.5s var(--ease-smooth) forwards;
    opacity: 0;
}

.hero-cta .btn-secondary .icon {
    width: 18px;
    height: 18px;
    transition: transform 200ms;
}

.hero-cta .btn-secondary:hover .icon {
    animation: phoneRing 0.5s ease-in-out;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0); }
    20% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    60% { transform: rotate(-10deg); }
    80% { transform: rotate(10deg); }
}

/* Review Platforms */
.review-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    animation: fadeInUp 0.5s var(--ease-smooth) 0.55s forwards;
    opacity: 0;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-3);
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 300ms var(--ease-smooth);
}

.platform-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.platform-item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.platform-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stars {
    color: #fbbf24;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.platform-rating span {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    order: 0;
    height: 100%;
    animation: imageReveal 0.8s var(--ease-smooth) 0.3s forwards;
    opacity: 0;
    height: 100%;
}

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

.hero-images {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image-main {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-image);
    object-fit: cover;
    aspect-ratio: 4/3;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-badge-float {
    position: absolute;
    top: -10px;
    right: -5px;
    background: white;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: floatBadge 4s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(1deg); }
    75% { transform: translateY(-4px) rotate(-1deg); }
}

.badge-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.badge-text {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-1);
    line-height: 1.3;
}

.hero-image-secondary {
    display: none;
}

/* ============================================================================
   9. TRUST BAR
   ============================================================================ */
.trust-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: var(--space-8) 0;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.trust-label {
    font-size: 0.8125rem;
    opacity: 0.9;
}

/* ============================================================================
   10. SECTIONS (GENERAL)
   ============================================================================ */
section {
    padding: var(--space-12) 0;
}

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

.section-badge {
    display: inline-block;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

/* ============================================================================
   11. SERVICES SECTION
   ============================================================================ */
.services-section {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.service-card {
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--ease-normal), box-shadow var(--ease-normal);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform var(--ease-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 72px;
    height: 72px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    transition: background var(--ease-normal), transform var(--ease-normal);
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary);
    transform: scale(1.1);
}

.service-icon {
    color: var(--primary);
    transition: color var(--ease-normal);
}

.service-card:hover .service-icon {
    color: white;
}

.service-title {
    margin-bottom: var(--space-3);
    font-size: 1.125rem;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap var(--ease-fast);
}

.service-link:hover {
    gap: var(--space-4);
}

.link-arrow {
    transition: transform var(--ease-fast);
}

.service-link:hover .link-arrow {
    transform: translateX(3px);
}

.services-cta {
    text-align: center;
}

.services-cta p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
}

/* ============================================================================
   12. WHY CHOOSE SECTION
   ============================================================================ */
.why-choose-section {
    background: white;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

.benefit-item {
    display: flex;
    gap: var(--space-4);
}

.benefit-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
}

.benefit-content h4 {
    margin-bottom: var(--space-1);
    font-size: 1rem;
}

.benefit-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Visual Grid */
.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    position: relative;
}

.visual-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.visual-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: var(--space-6);
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-icon {
    font-size: 1.75rem;
    margin-bottom: var(--space-2);
}

/* ============================================================================
   13. AREAS SECTION
   ============================================================================ */
.areas-section {
    background: var(--bg-light);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

.interactive-map {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
}

.map-image {
    width: 100%;
    height: auto;
}

.map-markers {
    position: absolute;
    inset: 0;
}

.map-marker {
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transform: translate(-50%, -50%);
    transition: transform var(--ease-fast);
}

.marker-dot {
    display: block;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
    margin: 0 auto var(--space-2);
    transition: transform var(--ease-fast), background var(--ease-fast);
}

.map-marker:hover .marker-dot {
    transform: scale(1.5);
    background: var(--secondary);
}

.marker-label {
    display: block;
    background: white;
    padding: var(--space-1) 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.areas-info h3 {
    margin-bottom: var(--space-5);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.area-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4);
    background: white;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9375rem;
    border: 2px solid transparent;
    transition: border-color var(--ease-fast), background var(--ease-fast), transform var(--ease-fast);
}

.area-card:hover {
    border-color: var(--primary);
    background: rgba(30, 64, 175, 0.05);
    transform: translateX(5px);
}

.area-arrow {
    color: var(--primary);
    transition: transform var(--ease-fast);
}

.area-card:hover .area-arrow {
    transform: translateX(5px);
}

.area-features {
    background: white;
    padding: var(--space-5);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-5);
}

.area-features h4 {
    margin-bottom: var(--space-4);
    font-size: 1rem;
}

.area-features li {
    padding: var(--space-2) 0;
    padding-left: var(--space-6);
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.area-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.area-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ============================================================================
   14. TESTIMONIALS SECTION
   ============================================================================ */
.testimonials-section {
    background: white;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-8);
}

.testimonial-track {
    display: flex;
    gap: var(--space-6);
    transition: transform var(--ease-normal);
}

.testimonial-card {
    flex: 0 0 100%;
    background: var(--bg-light);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: var(--space-4);
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: var(--space-5);
    font-size: 0.9375rem;
}

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

.author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-location {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.author-source {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

.nav-btn {
    width: 44px;
    height: 44px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: background var(--ease-fast), color var(--ease-fast), border-color var(--ease-fast);
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ============================================================================
   15. FAQ SECTION
   ============================================================================ */
.faq-section {
    background: var(--bg-light);
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

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

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: var(--space-5);
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    transition: background var(--ease-fast);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform var(--ease-fast);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--ease-normal);
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-5) var(--space-5);
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.9375rem;
}

.cta-card {
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-card h3 {
    margin-bottom: var(--space-3);
}

.cta-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-5);
    font-size: 0.9375rem;
}

.cta-card .btn {
    margin-bottom: var(--space-3);
    width: 100%;
}

/* ============================================================================
   16. CTA SECTION
   ============================================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-4);
}

.cta-text {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--space-6);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.9375rem;
}

.cta-icon {
    color: var(--success-light);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-5);
}

.cta-availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    opacity: 0.9;
}

.availability-dot {
    width: 8px;
    height: 8px;
    background: var(--success-light);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

/* ============================================================================
   17. FOOTER
   ============================================================================ */
.footer {
    background: #0f172a;
    color: white;
    padding: var(--space-12) 0 var(--space-6);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-4);
}
.logo-icon-footer img{
    border-radius: 4px;
}

.footer-logo .logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-text {
    opacity: 0.8;
    margin-bottom: var(--space-5);
    line-height: 1.8;
    font-size: 0.9375rem;
}

.footer-badges {
    display: flex;
    gap: var(--space-4);
}

.badge-img {
    height: 40px;
    opacity: 0.8;
    transition: opacity var(--ease-fast);
}

.badge-img:hover {
    opacity: 1;
}

.footer-title {
    font-size: 1.0625rem;
    margin-bottom: var(--space-4);
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color var(--ease-fast);
}

.footer-links a:hover {
    color: white;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.contact-icon {
    flex-shrink: 0;
    opacity: 0.7;
}

.contact-item a {
    color: white;
}

.contact-item a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--space-5);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--ease-fast), transform var(--ease-fast);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-6);
}

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

.copyright {
    opacity: 0.7;
    font-size: 0.8125rem;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: var(--space-5);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    transition: color var(--ease-fast);
}

.footer-nav a:hover {
    color: white;
}

/* ============================================================================
   18. QUOTE MODAL
   ============================================================================ */



/* ============================================================================
   19. FLOATING ELEMENTS
   ============================================================================ */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 900;
    box-shadow: var(--shadow-lg);
    transition: opacity var(--ease-fast), visibility var(--ease-fast), transform var(--ease-fast), background var(--ease-fast);
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.floating-call-btn {
    position: fixed;
    bottom: 16px;
    right: 16px;
    background: var(--secondary);
    color: white;
    padding: var(--space-4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    transition: background var(--ease-fast), transform var(--ease-fast);
    animation: floatButton 3s ease-in-out infinite;
}

.floating-call-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    animation: none;
}

.call-text {
    display: none;
}

/* ============================================================================
   20. ANIMATIONS
   ============================================================================ */
@keyframes floatButton {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes shimmer {
    100% { left: 100%; }
}

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

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

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

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* Animation Classes */
.animate-float { animation: float 3s ease-in-out infinite; }
.fadeInUp { animation: fadeInUp var(--ease-normal) forwards; }
.fadeInDown { animation: fadeInDown var(--ease-normal) forwards; }
.fadeInLeft { animation: fadeInLeft var(--ease-normal) forwards; }
.fadeInRight { animation: fadeInRight var(--ease-normal) forwards; }
.zoomIn { animation: zoomIn var(--ease-normal) forwards; }

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================================
   21. FOCUS & ACCESSIBILITY
   ============================================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================================================
   22. RESPONSIVE - EXTRA SMALL PHONES (max-width: 359px)
   ============================================================================ */
@media (max-width: 359px) {
    :root {
        --hero-title-size: 1.5rem;
        --hero-subtitle-size: 0.875rem;
    }
    
    .container {
        padding: 0 var(--space-3);
    }
    
    .hero {
        padding-top: calc(65px + var(--space-5));
        padding-bottom: var(--space-6);
    }
    
    .hero-badge {
        padding: var(--space-2) var(--space-3);
        font-size: 0.7rem;
    }
    
    .hero-cta .btn {
        padding: var(--space-3) var(--space-5);
        font-size: 0.875rem;
    }
    
    .review-platforms {
        gap: var(--space-2);
    }
    
    .platform-item {
        padding: var(--space-2);
    }
    
    .platform-item img {
        width: 28px;
        height: 28px;
    }
    
    .hero-badge-float {
        padding: var(--space-3);
        top: -8px;
        right: -3px;
    }
    
    .badge-number {
        font-size: 1.25rem;
    }
    
    .badge-text {
        font-size: 0.5rem;
    }
    
    .trust-number {
        font-size: 1.75rem;
    }
    
    .trust-label {
        font-size: 0.75rem;
    }
}

/* ============================================================================
   23. RESPONSIVE - SMALL PHONES (max-width: 479px)
   ============================================================================ */
@media (max-width: 479px) {
    .hero-features {
        align-items: center;
    }
    
    .hero-feature {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-cta {
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-name {
        font-size: 0.9375rem;
    }
    
    .service-card {
        padding: var(--space-5);
    }
    
    .area-card {
        padding: var(--space-3);
        font-size: 0.875rem;
    }
}

/* ============================================================================
   24. RESPONSIVE - STANDARD PHONES (max-width: 575px)
   ============================================================================ */
@media (max-width: 575px) {
    .hero {
        min-height: auto;
        padding-top: calc(70px + var(--space-6));
        padding-bottom: var(--space-10);
    }
    
    .hero-content {
        gap: var(--space-6);
    }
    
    .hero-title {
        font-size: clamp(1.625rem, 7vw, 2.25rem);
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
    }
    
    .platform-item img {
        width: 32px;
        height: 32px;
    }
    
    .stars {
        font-size: 0.6875rem;
    }
    
    .platform-rating span {
        font-size: 0.5625rem;
    }
    
    .services-grid {
        gap: var(--space-5);
    }
    
    .visual-image {
        height: 140px;
    }
    
    .visual-badge {
        width: 100px;
        height: 100px;
        padding: var(--space-4);
    }
}

/* ============================================================================
   25. RESPONSIVE - LARGE PHONES (max-width: 639px)
   ============================================================================ */
@media (max-width: 639px) {
    section {
        padding: var(--space-10) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-6);
    }
}

/* ============================================================================
   26. RESPONSIVE - TABLETS PORTRAIT (max-width: 767px)
   ============================================================================ */
@media (max-width: 767px) {
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-feature {
        width: auto;
        max-width: none;
    }
    
    .hero-cta {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-cta .btn {
        width: auto;
        flex: 1;
        min-width: 150px;
        max-width: 200px;
    }
    
    .review-platforms {
        max-width: 360px;
        margin: 0 auto;
    }
    
    .hero-badge-float {
        top: -12px;
        right: 8px;
    }
    
    .testimonial-card {
        padding: var(--space-5);
    }
}

/* ============================================================================
   27. RESPONSIVE - TABLETS (min-width: 768px)
   ============================================================================ */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-6);
    }
    
    /* Header Top - Show */
    .header-top {
        display: block;
    }
    
    .header-content {
        padding: var(--space-4) 0;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .logo-name {
        font-size: 1.125rem;
    }
    
    .logo-tagline {
        font-size: 0.5rem;
    }
    
    /* Hero */
    .hero {
        padding-top: calc(120px + var(--space-8));
        padding-bottom: var(--space-12);
    }
    
    .hero .container {
        max-width: 680px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 2.75rem);
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
    }
    
    .hero-badge-float {
        top: -15px;
        right: 15px;
        padding: var(--space-5);
    }
    
    .badge-number {
        font-size: 1.75rem;
    }
    
    .badge-text {
        font-size: 0.65rem;
    }
    
    /* Trust Bar */
    .trust-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .trust-number {
        font-size: 2.5rem;
    }
    
    /* Sections */
    section {
        padding: var(--space-16) 0;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Testimonials */
    .testimonial-card {
        flex: 0 0 calc(50% - var(--space-3));
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    /* Floating Button */
    .floating-call-btn {
        padding: var(--space-4) var(--space-6);
        border-radius: var(--radius-full);
    }
    
    .call-text {
        display: inline;
    }
}

/* ============================================================================
   28. RESPONSIVE - TABLETS LANDSCAPE (max-width: 991px)
   ============================================================================ */
@media (max-width: 991px) {
    .hero .container {
        max-width: 720px;
    }
    
    .hero-text {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        max-width: 480px;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============================================================================
   29. RESPONSIVE - SMALL DESKTOPS (min-width: 992px)
   ============================================================================ */
@media (min-width: 992px) {
    
    
    /* Hero - Two Column Layout */
    .hero {
        min-height: 100vh;
        padding: calc(140px + var(--space-8)) var(--space-8) var(--space-16);
    }
    
    .hero .container {
        max-width: 1200px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }
    
    .hero-text {
        text-align: left;
        order: 0;
        max-width: none;
    }
    
    /* Reset order for desktop - natural flow */
    .hero-badge { order: 1; align-self: flex-start; }
    .hero-title { order: 2; }
    .hero-subtitle { order: 3; }
    .hero-features { order: 4; }
    .hero-cta { order: 5; margin-bottom: var(--space-10); }
    .review-platforms { order: 6; }
    
    .hero-visual {
        order: 1;
        max-width: none;
    }
    
    .hero-badge {
        margin-bottom: var(--space-6);
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 4vw, 3.25rem);
        margin-bottom: var(--space-6);
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: var(--space-8);
        max-width: 480px;
    }
    
    .hero-features {
        justify-content: flex-start;
        gap: var(--space-4);
        margin-bottom: var(--space-8);
    }
    
    .hero-feature {
        justify-content: flex-start;
    }
    
    .hero-cta {
        justify-content: flex-start;
        gap: var(--space-4);
        margin-bottom: var(--space-10);
    }
    
    .hero-cta .btn {
        flex: none;
        max-width: none;
        min-width: auto;
    }
    
    .hero-cta .btn-primary {
        padding: var(--space-5) var(--space-10);
        font-size: 1.0625rem;
    }
    
    .hero-cta .btn-secondary {
        padding: var(--space-5) var(--space-8);
        font-size: 1.0625rem;
    }
    
    .review-platforms {
        justify-content: flex-start;
        max-width: none;
        margin: 0;
    }
    
    .platform-item {
        flex-direction: row;
        gap: var(--space-3);
        padding: var(--space-3) var(--space-4);
    }
    
    .platform-item img {
        width: 44px;
        height: 44px;
    }
    
    .platform-rating {
        align-items: flex-start;
    }
    
    .platform-rating span {
        text-align: left;
        font-size: 0.75rem;
    }
    
    .stars {
        font-size: 0.875rem;
    }
    
    /* Hero Visual Desktop */
    .hero-image-main {
        aspect-ratio: auto;
        border-radius: var(--radius-2xl);
    }
    
    .hero-badge-float {
        top: -20px;
        right: -20px;
        padding: var(--space-5);
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    /* Secondary Image */
    .hero-image-secondary {
        display: block;
        position: absolute;
        top: -130px;
        left: -40px;
        width: 55%;
        max-width: 280px;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        border: 4px solid white;
        z-index: 5;
        animation: secondaryImageFloat 5s ease-in-out infinite;
    }
    
    @keyframes secondaryImageFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Why Choose */
    .why-choose-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .visual-image {
        height: 220px;
    }
    
    /* Areas */
    .areas-content {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Testimonials */
    .testimonial-card {
        flex: 0 0 calc(33.333% - var(--space-4));
    }
    
    /* FAQ */
    .faq-content {
        grid-template-columns: 2fr 1fr;
    }
    
    .cta-card .btn {
        width: auto;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    }
}

/* ============================================================================
   30. RESPONSIVE - LARGE DESKTOPS (min-width: 1200px)
   ============================================================================ */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .hero .container {
        max-width: 1280px;
    }
    
    .hero-content {
        gap: var(--space-16);
    }
    
    .hero-title {
        font-size: clamp(3rem, 3.5vw, 3.75rem);
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        max-width: 520px;
    }
    
    .hero-badge-float {
        padding: var(--space-6);
    }
    
    .badge-number {
        font-size: 2.25rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .visual-image {
        height: 260px;
    }
}

/* ============================================================================
   31. RESPONSIVE - EXTRA LARGE (min-width: 1400px)
   ============================================================================ */
@media (min-width: 1400px) {
    .hero .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.35rem;
        max-width: 560px;
    }
    
    .visual-image {
        height: 300px;
    }
}

/* ============================================================================
   32. PERFORMANCE - REDUCED MOTION
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-features,
    .hero-cta,
    .review-platforms,
    .hero-visual,
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
    
    .hero-badge,
    .hero-badge-float,
    .floating-call-btn {
        animation: none;
    }
}

/* ============================================================================
   33. HIGH CONTRAST MODE
   ============================================================================ */
@media (prefers-contrast: high) {
    :root {
        --primary: #0a2463;
        --border: #000000;
    }
    
    .hero-title {
        background: none;
        -webkit-text-fill-color: var(--text-primary);
    }
    
    .hero-badge {
        background: var(--primary);
        box-shadow: none;
    }
    
    .hero-feature {
        border: 2px solid var(--text-primary);
        background: white;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

/* ============================================================================
   34. PRINT STYLES
   ============================================================================ */
@media print {
    
    .footer,
    .back-to-top,
    .floating-call-btn,
    .quote-modal,
    .mobile-overlay,
    
    .hero-badge-float,
    .hero-cta {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-8) 0;
        background: white;
    }
    
    .hero::before,
    .hero::after {
        display: none;
    }
    
    section {
        padding: var(--space-6) 0;
    }
    
    body {
        color: black;
        background: white;
    }
    
    a {
        text-decoration: underline;
    }
    
    .hero-title {
        background: none;
        -webkit-text-fill-color: black;
    }
}