/* ═══════════════════════════════════════════════════════════
   APOLLO HYPERCARS — Premium Website Styles
   Colors: Gold (#D4A843, #F5D56E, #B8860B) & Black (#000, #0a0a0a, #111)
   Features: 3D effects, parallax, gradients, golden border
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    --gold-primary: #D4A843;
    --gold-light: #F5D56E;
    --gold-dark: #B8860B;
    --gold-deep: #8B6914;
    --gold-pale: #FFF3C4;
    --black-pure: #000000;
    --black-rich: #0a0a0a;
    --black-soft: #111111;
    --black-card: #141414;
    --black-border: #1a1a1a;
    --gray-dark: #222222;
    --gray-mid: #333333;
    --gray-text: #999999;
    --white: #ffffff;
    --gold-gradient: linear-gradient(135deg, #B8860B, #D4A843, #F5D56E, #D4A843, #B8860B);
    --gold-gradient-h: linear-gradient(90deg, #B8860B, #D4A843, #F5D56E, #D4A843, #B8860B);
    --gold-glow: 0 0 20px rgba(212, 168, 67, 0.3), 0 0 40px rgba(212, 168, 67, 0.1);
    --gold-text-shadow: 0 0 10px rgba(212, 168, 67, 0.5);
    --border-width: 4px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--black-pure);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold-primary);
    color: var(--black-pure);
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black-rich);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 4px;
}

/* ═══════════════════════════════════════
   GOLDEN 3D BORDER FRAME
   ═══════════════════════════════════════ */
.golden-border-frame {
    position: relative;
    margin: 12px;
    border: var(--border-width) solid transparent;
    border-image: linear-gradient(135deg, #B8860B, #F5D56E, #D4A843, #F5D56E, #B8860B) 1;
    box-shadow:
        inset 0 0 30px rgba(212, 168, 67, 0.05),
        0 0 15px rgba(212, 168, 67, 0.15),
        0 0 30px rgba(212, 168, 67, 0.08),
        0 0 60px rgba(212, 168, 67, 0.04);
    overflow: hidden;
}

.golden-border-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid rgba(212, 168, 67, 0.15);
    pointer-events: none;
    z-index: 9999;
}

.golden-border-frame::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(212, 168, 67, 0.08);
    pointer-events: none;
    z-index: 9999;
}

/* Border Corners — 3D ornaments */
.border-corner {
    position: fixed;
    width: 40px;
    height: 40px;
    z-index: 10000;
    pointer-events: none;
}
.border-corner::before,
.border-corner::after {
    content: '';
    position: absolute;
    background: var(--gold-gradient);
    box-shadow: var(--gold-glow);
}
.border-corner.top-left { top: 12px; left: 12px; }
.border-corner.top-left::before { width: 40px; height: 3px; top: 0; left: 0; }
.border-corner.top-left::after { width: 3px; height: 40px; top: 0; left: 0; }
.border-corner.top-right { top: 12px; right: 12px; }
.border-corner.top-right::before { width: 40px; height: 3px; top: 0; right: 0; }
.border-corner.top-right::after { width: 3px; height: 40px; top: 0; right: 0; }
.border-corner.bottom-left { bottom: 12px; left: 12px; }
.border-corner.bottom-left::before { width: 40px; height: 3px; bottom: 0; left: 0; }
.border-corner.bottom-left::after { width: 3px; height: 40px; bottom: 0; left: 0; }
.border-corner.bottom-right { bottom: 12px; right: 12px; }
.border-corner.bottom-right::before { width: 40px; height: 3px; bottom: 0; right: 0; }
.border-corner.bottom-right::after { width: 3px; height: 40px; bottom: 0; right: 0; }

/* Animated border glow */
.border-glow {
    position: fixed;
    inset: 12px;
    pointer-events: none;
    z-index: 9998;
    border: 1px solid transparent;
    background: transparent;
}
.border-glow::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(90deg, transparent, rgba(245, 213, 110, 0.3), transparent);
    background-size: 200% 100%;
    animation: borderShine 4s linear infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 1px;
}

@keyframes borderShine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ═══════════════════════════════════════
   PARTICLES
   ═══════════════════════════════════════ */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
    box-shadow: 0 0 6px rgba(212, 168, 67, 0.4);
}
@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    transition: var(--transition-smooth);
}
.navbar.scrolled {
    padding: 10px 40px;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(212, 168, 67, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: 50%;
    font-size: 18px;
    color: var(--black-pure);
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
    transition: var(--transition-smooth);
}
.logo-icon:hover {
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 0 30px rgba(212, 168, 67, 0.5);
}
.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}
.nav-link {
    text-decoration: none;
    color: var(--gray-text);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 16px;
    position: relative;
    transition: var(--transition-smooth);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-gradient-h);
    transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}
.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 SECTION
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero .parallax-bg {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(184, 134, 11, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(245, 213, 110, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #111111 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(212, 168, 67, 0.01) 2px,
            rgba(212, 168, 67, 0.01) 4px
        );
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--gold-primary);
    padding: 10px 30px;
    border: 1px solid rgba(212, 168, 67, 0.3);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
    font-family: 'Cinzel', serif;
    margin-bottom: 20px;
}
.title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
}
.line-1 {
    font-size: clamp(50px, 10vw, 120px);
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(212, 168, 67, 0.3));
    line-height: 1;
    letter-spacing: 15px;
    animation: fadeUp 1s 0.5s forwards;
}
.line-2 {
    font-size: clamp(20px, 4vw, 45px);
    font-weight: 400;
    color: var(--gray-text);
    letter-spacing: 20px;
    margin-top: 10px;
    animation: fadeUp 1s 0.7s forwards;
}

.hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 4px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUp 1s 0.9s forwards;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUp 1s 1.1s forwards;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}
.stat-unit {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: var(--gold-primary);
    letter-spacing: 3px;
}
.stat-label {
    display: block;
    font-size: 11px;
    color: var(--gray-text);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
}
.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--gold-primary), transparent);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s 1.3s forwards;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeUp 1s 1.5s forwards;
}
.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(212, 168, 67, 0.4);
    border-radius: 13px;
    margin: 0 auto 10px;
    position: relative;
}
.wheel {
    width: 3px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(212, 168, 67, 0.4);
    text-transform: uppercase;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
}
.btn-primary {
    background: var(--gold-gradient);
    color: var(--black-pure);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid rgba(212, 168, 67, 0.4);
}
.btn-outline:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.btn-sm { padding: 10px 24px; font-size: 11px; }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   SECTIONS — General Styles
   ═══════════════════════════════════════ */
.section {
    position: relative;
    padding: 120px 0;
    min-height: 100vh;
}

.section-content {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}
.section-tag {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--gold-primary);
    margin-bottom: 15px;
    opacity: 0.7;
}
.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 5px;
}
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.title-underline {
    width: 80px;
    height: 2px;
    background: var(--gold-gradient-h);
    margin: 20px auto 0;
    position: relative;
}
.title-underline::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--gold-primary);
}

/* ═══════════════════════════════════════
   3D CARD EFFECT
   ═══════════════════════════════════════ */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.4s ease;
}
.card-3d:hover {
    transform: translateZ(10px);
}
.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(212, 168, 67, 0.05) 50%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}
.card-3d:hover .card-shine { opacity: 1; }

/* ═══════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════ */
.parallax-bg-about {
    background:
        radial-gradient(ellipse at 30% 70%, rgba(184, 134, 11, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(212, 168, 67, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, #0a0a0a 0%, #050505 50%, #0a0a0a 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.about-card {
    position: relative;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 2px;
    padding: 50px 35px;
    text-align: center;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient-h);
    transform: scaleX(0);
    transition: transform 0.5s;
}
.about-card:hover::before { transform: scaleX(1); }
.about-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 168, 67, 0.05);
    transform: translateY(-10px) translateZ(20px);
}
.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold-primary);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 50%;
    transition: var(--transition-smooth);
}
.about-card:hover .card-icon {
    background: rgba(212, 168, 67, 0.1);
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.2);
    transform: scale(1.1);
}
.about-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: 2px;
}
.about-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-text);
}

.about-quote {
    text-align: center;
    padding: 40px;
    border: 1px solid rgba(212, 168, 67, 0.1);
    background: rgba(212, 168, 67, 0.02);
    position: relative;
}
.about-quote blockquote {
    font-family: 'Cinzel', serif;
    font-size: clamp(16px, 2.5vw, 24px);
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}
.about-quote blockquote i {
    color: var(--gold-primary);
    margin: 0 10px;
    font-size: 16px;
    opacity: 0.5;
}
.about-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 13px;
    color: var(--gold-primary);
    letter-spacing: 3px;
    font-style: normal;
}

/* ═══════════════════════════════════════
   MODELS SECTION
   ═══════════════════════════════════════ */
.parallax-bg-models {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(184, 134, 11, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #000000 100%);
}

.models-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.model-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(5, 5, 5, 0.9));
    border: 1px solid rgba(212, 168, 67, 0.1);
    overflow: hidden;
    transition: var(--transition-smooth);
}
.model-card:nth-child(even) { direction: rtl; }
.model-card:nth-child(even) > * { direction: ltr; }
.model-card:hover {
    border-color: rgba(212, 168, 67, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 168, 67, 0.05);
}

.model-image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 350px;
}
.model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.model-card:hover .model-image { transform: scale(1.05); }
.model-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6), transparent);
}
.model-card:nth-child(even) .model-image-overlay {
    background: linear-gradient(-90deg, rgba(0,0,0,0.6), transparent);
}

.model-info {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.model-badge {
    display: inline-block;
    width: fit-content;
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gold-primary);
    padding: 5px 15px;
    border: 1px solid rgba(212, 168, 67, 0.3);
    margin-bottom: 15px;
}
.model-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.model-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 25px;
}
.model-specs-mini {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.model-specs-mini div {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}
.model-specs-mini i {
    color: var(--gold-primary);
    margin-right: 6px;
}

/* ═══════════════════════════════════════
   SPECS / PERFORMANCE SECTION
   ═══════════════════════════════════════ */
.parallax-bg-specs {
    background:
        radial-gradient(ellipse at 60% 40%, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #050505 100%);
}

.specs-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.spec-gauge {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(8, 8, 8, 0.95));
    border: 1px solid rgba(212, 168, 67, 0.1);
    transition: var(--transition-smooth);
}
.spec-gauge:hover {
    border-color: rgba(212, 168, 67, 0.3);
    transform: translateY(-8px) translateZ(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 168, 67, 0.08);
}

.gauge-ring {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    position: relative;
}
.gauge-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.gauge-bg {
    fill: none;
    stroke: rgba(212, 168, 67, 0.1);
    stroke-width: 4;
}
.gauge-fill {
    fill: none;
    stroke: url(#goldGrad);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 2s ease;
    filter: drop-shadow(0 0 6px rgba(212, 168, 67, 0.4));
}
.gauge-value {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.gauge-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-primary);
}
.gauge-unit {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    color: var(--gray-text);
    letter-spacing: 3px;
}

.spec-gauge h4 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 5px;
}
.spec-gauge p {
    font-size: 12px;
    color: var(--gray-text);
}

/* Specs Table */
.specs-table-wrapper {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(5, 5, 5, 0.95));
    border: 1px solid rgba(212, 168, 67, 0.1);
    overflow: hidden;
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table thead {
    background: rgba(212, 168, 67, 0.08);
}
.specs-table th {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--gold-primary);
    padding: 20px 30px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}
.specs-table td {
    padding: 16px 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.specs-table tr:hover td {
    background: rgba(212, 168, 67, 0.03);
    color: var(--white);
}
.specs-table td:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════ */
.parallax-bg-gallery {
    background:
        radial-gradient(ellipse at 40% 60%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #050505 0%, #000000 50%, #0a0a0a 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 15px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 67, 0.1);
    cursor: pointer;
}
.gallery-item.gi-large {
    grid-row: span 2;
}
.gallery-item.gi-wide {
    grid-column: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.4s;
}
.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}
.gallery-overlay h4 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gallery-overlay p {
    font-size: 13px;
    color: var(--gray-text);
    letter-spacing: 2px;
}

/* ═══════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════ */
.parallax-bg-contact {
    background:
        radial-gradient(ellipse at 70% 50%, rgba(184, 134, 11, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #050505 50%, #000000 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-panel {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(8, 8, 8, 0.95));
    border: 1px solid rgba(212, 168, 67, 0.1);
    padding: 50px 40px;
}
.contact-info-panel h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}
.contact-tagline {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 14px;
}
.contact-item strong {
    display: block;
    font-size: 13px;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 3px;
}
.contact-item p {
    font-size: 13px;
    color: var(--gray-text);
}

.social-links {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 168, 67, 0.2);
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition-smooth);
}
.social-link:hover {
    background: var(--gold-gradient);
    color: var(--black-pure);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 168, 67, 0.3);
}

/* Contact Form */
.contact-form {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(8, 8, 8, 0.95));
    border: 1px solid rgba(212, 168, 67, 0.1);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    position: relative;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    padding: 15px 0;
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
}
.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
}
.form-group select option {
    background: var(--black-card);
    color: var(--white);
}
.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--gray-text);
    font-size: 14px;
    pointer-events: none;
    transition: var(--transition-smooth);
}
.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-primary);
    letter-spacing: 2px;
}
.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient-h);
    transition: width 0.4s ease;
}
.form-group input:focus ~ .input-line,
.form-group textarea:focus ~ .input-line,
.form-group select:focus ~ .input-line {
    width: 100%;
}
.form-group textarea { resize: vertical; min-height: 80px; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    text-align: center;
    padding: 50px 40px;
    border-top: 1px solid rgba(212, 168, 67, 0.1);
    background: linear-gradient(180deg, rgba(10,10,10,1), rgba(0,0,0,1));
}
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}
.footer-logo i {
    font-size: 24px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
}
.footer-text {
    font-size: 13px;
    color: var(--gray-text);
    letter-spacing: 1px;
}
.footer-text.sub {
    font-size: 11px;
    margin-top: 8px;
    color: rgba(212, 168, 67, 0.4);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger reveal for children */
.reveal-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-children.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .specs-dashboard { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid .about-card:last-child { grid-column: span 2; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
    .gallery-item.gi-large { grid-row: span 1; }
    .gallery-item.gi-wide { grid-column: span 1; }
}

@media (max-width: 768px) {
    .golden-border-frame { margin: 6px; }
    .border-corner { display: none; }

    .navbar { padding: 12px 20px; top: 6px; left: 6px; right: 6px; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(212, 168, 67, 0.15);
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: flex; }

    .hero-stats { gap: 20px; }
    .hero-cta { flex-direction: column; align-items: center; }

    .about-grid { grid-template-columns: 1fr; }
    .about-grid .about-card:last-child { grid-column: span 1; }

    .model-card { grid-template-columns: 1fr; }
    .model-card:nth-child(even) { direction: ltr; }

    .specs-dashboard { grid-template-columns: repeat(2, 1fr); gap: 15px; }

    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-item.gi-wide { grid-column: span 1; }

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

    .section-content { padding: 0 20px; }
    .section { padding: 80px 0; }

    .specs-table { font-size: 12px; }
    .specs-table th, .specs-table td { padding: 12px 15px; }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 20px; }
    .stat-divider { width: 50px; height: 1px; }
    .specs-dashboard { grid-template-columns: 1fr; }
    .model-info { padding: 30px 20px; }
    .contact-form, .contact-info-panel { padding: 30px 20px; }
}
