* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #050505; color: #fff; overflow-x: hidden; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #D4A843; border-radius: 3px; }

/* Scroll progress bar */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #D4A843, #F5C518);
    z-index: 70;
    transition: width 0.1s ease-out;
}

/* SVG Path Draw Animation */
.draw-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s ease-in-out forwards;
}
.draw-path-delay { animation-delay: 0.5s; }
.draw-path-delay-2 { animation-delay: 1s; }
@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* Truck Move Animation */
.truck-move {
    animation: truckDrive 4s ease-in-out forwards;
}
@keyframes truckDrive {
    0% { transform: translateX(-60px); opacity: 0; }
    15% { opacity: 1; }
    100% { transform: translateX(0px); opacity: 1; }
}

/* Fade In Up */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Scale */
.fade-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 150ms; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 300ms; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 450ms; }

/* Parallax */
.parallax-slow { will-change: transform; }

/* Gold Button Glow */
.btn-gold {
    background: linear-gradient(135deg, #D4A843, #F5C518, #D4A843);
    background-size: 200% 200%;
    animation: shimmer 3s ease infinite;
    color: #000;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.3), 0 0 60px rgba(212, 168, 67, 0.1);
}
.btn-gold:hover {
    box-shadow: 0 0 30px rgba(212, 168, 67, 0.5), 0 0 80px rgba(212, 168, 67, 0.2);
    transform: translateY(-2px);
    background-position: 100% 100%;
}
.btn-gold:focus-visible {
    outline: 2px solid #FFE080;
    outline-offset: 3px;
}
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Outline Button */
.btn-outline {
    border: 1px solid rgba(212, 168, 67, 0.5);
    color: #D4A843;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: #D4A843;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.15);
    transform: translateY(-2px);
}
.btn-outline:focus-visible {
    outline: 2px solid #D4A843;
    outline-offset: 3px;
}

/* Floating Shapes */
.float-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

/* Card Hover */
.premium-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}
.premium-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
    box-shadow: 0 0 40px rgba(212, 168, 67, 0.08), inset 0 1px 0 rgba(212, 168, 67, 0.1);
    transform: translateY(-8px);
}

/* Gold Line */
.gold-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.5), transparent);
}

/* Text Gradient */
.text-gold-gradient {
    background: linear-gradient(135deg, #D4A843, #F5C518, #FFE080, #D4A843);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s ease infinite;
}
@keyframes textShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Grid Background */
.grid-bg {
    background-image:
        linear-gradient(rgba(212, 168, 67, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 67, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Counter Number */
.counter-num { font-variant-numeric: tabular-nums; }

/* Nav Glass */
.nav-glass {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Active nav link */
.nav-link.active {
    color: #D4A843 !important;
}

/* Pulse Dot */
.pulse-dot {
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* Rotate Slow */
.rotate-slow { animation: rotateSlow 20s linear infinite; }
@keyframes rotateSlow { to { transform: rotate(360deg); } }

/* Hero Text Reveal */
.hero-text-line {
    overflow: hidden;
}
.hero-text-line span {
    display: inline-block;
    transform: translateY(100%);
    animation: textReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-text-line:nth-child(2) span { animation-delay: 0.15s; }
.hero-text-line:nth-child(3) span { animation-delay: 0.3s; }
@keyframes textReveal {
    to { transform: translateY(0); }
}

/* Testimonial card */
.testimonial-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
    border: 1px solid rgba(255,255,255,0.05);
}

/* Step connector line */
.step-line {
    background: linear-gradient(180deg, rgba(212,168,67,0.4), rgba(212,168,67,0.05));
}

/* Mobile menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu.open {
    transform: translateX(0);
}

/* FAQ accordion */
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-question {
    cursor: pointer;
    user-select: none;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
}
.faq-icon {
    transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* Sticky mobile call bar */
#mobileCallBar {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 168, 67, 0.15);
}

/* Form field error state */
.field-error {
    border-color: #e0555f !important;
}
.field-error-msg {
    color: #f27a82;
    font-size: 0.75rem;
    margin-top: 0.35rem;
    display: none;
}
.field-error-msg.show {
    display: block;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #D4A843;
    color: #000;
    padding: 0.75rem 1.25rem;
    z-index: 100;
    font-weight: 700;
    border-radius: 0 0 8px 0;
}
.skip-link:focus {
    left: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-up, .fade-scale { opacity: 1; transform: none; }
    .hero-text-line span { transform: translateY(0); }
}
