/* ============================================
   AYDEMIR KAPORTA — PREMIUM BLACK & GOLD THEME
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --dark: #0d1117;
    --dark-card: #151921;
    --dark-border: #1e2530;
    --gold: #c8a24e;
    --gold-light: #e8c96d;
    --gold-dark: #9c7a2e;
    --gold-glow: rgba(200, 162, 78, 0.3);
    --gold-subtle: rgba(200, 162, 78, 0.08);
    --white: #f5f0e8;
    --gray: #8a8a8a;
    --gray-light: #b0b0b0;
    --red: #ff4444;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s ease;
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-gold: 0 0 30px rgba(200, 162, 78, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--black);
}

html::-webkit-scrollbar { width: 8px; }
html::-webkit-scrollbar-track { background: var(--black); }
html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    border-radius: 4px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- PRELOADER ---- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner { text-align: center; }

.car-loader { margin-bottom: 24px; }
.loader-car-svg {
    width: 120px;
    height: 48px;
    animation: carBounce 1s ease-in-out infinite;
}
.loader-car-svg .wheel {
    animation: wheelSpin 0.5s linear infinite;
    transform-origin: center;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 12px;
    margin-bottom: 20px;
}
.loader-text span {
    display: inline-block;
    color: var(--gold);
    animation: letterPop 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}
.loader-text span:nth-child(1) { animation-delay: 0.1s; }
.loader-text span:nth-child(2) { animation-delay: 0.2s; }
.loader-text span:nth-child(3) { animation-delay: 0.3s; }
.loader-text span:nth-child(4) { animation-delay: 0.4s; }
.loader-text span:nth-child(5) { animation-delay: 0.5s; }
.loader-text span:nth-child(6) { animation-delay: 0.6s; }
.loader-text span:nth-child(7) { animation-delay: 0.7s; }

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--dark-border);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
}
.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 3px;
    animation: barFill 2s ease forwards;
}

/* ---- PARTICLE CANVAS ---- */
#particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 162, 78, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.nav-logo { flex-shrink: 0; }
.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(200, 162, 78, 0.3));
}
.navbar.scrolled .logo-img { height: 40px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    color: var(--gray-light);
    transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
    color: var(--gold);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-phones { display: flex; gap: 12px; flex-shrink: 0; }
.phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    padding: 6px 14px;
    border: 1px solid rgba(200, 162, 78, 0.3);
    border-radius: 100px;
    transition: var(--transition-fast);
    white-space: nowrap;
}
.phone-link:hover {
    background: rgba(200, 162, 78, 0.1);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(200, 162, 78, 0.2);
}
.phone-link svg { flex-shrink: 0; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(200, 162, 78, 0.05) 0%, var(--black) 70%);
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(200, 162, 78, 0.08), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 162, 78, 0.05), transparent 50%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(20px);
}
.hero-badge.revealed {
    animation: fadeUp 0.8s ease forwards;
}
.badge-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.badge-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
}
.hero-title.revealed {
    animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-title-line {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.typewriter-cursor {
    animation: cursorBlink 0.7s ease-in-out infinite;
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
    font-weight: 300;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--gray-light);
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
}
.hero-subtitle.revealed {
    animation: fadeUp 0.8s 0.4s ease forwards;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
}
.hero-cta-group.revealed {
    animation: fadeUp 0.8s 0.6s ease forwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 100px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 162, 78, 0.4);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}
.btn-primary:hover::before { left: 100%; }

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline:hover {
    background: rgba(200, 162, 78, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(200, 162, 78, 0.2);
}

.btn-full { width: 100%; justify-content: center; }

/* Hero scroll indicator */
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0;
}
.hero-scroll-indicator.revealed {
    animation: fadeUp 0.8s 0.8s ease forwards;
}
.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    position: relative;
    opacity: 0.6;
}
.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}

/* Hero car image */
.hero-car-image {
    position: absolute;
    bottom: -30px;
    right: -5%;
    width: 55%;
    max-width: 700px;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}
.floating-car {
    animation: floatCar 6s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(200, 162, 78, 0.2));
}

/* ---- SCROLL CAR SECTION ---- */
.scroll-car-section {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    z-index: 1;
}
.road-container {
    position: relative;
    width: 100%;
    height: 140px;
    margin-bottom: 40px;
}
.road {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--dark-border) 10%, var(--dark-border) 90%, transparent);
}
.road-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        var(--gold) 20px,
        var(--gold) 40px
    );
    opacity: 0.15;
    animation: roadMove 1s linear infinite;
}
.scroll-car {
    position: absolute;
    bottom: 18px;
    left: -10%;
    width: 180px;
    transition: none;
    filter: drop-shadow(0 4px 15px rgba(200, 162, 78, 0.3));
}
.car-svg .headlight {
    animation: headlightPulse 2s ease-in-out infinite;
}
.car-svg .taillight {
    animation: taillightPulse 1.5s ease-in-out infinite;
}
.car-svg .wheel-group-rear,
.car-svg .wheel-group-front {
    animation: none;
}
.car-svg .exhaust circle {
    animation: exhaustPuff 1s ease-in-out infinite;
}
.car-svg .exhaust circle:nth-child(2) { animation-delay: 0.3s; }
.car-svg .exhaust circle:nth-child(3) { animation-delay: 0.6s; }
.car-svg .speed-lines line {
    animation: speedLine 0.8s ease-in-out infinite;
}
.car-svg .speed-lines line:nth-child(2) { animation-delay: 0.2s; }
.car-svg .speed-lines line:nth-child(3) { animation-delay: 0.4s; }

.sparkle-trail {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    height: 40px;
    pointer-events: none;
}

.scroll-car-text {
    text-align: center;
    position: relative;
    z-index: 2;
}
.scroll-car-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 12px;
}
.scroll-car-text p {
    color: var(--gray-light);
    font-size: 16px;
}

/* ---- SECTION COMMON ---- */
.section {
    position: relative;
    padding: 100px 0;
    z-index: 1;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    padding: 6px 20px;
    border: 1px solid rgba(200, 162, 78, 0.2);
    border-radius: 100px;
    background: rgba(200, 162, 78, 0.05);
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
}
.title-decoration {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}
.title-decoration span {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: decorPulse 2s ease-in-out infinite;
}
.title-decoration span:nth-child(2) {
    width: 40px;
    border-radius: 4px;
    animation-delay: 0.3s;
}
.title-decoration span:nth-child(3) {
    animation-delay: 0.6s;
}

/* ---- ABOUT ---- */
.about-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.about-image-wrapper {
    position: relative;
}
.about-image {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 4/3;
}
.about-image-border {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(200, 162, 78, 0.2);
    border-radius: 20px;
    pointer-events: none;
    animation: borderGlow 3s ease-in-out infinite;
}
.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(200, 162, 78, 0.3);
}
.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}
.exp-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--gold);
}
.about-content p {
    color: var(--gray-light);
    margin-bottom: 16px;
    font-size: 15px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--gold-subtle);
    border: 1px solid rgba(200, 162, 78, 0.15);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.about-feature:hover {
    background: rgba(200, 162, 78, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 162, 78, 0.15);
}
.feature-icon { flex-shrink: 0; }

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    position: relative;
    text-align: center;
    padding: 32px 16px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 162, 78, 0.3);
    box-shadow: var(--shadow-gold);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}
.stat-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(200, 162, 78, 0.15), transparent 70%);
    pointer-events: none;
}

/* ---- SERVICES ---- */
.services-section {
    background: linear-gradient(180deg, var(--black) 0%, rgba(13,17,23,0.5) 50%, var(--black) 100%);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    position: relative;
    padding: 40px 28px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 162, 78, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), var(--shadow-gold);
}

.service-icon-wrapper {
    position: relative;
    display: inline-flex;
    margin-bottom: 24px;
}
.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 162, 78, 0.08);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: rgba(200, 162, 78, 0.15);
    transform: scale(1.05);
}
.service-icon-ring {
    position: absolute;
    inset: -6px;
    border: 2px dashed rgba(200, 162, 78, 0.2);
    border-radius: 50%;
    animation: ringRotate 10s linear infinite;
}
.service-card:hover .service-icon-ring {
    border-color: rgba(200, 162, 78, 0.4);
    animation-duration: 4s;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--white);
    transition: var(--transition-fast);
}
.service-card:hover h3 { color: var(--gold); }
.service-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.service-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(200, 162, 78, 0.03) 50%,
        transparent 60%
    );
    transform: rotate(0deg);
    transition: none;
    pointer-events: none;
}
.service-card:hover .service-card-shine {
    animation: cardShine 1.5s ease forwards;
}

/* ---- GALLERY ---- */
.gallery-section {
    background: var(--dark);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-icon {
    color: var(--gold);
    margin-bottom: 12px;
    transform: translateY(10px);
    transition: var(--transition);
}
.gallery-item:hover .gallery-icon { transform: translateY(0); }
.gallery-label {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(200, 162, 78, 0.2);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 40px;
    color: var(--gold);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 1;
}
.lightbox-close:hover { transform: rotate(90deg); color: var(--white); }

/* ---- WHY SECTION ---- */
.why-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    position: relative;
    padding: 36px 28px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    transition: var(--transition);
    overflow: hidden;
}
.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 162, 78, 0.2);
    box-shadow: var(--shadow-gold);
}
.why-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: rgba(200, 162, 78, 0.1);
    line-height: 1;
    margin-bottom: 12px;
    transition: var(--transition);
}
.why-card:hover .why-number { color: rgba(200, 162, 78, 0.25); }
.why-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--gold);
}
.why-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}
.why-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.6s ease;
}
.why-card:hover .why-card-line { width: 100%; }

/* ---- CONTACT ---- */
.contact-section {
    background: linear-gradient(180deg, var(--black), var(--dark));
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
    transition: var(--transition);
}
.contact-card:hover {
    border-color: rgba(200, 162, 78, 0.2);
    transform: translateX(8px);
    box-shadow: var(--shadow-gold);
}
.contact-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 162, 78, 0.08);
    border-radius: 12px;
    flex-shrink: 0;
}
.contact-card h4 {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 4px;
    font-weight: 600;
}
.contact-card p, .contact-card a {
    font-size: 15px;
    color: var(--gray-light);
}
.contact-card a:hover { color: var(--gold); }

/* Contact form */
.contact-form-wrapper {
    padding: 40px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
}
.form-group {
    position: relative;
    margin-bottom: 28px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--dark-border);
    padding: 14px 0;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group label {
    position: absolute;
    left: 0;
    top: 14px;
    font-size: 14px;
    color: var(--gray);
    pointer-events: none;
    transition: var(--transition);
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    font-size: 11px;
    color: var(--gold);
}
.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}
.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

/* Map */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
    box-shadow: var(--shadow-card);
}

/* ---- FOOTER ---- */
.footer {
    position: relative;
    padding: 60px 0 20px;
    background: var(--black);
    border-top: 1px solid var(--dark-border);
    z-index: 1;
}
.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: var(--gold);
    box-shadow: 0 0 40px var(--gold-glow), 0 0 80px var(--gold-glow);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--dark-border);
}
.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(200, 162, 78, 0.2));
}
.footer-brand p {
    color: var(--gray);
    font-size: 14px;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 16px;
}
.footer-links a,
.footer-contact a,
.footer-contact p {
    display: block;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
}
.footer-bottom p {
    color: var(--gray);
    font-size: 13px;
}

/* ---- FLOATING CALL BUTTON ---- */
.floating-call {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(200, 162, 78, 0.4);
    transition: var(--transition);
    animation: floatBtn 3s ease-in-out infinite;
}
.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(200, 162, 78, 0.5);
}
.call-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    animation: pulse 2s ease-out infinite;
}
.call-pulse-2 { animation-delay: 1s; }

/* ---- SCROLL REVEAL ---- */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal="left"] {
    transform: translateX(-60px);
}
[data-reveal="right"] {
    transform: translateX(60px);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============ KEYFRAME ANIMATIONS ============ */

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes letterPop {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes barFill {
    to { width: 100%; }
}
@keyframes carBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes wheelSpin {
    to { transform: rotate(360deg); }
}
@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
@keyframes scrollDot {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 22px; }
}
@keyframes floatCar {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-15px) translateX(5px); }
    75% { transform: translateY(-8px) translateX(-5px); }
}
@keyframes roadMove {
    to { background-position: -60px 0; }
}
@keyframes headlightPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; fill: #ffe680; }
}
@keyframes taillightPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}
@keyframes exhaustPuff {
    0% { opacity: 0.3; transform: translateX(0) scale(1); }
    100% { opacity: 0; transform: translateX(-15px) scale(1.5); }
}
@keyframes speedLine {
    0% { opacity: 0; transform: translateX(0); }
    50% { opacity: 0.5; }
    100% { opacity: 0; transform: translateX(-20px); }
}
@keyframes ringRotate {
    to { transform: rotate(360deg); }
}
@keyframes cardShine {
    from { transform: rotate(0deg) translate(-50%, -50%); }
    to { transform: rotate(360deg) translate(50%, 50%); }
}
@keyframes borderGlow {
    0%, 100% { border-color: rgba(200, 162, 78, 0.15); }
    50% { border-color: rgba(200, 162, 78, 0.35); }
}
@keyframes decorPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}
@keyframes pulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.8); }
}
@keyframes floatBtn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes goldGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(200,162,78,0.2); }
    50% { box-shadow: 0 0 20px rgba(200,162,78,0.4), 0 0 40px rgba(200,162,78,0.2); }
}
@keyframes sparkle {
    0% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
    100% { opacity: 0; transform: scale(0) rotate(360deg); }
}

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

@media (max-width: 1024px) {
    .nav-phones { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(200, 162, 78, 0.1);
    }
    .nav-menu.open { right: 0; }
    .nav-link {
        font-size: 16px;
        padding: 14px 16px;
        width: 100%;
        border-radius: 12px;
    }
    .nav-link:hover { background: rgba(200, 162, 78, 0.05); }

    .hero-car-image { width: 80%; opacity: 0.08; right: -10%; }
    .hero-title { font-size: clamp(32px, 8vw, 52px); }

    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 0 auto; }

    .scroll-car { width: 120px; }
    .about-experience-badge { right: 10px; bottom: -15px; padding: 14px; }
    .exp-number { font-size: 36px; }

    .contact-form-wrapper { padding: 24px; }
    .floating-call { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 70px 0; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .stat-card { padding: 20px 12px; }
    .stat-number { font-size: 32px; }
}
