/* =========================================
   GTA CUSTOMS INC. — Design System & Styles
   Brand: Burnt Orange #e16f26 | Dark Charcoal #2d2d2d
   Light, warm, premium automotive feel
   ========================================= */

/* ---------- CSS Variables ---------- */
:root {
    /* Brand Colors */
    --orange: #e16f26;
    --orange-dark: #c45d1a;
    --orange-light: #f5a66a;
    --orange-glow: rgba(225, 111, 38, 0.15);
    --orange-subtle: rgba(225, 111, 38, 0.06);

    /* Neutrals */
    --black: #1a1a1a;
    --charcoal: #2d2d2d;
    --gray-900: #333333;
    --gray-700: #555555;
    --gray-500: #888888;
    --gray-300: #cccccc;
    --gray-200: #e2e2e2;
    --gray-100: #f0ece8;
    --gray-50: #f8f5f2;
    --cream: #fdfbf9;
    --white: #ffffff;

    /* Semantic */
    --text-primary: #2d2d2d;
    --text-secondary: #555555;
    --text-muted: #888888;
    --surface: #ffffff;
    --surface-warm: #f8f5f2;
    --surface-accent: #f0ece8;
    --border: #e2e2e2;
    --border-light: #f0ece8;

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 50px rgba(0,0,0,0.12);
    --shadow-orange: 0 4px 20px rgba(225, 111, 38, 0.25);

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast: 200ms;
    --duration: 350ms;
    --duration-slow: 600ms;

    /* Layout */
    --container: 1200px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--cream);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ---------- Section Headers ---------- */
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 2rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 2px;
    background: var(--orange);
    transform: translateY(-50%);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
}

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

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--duration) var(--ease);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    box-shadow: var(--shadow-orange);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--gray-300);
}

.btn--ghost:hover {
    border-color: var(--charcoal);
    background: var(--charcoal);
    color: var(--white);
}

/* Ghost button inside hero (white variant) */
.hero .btn--ghost {
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.35);
}

.hero .btn--ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
}

.btn--outline {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}

.btn--outline:hover {
    background: var(--orange);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

/* ============================================
   LOGO INTRO
   ============================================ */
.intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0s 0.8s;
}

.intro--done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro__scene {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xl);
}

/* Logo with wipe reveal */
.intro__logo-wrap {
    position: relative;
    overflow: hidden;
}

.intro__logo-img {
    width: 220px;
    height: auto;
    opacity: 0;
    animation: introFadeIn 0.6s ease 0.2s forwards;
}

@keyframes introFadeIn {
    to { opacity: 1; }
}

/* Orange wipe bar that sweeps across the logo */
.intro__wipe {
    position: absolute;
    top: 0;
    left: -10%;
    width: 8%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--orange), var(--orange), transparent);
    opacity: 0.6;
    animation: introWipe 1s var(--ease) 0.4s forwards;
}

@keyframes introWipe {
    0% { left: -10%; }
    100% { left: 110%; }
}

/* Car SVG draws itself in */
.intro__car {
    width: 280px;
    height: auto;
    opacity: 0;
    animation: introFadeIn 0.3s ease 0.8s forwards;
}

.intro__car-body,
.intro__car-roof,
.intro__car-wheel,
.intro__car-hub,
.intro__car-spoke,
.intro__car-window,
.intro__car-detail,
.intro__car-ground {
    stroke: var(--orange);
    fill: none;
}

.intro__car-body {
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    animation: introDraw 1.2s var(--ease-out) 0.9s forwards;
}

.intro__car-roof {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: introDraw 0.8s var(--ease-out) 1.1s forwards;
}

.intro__car-window {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    opacity: 0.6;
    animation: introDraw 0.6s var(--ease-out) 1.3s forwards;
}

.intro__car-wheel {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: introDraw 0.5s var(--ease-out) 1.2s forwards;
}

.intro__car-hub {
    stroke-dasharray: 55;
    stroke-dashoffset: 55;
    stroke-width: 1.5;
    animation: introDraw 0.4s var(--ease-out) 1.4s forwards;
}

.intro__car-spoke {
    stroke-dasharray: 85;
    stroke-dashoffset: 85;
    stroke-width: 0.8;
    opacity: 0.4;
    animation: introDraw 0.4s var(--ease-out) 1.5s forwards;
}

.intro__car-detail {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    opacity: 0.5;
    animation: introDraw 0.5s var(--ease-out) 1.5s forwards;
}

.intro__car-ground {
    opacity: 0;
    animation: introFadeIn 0.4s ease 1.6s forwards;
}

@keyframes introDraw {
    to { stroke-dashoffset: 0; }
}

/* Streak effect — car zooms off */
.intro__streak {
    position: absolute;
    bottom: 20%;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange));
    transform: translateX(-50%);
    animation: introStreak 0.4s var(--ease) 1.8s forwards;
}

@keyframes introStreak {
    0% { width: 0; opacity: 1; }
    60% { width: 300px; opacity: 1; }
    100% { width: 500px; opacity: 0; }
}

/* Car zooms off to the right */
.intro__car.zoom-off {
    animation: carZoom 0.5s var(--ease) forwards;
}

@keyframes carZoom {
    0% { transform: translateX(0) scale(1); opacity: 1; }
    100% { transform: translateX(200px) scale(0.8); opacity: 0; }
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--charcoal);
    transition: transform var(--duration) var(--ease);
}

.topbar--hidden {
    transform: translateY(-100%);
}

.topbar__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar__left,
.topbar__right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.65);
    transition: color var(--duration-fast);
}

.topbar__item:hover {
    color: var(--orange);
}

.topbar__item svg {
    opacity: 0.5;
}

.topbar__divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.15);
}

.topbar__social {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.topbar__social a {
    color: rgba(255,255,255,0.45);
    display: flex;
    transition: color var(--duration-fast);
}

.topbar__social a:hover {
    color: var(--orange);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all var(--duration) var(--ease), top var(--duration) var(--ease);
}

.nav--scrolled {
    top: 0;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.nav__logo img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter var(--duration);
}

.nav--scrolled .nav__logo img {
    filter: brightness(0) invert(1);
}

.nav__center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__links {
    display: flex;
    gap: var(--space-xl);
}

.nav__links > li > a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color var(--duration-fast) var(--ease);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.5rem 0;
}

.nav__links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--duration) var(--ease-out);
}

.nav__links > li > a:hover {
    color: var(--white);
}

.nav__links > li > a:hover::after {
    width: 100%;
}

/* Services dropdown + chevron */
.nav__dropdown {
    position: static;
}

.nav__dropdown > a svg {
    transition: transform var(--duration-fast) var(--ease);
    opacity: 0.5;
}

.nav__dropdown:hover > a svg {
    transform: rotate(180deg);
    opacity: 1;
}

/* Mega menu */
.nav__mega {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--orange);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease), visibility 0s var(--duration);
}

.nav__dropdown:hover .nav__mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease), visibility 0s 0s;
}

.nav__mega-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: var(--space-2xl);
}

.nav__mega-heading {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border-light);
}

.nav__mega-col a {
    display: block;
    padding: 0.45rem 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--duration-fast), padding-left var(--duration-fast);
}

.nav__mega-col a::after {
    display: none;
}

.nav__mega-col a:hover {
    color: var(--orange);
    padding-left: 0.5rem;
}

.nav__mega-feature {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.nav__mega-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.nav__mega-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

.nav__cta {
    font-size: 0.8rem;
    padding: 0.55rem 1.4rem;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}

.nav__hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all var(--duration) var(--ease);
    transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.nav__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Mobile fullscreen menu */
.nav__mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--charcoal);
    z-index: 999;
    padding: calc(var(--nav-height) + 36px + var(--space-2xl)) var(--space-xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration) var(--ease), visibility 0s var(--duration);
    overflow-y: auto;
}

.nav__mobile.active {
    opacity: 1;
    visibility: visible;
    transition: opacity var(--duration) var(--ease), visibility 0s 0s;
}

.nav__mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.nav__mobile-links > li > a {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    color: var(--white);
    transition: color var(--duration-fast);
}

.nav__mobile-links > li > a:hover {
    color: var(--orange);
}

/* Mobile dropdown */
.nav__mobile-dropdown {
    width: 100%;
    text-align: center;
}

.nav__mobile-dropdown-trigger {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--duration-fast);
}

.nav__mobile-dropdown-trigger:hover {
    color: var(--orange);
}

.nav__mobile-dropdown-trigger svg {
    color: var(--orange);
    transition: transform var(--duration) var(--ease);
}

.nav__mobile-dropdown-trigger.active svg {
    transform: rotate(180deg);
}

.nav__mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: var(--space-md) 0;
}

.nav__mobile-dropdown-menu.active {
    display: flex;
}

.nav__mobile-dropdown-menu a {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    transition: color var(--duration-fast);
    padding: 0.3rem 0;
}

.nav__mobile-dropdown-menu a:hover {
    color: var(--orange);
}

.nav__mobile-info {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-md);
}

.nav__mobile-info a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--orange);
    transition: color var(--duration-fast);
}

.nav__mobile-info a:hover {
    color: var(--orange-light);
}

.nav__mobile-cta {
    margin-top: var(--space-md);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl) var(--space-3xl);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Hero background video */
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    transition: background 1.2s ease;
}

/* Darken slightly once content appears */
.hero.hero--revealed .hero__gradient {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.75) 100%);
}

.hero__noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

/* Hidden state on load — video plays alone first */
.hero__content--hidden {
    opacity: 0;
    transform: translateY(40px);
}

.hero__content--visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children on reveal */
.hero__content--visible .hero__badge {
    animation: heroFadeUp 0.8s var(--ease-out) 0s both;
}
.hero__content--visible .hero__title {
    animation: heroFadeUp 0.8s var(--ease-out) 0.15s both;
}
.hero__content--visible .hero__subtitle {
    animation: heroFadeUp 0.8s var(--ease-out) 0.3s both;
}
.hero__content--visible .hero__actions {
    animation: heroFadeUp 0.8s var(--ease-out) 0.45s both;
}
.hero__content--visible .hero__stats {
    animation: heroFadeUp 0.8s var(--ease-out) 0.6s both;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1.25rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-2xl);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: var(--space-xl);
}

.hero__title-accent {
    color: var(--orange);
    display: block;
}

.hero__subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-4xl);
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    margin-top: var(--space-2xl);
}

.hero__stat {
    text-align: center;
    white-space: nowrap;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--orange);
    line-height: 1;
}

.hero__stat-plus,
.hero__stat-unit {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--orange);
}

.hero__stat-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
    white-space: nowrap;
}

.hero__stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255,255,255,0.5);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.8s var(--ease-out);
}

.hero--revealed .hero__scroll {
    opacity: 1;
    transition-delay: 1s;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.01% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   PARTNERS MARQUEE
   ============================================ */
.marquee {
    padding: var(--space-3xl) 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.marquee__track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee__inner {
    display: flex;
    align-items: center;
    gap: var(--space-4xl);
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee__logo {
    height: 70px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all var(--duration) var(--ease);
}

.marquee__logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.marquee__xpel {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    color: var(--gray-500);
    opacity: 0.5;
    transition: all var(--duration) var(--ease);
}

.marquee__xpel:hover {
    opacity: 1;
    color: var(--orange);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--space-5xl) 0;
    background: var(--cream);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--duration) var(--ease);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-light);
}

.service-card--featured {
    flex-direction: column;
}

.service-card__img-wrap {
    padding: var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-warm);
    min-height: 180px;
    transition: background var(--duration) var(--ease);
}

.service-card:hover .service-card__img-wrap {
    background: var(--orange-subtle);
}

.service-card--featured .service-card__img-wrap {
    min-height: 180px;
}

.service-card__img {
    max-height: 120px;
    width: auto;
    transition: transform var(--duration) var(--ease);
}

.service-card:hover .service-card__img {
    transform: scale(1.08);
}

.service-card__content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.service-card__desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    flex: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    transition: gap var(--duration) var(--ease);
}

.service-card:hover .service-card__link {
    gap: var(--space-md);
}

/* Additional services row */
.services__more {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--border-light);
}

.services__more-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.service-mini {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    transition: color var(--duration) var(--ease);
    cursor: default;
}

.service-mini:hover {
    color: var(--orange);
}

.service-mini__icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity var(--duration) var(--ease);
}

.service-mini:hover .service-mini__icon {
    opacity: 1;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--white);
    overflow: hidden;
}

.about__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--surface-warm);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about__quote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    font-style: italic;
    color: var(--orange);
    line-height: 1.5;
    padding-left: var(--space-xl);
    border-left: 3px solid var(--orange);
    margin-bottom: var(--space-2xl);
}

.about__quote cite {
    display: block;
    font-size: 0.85rem;
    font-style: normal;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.about__text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.about__feature {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.about__feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-subtle);
    border-radius: var(--radius-md);
    color: var(--orange);
}

.about__feature-num {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--orange);
    opacity: 0.8;
    width: 48px;
    text-align: center;
}

.about__feature strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
}

.about__feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.about__visual {
    position: relative;
}

.about__image-stack {
    position: relative;
    height: 550px;
}

.about__img {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.about__img--1 {
    width: 70%;
    height: 65%;
    top: 0;
    right: 0;
    z-index: 2;
}

.about__img--2 {
    width: 60%;
    height: 55%;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.about__image-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid var(--orange);
    border-radius: var(--radius-lg);
    bottom: 15%;
    right: 5%;
    z-index: 0;
    opacity: 0.3;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: var(--space-5xl) 0;
    background: var(--surface-warm);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease);
}

.gallery__item:hover img {
    transform: scale(1.06);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    padding: 0.3rem 0.8rem;
    background: var(--orange);
    border-radius: var(--radius-sm);
}

.gallery__cta {
    text-align: center;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.reviews__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.reviews__stars {
    display: flex;
    gap: 2px;
    color: var(--orange);
}

.reviews__score {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.review-card {
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--duration) var(--ease);
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange-light);
}

.review-card__stars {
    display: flex;
    gap: 2px;
    color: var(--orange);
    margin-bottom: var(--space-lg);
}

.review-card__text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.review-card__author strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.review-card__author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: var(--space-5xl) 0;
    background: var(--cream);
}

.faq__layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-4xl);
    align-items: start;
}

.faq__header .section-title {
    margin-bottom: var(--space-lg);
}

.faq__intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: border-color var(--duration) var(--ease);
}

.faq__item.active {
    border-color: var(--orange-light);
}

.faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    text-align: left;
    gap: var(--space-md);
    transition: color var(--duration-fast);
}

.faq__trigger:hover {
    color: var(--orange);
}

.faq__chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--duration) var(--ease);
}

.faq__item.active .faq__chevron {
    transform: rotate(180deg);
    color: var(--orange);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration) var(--ease);
}

.faq__answer p {
    padding: 0 var(--space-xl) var(--space-xl);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============================================
   QUOTE FORM
   ============================================ */
.quote-section {
    padding: var(--space-5xl) 0;
    background: var(--white);
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
}

.quote-section__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: start;
}

.quote-section__info .section-title {
    margin-bottom: var(--space-lg);
}

.quote-section__info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

.quote-section__trust {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.quote-section__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.quote-section__trust-item svg {
    flex-shrink: 0;
    color: var(--orange);
}

.quote-form {
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.quote-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.quote-form__field {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.quote-form__field label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.quote-form__field input,
.quote-form__field select,
.quote-form__field textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text-primary);
    transition: border-color var(--duration-fast);
    outline: none;
}

.quote-form__field input:focus,
.quote-form__field select:focus,
.quote-form__field textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-glow);
}

.quote-form__field textarea {
    resize: vertical;
    min-height: 80px;
}

/* ============================================
   CONTACT / LOCATIONS
   ============================================ */
.contact {
    padding: var(--space-5xl) 0;
    background: var(--surface-warm);
}

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

.contact__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--duration) var(--ease);
}

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

.contact__card-badge {
    padding: var(--space-md) var(--space-xl);
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact__card-map {
    height: 200px;
    background: var(--gray-100);
    overflow: hidden;
}

.contact__card-map iframe {
    width: 100%;
    height: 100%;
}

.contact__card-info {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact__detail svg {
    flex-shrink: 0;
    color: var(--orange);
    margin-top: 2px;
}

.contact__detail a {
    color: var(--orange);
    font-weight: 600;
    transition: color var(--duration-fast);
}

.contact__detail a:hover {
    color: var(--orange-dark);
}

.contact__hours {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-2xl);
}

.contact__hours-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    color: var(--text-secondary);
}

.contact__hours-inner > svg {
    color: var(--orange);
    flex-shrink: 0;
}

.contact__hours-grid {
    display: flex;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.contact__hours-grid span {
    font-size: 0.95rem;
}

.contact__email {
    color: var(--orange) !important;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    transition: color var(--duration-fast);
}

.contact__email:hover {
    color: var(--orange-dark) !important;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: var(--space-5xl) 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 20% 50%, rgba(225, 111, 38, 0.1), transparent),
        radial-gradient(ellipse 50% 80% at 80% 50%, rgba(225, 111, 38, 0.05), transparent),
        url('images/cta_bg.jpg') center/cover no-repeat;
    opacity: 0.08;
}

.final-cta__inner {
    position: relative;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.final-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.final-cta__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-2xl);
}

.final-cta__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .btn--ghost {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.final-cta .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    background: var(--black);
    color: rgba(255, 255, 255, 0.6);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--duration) var(--ease);
}

.footer__social a:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(225, 111, 38, 0.1);
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: var(--space-xl);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links a {
    font-size: 0.9rem;
    transition: color var(--duration-fast);
}

.footer__links a:hover {
    color: var(--orange);
}

.footer__contact-item {
    margin-bottom: var(--space-lg);
}

.footer__contact-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xs);
}

.footer__contact-item span {
    display: block;
    font-size: 0.85rem;
}

.footer__contact-item a {
    font-size: 0.85rem;
    color: var(--orange);
    transition: color var(--duration-fast);
}

.footer__contact-item a:hover {
    color: var(--orange-light);
}

.footer__bottom {
    padding-top: var(--space-xl);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --nav-height: 64px;
    }

    .topbar {
        display: none;
    }

    .nav {
        top: 0;
    }

    .nav__center,
    .nav__cta {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

    .nav__mobile {
        padding-top: calc(var(--nav-height) + var(--space-2xl));
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card--featured .service-card__img-wrap {
        min-height: 160px;
    }

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

    .about__bg {
        display: none;
    }

    .about__image-stack {
        height: 400px;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq__layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .quote-section__layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }

    .hero {
        min-height: 100vh;
        padding: 0 var(--space-lg) var(--space-2xl);
    }

    .hero__title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero__stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
        padding: var(--space-md);
    }

    .hero__stat-divider {
        display: none;
    }

    .hero__stat-number {
        font-size: 1.6rem;
    }

    .hero__scroll {
        display: none;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .services__more-grid {
        gap: var(--space-xl);
    }

    .about__image-stack {
        height: 300px;
    }

    .about__img--1 {
        width: 65%;
        height: 60%;
    }

    .about__img--2 {
        width: 55%;
        height: 50%;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact__hours-inner {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .contact__hours-grid {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .quote-form__row {
        grid-template-columns: 1fr;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .hero__badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .hero__stat-number {
        font-size: 2rem;
    }

    .services__more-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
}
