/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Automotive Color Palette - RPM Customs Red */
    --primary-red: #E31E24;      /* RPM Customs Logo Red */
    --dark-red: #B71C1C;         /* Deep RPM Red */
    --light-red: #F44336;        /* Bright RPM Red */
    --accent-red: #FF5252;       /* RPM Performance Accent */
    
    /* Sophisticated Grays & Metallics - Dark Theme */
    --charcoal: #e8e8e8;         /* Light text for dark theme */
    --dark-charcoal: #f0f0f0;    /* Lighter text */
    --medium-gray: #cccccc;      /* Medium light text */
    --warm-gray: #b0b0b0;        /* Warm light text */
    --light-gray: #2a2a2a;       /* Dark backgrounds */
    --ultra-light: #1a1a1a;      /* Ultra dark backgrounds */
    --white: #ffffff;            /* Keep white for accents */
    
    /* Dark Theme Surface Colors */
    --surface-dark: #0a0a0a;     /* Main dark background */
    --surface-darker: #151515;    /* Darker sections */
    --surface-card: #1f1f1f;     /* Card backgrounds */
    --surface-hover: #2a2a2a;    /* Hover states */
    
    /* Premium Automotive Accents */
    --chrome-silver: #BDC3C7;    /* Chrome/Silver */
    --racing-gold: #F1C40F;      /* Racing Gold */
    --steel-blue: #34495E;       /* Steel Blue */
    --carbon-black: #2C3E50;     /* Carbon Fiber */
    
    /* Modern Racing Gradients - Dark Theme */
    --gradient-primary: linear-gradient(135deg, #E31E24 0%, #B71C1C 100%);
    --gradient-racing: linear-gradient(135deg, #E31E24 0%, #F44336 50%, #B71C1C 100%);
    --gradient-metallic: linear-gradient(135deg, #BDC3C7 0%, #95A5A6 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    --gradient-surface: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
    --gradient-light: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(21, 21, 21, 0.9) 100%);
    
    /* Premium Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    
    /* Typography Scale */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    --text-6xl: 3.75rem;     /* 60px */
    
    /* Premium Spacing System */
    --space-1: 0.25rem;      /* 4px */
    --space-2: 0.5rem;       /* 8px */
    --space-3: 0.75rem;      /* 12px */
    --space-4: 1rem;         /* 16px */
    --space-5: 1.25rem;      /* 20px */
    --space-6: 1.5rem;       /* 24px */
    --space-8: 2rem;         /* 32px */
    --space-10: 2.5rem;      /* 40px */
    --space-12: 3rem;        /* 48px */
    --space-16: 4rem;        /* 64px */
    --space-20: 5rem;        /* 80px */
    --space-24: 6rem;        /* 96px */
    --space-32: 8rem;        /* 128px */
    
    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-premium: 0 32px 64px -12px rgba(0, 0, 0, 0.4);
    
    /* Modern Border Radius */
    --radius-sm: 0.375rem;    /* 6px */
    --radius-md: 0.5rem;      /* 8px */
    --radius-lg: 0.75rem;     /* 12px */
    --radius-xl: 1rem;        /* 16px */
    --radius-2xl: 1.5rem;     /* 24px */
    --radius-3xl: 2rem;       /* 32px */
    
    /* Premium Animations */
    --transition-fast: all 0.15s ease;
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Layout */
    --container-max-width: 1280px;
    --container-ultra-wide: 1440px;
    --section-padding: clamp(var(--space-16), 8vw, var(--space-24));
}

/* Premium Base Styles */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--surface-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    width: 100%;
    max-width: 100vw;
}

/* Premium Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
    font-weight: 800;
}

h2 {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 700;
}

h3 {
    font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
    font-weight: 600;
}

p {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: var(--space-4);
}

/* Premium Container System */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-wide {
    max-width: var(--container-ultra-wide);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Modern Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.025em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white);
}

/* Premium Section Styling */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: var(--space-4);
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -var(--space-3);
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

/* Prevent zoom on iOS form focus */
input, textarea, select {
    font-size: 16px;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        width: 100%;
    }
}

/* Ensure no horizontal overflow on any element */
*, *::before, *::after {
    max-width: 100%;
    box-sizing: border-box;
}

/* Make all media responsive by default */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Ensure text never breaks container */
p, h1, h2, h3, h4, h5, h6, div, span {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Tables responsive */
table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
}

/* Form elements responsive */
input, textarea, select, button {
    max-width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 clamp(15px, 4vw, 40px);
    width: 100%;
}

/* Ultra-wide screen optimization */
@media (min-width: 1400px) {
    .container {
        max-width: var(--container-ultra-wide);
    }
    
    .hero-content h1 {
        font-size: clamp(3rem, 6vw, 5rem);
    }
    
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Premium Navigation with Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.95);
    box-shadow: var(--shadow-2xl);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 10;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: var(--transition-bounce);
    object-fit: contain;
    filter: brightness(1.15) contrast(1.1) saturate(1.2) hue-rotate(0deg);
}

.logo-img:hover {
    transform: scale(1.08) rotate(-2deg);
    filter: brightness(1.3) contrast(1.15) saturate(1.3) hue-rotate(0deg) drop-shadow(0 0 20px rgba(227, 30, 36, 0.6)) drop-shadow(0 0 8px rgba(241, 196, 15, 0.3));
}

.logo-fallback {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--white);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: var(--transition-base);
    position: relative;
    padding: var(--space-2) 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
    transform: translateY(-1px);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
    box-shadow: 0 0 10px rgba(227, 30, 36, 0.5);
}

/* Premium Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--space-2);
    z-index: 10;
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: var(--radius-sm);
    margin: 3px 0;
    transition: var(--transition-base);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Premium Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 var(--space-6);
}

.hero::before {
    display: none;
}

.hero::after {
    display: none;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-content {
    animation: heroFadeIn 1.2s ease-out;
}

.hero-logo {
    margin-bottom: var(--space-12);
    animation: logoFloat 1s ease-out 0.2s both;
}

.hero-logo img {
    height: 180px;
    width: auto;
    filter: brightness(1.2) contrast(1.1) saturate(1.25) hue-rotate(0deg) drop-shadow(0 0 40px rgba(227, 30, 36, 0.7)) drop-shadow(0 0 15px rgba(241, 196, 15, 0.4));
    object-fit: contain;
    transition: var(--transition-slow);
}

.hero-logo img:hover {
    transform: scale(1.05) rotate(-1deg);
    filter: brightness(1.35) contrast(1.2) saturate(1.4) hue-rotate(0deg) drop-shadow(0 0 60px rgba(227, 30, 36, 0.9)) drop-shadow(0 0 20px rgba(241, 196, 15, 0.6));
}

.hero-logo-fallback {
    font-family: var(--font-display);
    font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
    font-weight: 800;
    color: var(--white);
    margin: 0;
    letter-spacing: 0.1em;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: heroSlideUp 1s ease-out 0.4s both;
}

.hero-content p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-12);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: heroSlideUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-8);
    justify-content: center;
    flex-wrap: wrap;
    animation: heroSlideUp 1s ease-out 0.8s both;
    margin-top: var(--space-4);
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes logoFloat {
    from { opacity: 0; transform: translateY(-20px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Premium Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-10);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.025em;
    min-height: 56px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(227, 30, 36, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl), 0 0 30px rgba(227, 30, 36, 0.5);
    background: var(--light-red);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Premium Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-8);
        transition: var(--transition-slow);
        z-index: 9;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateX(50px);
        animation: menuSlideIn 0.5s ease forwards;
    }

    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }

    .nav-link {
        font-size: var(--text-2xl);
        font-weight: 600;
        padding: var(--space-4) var(--space-6);
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 0 var(--space-4);
        height: 70px;
    }

    .logo-img {
        height: 45px;
    }

    .hero {
        min-height: 100vh;
        padding: 0 var(--space-4);
    }

    .hero-content h1 {
        font-size: clamp(var(--text-3xl), 8vw, var(--text-5xl));
    }

    .hero-content p {
        font-size: var(--text-lg);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }

    .btn {
        padding: var(--space-4) var(--space-8);
        min-height: 52px;
        width: 100%;
        max-width: 300px;
    }
}

@keyframes menuSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Premium WhatsApp Integration */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border: 2px solid #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    font-weight: 600;
    box-shadow: var(--shadow-md), 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0a6b5d 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-direct {
    text-align: center;
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.whatsapp-direct .btn {
    max-width: 280px;
    margin: 0 auto;
    display: block;
}

.whatsapp-direct p {
    color: var(--medium-gray);
    margin-bottom: var(--space-4);
    font-size: var(--text-base);
}

/* Premium Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-20);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-6);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--space-6);
    position: relative;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -var(--space-4);
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.4);
}

.section-header p {
    font-size: var(--text-xl);
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Premium Services Section */
.services {
    padding: var(--space-12) 0;
    background: var(--gradient-dark);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(227, 30, 36, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(227, 30, 36, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--space-10);
    margin-top: var(--space-10);
    align-items: stretch;
}

.service-card {
    background: var(--surface-card);
    padding: var(--space-10) var(--space-8);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(227, 30, 36, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.02) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
    z-index: 0;
}

.service-card:hover::after {
    transform: scale(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(227, 30, 36, 0.15);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-3xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-8);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-3xl);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.service-card:hover .service-icon {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(227, 30, 36, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(227, 30, 36, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-card:hover .service-icon::before {
    opacity: 0.1;
}

.service-icon i {
    font-size: var(--text-4xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 10px rgba(227, 30, 36, 0.3));
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(227, 30, 36, 0.6));
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: var(--space-6);
    line-height: 1.7;
    font-size: var(--text-lg);
    position: relative;
    z-index: 1;
}

.service-card ul {
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 1;
}

.service-card li {
    color: var(--medium-gray);
    margin-bottom: var(--space-3);
    position: relative;
    padding-left: var(--space-8);
    font-size: var(--text-base);
    line-height: 1.6;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-red);
    font-weight: 700;
    font-size: var(--text-lg);
    width: var(--space-6);
    height: var(--space-6);
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(241, 196, 15, 0.1));
    border: 1px solid rgba(227, 30, 36, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
}

/* Premium About Section */
.about {
    padding: var(--space-12) 0;
    background: #000000;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(227, 30, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(227, 30, 36, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: var(--space-12);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-header h2 {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-8);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-6);
    font-size: var(--text-xl);
    line-height: 1.8;
    font-weight: 400;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.about-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-stats h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--primary-red);
    margin-bottom: var(--space-6);
    text-align: center;
}

.about-certification {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-3xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.stat {
    text-align: center;
    padding: var(--space-4);
    transition: var(--transition-smooth);
    border-radius: var(--radius-2xl);
}

.stat:hover {
    transform: translateY(-8px);
    background: rgba(227, 30, 36, 0.1);
}

.stat h3 {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    color: var(--primary-red);
    margin-bottom: var(--space-2);
    font-weight: 800;
    transition: var(--transition-base);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat:hover h3 {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(227, 30, 36, 0.5));
}

.stat p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-base);
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.025em;
}

/* About Image Container */
.about-image {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, transparent 50%, rgba(227, 30, 36, 0.05) 100%);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .about-stats {
        order: 2;
    }
    
    .about-certification {
        order: 1;
    }

    .stats {
        flex-direction: row;
        gap: var(--space-4);
        padding: var(--space-6);
        margin: 0;
    }

    .stat {
        padding: var(--space-3);
        flex: 1;
    }
    
    .stat h3 {
        font-size: clamp(var(--text-xl), 5vw, var(--text-2xl));
        margin-bottom: var(--space-1);
    }
    
    .stat p {
        font-size: var(--text-sm);
    }
}

/* Clean Google Reviews Styling */
.google-reviews-widget {
    margin: 40px 0;
    text-align: center;
    position: relative;
}

/* Loading placeholder styling */
.reviews-loading-placeholder {
    padding: 60px 20px;
    background: var(--gradient-surface);
    border-radius: 15px;
    border: 2px dashed rgba(227, 30, 36, 0.3);
    margin: 20px 0;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.loading-spinner i {
    color: #ffc107;
    font-size: 1.5rem;
    animation: starPulse 1.5s ease-in-out infinite;
}

.loading-spinner i:nth-child(1) { animation-delay: 0s; }
.loading-spinner i:nth-child(2) { animation-delay: 0.3s; }
.loading-spinner i:nth-child(3) { animation-delay: 0.6s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

.reviews-loading-placeholder p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-red);
    animation: dotBounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1.2); opacity: 1; }
}

/* Hide loading placeholder when widget loads */
.elfsight-app-google-reviews:not(:empty) ~ .reviews-loading-placeholder,
.google-reviews-widget.loaded .reviews-loading-placeholder {
    display: none;
}

.reviews-footer {
    text-align: center;
    margin-top: -5px;
    padding-top: 2px;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
}

.google-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.google-link:hover {
    color: var(--dark-red);
    text-decoration: underline;
}

.reviews-footer i {
    color: #4285f4;
    margin-right: 8px;
}

/* Elfsight Widget Responsive Optimization */
.elfsight-app-google-reviews {
    max-width: 100%;
    margin: 0 auto -30px;
}

@media (max-width: 768px) {
    .google-reviews-widget {
        margin: 20px 0;
    }
    
    .reviews-footer {
        margin-top: -5px;
        padding-top: 2px;
    }
    
    .reviews-loading-placeholder {
        padding: 40px 15px;
    }
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.about-image img,
.service-card img,
.hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-image img:hover,
.service-card img:hover {
    transform: scale(1.05);
}

/* Logo responsive sizing */
.logo img {
    max-height: 50px;
    width: auto;
}

@media (max-width: 768px) {
    .logo img {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-height: 35px;
    }
}

/* Counter Animation Styles */
.counter {
    display: inline-block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.counter.animate-in {
    animation: countIn 0.6s ease-out forwards;
}

.counter.counting {
    color: var(--primary-red);
    transform: scale(1.05);
    animation: countPulse 0.6s ease-in-out;
}

.counter.animation-complete {
    animation: countComplete 0.8s ease-out;
}

@keyframes countIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes countPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes countComplete {
    0% { transform: scale(1); }
    20% { transform: scale(1.2); }
    40% { transform: scale(0.95); }
    60% { transform: scale(1.1); }
    80% { transform: scale(0.98); }
    100% { transform: scale(1); }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        color: var(--dark-red);
    }
}

.stat p {
    color: var(--dark-gray);
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--surface-card);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-red);
}

/* Certification Container */
.certification-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 400px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--white);
    border: 2px solid var(--primary-red);
    box-shadow: var(--shadow-2xl);
    transition: var(--transition-smooth);
}

.certification-container:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: var(--light-red);
}

.certification-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--space-2);
    background: var(--white);
}

.certification-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: var(--space-6);
    color: var(--white);
    text-align: center;
}

.certification-overlay h4 {
    font-family: var(--font-display);
    color: var(--primary-red);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.certification-overlay p {
    color: var(--white);
    font-size: var(--text-base);
    margin: 0;
}

/* Premium Gallery Section */
.gallery {
    padding: var(--space-12) 0;
    background: var(--gradient-dark);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(227, 30, 36, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(227, 30, 36, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.gallery .container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-10);
    margin-top: var(--space-20);
    align-items: stretch;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-3xl);
    height: 300px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    background: var(--surface-card);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, transparent 50%, rgba(227, 30, 36, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-base);
    z-index: 2;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item .image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--surface-hover) 0%, var(--surface-card) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gallery-item .image-placeholder i {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
    color: var(--primary-red);
    transition: var(--transition-base);
}

.gallery-item:hover .image-placeholder i {
    transform: scale(1.2);
    color: var(--white);
}

.gallery-item .image-placeholder p {
    font-size: var(--text-lg);
    font-weight: 500;
    margin: 0;
    transition: var(--transition-base);
}

.gallery-item:hover .image-placeholder p {
    color: var(--white);
    transform: translateY(-4px);
}

/* Premium Testimonials Section */
.testimonials {
    padding: var(--space-20) 0;
    background: #000000;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(227, 30, 36, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(227, 30, 36, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.testimonials .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-6);
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.testimonials .section-header h2::after {
    background: var(--gradient-primary);
}

.testimonials .section-header p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--space-10);
    margin-bottom: var(--space-16);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-10);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(227, 30, 36, 0.3);
}

.testimonial-card .stars {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.testimonial-card .stars i {
    color: #ffd700;
    font-size: var(--text-xl);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.testimonial-card p {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    font-style: italic;
    position: relative;
}

.testimonial-card p::before {
    content: '"';
    font-size: var(--text-5xl);
    color: rgba(227, 30, 36, 0.3);
    position: absolute;
    top: -var(--space-4);
    left: -var(--space-4);
    font-family: var(--font-display);
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-author div {
    flex: 1;
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--white);
    margin-bottom: var(--space-1);
    font-weight: 600;
}

.testimonial-author span {
    font-size: var(--text-base);
    color: var(--primary-red);
    font-weight: 500;
}

/* Premium Google Reviews Integration */
.google-reviews-note {
    text-align: center;
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-8);
}

.google-reviews-note p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.google-reviews-note i {
    color: #4285f4;
    margin-right: var(--space-3);
    font-size: var(--text-2xl);
    filter: drop-shadow(0 0 10px rgba(66, 133, 244, 0.4));
}

.google-reviews-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.google-reviews-link:hover {
    filter: drop-shadow(0 0 8px rgba(227, 30, 36, 0.5));
    text-decoration: underline;
}

/* Live Google Reviews Integration */
.google-reviews-integration {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 40px 0;
    border-top: 3px solid var(--primary-red);
}

.elfsight-reviews-widget {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
}

/* Elfsight Widget Comprehensive Responsiveness */
.elfsight-reviews-widget {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
}

/* Elfsight Widget All Screen Sizes */
.elfsight-app-google-reviews {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 280px !important;
    overflow: hidden !important;
    min-height: 200px;
    box-sizing: border-box !important;
}

/* Force responsive behavior on all Elfsight elements */
.elfsight-app-google-reviews *,
.elfsight-app-google-reviews iframe {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Ultra-Wide Screens */
@media (min-width: 1400px) {
    .elfsight-reviews-widget {
        max-width: 1200px;
        margin: 0 auto 30px;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .elfsight-app-google-reviews {
        min-height: 250px;
    }
}

/* Large Tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .elfsight-app-google-reviews {
        min-height: 220px;
    }
}

/* Standard Tablets */
@media (max-width: 768px) and (min-width: 481px) {
    .elfsight-reviews-widget {
        margin: 20px 0;
        border-radius: 12px;
    }
    
    .elfsight-app-google-reviews {
        min-height: 180px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .elfsight-reviews-widget {
        margin: 15px 0;
        border-radius: 10px;
    }
    
    .elfsight-app-google-reviews {
        min-height: 160px;
        min-width: 280px !important;
    }
    
    /* Force mobile-friendly layout */
    .elfsight-reviews-widget,
    .elfsight-app-google-reviews,
    .elfsight-app-google-reviews *,
    .elfsight-app-google-reviews iframe {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    /* Stats mobile optimization */
    .stats {
        flex-direction: column;
        padding: var(--space-4) var(--space-3);
        margin-top: var(--space-4);
        gap: var(--space-3);
    }
    
    .stat {
        padding: var(--space-2);
    }
    
    .stat h3 {
        font-size: var(--text-xl);
        margin-bottom: var(--space-1);
    }
    
    .stat p {
        font-size: var(--text-xs);
    }
}

/* Ultra-Small Screens */
@media (max-width: 360px) {
    .elfsight-reviews-widget {
        margin: 10px 0;
        border-radius: 8px;
    }
    
    .elfsight-app-google-reviews {
        min-height: 140px;
        min-width: 260px !important;
    }
}

.custom-reviews-container {
    background: var(--surface-card);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.1);
}

.reviews-loading {
    padding: 40px 20px;
}

.reviews-loading i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.reviews-loading p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin: 0;
}

.api-key-required {
    padding: 30px;
}

.api-key-required h4 {
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.api-key-required p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.widget-active-notice {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.widget-active-notice p {
    margin: 0;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.widget-active-notice i {
    color: #22c55e;
    margin-right: 8px;
}

/* Premium Contact Section */
.contact {
    padding: var(--space-12) 0;
    background: var(--gradient-dark);
    color: var(--charcoal);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(227, 30, 36, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(227, 30, 36, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .section-header h2 {
    color: var(--charcoal);
}

.contact .section-header p {
    color: var(--medium-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    margin-top: var(--space-12);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-8);
    padding: var(--space-10);
    background: var(--surface-card);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(227, 30, 36, 0.1);
}

.info-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(227, 30, 36, 0.15);
}

.info-item .icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md), 0 0 20px rgba(227, 30, 36, 0.2);
}

.info-item i {
    font-size: var(--text-2xl);
    color: var(--white);
}

.info-item .content h4 {
    color: var(--charcoal);
    margin-bottom: var(--space-2);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
}

.info-item .content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
    font-size: var(--text-lg);
}

.contact-form {
    background: var(--surface-card);
    padding: var(--space-12);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(227, 30, 36, 0.1);
    text-align: center;
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-2);
    color: var(--charcoal);
    font-weight: 600;
    font-size: var(--text-base);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--surface-hover);
    border-radius: var(--radius-xl);
    background: var(--surface-card);
    color: var(--charcoal);
    font-size: var(--text-base);
    transition: var(--transition-base);
    font-family: var(--font-body);
    text-align: left;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1), var(--shadow-md);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-gray);
}

.form-group select {
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, var(--primary-red) 50%),
                      linear-gradient(135deg, var(--primary-red) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px),
                       calc(100% - 15px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.form-group select option {
    background: var(--surface-card);
    color: var(--charcoal);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.contact-form .btn {
    max-width: 300px;
    margin: var(--space-4) auto 0;
    display: block;
}

/* Premium Map Section */
.map-section {
    background: #000000;
    padding: var(--space-16) 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(227, 30, 36, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.map-section .container {
    position: relative;
    z-index: 1;
}

.map-section h3 {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-12);
    text-transform: none;
    letter-spacing: -0.02em;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
    border-radius: var(--radius-3xl);
    overflow: hidden;
    background: var(--surface-card);
    padding: var(--space-6);
    border: 1px solid rgba(227, 30, 36, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.map-container iframe {
    transition: var(--transition-base);
    border-radius: var(--radius-2xl);
}

.map-container:hover iframe {
    transform: scale(1.02);
}

/* Premium Footer */
.footer {
    background: linear-gradient(135deg, 
        #0a0a0a 0%, 
        #0f0f0f 50%, 
        #0a0a0a 100%
    );
    color: var(--white);
    padding: var(--space-12) 0 var(--space-6);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 0%, rgba(227, 30, 36, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 100%, rgba(227, 30, 36, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-display);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-6);
    font-size: var(--text-xl);
    font-weight: 700;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: var(--space-4);
    filter: brightness(1.25) contrast(1.1) saturate(1.2) hue-rotate(0deg) drop-shadow(0 0 20px rgba(227, 30, 36, 0.4));
    object-fit: contain;
    transition: var(--transition-base);
}

.footer-logo:hover {
    filter: brightness(1.4) contrast(1.15) saturate(1.3) hue-rotate(0deg) drop-shadow(0 0 30px rgba(227, 30, 36, 0.6)) drop-shadow(0 0 10px rgba(241, 196, 15, 0.4));
    transform: scale(1.05);
}

.footer-logo-fallback {
    font-family: var(--font-display);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-6);
    font-size: var(--text-2xl);
    font-weight: 800;
    letter-spacing: 0.05em;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    font-size: var(--text-lg);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-3);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: var(--text-base);
    position: relative;
    padding-left: var(--space-6);
}

.footer-section ul li a::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    transition: var(--transition-base);
}

.footer-section ul li a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-section ul li a:hover::before {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--gradient-racing);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), 0 0 20px rgba(227, 30, 36, 0.4), 0 0 10px rgba(241, 196, 15, 0.2);
    border-color: var(--racing-gold);
}

.social-links a i {
    font-size: var(--text-xl);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--gradient-racing);
    box-shadow: 0 0 10px rgba(227, 30, 36, 0.5), 0 0 5px rgba(241, 196, 15, 0.3);
}

.footer-bottom p {
    font-size: var(--text-base);
    margin: 0;
    padding-top: var(--space-4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Responsive Design - All Screen Sizes */

/* Ultra-Wide Screens (1400px+) */
@media (min-width: 1400px) {
    .hero-content h1 {
        font-size: clamp(var(--text-5xl), 6vw, var(--text-6xl));
        line-height: 1.1;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-10);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-10);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-content {
        gap: var(--space-12);
    }
}

/* Large Desktops (1200px - 1400px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra Large Tablets (1024px - 1199px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 clamp(var(--space-4), 3vw, var(--space-8));
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .hero-content h1 {
        font-size: clamp(var(--text-4xl), 6vw, var(--text-5xl));
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Tablets (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-content {
        gap: var(--space-12);
    }
    
    .contact-content {
        gap: var(--space-12);
    }
}

/* Standard Tablets (600px - 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Tablets & Large Phones (480px - 600px) */
@media (min-width: 481px) and (max-width: 600px) {
    .services-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: clamp(var(--text-3xl), 8vw, var(--text-4xl));
    }
}

/* Mobile Tablets & Navigation */
@media (max-width: 768px) {
    /* Reduce section padding on mobile */
    .services,
    .about,
    .gallery,
    .contact {
        padding: var(--space-8) 0;
    }
    
    .footer {
        padding: var(--space-8) 0 var(--space-4);
    }
    
    .hero-content h1 {
        font-size: clamp(var(--text-3xl), 8vw, var(--text-4xl));
        line-height: 1.2;
    }
    
    .hero-logo img {
        height: 120px;
        max-width: 90vw;
    }
    
    .hero {
        padding: var(--space-4) var(--space-4);
        min-height: 100vh;
    }

    .hero-overlay {
        max-width: 100%;
        padding: 0 var(--space-2);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-5);
    }

    .section-header h2 {
        font-size: clamp(var(--text-3xl), 6vw, var(--text-4xl));
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        margin-top: var(--space-12);
    }
    
    .service-card {
        padding: var(--space-8) var(--space-6);
    }
    
    .section-header {
        margin-bottom: var(--space-12);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-16);
    }

    .stats {
        flex-direction: column;
        gap: var(--space-4);
        padding: var(--space-6) var(--space-4);
        margin-top: var(--space-6);
    }
    
    .stat {
        padding: var(--space-3);
    }
    
    .stat h3 {
        font-size: clamp(var(--text-2xl), 6vw, var(--text-3xl));
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-12);
    }
    
    .footer-logo {
        height: 70px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .contact-form {
        padding: var(--space-10) var(--space-8);
    }
    
    .container {
        padding: 0 var(--space-5);
    }
}

/* Mobile Phones (320px - 480px) */
@media (max-width: 480px) {
    /* Prevent horizontal overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Even tighter spacing on small phones */
    .services,
    .about,
    .gallery,
    .contact {
        padding: var(--space-6) 0;
    }
    
    .footer {
        padding: var(--space-6) 0 var(--space-3);
    }
    
    .container {
        padding: 0 clamp(var(--space-3), 4vw, var(--space-4));
    }
    
    .hero {
        padding: var(--space-3) var(--space-3);
        min-height: 100vh;
    }
    
    .hero-overlay {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-logo {
        margin-bottom: var(--space-6);
    }
    
    .hero-logo img {
        height: 80px;
        max-width: 85vw;
    }

    .hero-content h1 {
        font-size: clamp(var(--text-2xl), 7vw, var(--text-3xl));
        line-height: 1.1;
        margin-bottom: var(--space-4);
    }

    .hero-content p {
        font-size: clamp(var(--text-base), 4vw, var(--text-lg));
        line-height: 1.5;
        margin-bottom: var(--space-8);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
        margin-top: var(--space-6);
    }
    
    .section-header h2 {
        font-size: clamp(var(--text-2xl), 7vw, var(--text-3xl));
    }

    .service-card {
        padding: clamp(var(--space-6), 6vw, var(--space-8)) clamp(var(--space-4), 5vw, var(--space-6));
    }

    .contact-form {
        padding: clamp(var(--space-6), 5vw, var(--space-8));
    }
    
    .testimonial-card {
        padding: clamp(var(--space-6), 4vw, var(--space-8));
    }
    
    .btn {
        min-height: 52px;
        padding: var(--space-4) var(--space-6);
        width: 100%;
        max-width: 320px;
    }
}

/* Ultra-Small Screens (Galaxy Fold, older phones) */
@media (max-width: 360px) {
    .container {
        padding: 0 var(--space-2);
    }
    
    .hero {
        padding: var(--space-2);
    }
    
    .hero-logo img {
        height: 60px;
        max-width: 80vw;
    }
    
    .hero-content h1 {
        font-size: var(--text-xl);
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: var(--text-sm);
        margin-bottom: var(--space-6);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
        margin-top: var(--space-4);
    }
    
    .btn {
        min-height: 48px;
        max-width: 280px;
        font-size: var(--text-sm);
    }
    
    .certification-container {
        height: 240px;
    }
    
    .stats {
        padding: var(--space-3) var(--space-2);
        gap: var(--space-2);
    }
    
    .stat h3 {
        font-size: var(--text-lg);
    }
    
    .stat p {
        font-size: var(--text-xs);
    }
    
    .service-card,
    .testimonial-card {
        padding: var(--space-4) var(--space-3);
    }
    
    .section-header h2 {
        font-size: var(--text-xl);
    }
    
    .nav-container {
        padding: 0 var(--space-3);
    }
    
    .contact-form {
        padding: var(--space-5);
    }
}

/* Ultra-Wide Landscape Phones */
@media (max-width: 896px) and (max-height: 414px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: var(--space-16) 0 var(--space-12);
    }
    
    .hero-content h1 {
        font-size: var(--text-4xl);
    }
    
    .services,
    .about,
    .testimonials,
    .contact {
        padding: var(--space-12) 0;
    }
}

/* Touch-friendly Mobile Optimization */
@media (max-width: 480px) and (pointer: coarse) {
    .btn {
        min-height: 52px;
        padding: var(--space-4) var(--space-6);
        font-size: var(--text-base);
    }
    
    .nav-link {
        padding: var(--space-4);
    }
    
    .hamburger {
        min-height: 48px;
        min-width: 48px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }
    
    .testimonial-card {
        padding: var(--space-6);
    }
    
    .testimonials .section-header h2 {
        font-size: var(--text-3xl);
    }
    
    .google-reviews-note {
        padding: var(--space-4);
    }
    
    .google-reviews-note p {
        font-size: var(--text-base);
    }
}

/* Video Elements Styling */

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.7) contrast(1.2) saturate(1.1);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(227, 30, 36, 0.2) 30%, 
        rgba(0, 0, 0, 0.8) 100%
    );
}

/* Service Video Containers */
.service-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    z-index: 1;
}

.service-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(0.8) contrast(1.1);
    transition: var(--transition-base);
}

.service-card:hover .service-video-container video {
    opacity: 0.8;
    filter: brightness(1) contrast(1.2);
    transform: scale(1.05);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card .service-icon {
    position: relative;
    z-index: 3;
}

/* About Video Container */
.about-video-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--gradient-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-2xl);
}

.about-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2xl);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
    cursor: pointer;
}

.about-video-container:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--gradient-racing);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: var(--transition-base);
    box-shadow: 0 0 30px rgba(227, 30, 36, 0.5);
}

.video-overlay:hover .play-button {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(227, 30, 36, 0.7);
}

.play-button i {
    font-size: var(--text-2xl);
    color: var(--white);
    margin-left: 4px;
}

/* Gallery Video Containers */
.gallery-video-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    background: var(--gradient-surface);
}

.gallery-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-video-container:hover .video-play-overlay {
    opacity: 1;
}

.gallery-video-container:hover video {
    transform: scale(1.05);
}

.video-play-overlay i {
    font-size: var(--text-4xl);
    color: var(--white);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: var(--transition-base);
}

.gallery-video-container:hover .video-play-overlay i {
    transform: scale(1);
    color: var(--primary-red);
    text-shadow: 0 0 30px rgba(227, 30, 36, 0.6);
}

/* Video Responsive Design */
@media (max-width: 768px) {
    .hero-video video {
        opacity: 0.2;
    }
    
    .certification-container {
        height: 350px;
    }
    
    .certification-overlay h4 {
        font-size: var(--text-lg);
    }
    
    .certification-overlay p {
        font-size: var(--text-sm);
    }
    
    .gallery-video-container {
        height: 200px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: var(--text-xl);
    }
    
    .service-video-container {
        height: 150px;
    }
}

@media (max-width: 480px) {
    /* Prevent about section overflow */
    .about-content {
        gap: var(--space-6);
    }
    
    .about-stats,
    .about-certification {
        max-width: 100%;
        overflow: hidden;
    }
    
    .certification-container {
        height: 280px;
        max-width: 100%;
    }
    
    .certification-overlay {
        padding: var(--space-4);
    }
    
    .certification-overlay h4 {
        font-size: var(--text-base);
    }
    
    .certification-overlay p {
        font-size: var(--text-xs);
    }
    
    .gallery-video-container {
        height: 180px;
    }
    
    .video-play-overlay i {
        font-size: var(--text-2xl);
    }
}

/* Smooth scrolling offset for fixed navbar */
html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

/* Comprehensive Dark Theme Overrides */
* {
    box-sizing: border-box;
}

/* Ensure all backgrounds are dark */
body, html {
    background-color: var(--surface-dark) !important;
    color: var(--charcoal) !important;
}

/* Dark theme for all potential white elements */
div, section, article, aside, nav, main, header, footer {
    background-color: transparent;
}

/* Form elements dark theme */
input, textarea, select, button {
    background-color: var(--surface-card) !important;
    border-color: var(--surface-hover) !important;
    color: var(--charcoal) !important;
}

input::placeholder, textarea::placeholder {
    color: var(--medium-gray) !important;
}

/* Ensure no white backgrounds on any containers */
.container, .content, .wrapper {
    background-color: transparent !important;
}

/* Override any potential white card backgrounds */
.card, .box, .panel {
    background-color: var(--surface-card) !important;
    border-color: rgba(227, 30, 36, 0.1) !important;
}

/* Google Reviews Integration Dark Theme */
.google-reviews-container {
    background: var(--surface-card) !important;
    color: var(--charcoal) !important;
}

.google-review-item {
    background: var(--surface-darker) !important;
    border-color: rgba(227, 30, 36, 0.1) !important;
}

/* Map container dark theme */
.map-container {
    background: var(--surface-card) !important;
    border-color: rgba(227, 30, 36, 0.1) !important;
}