:root {
    --primary-bg: #0a0b10;
    --accent-gold: #ffcc00;
    --accent-gold-hover: #e6b800;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-color: rgba(255, 204, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 11, 16, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s;
}

nav.scrolled {
    padding: 0.8rem 5%;
    background: rgba(10, 11, 16, 0.95);
}

.logo {
    height: 45px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
    opacity: 0.8;
}

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

.cta-button {
    background: var(--accent-gold);
    color: #000;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

.cta-button:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(10, 11, 16, 0.3), var(--primary-bg)), url('vehix_hero_bg_1772370204961.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    background: linear-gradient(to top, var(--primary-bg), transparent);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    line-height: 1.05;
    letter-spacing: -0.035em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero h1 span {
    color: var(--accent-gold);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-gold);
    opacity: 0.3;
    z-index: -1;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 3rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-outline {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 204, 0, 0.1);
    transform: translateY(-3px);
}

/* Services */
.services {
    padding: 10rem 5%;
    background: var(--primary-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--glass-border);
    padding: 3.5rem 2.5rem;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-15px);
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255, 204, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,204,0,0.1);
    border-radius: 20px;
}

.service-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 10rem 5%;
    background: #050508;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255,204,0,0.05);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step p {
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* Stats */
.stats {
    padding: 8rem 5%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    background: var(--primary-bg);
}

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

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer */
footer {
    padding: 8rem 5% 3rem;
    background: #000000;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
}

.footer-brand h4 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 350px;
    font-size: 1.1rem;
}

.footer-links h5 {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

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

.footer-links ul li {
    margin-bottom: 1.2rem;
}

.footer-links ul li a {
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.3s;
    font-size: 1.05rem;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    nav { padding: 1rem 5%; }
    .hero h1 { font-size: 3.5rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .cta-button, .btn-outline { width: 100%; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats { justify-content: center; }
}
