/* ===== CSS VARIABLES ===== */
:root {
    --red: #C0001A;
    --red-dark: #8B0000;
    --red-deep: #5C0000;
    --gold: #D4AF37;
    --gold-light: #F0D060;
    --gold-bright: #FFE066;
    --gold-dark: #9C7A0A;
    --cream: #FFF8E7;
    --white: #ffffff;
    --black: #0a0a0a;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.55);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.4);
    --shadow-red: 0 0 30px rgba(192, 0, 26, 0.5);
    --font-display: 'Cinzel Decorative', serif;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Raleway', sans-serif;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, width 0.2s, height 0.2s;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.35s ease, width 0.3s, height 0.3s, opacity 0.3s;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.cursor.hovered {
    width: 6px;
    height: 6px;
}

.cursor-ring.hovered {
    width: 52px;
    height: 52px;
    opacity: 1;
    border-color: var(--gold-bright);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99997;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-emblem {
    width: 130px;
    height: 130px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: emblemPulse 2s ease-in-out infinite;
    margin-bottom: 32px;
}

.preloader-emblem::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: ringExpand 2s ease-in-out infinite;
}

.preloader-emblem::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.15);
    animation: ringExpand 2s ease-in-out 0.3s infinite;
}

.preloader-horse {
    font-size: 52px;
    filter: drop-shadow(0 0 20px var(--gold));
    animation: horseFloat 3s ease-in-out infinite;
}

.preloader-brand {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold);
    letter-spacing: 6px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    margin-bottom: 8px;
}

.preloader-sub {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.preloader-bar {
    width: 240px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px;
}

.preloader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold));
    border-radius: 2px;
    width: 0%;
    transition: width 0.05s linear;
    box-shadow: 0 0 12px var(--gold);
}

.preloader-pct {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
}

@keyframes emblemPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.05);
    }

    50% {
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.6), inset 0 0 30px rgba(212, 175, 55, 0.1);
    }
}

@keyframes ringExpand {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0;
    }
}

@keyframes horseFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ===== PARTICLES ===== */
#particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.8), 0 1px 0 rgba(212, 175, 55, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: none;
}

.nav-logo-icon {
    width: 46px;
    height: 46px;
    background: radial-gradient(circle, red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-main {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-logo-sub {
    font-family: var(--font-body);
    font-size: 8px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    cursor: none;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
    box-shadow: 0 0 8px var(--gold);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 10px 22px;
    border-radius: 2px;
    font-size: 11px !important;
    letter-spacing: 2px;
    transition: all var(--transition) !important;
    cursor: none;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
    box-shadow: var(--shadow-gold) !important;
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    padding: 4px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== PAGES SYSTEM ===== */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

/* ===== HERO SECTION ===== */
#home {
    position: relative;
    overflow: hidden;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--red-deep) 0%, var(--red) 35%, var(--red-dark) 70%, #1a0000 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(192, 0, 26, 0.3) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 8% 80px;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 7px 16px;
    border-radius: 2px;
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease 0.3s both;
}

.hero-badge span {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 80px);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 10px;
    animation: fadeUp 0.8s ease 0.5s both;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-title .gold {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(14px, 2vw, 18px);
    color: var(--gold-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease 0.65s both;
}

.hero-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 44px;
    font-weight: 300;
    animation: fadeUp 0.8s ease 0.8s both;
}

.hero-motto {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(212, 175, 55, 0.7);
    text-transform: uppercase;
    margin-bottom: 36px;
    animation: fadeUp 0.8s ease 0.9s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 1s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 16px 36px;
    border: none;
    border-radius: 2px;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: none;
    transition: all var(--transition);
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    padding: 15px 36px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: none;
    transition: all var(--transition);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-circle {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.25);
    position: absolute;
    animation: rotateSlow 30s linear infinite;
}

.hero-circle::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.hero-horse {
    font-size: 200px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 60px rgba(212, 175, 55, 0.6));
    animation: horseFloat 4s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeUp 1s ease 1.5s both;
    cursor: none;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== STATS STRIP ===== */
.stats-strip {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 36px 8%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ===== FEATURED CARS ===== */
.section {
    padding: 100px 8%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

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

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 20px;
}

.section-desc {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== CAR CARDS ===== */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.car-card {
    background: linear-gradient(145deg, rgba(30, 0, 0, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition);
    cursor: none;
    position: relative;
}

.car-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.car-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
}

.car-card:hover::before {
    opacity: 1;
}

.car-image {
    height: 200px;
    background: linear-gradient(135deg, var(--red-dark), var(--red-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
    overflow: hidden;
}

.car-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.6) 0%, transparent 60%);
}

.car-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 9px;
    letter-spacing: 2px;
    padding: 5px 10px;
    border-radius: 2px;
    z-index: 2;
    text-transform: uppercase;
}

.car-info {
    padding: 24px;
}

.car-brand {
    font-family: var(--font-heading);
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.car-name {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
}

.car-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.car-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.car-spec {
    font-family: var(--font-heading);
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.car-spec-icon {
    color: var(--gold);
    font-size: 11px;
}

.car-price {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.car-price span {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
    font-weight: 400;
}

.btn-card {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    padding: 12px;
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: none;
    transition: all var(--transition);
    border-radius: 2px;
}

.btn-card:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

/* ===== BRANDS TICKER ===== */
.brands-section {
    background: rgba(212, 175, 55, 0.04);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px 0;
    overflow: hidden;
}

.brands-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.ticker-wrap {
    overflow: hidden;
}

.ticker {
    display: flex;
    gap: 0;
    animation: ticker 20s linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 36px;
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color var(--transition);
}

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

.ticker-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.4;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    min-height: 45vh;
    background: linear-gradient(160deg, var(--red-deep) 0%, var(--red) 50%, #1a0000 100%);
    display: flex;
    align-items: flex-end;
    padding: 120px 8% 60px;
    position: relative;
    overflow: hidden;
}

.page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    color: var(--white);
    position: relative;
    z-index: 2;
}

.page-hero-title .gold {
    color: var(--gold);
}

.page-hero-sub {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

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

.about-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-emblem {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, var(--red) 0%, var(--red-dark) 50%, var(--red-deep) 100%);
    border: 3px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.2), 0 0 120px rgba(192, 0, 26, 0.3);
    position: relative;
}

.about-emblem::before {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-emblem::after {
    content: '';
    position: absolute;
    inset: -32px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.about-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-text p strong {
    color: var(--gold);
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.value-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 28px 24px;
    border-radius: 4px;
    transition: all var(--transition);
    cursor: none;
}

.value-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.value-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== SERVICES PAGE ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.service-card {
    background: linear-gradient(145deg, rgba(30, 0, 0, 0.6), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 4px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    cursor: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-6px);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.service-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin-bottom: 24px;
}

.service-list li {
    font-size: 12px;
    color: var(--text-muted);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li::before {
    content: '✦';
    color: var(--gold);
    font-size: 8px;
}

.btn-service {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: none;
    transition: all var(--transition);
    border-radius: 2px;
}

.btn-service:hover {
    background: var(--gold);
    color: var(--black);
}

/* ===== SPARE PARTS ===== */
.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.part-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.12);
    padding: 24px 16px;
    text-align: center;
    border-radius: 4px;
    transition: all var(--transition);
    cursor: none;
}

.part-item:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    transform: scale(1.03);
}

.part-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.part-name {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    background: linear-gradient(145deg, rgba(192, 0, 26, 0.15), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    padding: 40px 36px;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-info-heading {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail-text label {
    font-family: var(--font-heading);
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.contact-detail-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-link {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: none;
    transition: all var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    padding: 48px 44px;
}

.form-title {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--white);
    padding: 14px 16px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 13px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    cursor: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    background: rgba(212, 175, 55, 0.04);
}

.form-group select option {
    background: #1a0000;
    color: var(--white);
}

.form-group textarea {
    height: 130px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 16px;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: none;
    transition: all var(--transition);
    border-radius: 2px;
}

.btn-submit:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.form-success {
    display: none;
    text-align: center;
    padding: 30px;
}

.form-success.show {
    display: block;
}

.form-success .icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-question {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: none;
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--white);
    letter-spacing: 0.5px;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold);
    transition: all var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--black);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    padding-right: 40px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(30, 0, 0, 0.5), rgba(10, 10, 10, 0.7));
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    padding: 32px 28px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 14px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 60px;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: radial-gradient(circle, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 1px;
}

.testimonial-role {
    font-size: 11px;
    color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 50%, #1a0000 100%);
    padding: 100px 8%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 52px);
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

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

.cta-desc {
    font-size: 14px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 40px;
    font-weight: 300;
    position: relative;
}

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

/* ===== FOOTER ===== */
footer {
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 60px 8% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold);
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    margin-bottom: 6px;
}

.footer-brand-sub {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-brand-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-motto {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(212, 175, 55, 0.5);
    font-style: italic;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    cursor: none;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '—';
    color: var(--gold);
    font-size: 10px;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-contact-icon {
    color: var(--gold);
    font-size: 14px;
    margin-top: 1px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: gap;
    gap: 16px;
}

.footer-copy {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-copy span {
    color: var(--gold);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes scrollPulse {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }

    100% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

::-webkit-scrollbar-track {
    background: #080808;
}

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

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

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 0, 0, 0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.mobile-overlay.open {
    display: flex;
}

.mobile-overlay a {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    text-decoration: none;
    cursor: none;
    transition: color var(--transition);
    letter-spacing: 3px;
}

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

.mobile-close {
    position: absolute;
    top: 28px;
    right: 28px;
    background: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: none;
    transition: all var(--transition);
}

.mobile-close:hover {
    background: var(--gold);
    color: var(--black);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .section {
        padding: 70px 5%;
    }

    nav {
        padding: 0 5%;
    }

    .hero-content {
        padding: 120px 5% 60px;
    }

    .about-hero {
        padding: 120px 5% 40px;
    }

    .stats-strip {
        padding: 30px 5%;
    }
}