/*
Theme Name: A&A Elite Appliance Repair
Theme URI: https://eliteappliancerepair.com
Author: A&A Elite Appliance Repair
Description: Premium Luxury Appliance Repair Theme
Version: 2.0
Text Domain: elite-appliance-repair
*/

/* ═══════════════════════════════════════════════════════════════════
   DESIGN SYSTEM - Premium Blue to White Gradient Theme
   ═══════════════════════════════════════════════════════════════════ */

:root {
    /* Primary Colors - Bright Blue Gradient */
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary: #0ea5e9;
    --accent: #06b6d4;

    /* Gradient */
    --gradient: linear-gradient(135deg, #2563eb 0%, #0ea5e9 50%, #06b6d4 100%);
    --gradient-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(37, 99, 235, 0.95) 0%, rgba(6, 182, 212, 0.85) 100%);

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.15);
    --shadow-xl: 0 35px 60px -15px rgb(0 0 0 / 0.2);
    --shadow-glow: 0 0 60px rgba(37, 99, 235, 0.3);
    --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 10vw, 140px);

    /* Border Radius */
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.4s;
}

/* ═══════════════════════════════════════════════════════════════════
   BASE RESET & TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════ */

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

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

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

html {
    overflow-x: hidden;
    scrollbar-gutter: stable;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--duration) var(--ease);
}

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

ul, ol {
    list-style: none;
}

/* ═══════════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════════ */

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

.section {
    padding: var(--section-padding) 0;
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER - Glassmorphism Premium
   ═══════════════════════════════════════════════════════════════════ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    height: auto;
    transition: padding var(--duration) var(--ease);
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: all var(--duration) var(--ease);
}

.site-header.scrolled::before {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
}

.logo img {
    height: 52px;
    width: auto;
    border-radius: var(--radius-sm);
    transition: transform var(--duration) var(--ease);
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: var(--white);
    transition: color var(--duration) var(--ease);
}

.logo-text span {
    display: block;
    font-weight: 500;
    font-size: 13px;
    opacity: 0.8;
}

.scrolled .logo-text {
    color: var(--gray-900);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    transition: all var(--duration) var(--ease);
}

.nav a:hover,
.nav a.active,
.nav li.current-menu-item a,
.nav li.current_page_item a {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.scrolled .nav a {
    color: var(--gray-600);
}

.scrolled .nav a:hover,
.scrolled .nav a.active,
.scrolled .nav li.current-menu-item a,
.scrolled .nav li.current_page_item a {
    background: var(--gradient);
    color: var(--white);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow);
    transition: all var(--duration) var(--ease);
}

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

.header-phone svg {
    width: 18px;
    height: 18px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 10;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

.scrolled .menu-toggle {
    background: var(--gray-100);
}

.scrolled .menu-toggle span {
    background: var(--gray-900);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO - Premium Designer Section (Viewport Optimized)
   ═══════════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1e40af 100%);
    overflow: hidden;
    padding: 80px 0 120px; /* Extra bottom padding for marquee */
}

/* Hero Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 64, 175, 0.6) 100%);
}

/* Decorative Elements */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse-glow 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: pulse-glow 10s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px 0;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 5px 20px 5px 5px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s var(--ease) both;
}

.hero-badge-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 34px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white) 0%, #f0f0f0 100%);
    color: var(--primary);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}


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

/* Hero Title */
.hero-title {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s var(--ease) 0.1s both;
}

.hero-title span {
    display: block;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.6;
    animation: fadeInUp 0.8s var(--ease) 0.2s both;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeInUp 0.8s var(--ease) 0.3s both;
}

/* Legacy brand tags (kept for footer compatibility) */
.brand-tag {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    transition: all var(--duration) var(--ease);
}

/* ═══════════════════════════════════════════════════════════════════
   BRAND LOGOS MARQUEE - Running Line
   ═══════════════════════════════════════════════════════════════════ */

.brands-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 24px 0;
}

/* Gradient fade on edges */
.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 1) 0%, transparent 100%);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(to left, rgba(15, 23, 42, 1) 0%, transparent 100%);
}

/* Hero marquee - positioned at bottom */
.hero .brands-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 0 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Wave transition at top */
.hero .brands-marquee-wave {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='rgba(0,0,0,0.3)' d='M0,0 C300,100 600,0 900,80 C1050,120 1150,100 1200,80 L1200,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: 100% 100%;
    filter: blur(8px);
    pointer-events: none;
}

.hero .brands-marquee::before {
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
}

.hero .brands-marquee::after {
    background: linear-gradient(to left, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
}

/* Marquee label styling */
.brands-marquee-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.brands-marquee-label::before,
.brands-marquee-label::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Services page marquee label */
.brands-section .brands-marquee-label {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.brands-marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    will-change: transform;
    animation: marquee 40s linear infinite;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

/* Pause animation handled by JavaScript for cross-browser support */

.brands-marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    padding: 12px 24px;
    background: transparent;
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--ease);
    position: relative;
}

.brands-marquee-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.brands-marquee-item:hover::before {
    opacity: 1;
}

.brands-marquee-item:hover {
    transform: scale(1.08);
}

.brands-marquee-item img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.5s var(--ease);
}

.brands-marquee-item:hover img {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5)) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    transform: scale(1.02);
}

/* For Services page - dark background */
.brands-section .brands-marquee::before {
    background: linear-gradient(to right, var(--gray-900) 0%, transparent 100%);
}

.brands-section .brands-marquee::after {
    background: linear-gradient(to left, var(--gray-900) 0%, transparent 100%);
}

@keyframes marquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-25%, 0, 0);
    }
}

/* Responsive marquee */
@media (max-width: 768px) {
    .brands-marquee {
        padding: 12px 0 20px;
    }

    .brands-marquee::before,
    .brands-marquee::after {
        width: 40px;
    }

    .brands-marquee-label {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
        gap: 12px;
    }

    .brands-marquee-label::before,
    .brands-marquee-label::after {
        width: 40px;
    }

    .brands-marquee-track {
        gap: 40px;
        animation-duration: 20s;
    }

    .brands-marquee-item {
        height: 55px;
        padding: 8px 16px;
    }

    .brands-marquee-item img {
        height: 38px;
        max-width: 130px;
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.25)) drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
    }

    .brands-section .brands-marquee {
        padding: 35px 0 45px;
    }

    .brands-section .brands-marquee-label {
        font-size: 11px;
        margin-bottom: 20px;
    }
}

@media (max-width: 400px) {
    .brands-marquee-label {
        font-size: 9px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .brands-marquee-label::before,
    .brands-marquee-label::after {
        width: 30px;
    }

    .brands-marquee-track {
        gap: 30px;
        animation-duration: 15s;
    }

    .brands-marquee-item {
        height: 48px;
        padding: 6px 12px;
    }

    .brands-marquee-item img {
        height: 32px;
        max-width: 110px;
    }
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(37, 99, 235, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

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

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-gradient {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* ═══════════════════════════════════════════════════════════════════
   REASONS SECTION - Light Premium Design
   ═══════════════════════════════════════════════════════════════════ */

.reasons-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.reasons-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.reasons-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.reasons-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Reasons Grid - 3 columns */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Reason Card - Light Style */
.reason-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.15);
}

/* Number Badge */
.reason-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.reason-card-content {
    flex: 1;
}

.reason-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.reason-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0;
}

/* Responsive reasons */
@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ═══════════════════════════════════════════════════════════════════
   CONTACT SECTION - Glassmorphism Form
   ═══════════════════════════════════════════════════════════════════ */

.contact-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--gradient);
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center right, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

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

/* Contact Info */
.contact-info {
    position: relative;
    z-index: 2;
}

.contact-info .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.contact-info .section-title {
    color: var(--white);
}

.contact-info .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.contact-details {
    margin-top: 48px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-text {
    padding-top: 4px;
}

.contact-text strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.contact-text span,
.contact-text a {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}

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

/* Contact Form - Glassmorphism */
.contact-form-wrapper {
    position: relative;
    z-index: 2;
}

.contact-form {
    padding: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    font-family: var(--font);
    font-size: 16px;
    color: var(--gray-900);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all var(--duration) var(--ease);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--gray-300);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

/* Form Error States */
.form-error {
    display: none;
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    padding-left: 2px;
    animation: errorFadeIn 0.3s ease;
}

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

.form-group.error input,
.form-group.error textarea {
    border-color: #dc2626;
    background: #fef2f2;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group.error input:focus,
.form-group.error textarea:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group.error .form-error {
    display: block;
}

.form-group.error label {
    color: #dc2626;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background: var(--gradient);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: all var(--duration) var(--ease);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

/* Success Message - Enhanced */
.form-success {
    padding: 24px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: var(--white);
    border-radius: var(--radius);
    text-align: center;
    font-weight: 500;
    animation: successPulse 0.6s var(--ease);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
}

.form-success::before {
    content: '✓';
    display: block;
    font-size: 32px;
    margin-bottom: 12px;
    animation: checkmark 0.5s var(--ease) 0.2s both;
}

@keyframes successPulse {
    0% { transform: scale(0.9); opacity: 0; }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes checkmark {
    0% { transform: scale(0) rotate(-45deg); opacity: 0; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* Form Loading State */
.contact-form.loading .btn-submit {
    pointer-events: none;
    opacity: 0.7;
}

.contact-form.loading .btn-submit::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid transparent;
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ═══════════════════════════════════════════════════════════════════
   SUCCESS/ERROR MODAL
   ═══════════════════════════════════════════════════════════════════ */

.elite-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.elite-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.elite-modal {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.elite-modal-overlay.active .elite-modal {
    transform: scale(1) translateY(0);
}

.elite-modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    font-weight: bold;
    animation: modalIconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

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

.elite-modal-success .elite-modal-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
}

.elite-modal-error .elite-modal-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.3);
}

.elite-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 12px;
}

.elite-modal-message {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0 0 32px;
}

.elite-modal-btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background: var(--gradient);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.elite-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.elite-modal-error .elite-modal-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.elite-modal-error .elite-modal-btn:hover {
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT SECTION - Light Theme (for inner pages)
   ═══════════════════════════════════════════════════════════════════ */

.contact-section-light {
    background: var(--white);
    padding-top: 80px;
}

.contact-section-light::before {
    display: none;
}

.contact-section-light .contact-info .section-label {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.contact-section-light .contact-info .section-title {
    color: var(--gray-900);
}

.contact-section-light .contact-info .section-subtitle {
    color: var(--gray-500);
}

.contact-section-light .contact-icon {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.15);
}

.contact-section-light .contact-icon svg {
    color: var(--primary);
}

.contact-section-light .contact-text strong {
    color: var(--gray-400);
}

.contact-section-light .contact-text span,
.contact-section-light .contact-text a {
    color: var(--gray-900);
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER - Premium Dark
   ═══════════════════════════════════════════════════════════════════ */

.site-footer {
    padding: 80px 0 40px;
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 48px;
    border-radius: var(--radius-sm);
}

.footer-logo span {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: all var(--duration) var(--ease);
}

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

.footer-social svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    font-size: 15px;
    color: var(--gray-400);
    transition: all var(--duration) var(--ease);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--gray-400);
}

.footer-bottom a:hover {
    color: var(--white);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a {
    color: var(--gray-400);
    transition: color 0.3s ease;
}

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

/* ═══════════════════════════════════════════════════════════════════
   PAGE HEADER - Inner Pages
   ═══════════════════════════════════════════════════════════════════ */

/* Page Header - Premium Inner Pages */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
    text-align: center;
    overflow: hidden;
}

/* Animated gradient orbs */
.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse-glow 8s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: pulse-glow 10s ease-in-out infinite reverse;
}

/* Decorative grid pattern */
.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header .container::before {
    content: '';
    position: absolute;
    inset: -100px;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Badge above title */
.page-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.page-header-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
}

.page-header h1 {
    position: relative;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.page-header p {
    position: relative;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Breadcrumb style navigation hint */
.page-header-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.page-header-nav a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--duration) var(--ease);
}

.page-header-nav a:hover {
    color: var(--white);
}

.page-header-nav span {
    color: rgba(255, 255, 255, 0.4);
}

/* Inner pages - header always has background */
body:not(.home-page) .site-header::before {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

body:not(.home-page) .site-header.scrolled::before {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

body:not(.home-page) .scrolled .logo-text,
body:not(.home-page) .scrolled .nav a {
    color: var(--gray-700);
}

body:not(.home-page) .scrolled .nav a:hover,
body:not(.home-page) .scrolled .nav li.current-menu-item a {
    background: var(--gradient);
    color: var(--white);
}

body:not(.home-page) .scrolled .header-phone {
    color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE CONTENT
   ═══════════════════════════════════════════════════════════════════ */

.page-content {
    padding: var(--section-padding) 0;
}

.page-content .container {
    max-width: 800px;
}

.page-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 48px 0 20px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.page-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.page-content p {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.page-content li {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 12px;
    list-style: disc;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════════════════ */

.services-grid {
    display: grid;
    gap: 32px;
}

.service-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 48px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition:
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-items: center;
}

.service-card:nth-child(even) {
    grid-template-columns: 1fr 400px;
}

.service-card:nth-child(even) .service-image {
    order: 2;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 280px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.service-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.service-content p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.8;
}

/* Brands Section */
.brands-section {
    padding: 0;
    background: var(--gray-900);
    text-align: center;
    overflow: hidden;
}

.brands-section .brands-marquee {
    padding: 50px 0 60px;
}

.brands-section .brands-marquee-label {
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 28px;
}

.brands-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.brand-item {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    transition: all var(--duration) var(--ease);
}

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

/* Premium brands on services page */
.brand-item.brand-item-premium {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: var(--primary);
    font-weight: 700;
}

.brand-item.brand-item-premium::before {
    content: '★ ';
    font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION - Light Theme
   ═══════════════════════════════════════════════════════════════════ */

.testimonials-section {
    padding: 60px 0 40px;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.testimonials-section + .section {
    padding-top: 60px;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section .section-header {
    margin-bottom: 56px;
}

.testimonials-section .section-label {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.15);
}

.testimonials-section .section-title {
    color: var(--gray-900);
}

.testimonials-section .section-subtitle {
    color: var(--gray-500);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.12);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: #f59e0b;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.testimonial-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--gray-500);
}

/* Clickable Testimonial Cards */
a.testimonial-card-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

a.testimonial-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(211, 35, 35, 0.12);
    border-color: rgba(211, 35, 35, 0.2);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testimonial-header .testimonial-stars {
    margin-bottom: 0;
}

.testimonial-yelp-logo {
    width: 20px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

a.testimonial-card-link:hover .testimonial-yelp-logo {
    opacity: 1;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.testimonial-view-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #d32323;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.testimonial-view-link svg {
    flex-shrink: 0;
}

a.testimonial-card-link:hover .testimonial-view-link {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    /* Always show View on Yelp on mobile */
    .testimonial-view-link {
        opacity: 1;
        transform: translateX(0);
    }

    .testimonial-footer {
        flex-wrap: wrap;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════════ */

.about-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.about-image {
    height: 450px;
    min-height: 350px;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: -20px -20px auto auto;
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    opacity: 0.2;
    z-index: -1;
}

.about-content .section-label {
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Restore hover transitions for cards after animation */
.reason-card.animated,
.service-card.animated,
.testimonial-card.animated {
    transition:
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.8s var(--ease);
}

[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-down"] { transform: translateY(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="zoom"] { transform: scale(0.9); }

/* Staggered animations */
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }
[data-animate-delay="5"] { transition-delay: 0.5s; }
[data-animate-delay="6"] { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(even) .service-image {
        order: 0;
    }
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        height: 350px;
        order: -1;
    }
}

@media (max-width: 768px) {
    /* Disable scrollbar-gutter on mobile - uses overlay scrollbars */
    html {
        scrollbar-gutter: auto;
    }

    /* Mobile header - fixed height, no heavy effects */
    .site-header {
        height: 70px;
        padding: 0;
        transition: none;
    }

    .site-header::before,
    body:not(.home-page) .site-header::before {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transition: background 0.2s ease;
    }

    .site-header.scrolled::before,
    body:not(.home-page) .site-header.scrolled::before {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Non-home pages initial header background */
    body:not(.home-page) .site-header::before {
        background: rgba(15, 23, 42, 0.98);
    }

    .header-inner {
        height: 70px;
        padding: 0 16px;
    }

    .logo {
        gap: 10px;
    }

    .logo img {
        height: 42px;
    }

    .logo-text {
        font-size: 15px;
    }

    .logo-text span {
        font-size: 11px;
    }

    /* Page header - prevent overflow */
    .page-header .container::before {
        inset: -50px;
    }

    /* Disable heavy marquee effects on mobile */
    .hero .brands-marquee {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(0, 0, 0, 0.6);
    }

    .hero .brands-marquee-wave {
        display: none;
    }

    .brands-marquee-item {
        transition: none;
    }

    .brands-marquee-item::before {
        display: none;
    }

    .brands-marquee-item img {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        transition: none;
    }

    .brands-marquee-item:hover {
        transform: none;
    }

    .brands-marquee-item:hover img {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        transform: none;
    }

    .nav {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 999;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav.active {
        display: flex;
    }

    .nav li {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .nav a {
        display: block;
        font-size: 20px;
        color: var(--gray-900);
        padding: 16px 32px;
        border-radius: var(--radius);
    }

    .nav a:hover,
    .nav a.active,
    .nav li.current-menu-item a,
    .nav li.current_page_item a {
        background: var(--gradient);
        color: var(--white);
    }

    .menu-toggle {
        display: flex;
        position: fixed;
        top: 16px;
        right: 16px;
        z-index: 1001;
        width: 48px;
        height: 48px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 6px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 12px;
    }

    .menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--white);
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .scrolled .menu-toggle {
        background: var(--white);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .scrolled .menu-toggle span {
        background: var(--gray-900);
    }

    .menu-toggle.active {
        background: var(--white);
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .menu-toggle.active span {
        background: var(--gray-900);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header-phone {
        display: none;
    }

    .hero {
        padding: 70px 0 100px; /* More padding for marquee */
    }

    .hero-content {
        padding: 10px 0;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }

    .hero .brands-marquee {
        padding: 14px 0 16px;
    }

    .hero .brands-marquee-wave {
        top: -30px;
        height: 40px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 15px;
    }

    .btn-submit {
        padding: 16px;
        font-size: 15px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-brand {
        max-width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .service-image {
        height: 200px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-label {
        padding: 8px 16px;
        font-size: 10px;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .reasons-grid {
        gap: 16px;
    }

    .reason-card {
        padding: 24px 20px;
    }

    .reason-number {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin-bottom: 16px;
    }

    .reason-card h3 {
        font-size: 16px;
    }

    .reason-card p {
        font-size: 14px;
    }

    .contact-grid {
        gap: 40px;
    }

    .contact-details {
        margin-top: 32px;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .contact-text span,
    .contact-text a {
        font-size: 16px;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: clamp(28px, 7vw, 40px);
    }

    .page-header p {
        font-size: 15px;
    }
}

/* Extra small devices - iPhone SE, etc (375px) */
@media (max-width: 400px) {
    .container {
        padding: 0 16px;
    }

    .hero-badge {
        gap: 8px;
        padding: 4px 12px 4px 4px;
    }

    .hero-badge-accent {
        min-width: 32px;
        height: 26px;
        padding: 0 8px;
        font-size: 11px;
    }

    .hero-badge-text {
        font-size: 10px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .brand-tag {
        padding: 6px 12px;
        font-size: 11px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .contact-form {
        padding: 20px 16px;
    }

    .form-group label {
        font-size: 11px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .reason-card {
        padding: 20px 16px;
    }

    .section-title {
        font-size: 22px;
    }

    .footer-col h4 {
        font-size: 12px;
    }

    .footer-col a {
        font-size: 14px;
    }
}
