/* ================================================
   AUTOHAUS KRÜGER - AWARD-WINNING PREMIUM DESIGN
   Ultra-Modern Interactive Website with Scroll Animations
   ================================================ */

/* ================================================
   CSS CUSTOM PROPERTIES
   ================================================ */
:root {
    /* Primary Colors */
    --gold: #C9A962;
    --gold-light: #D4BC7E;
    --gold-dark: #B8933D;
    --gold-glow: rgba(201, 169, 98, 0.4);
    
    /* Neutrals */
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --dark-gray: #2a2a2a;
    --medium-gray: #6e6e73;
    --light-gray: #f5f5f7;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    --gradient-dark: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
    --gradient-light: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    
    /* Timing Functions */
    --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 80px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 40px 100px rgba(0, 0, 0, 0.18);
    --shadow-gold: 0 10px 40px var(--gold-glow);
    
    /* Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Spacing */
    --nav-height: 72px;
    --section-padding: clamp(80px, 12vh, 160px);
    --container-width: 1400px;
    --container-padding: clamp(20px, 5vw, 80px);
}

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

html {
    font-size: 16px;
    scroll-behavior: auto; /* Lenis handles smooth scroll */
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

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

/* ================================================
   PRELOADER
   ================================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

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

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.logo-circle {
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: logoCircle 1.5s var(--ease-out-expo) forwards;
}

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

.preloader-text {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.preloader-word {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    animation: wordReveal 0.6s var(--ease-out-expo) forwards;
}

.preloader-word:nth-child(1) { animation-delay: 0.3s; }
.preloader-word:nth-child(2) { animation-delay: 0.4s; }
.preloader-word:nth-child(3) { animation-delay: 0.5s; }
.preloader-word:nth-child(4) { animation-delay: 0.6s; }

.preloader-word.highlight-gold {
    color: var(--gold);
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    margin: 0 auto;
    overflow: hidden;
}

.preloader-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    animation: progressBar 2s var(--ease-out-expo) forwards;
}

@keyframes progressBar {
    to { width: 100%; }
}

/* ================================================
   CUSTOM CURSOR
   ================================================ */
.cursor {
    display: none;
    pointer-events: none;
    position: fixed;
    z-index: 9999;
    mix-blend-mode: difference;
}

@media (hover: hover) and (pointer: fine) {
    .cursor {
        display: block;
    }
    
    body {
        cursor: none;
    }
    
    a, button, input, textarea, select, [data-cursor] {
        cursor: none;
    }
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    pointer-events: none;
}

.cursor-circle {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out-expo), 
                height 0.3s var(--ease-out-expo),
                border-color 0.3s,
                background 0.3s;
    pointer-events: none;
}

.cursor.hover .cursor-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
}

.cursor.hover-gold .cursor-dot {
    background: var(--gold);
}

.cursor.hover-gold .cursor-circle {
    border-color: var(--gold);
}

/* ================================================
   SCROLL PROGRESS
   ================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 9998;
    transform-origin: left;
    transform: scaleX(0);
    will-change: transform;
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

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

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

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    font-size: 15px;
    transition: transform 0.4s var(--ease-elastic), box-shadow 0.4s;
}

.nav-logo:hover .logo-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: var(--shadow-gold);
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
    transition: color 0.3s;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    position: relative;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
    border-radius: var(--radius-full);
    transition: color 0.3s, background 0.3s;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--light-gray);
    border-radius: inherit;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.4s;
}

.nav-link:hover::before {
    transform: scale(1);
    opacity: 1;
}

.nav-link:hover {
    color: var(--black);
}

.nav-link span {
    position: relative;
    z-index: 1;
}

/* Nav CTA */
.nav-cta {
    position: relative;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: var(--black);
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.nav-cta .btn-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
}

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

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.nav-cta:hover .btn-bg {
    transform: translateY(0);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger .line {
    width: 100%;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.4s var(--ease-out-expo);
    transform-origin: center;
}

.nav-toggle.active .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active .line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================================================
   MOBILE MENU
   ================================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
}

.mobile-menu.active {
    pointer-events: all;
}

.mobile-menu-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
    opacity: 0;
    transition: opacity 0.6s var(--ease-out-expo);
}

.mobile-menu.active .mobile-menu-bg {
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px var(--container-padding);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out-expo);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s, transform 0.6s var(--ease-out-expo);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-link-number {
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
}

.mobile-link-text {
    font-size: clamp(32px, 8vw, 56px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    transition: color 0.3s;
}

.mobile-link:hover .mobile-link-text {
    color: var(--gold);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s var(--ease-out-expo);
    transition-delay: 0.4s;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-contact a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.mobile-contact a:hover {
    color: var(--gold);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--nav-height) + 60px) var(--container-padding) 60px;
    overflow: hidden;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 169, 98, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        var(--gradient-light);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-10px); }
    75% { transform: translateY(-40px) translateX(20px); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-dark);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
}

.hero-title .title-line {
    display: block;
    overflow: hidden;
}

.hero-title .title-line.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--medium-gray);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: var(--container-padding);
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 700px;
    z-index: 1;
}

.hero-image-container {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 20%;
    left: -60px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 20%;
    right: -40px;
    animation-delay: 2s;
}

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

.floating-icon {
    font-size: 28px;
}

.floating-text {
    display: flex;
    flex-direction: column;
}

.floating-text strong {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.floating-text span {
    font-size: 12px;
    color: var(--medium-gray);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
}

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

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--dark-gray);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.hero-scroll-indicator span {
    font-size: 12px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================
   BRANDS MARQUEE
   ================================================ */
.brands-section {
    padding: 40px 0;
    background: var(--black);
    overflow: hidden;
}

.brands-marquee {
    position: relative;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
    flex-shrink: 0;
}

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

.brand-item {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.1em;
    white-space: nowrap;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.brand-item:hover {
    opacity: 1;
}

.brand-separator {
    font-size: 20px;
    color: var(--gold);
}

/* ================================================
   STORY SECTION (HORIZONTAL SCROLL)
   ================================================ */
.story-section {
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.story-wrapper {
    overflow: hidden;
}

.story-container {
    display: flex;
    width: fit-content;
}

.story-panel {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--container-padding);
    position: relative;
    flex-shrink: 0;
}

.story-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--dark) 0%, transparent 20%, transparent 80%, var(--dark) 100%);
    z-index: 1;
    pointer-events: none;
}

.panel-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: var(--white);
}

.panel-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.panel-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.panel-title .highlight {
    color: var(--gold);
}

.panel-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.panel-image {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    z-index: 0;
}

.panel-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    opacity: 0.6;
}

.panel-visual {
    position: absolute;
    bottom: var(--container-padding);
    right: var(--container-padding);
    z-index: 2;
}

.panel-number {
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.panel-stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-stats .stat {
    text-align: left;
}

.panel-stats .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.panel-stats .stat-number::after {
    content: '+';
}

.panel-stats .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

.story-progress {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    z-index: 10;
}

.story-progress .progress-bar {
    height: 100%;
    width: 0;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    transition: width 0.1s;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-light);
}

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

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

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-label.light {
    color: var(--gold);
}

.section-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

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

.section-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    line-height: 1.7;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.7);
}

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

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 48px 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-out-expo);
}

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

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

.service-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 28px;
    color: var(--gold);
    transition: transform 0.6s var(--ease-out-expo);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-desc {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-dark);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s, transform 0.4s var(--ease-out-expo), gap 0.3s;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link:hover {
    gap: 12px;
}

.service-link svg {
    width: 16px;
    height: 16px;
}

/* ================================================
   SHOWROOM SECTION
   ================================================ */
.showroom-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.showroom-parallax {
    position: absolute;
    inset: 0;
}

.parallax-layer {
    position: absolute;
    inset: 0;
    will-change: transform;
}

.parallax-layer img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
}

.showroom-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.showroom-content {
    position: relative;
    z-index: 2;
    padding: var(--section-padding) 0;
}

.showroom-text {
    max-width: 600px;
}

.showroom-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    color: var(--gold);
    font-size: 18px;
}

.showroom-stats {
    position: absolute;
    bottom: 60px;
    right: var(--container-padding);
    display: flex;
    gap: 24px;
    z-index: 3;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    text-align: center;
    color: var(--white);
}

.stat-card .stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s var(--ease-out-expo);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
    background: var(--light-gray);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: transform 0.4s, box-shadow 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 28px;
}

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

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

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 15px;
    font-weight: 600;
}

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

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    transition: all 0.3s;
}

.nav-arrow:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.nav-arrow svg {
    width: 20px;
    height: 20px;
}

.nav-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--gold);
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201, 169, 98, 0.2) 0%, transparent 60%),
        var(--gradient-light);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(201, 169, 98, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.cta-text {
    font-size: 20px;
    color: var(--medium-gray);
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--dark-gray);
}

.feature-check {
    color: var(--gold);
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

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

.btn-primary.large {
    padding: 22px 40px;
    font-size: 16px;
}

.btn-primary .btn-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
}

.btn-primary.light .btn-bg {
    background: var(--black);
}

.btn-primary .btn-text,
.btn-primary .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-primary .btn-icon {
    transition: transform 0.4s var(--ease-out-expo);
}

.btn-primary .btn-icon svg {
    width: 18px;
    height: 18px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover .btn-bg {
    transform: translateY(0);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: transparent;
    color: var(--black);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.4s, transform 0.4s var(--ease-out-expo);
}

.btn-secondary .btn-border {
    position: absolute;
    inset: 0;
    border: 2px solid var(--black);
    border-radius: inherit;
    transition: border-color 0.4s, background 0.4s;
}

.btn-secondary .btn-text {
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.btn-secondary:hover .btn-border {
    background: var(--black);
    border-color: var(--black);
}

/* Magnetic Effect */
.magnetic {
    transition: transform 0.3s var(--ease-out-expo);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--black);
    color: var(--white);
}

.footer-top {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

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

.footer-logo .logo-icon {
    background: var(--gradient-gold);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 32px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-contact .contact-item:hover {
    color: var(--gold);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    opacity: 0.6;
}

.footer-links h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ================================================
   BACK TO TOP
   ================================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ================================================
   ANIMATIONS
   ================================================ */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

[data-aos="reveal"] {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transition: clip-path 1s var(--ease-out-expo);
}

[data-aos="reveal"].aos-animate {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Stagger delays */
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }
[data-aos-delay="600"] { transition-delay: 0.6s; }

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1200px) {
    .hero-visual {
        width: 50%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    :root {
        --nav-height: 64px;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 600px;
        margin: 60px auto 0;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .showroom-stats {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 60px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .showroom-features {
        grid-template-columns: 1fr;
    }
    
    .showroom-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-card {
        width: 100%;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .story-section {
        display: none;
    }
    
    .panel-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ================================================
   SCROLLBAR
   ================================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

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

/* ================================================
   REDUCED MOTION
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
