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

:root {
    --primary: #020617;
    --secondary: #0B1220;
    --card-bg: #111827;
    --accent: #F97316;
    --accent-hover: #EA580C;
    --secondary-accent: #38BDF8;
    --highlight: #22C55E;
    --text-white: #FFFFFF;
    --text-sub: #CBD5F5;
    --text-gray: #64748B;
    --bg-dark: #020617;
    --border: rgba(255,255,255,0.08);
    --glow: rgba(249,115,22,0.25);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

h1, h2, h3, h4, .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

section {
    padding: 100px 0;
}

section:nth-child(even) {
    background: var(--secondary);
}

section:nth-child(odd) {
    background: var(--primary);
}

/* Header */
header {
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(1.1rem, 4vw, 1.35rem);
    color: #FFF;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.5px;
    z-index: 2;
    white-space: nowrap;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 769px) {
    .nav-flex {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 20px;
    }
    .nav-links {
        justify-content: center;
    }
}

.nav-links a {
    color: var(--text-sub);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-white);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-cta {
    z-index: 2;
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.mobile-contact-info, .mobile-only-btn {
    display: none !important;
}

@media (min-width: 769px) {
    .nav-links a i {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    text-align: center;
    min-height: auto;
    background: #000;
}

.hero-video {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 0;
    object-fit: contain;
}

.hero-video.desktop-video {
    display: block;
}

.hero-video.mobile-video {
    display: none;
}

@media (max-width: 768px) {
    .hero {
        padding: 0 !important;
        min-height: auto !important;
        display: block !important;
    }
    .hero-video.desktop-video {
        display: none !important;
    }
    .hero-video.mobile-video {
        display: block !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.3) 0%, rgba(2, 6, 23, 0.6) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
}

/* Homepage specific absolute centering */
.hero:not([style*="min-height: auto"]) .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero h1 {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: capitalize;
}

.hero h1 span {
    color: var(--accent);
    display: inline;
}

@media (max-width: 768px) {
    .hero h1 span {
        display: block;
    }
}


.hero p {
    font-size: clamp(1rem, 4vw, 1.25rem);
    color: var(--text-sub);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--accent);
    color: #FFF;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--glow);
}

.cta-btn {
    padding: 18px 36px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFF;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Card Design */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .benefits-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Vehicle Cards (Premium Overlay) */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
}

.card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.card-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover img {
    transform: scale(1.05);
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.price-tag {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent);
}

.price-tag small {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 400;
}

.card .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 8px;
}

@media (max-width: 480px) {
    .card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .card-footer .btn {
        width: 100%;
        text-align: center;
    }
}

/* Vehicle Cards (Premium Overlay) */
.vehicle-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.vehicle-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.vehicle-card:hover img {
    transform: scale(1.05);
}

/* Pricing Cards */
.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.pricing-card.highlight {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1);
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    padding: 0; /* Override previous padding */
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-sub);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* WhatsApp & Sticky CTA */
.wa-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 9999999 !important;
    text-decoration: none;
    transition: var(--transition);
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateZ(0); /* Fix for mobile scroll visibility */
    will-change: transform;
}

@media (max-width: 768px) {
    .wa-btn {
        width: 50px;
        height: 50px;
        bottom: 20px !important;
        right: 20px !important;
        left: auto !important;
        transform: translateZ(0) !important;
        font-size: 26px;
        animation: pulse-wa 2s infinite;
        display: flex;
        visibility: visible !important;
    }
    
    /* Hide button when menu is open */
    .nav-links.active ~ .wa-btn {
        display: none !important;
    }
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-btn:hover {
    transform: scale(1.1);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--accent);
    padding: 1.2rem;
    text-align: center;
    z-index: 999;
    display: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        transform: translateX(100%);
        visibility: hidden;
        padding: 100px 30px 40px;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links a {
        width: 100%;
        padding: 18px 0;
        font-size: 1.1rem;
        color: var(--text-white) !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
    }

    .nav-links a i {
        width: 20px;
        color: var(--accent);
    }

    .mobile-contact-info {
        display: block !important;
        width: 100%;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .contact-label {
        color: var(--accent);
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .mobile-contact-info p {
        font-size: 0.95rem;
        margin-bottom: 12px;
        color: var(--text-sub);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .legal-links {
        display: flex;
        gap: 20px;
        margin-top: 20px;
    }

    .legal-links a {
        border: none;
        padding: 0;
        font-size: 0.85rem;
        color: var(--accent);
        width: auto;
    }

    .mobile-only-btn {
        display: block !important;
        margin-top: 30px;
    }

    .logo span { display: none; }
    
    .mobile-toggle {
        display: block !important;
        font-size: 1.5rem;
        color: #FFF;
        cursor: pointer;
        background: none;
        border: none;
        order: 3;
    }

    .nav-flex {
        gap: 15px;
    }

    header .btn-primary {
        display: none; /* Hide top button on mobile to save space, move to menu if needed */
    }

    section { padding: 60px 0; }

    /* Override inline paddings and margins for mobile view */
    div[style*="height: 100px;"] {
        display: none !important;
        height: 0 !important;
    }
    div[style*="margin: 120px 0;"] {
        margin: 60px 0 !important;
    }
    div[style*="margin: 80px 0;"] {
        margin: 40px 0 !important;
    }
    section[style*="padding: 120px 0 60px;"] {
        padding: 80px 0 40px !important;
    }
    section[style*="padding: 100px 0;"] {
        padding: 60px 0 !important;
    }
    section[style*="padding: 80px 0;"] {
        padding: 50px 0 !important;
    }
    div[style*="margin-bottom: 100px;"] {
        margin-bottom: 50px !important;
    }
    div[style*="margin-top: 80px;"] {
        margin-top: 40px !important;
    }
}

.mobile-toggle {
    display: none;
}

/* Testimonial Slider (Glassmorphism) */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto;
}

/* Slider System */
.slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 1rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.4);
    box-shadow: 0 0 10px var(--glow);
}

@media (max-width: 768px) {
    .testimonial-slide {
        padding: 1rem;
    }
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    .testimonial-card p {
        font-size: 1rem !important;
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

footer {
    padding: 80px 0 40px;
    background: #020617;
    border-top: 1px solid var(--border);
    color: var(--text-sub);
}

footer .grid {
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 4rem;
}

footer h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
}

footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 1rem;
}

footer ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-socials {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.footer-socials a:hover {
    background: var(--accent);
    color: #FFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--glow);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: var(--text-gray);
}

.footer-contact i {
    color: var(--accent);
    margin-top: 5px;
    font-size: 1rem;
}

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

@media (max-width: 576px) {
    footer .grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    footer {
        padding: 60px 0 30px;
        text-align: center;
    }
    
    footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: center;
    }
}

/* Form Styles */
.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-sub);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-white);
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(2, 6, 23, 0.8);
    box-shadow: 0 0 15px rgba(249,115,22,0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* FAQ Accordion Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(255,255,255,0.02);
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* CTA Section Styles */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(rgba(2,6,23,0.8), rgba(2,6,23,0.9)), url('assets/hero_bike.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--text-sub);
    margin-bottom: 2.5rem;
}

.cta-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Section */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--secondary);
    border-radius: 50px;
    border: 1px solid var(--accent);
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Slider Styles */
.slider-container {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--glow);
}
/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(2, 6, 23, 0.9));
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .gallery-item {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--accent);
    transform: rotate(90deg);
}

/* Pricing Tables */
.pricing-table {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    height: 100%;
}

.pricing-table-header {
    background: #FFB347;
    padding: 1.5rem;
    text-align: center;
    color: #000;
}

.pricing-table-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

.pricing-table-header p {
    margin: 4px 0 0;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-table-body {
    padding: 1.5rem;
    background: #fff;
}

.pricing-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.pricing-grid-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pricing-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.pricing-grid-img-wrapper {
    width: 100%;
    height: 110px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.pricing-grid-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.pricing-grid-details {
    padding: 1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-grid-name {
    display: block;
    font-weight: 800;
    font-size: 0.8rem;
    color: #1a202c;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pricing-grid-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.pricing-grid-features span {
    font-size: 0.65rem;
    color: #718096;
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pricing-grid-price {
    display: inline-block;
    background: #f1f5f9;
    color: #000;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.pricing-grid-inquiry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: var(--accent);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.pricing-grid-inquiry:hover {
    background: #e66b11;
    transform: scale(1.02);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.final-cta {
    padding: 120px 0;
    background: linear-gradient(rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.9)), url('assets/hero_bike.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    border-top: 1px solid var(--accent);
}

.final-cta h2 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-sub);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 80px 0;
    }
    .final-cta h2 {
        font-size: 2.2rem;
    }
    .final-cta .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    /* Global Mobile Padding Fixes */
    section {
        padding: 60px 0 !important;
    }


}

@media (max-width: 500px) {
    .pricing-grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .pricing-grid-img-wrapper {
        height: auto;
        padding: 0;
    }
    .pricing-grid-img-wrapper img {
        height: auto;
        width: 100%;
        max-height: none;
    }
    .pricing-grid-name {
        font-size: 1.1rem;
    }
    .pricing-grid-price {
        font-size: 1.3rem;
    }
    .pricing-grid-inquiry {
        padding: 14px;
        font-size: 1rem;
    }

    /* Gallery Mobile Fix */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .gallery-item {
        height: auto;
    }
    .gallery-item img {
        height: auto;
        object-fit: contain;
    }
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .benefit-card {
        padding: 1.5rem;
    }
    .benefit-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .benefit-card h3 {
        font-size: 1.15rem;
    }
}

/* Modern FAQ Accordion */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-item.active {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--transition);
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.8rem;
    background: rgba(249, 115, 22, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--accent);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0,0,0,0.15);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2.5rem;
}

.faq-answer p {
    color: var(--text-sub);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    padding-top: 0.5rem;
}
