@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary: #00ff88;
    --secondary: #00ccff;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--darker);
    color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Orbitron', sans-serif; }

/* NAVIGATION - NO HOME, ALL CAPS, SPACED */
/* NAVIGATION - UPDATED */
nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    height: 70px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem; /* Reduced from 4rem */
    list-style: none;
    align-items: center;
    margin-left: auto; /* Pushes nav to the right */
    padding-left: 3rem; /* Extra space from logo */
}

.nav-link-item {
    color: var(--light);
    text-decoration: none;
    font-weight: 500; /* Slightly lighter */
    font-size: 0.85rem; /* Reduced from 0.9rem */
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link-item:hover { 
    color: var(--primary); 
}

/* HERO - BUTTONS ALIGNED WITH HEADING */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1e293b 0%, var(--darker) 70%);
    padding: 100px 20px 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 600px; /* MATCHES HEADING WIDTH */
    margin-top: 20px;
    gap: 20px;
}

.btn {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    white-space: nowrap;
}

.btn:hover {
    background: var(--primary);
    color: var(--darker);
    box-shadow: 0 0 20px var(--primary);
}

.secondary-btn {
    border-color: var(--secondary);
    color: var(--secondary);
}

.secondary-btn:hover {
    background: var(--secondary);
    box-shadow: 0 0 20px var(--secondary);
}

/* SECTIONS */
section {
    padding: 100px 5% 80px;
    position: relative;
    z-index: 1;
}

.about-section {
    min-height: 100vh;
    padding-top: 120px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--light);
}

.section-title span { color: var(--primary); }

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 30px 20px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 10px;
}

.card h3 {
    margin-bottom: 10px;
    color: var(--secondary);
}

.price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
    margin: 15px 0;
}

.specs { list-style: none; margin-bottom: 20px; }
.specs li { margin-bottom: 8px; color: #cbd5e1; }
.specs li::before { content: '⚡ '; color: var(--primary); }

/* FOOTER - HORIZONTAL QUICK LINKS */
footer {
    background: #000;
    padding: 60px 5% 30px;
    border-top: 1px solid var(--border);
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-left { flex: 1; min-width: 250px; }
.footer-left h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.footer-left p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-right { flex: 1; min-width: 250px; text-align: right; }
.footer-right h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.quick-links-row {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.quick-links-row a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
    font-size: 0.95rem;
}

.quick-links-row a:hover { color: var(--primary); }

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: #64748b;
    font-size: 0.9rem;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light);
}

/* MOBILE STYLES - ABOUT US FIXED */
@media screen and (max-width: 768px) {
    html { scroll-padding-top: 90px; }
    
    nav { height: 65px; padding: 0.8rem 4%; }
    .logo { font-size: 1.2rem; }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 65px;
        height: calc(100vh - 65px);
        background: rgba(2, 6, 23, 0.99);
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 3rem 0;
        transition: 0.3s;
        gap: 2.5rem;
        border-top: 1px solid var(--border);
        z-index: 999;
    }
    .nav-links.active { right: 0; }
    .nav-link-item { font-size: 1.3rem; }
    .menu-toggle { display: block; }
    
    .hero { padding: 90px 15px 40px; }
    .hero-title { font-size: 2.2rem; }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
        align-items: center;
    }
    .btn { width: 100%; max-width: 300px; }
    
    /* ABOUT SECTION MOBILE - GUARANTEED FIX */
    #about, .about-section {
        padding-top: 110px !important;
        min-height: 100vh;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    section { padding: 80px 4% 60px; }
    .section-title { font-size: 1.8rem; margin-bottom: 2rem; }
    .grid-container { grid-template-columns: 1fr; }
    
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .footer-right { text-align: center; }
    .quick-links-row {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    nav { height: 60px; }
    .nav-links { top: 60px; height: calc(100vh - 60px); }
    .logo { font-size: 1.1rem; }
    .hero-title { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; }
    #about, .about-section { padding-top: 100px !important; }
}

/* Buy Electric Page Styles */
.buy-page { padding: 120px 5% 80px; min-height: 100vh; }
.brand-title {
    font-size: 2rem;
    color: var(--primary);
    margin: 3rem 0 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}
.vehicle-card {
    background: var(--glass);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 600px;
    margin: 0 auto;
}
.vehicle-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}
.vehicle-card.featured {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.15);
}
.vehicle-card img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: contain;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 20px;
}
.vehicle-card h3 { color: var(--secondary); font-size: 1.8rem; margin-bottom: 20px; }
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
    text-align: left;
}
.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.95rem;
    padding: 10px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}
.spec-item i { color: var(--primary); font-size: 1.1rem; width: 20px; }
.price { font-size: 2rem; color: var(--primary); font-weight: bold; margin: 20px 0; }
.enquire-btn {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.enquire-btn:hover {
    background: var(--primary);
    color: var(--darker);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}
.price-notice { text-align: center; color: #64748b; margin-top: 40px; font-style: italic; }

/* Service Page Styles */
.service-page {
    min-height: 100vh;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-container { max-width: 700px; width: 100%; }
.service-header { text-align: center; margin-bottom: 3rem; }
.service-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.service-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service-subtitle { color: #94a3b8; font-size: 1.1rem; line-height: 1.6; }
.service-form-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.form-label i { margin-right: 8px; }
.form-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(2, 6, 23, 0.6);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    color: var(--light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
}
.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    background: rgba(2, 6, 23, 0.8);
}
.form-input::placeholder { color: #64748b; }
select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300ff88' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}
textarea.form-input { min-height: 100px; resize: vertical; }
.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 10px;
    color: var(--darker);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}
.submit-btn i { margin-left: 10px; }

@media (max-width: 768px) {
    .specs-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .service-page { padding: 100px 15px 40px; }
    .service-form-card { padding: 2rem 1.5rem; }
}