@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    --primary: #00040d;
    --secondary: #010a1a;
    --accent: #00f2ff; /* Electric Cyan */
    --accent-glow: rgba(0, 242, 255, 0.2);
    --text-main: #ffffff;
    --text-muted: #8a99b5;
    --glass: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    padding: 1rem 5%;
    background: rgba(0, 4, 13, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

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

nav ul li a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    opacity: 0.7;
}

nav ul li a:hover {
    opacity: 1;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
}

nav ul li a.nav-btn-pay {
    border: 1px solid rgba(0, 242, 255, 0.3);
    background: rgba(0, 242, 255, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    opacity: 0.9;
    color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
    transition: var(--transition);
}

nav ul li a.nav-btn-pay:hover {
    background: var(--accent);
    color: var(--primary);
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
    text-shadow: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: linear-gradient(rgba(0, 4, 13, 0.7), rgba(0, 4, 13, 0.3)), url('hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.hero-content {
    max-width: 1000px;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(4rem, 12vw, 8rem);
    line-height: 0.95;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -5px;
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
}

/* About Intro Section */
.about-intro {
    padding: 120px 8%;
    background: var(--secondary);
    border-bottom: 1px solid var(--glass-border);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
}

.about-title h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #fff;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-outline {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border: 1px solid var(--accent);
    border-radius: 50px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    background: rgba(0, 242, 255, 0.05);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

/* Premium Import Page Overhaul */
.import-premium-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: radial-gradient(circle at 10% 20%, var(--secondary) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
    perspective: 1500px;
}

/* tilt-box — mouse parallax removed */
.tilt-box {
    transform-style: flat;
}

.hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 242, 255, 0.15);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.import-premium-hero h1 {
    font-size: clamp(4rem, 15vw, 9rem);
    line-height: 0.85;
    margin-bottom: 1.5rem;
}

/* Premium Cards */
.premium-services {
    padding: 100px 8%;
    background: var(--primary);
}

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

.premium-card {
    position: relative;
    padding: 4rem 3rem;
    background: #010815;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition);
}

.premium-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 80px rgba(0, 242, 255, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.premium-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.premium-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.card-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

/* Compliance Grid Overhaul */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.compliance-card {
    background: #010a1a;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.compliance-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.05);
}

.icon-header {
    width: 70px;
    height: 70px;
    background: rgba(0, 242, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.compliance-card:hover .icon-header {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}

.compliance-info h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.compliance-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services Section (Landing) */
.services {
    padding: 120px 8%;
    background: var(--primary);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    box-shadow: 0 0 15px var(--accent-glow);
}

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

.service-card {
    padding: 4rem 3rem;
    background: var(--secondary);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(0, 242, 255, 0.05);
    border-radius: 20px;
}

.service-card:hover {
    transform: translateY(-20px);
    background: #010815;
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Contact Section */
.contact {
    position: relative;
    padding: 150px 8%;
    background: linear-gradient(rgba(0, 4, 13, 0.9), rgba(0, 4, 13, 0.8)), url('../../public/img/port.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 60px;
}

.info-card {
    padding: 2.5rem;
}

.info-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p, .info-card a {
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(100%) hue-rotate(180deg) brightness(80%) contrast(90%);
}

/* Footer Bottom Alignment */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding: 2.5rem 0 0;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
}

.footer-bottom p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.con-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 8%;
    background: var(--secondary);
    border-top: 1px solid var(--glass-border);
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
}

.con-footer p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 12px;
}

/* Social Icons */
.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass);
    color: var(--text-main);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Animations removed — all elements always visible */
.reveal {
    opacity: 1;
    transform: none;
}

.reveal.active {
    opacity: 1;
    transform: none;
}

/* ========================= */
/* NAV BRAND (logo text)     */
/* ========================= */

.nav-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-brand span {
    color: var(--accent);
}

/* ========================= */
/* HAMBURGER BUTTON          */
/* ========================= */

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.nav-hamburger:hover {
    border-color: var(--accent);
    background: rgba(0, 242, 255, 0.06);
}

.ham-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.25s ease,
                width 0.3s ease;
    transform-origin: center;
}

/* Morph to × when active */
.nav-hamburger.active .ham-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active .ham-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}
.nav-hamburger.active .ham-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================= */
/* MOBILE RESPONSIVE         */
/* ========================= */

@media (max-width: 768px) {

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* On mobile, push hamburger to the right */
    nav {
        justify-content: space-between;
    }

    /* Show hamburger, hide normal horizontal nav */
    .nav-hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 4, 13, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        z-index: 998;
        pointer-events: none;
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    nav ul.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
    }

    nav ul li:first-child {
        border-top: 1px solid var(--glass-border);
    }

    nav ul li a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        opacity: 0.85;
        letter-spacing: 3px;
    }

    nav ul li a:hover {
        background: rgba(0, 242, 255, 0.06);
    }

    nav ul li a.nav-btn-pay {
        margin: 1.5rem auto 0;
        display: inline-block;
        width: auto;
        border-radius: 50px;
    }

    /* ── Hero text ── */
    .hero h1 { font-size: 3rem; letter-spacing: -2px; }
    .import-premium-hero h1,
    .export-hero h1,
    .vehicle-hero h1,
    .about-hero h1 { font-size: 3rem; line-height: 1; }

    /* ── Grids collapse to single column ── */
    .about-container { grid-template-columns: 1fr; gap: 40px; }
    .about-title h2 { font-size: 2.2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .compliance-grid { grid-template-columns: 1fr; }
    .premium-services-grid { grid-template-columns: 1fr; }
    .other-services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }

    /* ── Export stats bar ── */
    .export-hero-stats {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .stat-divider { width: 60px; height: 1px; }

    /* ── Import service cards ── */
    .imp-services__grid { grid-template-columns: 1fr; }
    .imp-compliance__grid { grid-template-columns: 1fr; }
    .imp-strip { flex-wrap: wrap; gap: 1rem; justify-content: center; }
    .imp-hero__chips { flex-wrap: wrap; }

    /* ── Vehicles hero ── */
    .veh-hero { grid-template-columns: 1fr; }
    .veh-hero__icon-display { display: none; }

    /* ── About page ── */
    .abt-mission-strip {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }
    .abt-mission-strip__divider { width: 60px; height: 1px; }
    .abt-story__body { flex-direction: column; }
    .abt-story__cards { grid-template-columns: 1fr 1fr; }
    .abt-mv { flex-direction: column; }
    .abt-values__grid { grid-template-columns: 1fr; }
    .abt-why__inner { flex-direction: column; }

    /* ── BOI page ── */
    .boi-why__grid { grid-template-columns: 1fr; }

    /* ── Pay page form ── */
    .pay-body__inner { flex-direction: column; }
    .pay-form__row { flex-direction: column; }
    .pay-body { padding: 100px 5% 60px; }

    /* ── Contact page ── */
    .con-body__inner { flex-direction: column; }
    .con-form__row { flex-direction: column; }

    /* ── Section padding ── */
    .premium-services,
    .supplementary-services,
    .vehicle-services-section,
    .vehicle-cta,
    .imp-services,
    .imp-compliance,
    .export-description,
    .abt-story,
    .abt-mv,
    .abt-values,
    .abt-why { padding: 60px 5%; }

    .import-premium-hero,
    .export-hero,
    .vehicle-hero,
    .about-hero { padding: 120px 5% 60px; }

    /* ── Footer ── */
    .footer-bottom, .con-footer {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 1rem;
    }

    /* ── Scroll-to-top position tweak on mobile ── */
    #scrollToTopBtn {
        bottom: 1.2rem;
        right: 1.2rem;
        width: 44px;
        height: 44px;
    }
}

/* ===================== */
/* EXPORT PAGE STYLES    */
/* ===================== */

/* Export Hero - unique two-orb layout */
.export-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 8% 80px;
    background: radial-gradient(circle at 80% 20%, #010a1a 0%, var(--primary) 60%);
    position: relative;
    overflow: hidden;
}

.export-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.export-hero-orb:first-of-type {
    width: 600px;
    height: 600px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

.export-hero-orb.orb-two {
    width: 300px;
    height: 300px;
    bottom: 60px;
    left: 5%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
}

.export-hero h1 {
    font-size: clamp(4rem, 13vw, 9rem);
    line-height: 0.85;
    margin-bottom: 1.5rem;
}

.export-hero .hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 4rem;
    line-height: 1.8;
}

/* Export stats bar */
.export-hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 2rem 2.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    width: fit-content;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--glass-border);
}

/* Service sub-label */
.service-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Other services grid - 3 cols on export page */
.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.other-card {
    background: #010a1a;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.other-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.06);
}

.other-card-glow {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.other-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.other-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

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

/* Supplementary services section bg */
.supplementary-services {
    padding: 100px 8%;
    background: #01040a;
}

/* Highlight card extra style */
.premium-card.highlight {
    background: linear-gradient(145deg, #010e20, var(--primary));
    border-color: rgba(0, 242, 255, 0.08);
}

@media (max-width: 900px) {
    .export-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .stat-divider { width: 60px; height: 1px; }
    .other-services-grid { grid-template-columns: 1fr; }
}

/* Export Description Section */
.export-description {
    padding: 100px 8%;
    background: var(--secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.export-desc-inner {
    max-width: 900px;
    margin: 0 auto;
}

.export-desc-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 40px;
}

.export-desc-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
}

.export-desc-body p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.export-desc-body p:last-child {
    margin-bottom: 0;
}

/* ===================== */
/* VEHICLES PAGE STYLES  */
/* ===================== */

.vehicle-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 160px 8% 80px;
    background: radial-gradient(circle at 70% 80%, #010a1a 0%, var(--primary) 60%);
    position: relative;
    overflow: hidden;
}

.vehicle-hero-line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 25%;
    background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
    pointer-events: none;
}

.vehicle-hero-line.line-two {
    left: 75%;
}

.vehicle-hero h1 {
    font-size: clamp(4rem, 13vw, 9rem);
    line-height: 0.85;
    margin-bottom: 1.5rem;
}

.vehicle-hero .hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
}

/* Numbered services */
.vehicle-services-section {
    padding: 100px 8%;
    background: var(--primary);
}

.vehicle-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.vehicle-service-item {
    background: #010a1a;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.vehicle-service-item:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.06);
}

.vs-number {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(0, 242, 255, 0.04);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
}

.vehicle-service-item:hover .vs-number {
    color: rgba(0, 242, 255, 0.1);
}

.vs-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.vehicle-service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

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

/* CTA Banner */
.vehicle-cta {
    padding: 100px 8%;
    background: linear-gradient(135deg, #010a1a 0%, var(--primary) 100%);
    text-align: center;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}



/* About Hero */
.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 160px 8% 80px;
    background: radial-gradient(circle at 30% 60%, var(--secondary) 0%, var(--primary) 70%);
    position: relative;
    overflow: hidden;
}

.about-hero-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero h1 {
    font-size: clamp(4rem, 13vw, 9rem);
    line-height: 0.85;
    margin-bottom: 1.5rem;
}

.about-hero .hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
}

/* ===================== */
/* SCROLL TO TOP BUTTON  */
/* ===================== */

#scrollToTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.35);
    color: var(--accent);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.9);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease,
                background 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 14px rgba(0, 242, 255, 0.12);
}

#scrollToTopBtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

#scrollToTopBtn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 0 28px rgba(0, 242, 255, 0.45);
}

#scrollToTopBtn:active {
    transform: translateY(-1px) scale(1.02);
}
