/* Base Styles */
:root {
    --primary-green: #E31E24;
    --primary-green-hover: #C81A1F;
    --text-dark: #222;
    --text-light: #fff;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html, body {
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.5;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0d1117;
}

::-webkit-scrollbar-thumb {
    background: #2a3444;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* Top Bar */
.top-bar {
    background: #0a0f14;
    border-bottom: 1px solid rgba(227, 30, 36, 0.25);
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

.top-bar-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    letter-spacing: 0.2px;
}

.top-bar-item svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.top-bar-phone {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.top-bar-phone strong {
    color: var(--primary-green);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.top-bar-phone:hover {
    color: #fff;
}

.pulse-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(227, 30, 36, 0.2);
    color: var(--primary-green);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.7);
    animation: pulse-green 2s infinite;
    margin-right: 2px;
}

.pulse-icon-wrapper svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.6);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(227, 30, 36, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(227, 30, 36, 0);
    }
}

/* Custom Tooltips */
.custom-tooltip {
    position: relative;
}

.custom-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    background: linear-gradient(145deg, #161b22, #0d1117);
    color: #e2e8f0;
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4), 0 0 10px rgba(227, 30, 36, 0.15);
    z-index: 1000;
    pointer-events: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1px solid rgba(227, 30, 36, 0.4);
    backdrop-filter: blur(8px);
}

.custom-tooltip::before {
    content: '';
    position: absolute;
    border-width: 6px;
    border-style: solid;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.custom-tooltip-bottom::after {
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
}
.custom-tooltip-bottom::before {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-color: transparent transparent #161b22 transparent;
}
.custom-tooltip-bottom:hover::after,
.custom-tooltip-bottom:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.custom-tooltip-top::after {
    top: -45px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
}
.custom-tooltip-top::before {
    top: -15px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-color: #161b22 transparent transparent transparent;
}
.custom-tooltip-top:hover::after,
.custom-tooltip-top:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Responsive Top Bar */
@media (max-width: 768px) {
    .top-bar {
        padding: 6px 0;
    }
    .top-bar-container {
        flex-direction: column;
        gap: 8px;
        padding: 0 10px;
        text-align: center;
    }
    .top-bar-left, .top-bar-right {
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .top-bar-item {
        font-size: 11px;
        gap: 4px;
        line-height: 1.4;
    }
    .top-bar-left .top-bar-item {
        display: block;
        text-align: justify;
        text-justify: inter-word;
    }
    .top-bar-left .top-bar-item svg {
        float: left;
        margin-right: 6px;
        margin-top: 2px;
    }
    .top-bar-item svg {
        width: 12px;
        height: 12px;
    }
}

/* New Modern High Attractive Header */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 18, 24, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0 auto;
    border-radius: 0;
}

.main-header.scrolled {
    top: 20px;
    width: calc(100% - 60px);
    max-width: 1320px;
    padding: 10px 0;
    background: rgba(15, 20, 25, 0.65);
    border-radius: 100px;
    backdrop-filter: saturate(150%) blur(25px);
    -webkit-backdrop-filter: saturate(150%) blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 20px rgba(227, 30, 36, 0.15);
}

.main-header .logo {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.main-header .logo-img img {
    height: 35px;
    max-height: 35px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: height 0.3s ease, transform 0.3s ease;
}

.main-header.scrolled .logo {
    transform: scale(0.9);
    transform-origin: left center;
}

.main-header.scrolled .btn-primary {
    transform: scale(0.9);
}

.main-header .container {
    max-width: 1320px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo-text {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-green);
}

/* Dropdown Styles */
.has-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1d22;
    min-width: 200px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0 !important;
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    width: 100%;
}
.dropdown-menu a {
    padding: 12px 20px !important;
    display: block !important;
    color: #e0e0e0 !important;
    text-transform: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}
.dropdown-menu li:last-child a {
    border-bottom: none;
}
.dropdown-menu a:hover, .dropdown-menu a.active {
    background: rgba(227, 30, 36, 0.1);
    color: var(--primary-green) !important;
    padding-left: 25px !important;
    border-bottom-color: var(--primary-green);
}

@media (max-width: 991px) {
    .dropdown-menu {
        display: none !important;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding-left: 15px;
    }
    .has-dropdown:hover .dropdown-menu,
    .has-dropdown.active .dropdown-menu {
        display: flex !important;
    }
}

/* Mobile Menu Button - Hidden by default */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 999999 !important;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Responsive Header */
@media (max-width: 991px) {
    .main-header .container {
        padding: 0 5px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }

    .main-header, .main-header.scrolled {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(12, 18, 24, 0.98) !important;
    }

    .main-nav {
        position: fixed !important;
        top: 150px !important;
        right: 0 !important;
        left: auto !important;
        width: 240px !important;
        height: calc(100vh - 125px) !important;
        background: rgba(15, 20, 25, 0.98) !important;
        border-top: 1px solid rgba(227, 30, 36, 0.2) !important;
        border-left: 1px solid rgba(227, 30, 36, 0.2) !important;
        padding: 15px 15px !important;
        box-shadow: -5px 15px 40px rgba(0, 0, 0, 0.6) !important;
        z-index: 99999 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        
        /* Sliding animation setup from right to left */
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateX(50px) !important;
        pointer-events: none !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        margin: 0 !important;
    }

    .main-nav.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
        pointer-events: auto !important;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        width: 100%;
    }

    .main-nav ul li {
        border-bottom: 1px solid rgba(255,255,255,0.05);
        width: 100%;
    }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    .main-nav ul li a {
        padding: 12px 15px;
        font-size: 14px;
        letter-spacing: 0.5px;
        text-align: left;
    }

    .header-action {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header-action .btn-primary {
        padding: 8px 16px;
        font-size: 12px;
    }
}
@media (max-width: 576px) {
    .main-header {
        padding: 10px 0;
    }
    .main-header.scrolled {
        top: 10px;
        width: calc(100% - 30px);
        padding: 5px 0;
        border-radius: 50px;
    }
    .main-header.scrolled .logo {
        transform: scale(0.85);
    }
    .main-header.scrolled .btn-primary {
        transform: scale(0.85);
        padding: 5px 10px;
    }
    .main-header.scrolled .mobile-menu-btn {
        transform: scale(0.8);
    }
    .header-action .btn-primary {
        padding: 6px 12px;
        font-size: 11px;
    }
    .main-header .logo-img img {
        height: 28px;
        max-height: 28px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: transparent;
    color: #fff;
    border: 2px solid var(--primary-green);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #1a1a1a; /* Dark sleek background */
    z-index: -2;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -15%;
    width: 55%; /* Fills about half visually due to skew */
    height: 100%;
    background-color: var(--primary-green);
    z-index: -1;
    transform: skewX(-20deg);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-primary:hover::before {
    width: 130%;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid var(--primary-green);
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.9); /* Light background */
    z-index: -2;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -15%;
    width: 55%;
    height: 100%;
    background-color: var(--primary-green);
    z-index: -1;
    transform: skewX(-20deg);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-outline:hover::before {
    width: 130%;
}

.btn-outline:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 30px;
    font-size: 15px;
    min-width: 170px;
}

.btn span {
    margin-left: 12px;
    font-size: 18px;
    line-height: 1;
    font-weight: normal;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: auto;
    min-height: unset;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: visible;
    aspect-ratio: 16 / 7; /* Image aspect ratio - adjust if needed */
}

.hero-container {
    width: 100%;
    max-width: 1320px;
    padding: 0 40px;
    margin: 0 auto;
}

.hero-content {
    max-width: 700px; /* Constrain width to avoid overlapping scooter */
    margin-top: -60px;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4a5568;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle .line {
    width: 35px;
    height: 3px;
    background-color: var(--primary-green);
}

.hero-title {
    font-size: 80px; /* Larger title */
    line-height: 0.95; /* Tighter line height */
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-title .dark-text {
    color: #1a1a1a;
}

.hero-title .green-text {
    color: var(--primary-green);
}

.hero-description {
    font-size: 17px;
    color: #263127;
    margin-bottom: 40px;
    font-weight: 500;   
    line-height: 1.6;
    max-width: 90%;
    text-align: justify;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Hero Section Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 60px;
        margin-bottom: 20px;
    }
    .hero-content {
        margin-top: 0;
    }
}
@media (max-width: 768px) {
    .hero-container {
        padding: 0 20px;
    }
    .hero-section .hero-title {
        display: none; /* Hidden on mobile view */
    }
    .hero-section .hero-subtitle {
        display: none; /* Hidden on mobile view as requested */
    }
    .hero-section .hero-description {
        display: none; /* Hidden on mobile view */
    }
    .hero-section .hero-buttons {
        display: none; /* Hidden on mobile view */
    }
}
@media (max-width: 576px) {
    .hero-section .hero-title {
        display: none;
    }
    .hero-section .hero-description {
        display: none;
    }
}

/* Features Bar */
.features-bar-container {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
}

.features-bar {
    background: rgba(26, 32, 40, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 25px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 30px;
    position: relative;
    flex: 1;
    justify-content: center;
}

/* Dividing lines */
.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(227, 30, 36, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
    color: #fff;
}

/* Features Bar Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        justify-content: center;
        padding: 100px 0 30px;
        height: auto;
        aspect-ratio: auto;
    }
    .features-bar-container {
        position: relative;
        bottom: auto;
        left: 0;
        transform: none;
        width: 100%;
        margin-top: 40px;
        padding: 0; /* Changed to 0 to make it full width */
    }
    .features-bar {
        padding: 15px 5px;
        border-radius: 0; /* Removed border-radius for edge-to-edge look */
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 0; /* 15px row gap, 0 column gap */
        align-content: flex-start;
    }
    .feature-item {
        padding: 0 2px;
        gap: 5px;
        flex-direction: column;
        text-align: center;
        flex: 0 0 33.33%;
        max-width: 33.33%;
        width: 33.33%;
        margin-bottom: 0; /* Removed to avoid double gaps */
        box-sizing: border-box;
        overflow: hidden;
    }
    .feature-icon {
        width: 36px;
        height: 36px;
        margin: 0 auto;
    }
    .feature-icon svg {
        width: 18px;
        height: 18px;
    }
    .feature-text h4 {
        font-size: 14.5px;
        margin-bottom: 2px;
        white-space: nowrap;
    }
    .feature-text p {
        font-size: 11px;
        line-height: 1.2;
        white-space: nowrap;
    }
    .feature-item:not(:last-child)::after {
        display: none; /* Hide dividers on mobile for clean wrap */
    }
}
@media (max-width: 576px) {
    .features-bar-container {
        margin-top: 30px;
        padding: 0;
    }
    .feature-item {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        width: 33.33%;
        padding: 0 2px;
    }
    .feature-icon {
        width: 34px;
        height: 34px;
    }
    .feature-icon svg {
        width: 16px;
        height: 16px;
    }
    .feature-text h4 {
        font-size: 12.5px;
    }
    .feature-text p {
        font-size: 10px;
    }
}


.feature-text p {
    font-size: 13px;
    color: #a0aec0;
    font-weight: 400;
    font-family: var(--font-body);
}

/* Models Section */
.models-section {
    padding: 80px 0;
    background: #f4f6f8;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 46px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #1a1d22;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: var(--primary-green);
    border-radius: 3px;
}

.section-header h2 span {
    color: var(--primary-green);
}

.section-header p {
    font-size: 18px;
    color: #5a6572;
    max-width: 700px;
    margin: 0 auto;
}

/* Section Header Responsive */
@media (max-width: 768px) {
    .models-section {
        padding: 15px 0; /* Removed extra upper white space */
    }
    .section-header {
        margin-bottom: 20px; /* slightly reduce bottom gap as well */
        padding: 0;
        text-align: left !important;
    }
    .section-header h2 {
        font-size: 24px;
        display: block; /* Use block to force line break for the underline */
        margin-bottom: 10px;
    }
    .section-header h2 span {
        margin-left: 6px; /* Retain some spacing between words */
    }
    .section-header h2::after {
        margin-top: 10px;
        margin-left: 0;
    }
    .section-header p {
        font-size: 15px;
        margin: 0;
        text-align: justify;
    }
}
@media (max-width: 576px) {
    .section-header h2 {
        font-size: 19px; /* Further reduced to ensure single line on small mobiles */
    }
    .section-header p {
        font-size: 14px;
    }
}

.models-showcase {
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 450px; /* Reduced height */
}

.models-banner-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center 60%; /* Adjusted position to show scooters properly */
    display: block;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.model-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-top: 4px solid #ddd;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.model-card:nth-child(1) { border-top-color: #d32f2f; }
.model-card:nth-child(2) { border-top-color: #1976d2; }
.model-card:nth-child(3) { border-top-color: #e0e0e0; }
.model-card:nth-child(4) { border-top-color: #212121; }

.model-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    padding: 4px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.model-badge.red { background: #d32f2f; }
.model-badge.white { background: #f5f5f5; color: #333; }
.model-badge.blue { background: #1976d2; }
.model-badge.black { background: #212121; }

.model-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1d22;
    margin-bottom: 8px;
    margin-top: 10px;
}

.model-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.model-price span {
    font-size: 12px;
    margin-left: 2px;
}

.model-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.model-features li {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.model-features svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-green);
    flex-shrink: 0;
}

.model-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.model-actions .btn {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
}

.model-actions .btn.btn-primary {
    background: #1a1d22;
    color: #fff;
    border: 2px solid var(--primary-green);
    border-radius: 4px;
}

.model-actions .btn.btn-primary:hover {
    background: var(--primary-green);
    color: #fff;
}


/* Product Features Section */
.product-features {
    padding: 50px 0;
    background: #f4f6f8;
    position: relative;
    overflow: hidden;
}

.product-features::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(227, 30, 36, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.product-features .section-header h2 {
    color: #1a1d22;
}

.product-features .section-header p {
    color: #5a6572;
}

.features-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.feature-detail-card {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-detail-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-detail-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: rgba(227, 30, 36, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08), 0 0 15px rgba(227, 30, 36, 0.05);
}

.feature-detail-card:hover::after {
    opacity: 1;
}

.fd-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(227, 30, 36, 0.1);
    color: var(--primary-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    border: 1px solid rgba(227, 30, 36, 0.1);
    transition: all 0.4s ease;
}

.fd-icon svg {
    width: 28px;
    height: 28px;
}

.feature-detail-card:hover .fd-icon {
    background: var(--primary-green);
    color: #fff;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
    transform: rotateY(180deg);
}

.fd-content h3 {
    font-size: 20px;
    color: #1a1d22;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.fd-content p {
    font-size: 15px;
    color: #5a6572;
    line-height: 1.7;
    text-align: justify;
}

/* Product Features Responsive */
@media (max-width: 768px) {
    .features-list-grid {
        grid-template-columns: 1fr; /* Prevents 300px overflow on small screens */
        gap: 15px;
        margin-top: 30px;
    }
    .feature-detail-card {
        padding: 20px 15px;
    }
    .fd-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
        border-radius: 12px;
    }
    .fd-icon svg {
        width: 22px;
        height: 22px;
    }
    .fd-content h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }
    .fd-content p {
        font-size: 13.5px;
        text-align: justify;
    }
}


/* Color Variants Section */
.color-variants-section {
    padding: 50px 0;
    background: #f4f6f8;
    position: relative;
}

.color-studio-layout {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    margin: 0 auto;
    max-width: 1100px;
}

.studio-left {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e6e6e6; /* Grey background matching screenshot */
    padding: 60px;
}

.color-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

#scooter-preview-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: filter 0.5s ease-in-out, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mix-blend-multiply {
    mix-blend-mode: multiply;
}

/* Floor shadow under the scooter */
.studio-shadow {
    position: absolute;
    bottom: -5%;
    left: 10%;
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(5px);
    z-index: -1;
}

/* Color Filters applied to the base white/grey image */
img.color-red, .color-red {
    filter: hue-rotate(340deg) saturate(2) brightness(0.9);
}

img.color-blue, .color-blue {
    filter: hue-rotate(200deg) saturate(1.5) brightness(0.9);
}

img.color-green, .color-green {
    filter: hue-rotate(80deg) saturate(1.2) brightness(0.9); 
}

img.color-black, .color-black {
    filter: grayscale(100%) brightness(0.3) contrast(1.2);
}

.studio-right {
    flex: 1;
    max-width: 500px;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.studio-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(227, 30, 36, 0.1);
    color: var(--primary-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.studio-right h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1d22;
    margin-bottom: 15px;
}

.studio-right h2 span {
    color: var(--primary-green);
}

.studio-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
}

.color-picker-area {
    margin-bottom: 30px;
    padding: 25px 30px;
    background: #f9fbfd;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.color-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1d22;
    transition: color 0.3s;
}

.studio-options {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.color-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s;
    outline: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.color-btn::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: border-color 0.3s;
}

.color-btn.active::after {
    border-color: var(--primary-green);
}

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

.studio-action .btn {
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 14px;
    padding: 12px 25px;
}

.studio-note {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 15px;
    font-style: italic;
}

/* Product Comparison Section */
.product-comparison {
    padding: 50px 0;
    background: #ffffff;
}

.comparison-table-wrapper {
    width: 100%;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
    position: relative;
    /* Removed overflow-x: auto to prevent vertical clipping of absolute badges */
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.comparison-table th {
    padding: 35px 20px 25px;
    background: #ffffff;
    font-size: 20px;
    font-weight: 800;
    color: #1a1d22;
    border-bottom: 1px solid #edf2f7;
    position: relative;
    width: 33.33%;
}

.comparison-table th:first-child {
    text-align: left;
    font-size: 24px;
    padding-left: 40px;
}

.comparison-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    background: #e2e8f0;
    color: #4a5568;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 20px;
    letter-spacing: 1.5px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.comparison-badge.premium {
    background: var(--primary-green);
    color: #fff;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.model-price-small {
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    margin-top: 10px;
}

.comparison-table td {
    padding: 22px 20px;
    font-size: 15px;
    color: #4a5568;
    border-bottom: 1px solid #edf2f7;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 700;
    color: #1a1d22;
    padding-left: 40px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Premium Column Highlight */
.comparison-table .premium-col {
    background: #f8fbf5; /* Very subtle green tint */
    border-left: 1px solid rgba(227, 30, 36, 0.1);
    border-right: 1px solid rgba(227, 30, 36, 0.1);
}

.comparison-table th.premium-col {
    background: #f8fbf5;
    border-top: 4px solid var(--primary-green);
    border-top-right-radius: 16px; /* Match wrapper radius */
}

.comparison-table tr:last-child td.premium-col {
    border-bottom-right-radius: 16px;
}

.check-icon {
    width: 20px;
    height: 20px;
    stroke: var(--primary-green);
    stroke-width: 3;
    fill: none;
    vertical-align: middle;
}

.cross-icon {
    width: 20px;
    height: 20px;
    stroke: #e53e3e;
    stroke-width: 3;
    fill: none;
    vertical-align: middle;
}

.action-row td {
    padding: 30px 20px;
}

/* Product Comparison Responsive */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    .comparison-table {
        min-width: 550px; /* Forces table to scroll horizontally instead of squishing */
    }
    .comparison-table th {
        padding: 20px 8px 15px;
        font-size: 15px;
    }
    .comparison-table th:first-child {
        font-size: 16px;
        padding-left: 15px;
    }
    .comparison-table td {
        padding: 12px 8px;
        font-size: 13px;
    }
    .comparison-table td:first-child {
        padding-left: 15px;
    }
    .comparison-badge {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        display: inline-block;
        margin-bottom: 6px;
        font-size: 9px;
        padding: 4px 8px;
    }
    .model-price-small {
        font-size: 12px;
    }
    .action-row td {
        padding: 15px 8px;
    }
    .action-row .btn {
        padding: 8px 10px;
        font-size: 12px;
        min-width: unset;
    }
}

/* EMI Calculator Section */
.emi-calculator-section {
    padding: 50px 0;
    background: #f9fbfd;
}

.emi-card {
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    display: flex;
    overflow: hidden;
    border: 1px solid #edf2f7;
}

.emi-controls {
    flex: 1.5;
    padding: 50px;
}

.emi-input-group {
    margin-bottom: 40px;
}

.emi-input-group:last-child {
    margin-bottom: 0;
}

.input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.input-header label {
    font-size: 16px;
    color: #4a5568;
    font-weight: 600;
}

.value-display {
    font-size: 20px;
    font-weight: 800;
    color: #1a1d22;
}

/* Custom Range Slider Styling */
.emi-input-group input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #edf2f7;
    border-radius: 4px;
    outline: none;
    margin: 10px 0;
}

.emi-input-group input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-green);
    cursor: pointer;
    border: 4px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.emi-input-group input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #a0aec0;
    margin-top: 8px;
    font-weight: 500;
}

.emi-results {
    flex: 1;
    background: #1a1d22;
    padding: 50px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.result-box {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.result-box h4 {
    color: #a0aec0;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.result-box .price-display {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.result-box .period {
    font-size: 18px;
    color: #a0aec0;
    font-weight: 500;
}

.result-details .detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 15px;
}

.result-details .detail-row span {
    color: #a0aec0;
}

.result-details .detail-row strong {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .emi-card {
        flex-direction: column;
    }
    .emi-controls, .emi-results {
        padding: 20px;
    }
    .input-header label {
        font-size: 14px;
    }
    .value-display {
        font-size: 16px;
    }
    .emi-input-group {
        margin-bottom: 25px;
    }
    .emi-input-group input[type=range]::-webkit-slider-thumb {
        width: 18px;
        height: 18px;
        border-width: 3px;
    }
    .range-labels {
        font-size: 11px;
    }
    .result-box .price-display {
        font-size: 32px;
    }
    .result-details .detail-row {
        font-size: 13.5px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 50px 0;
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--primary-green);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(227, 30, 36, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-card h3 {
    font-size: 18px;
    color: #1a1d22;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    text-align: justify;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 40px 0;
    }
    .benefits-grid {
        gap: 20px;
        margin-top: 30px;
    }
    .benefit-card {
        padding: 20px 15px;
    }
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
    .benefit-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .benefit-card p {
        font-size: 13.5px;
        text-align: center; /* Fixes large gaps from justify on small screens */
    }
}


/* Footer */
.main-footer {
    background: #0a0f14;
    color: #a0abb8;
    padding-top: 60px;
    border-top: 2px solid rgba(227, 30, 36, 0.2);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.brand-col .logo {
    margin-bottom: 20px;
}

.main-footer .brand-col .logo-img img {
    height: 45px !important;
    max-height: 45px !important;
    width: auto !important;
    max-width: 250px !important;
    object-fit: contain !important;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #a0abb8;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-green);
}

.footer-col h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #a0abb8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-green);
}

.footer-dropdown {
    position: relative;
}

.footer-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.footer-dropdown-menu {
    display: none;
    padding-left: 15px !important;
    margin-top: 10px;
    list-style: none;
    border-left: 2px solid rgba(227, 30, 36, 0.3);
}

.footer-dropdown-menu li {
    margin-bottom: 8px !important;
}

.footer-dropdown-menu a {
    font-size: 13px;
    color: #808b98;
}

.footer-dropdown.active .footer-dropdown-menu {
    display: block;
}

.footer-dropdown.active .footer-dropdown-toggle svg {
    transform: rotate(180deg);
}

.footer-dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #d1d5db;
}

.contact-list li > svg,
.contact-list li > .pulse-icon-wrapper {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-list li > svg {
    width: 18px;
    height: 18px;
}

.contact-list svg {
    color: var(--primary-green);
}

.footer-bottom {
    background: #05080a;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    font-size: 13px;
    color: #6b7280;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .features-bar {
        padding: 20px 10px;
    }
    .hero-title {
        font-size: 60px;
    }
}
@media (max-width: 992px) {
    .hero-title {
        font-size: 50px;
    }
    .features-bar {
        flex-wrap: wrap;
        justify-content: center;
    }
    .feature-item {
        flex: 0 0 33.33%;
    }
    .feature-item:not(:last-child)::after {
        display: none;
    }
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-buttons {
        flex-direction: column;
        max-width: 250px;
    }
    .feature-item {
        flex: 0 0 50%;
        justify-content: flex-start;
        padding: 0 10px;
    }
    .models-grid {
        grid-template-columns: 1fr;
    }
}

/* Statistics Section */
.stats-section {
    padding: 50px 0;
    background: #1a1d22;
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    background: #2a2e35;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(227, 30, 36, 0.2);
}

.stat-icon svg {
    width: 30px;
    height: 30px;
}

.stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.stat-number h3 {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    color: var(--primary-green);
}

.stat-number span {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.stat-item p {
    font-size: 16px;
    color: #a0aab2;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

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

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .stat-item {
        padding: 8px 4px;
        border-radius: 12px;
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .stat-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 2px;
    }
    .stat-icon svg {
        width: 18px;
        height: 18px;
    }
    .stat-number {
        margin-bottom: 2px;
    }
    .stat-number h3 {
        font-size: 18px;
    }
    .stat-number span {
        font-size: 14px;
    }
    .stat-item p {
        font-size: 9px;
        letter-spacing: 0px;
        white-space: nowrap;
    }
}

/* Accessories Section */
.accessories-section {
    padding: 50px 0;
    background: #f4f7f6;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.accessory-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
}

.accessory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.acc-img {
    width: 100%;
    height: 250px;
    background: #f9fbfd;
    overflow: hidden;
}

.acc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.acc-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.acc-category {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.acc-info h4 {
    font-size: 18px;
    color: #1a1d22;
    margin-bottom: 15px;
    flex: 1;
}

.acc-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.acc-price .price {
    font-size: 20px;
    font-weight: 800;
    color: #1a1d22;
}

.add-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f4f8;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a1d22;
    transition: background 0.3s, color 0.3s;
}

.add-btn svg {
    width: 20px;
    height: 20px;
}

.accessory-card:hover .add-btn {
    background: var(--primary-green);
    color: #ffffff;
}

@media (max-width: 992px) {
    .accessories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .accessories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .accessory-card {
        border-radius: 12px;
    }
    .acc-img {
        height: 140px;
    }
    .acc-info {
        padding: 12px;
    }
    .acc-category {
        font-size: 9px;
        margin-bottom: 5px;
    }
    .acc-info h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .acc-price .price {
        font-size: 14px;
    }
    .add-btn {
        width: 28px;
        height: 28px;
    }
    .add-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* Mobile App Section */
.app-section {
    padding: 50px 0;
    background: #1a1d22;
    color: #ffffff;
    overflow: hidden;
}

.app-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.app-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.css-phone {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 45px;
    border: 10px solid #2a2e35;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 10px rgba(255,255,255,0.1);
    z-index: 1;
    overflow: hidden;
}

.css-phone::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-green);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #2a2e35;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #15181c 0%, #0d1013 100%);
    padding: 35px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.status-bar .icons svg {
    width: 14px;
    height: 14px;
    color: var(--primary-green);
}

.app-header h3 {
    font-size: 24px;
    margin-bottom: 2px;
}

.app-header p {
    font-size: 12px;
    color: var(--primary-green);
    margin: 0;
}

.app-map {
    height: 180px;
    background: #1e2228;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.route-line {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60%;
    height: 3px;
    background: var(--primary-green);
    transform: rotate(-20deg);
}

.scooter-marker {
    position: absolute;
    top: 40%;
    left: 70%;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 3px solid var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-green);
}

.app-card {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.app-card h4 {
    font-size: 14px;
    color: #a0aab2;
    margin-bottom: 15px;
    font-weight: 500;
}

.battery-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 6px solid #2a2e35;
    border-top-color: var(--primary-green);
    border-right-color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: rotate(-45deg);
}

.battery-ring .pct {
    transform: rotate(45deg);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.range-text {
    font-size: 12px;
    margin: 0 !important;
}

.range-text span {
    font-weight: 700;
    color: #fff;
}

.app-controls {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 20px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aab2;
}

.control-btn.active {
    background: var(--primary-green);
    color: #fff;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);
}

.control-btn svg {
    width: 22px;
    height: 22px;
}

.app-content {
    flex: 1;
}

.app-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.app-content h2 span {
    color: var(--primary-green);
}

.app-content p {
    font-size: 16px;
    color: #a0aab2;
    margin-bottom: 30px;
    line-height: 1.6;
}

.app-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.app-features li svg {
    width: 24px;
    height: 24px;
}

.app-downloads {
    display: flex;
    gap: 20px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #2a2e35;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    transition: background 0.3s, transform 0.3s;
}

.store-btn:hover {
    background: #3a3f47;
    transform: translateY(-3px);
}

.store-btn svg {
    width: 28px;
    height: 28px;
}

.store-btn .btn-text {
    display: flex;
    flex-direction: column;
}

.store-btn .btn-text span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #a0aab2;
}

.store-btn .btn-text strong {
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .app-wrapper {
        flex-direction: column;
        text-align: left;
    }
    .app-features {
        display: block;
        text-align: left;
    }
    .app-features li {
        justify-content: flex-start;
    }
    .app-downloads {
        justify-content: flex-start;
    }
    .app-image img {
        max-width: 80%;
    }
}

@media (max-width: 576px) {
    .css-phone {
        width: 260px;
        height: 520px;
        border-width: 8px;
        border-radius: 35px;
    }
    .phone-screen {
        padding: 25px 15px 15px;
        gap: 10px;
    }
    .phone-notch {
        width: 100px;
        height: 20px;
    }
    .app-header h3 {
        font-size: 18px;
    }
    .app-map {
        height: 120px;
    }
    .battery-ring {
        width: 70px;
        height: 70px;
        border-width: 4px;
        margin-bottom: 10px;
    }
    .battery-ring .pct {
        font-size: 16px;
    }
    .control-btn {
        width: 40px;
        height: 40px;
    }
    .control-btn svg {
        width: 18px;
        height: 18px;
    }
    .app-content h2 {
        font-size: 26px;
    }
    .app-content p {
        font-size: 14px;
        margin-bottom: 20px;
        text-align: justify;
    }
    .app-features li {
        font-size: 14px;
        gap: 10px;
    }
    .app-features li svg {
        width: 18px;
        height: 18px;
    }
    .app-downloads {
        gap: 10px;
    }
    .store-btn {
        padding: 8px 12px;
        gap: 8px;
    }
    .store-btn svg {
        width: 18px;
        height: 18px;
    }
    .store-btn .btn-text span {
        font-size: 7px;
        letter-spacing: 0;
        white-space: nowrap;
    }
    .store-btn .btn-text strong {
        font-size: 11px;
    }
}

/* Test Ride Section */
.test-ride-section {
    background: #ffffff;
}

.test-ride-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #f9fbfd;
    padding: 80px 10%;
    width: 100%;
    box-sizing: border-box;
    /* Removed border and border-radius for full 100% width edge-to-edge */
}

.test-ride-content {
    flex: 1;
}

.test-ride-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1d22;
}

@media (max-width: 576px) {
    .test-ride-section .test-ride-content h2 {
        font-size: 24px !important;
        line-height: 1.2;
        margin-bottom: 10px;
    }
}

.test-ride-content h2 span {
    color: var(--primary-green);
}

.test-ride-content p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.test-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.test-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1d22;
}

.test-benefits li svg {
    width: 24px;
    height: 24px;
}

.test-ride-form-container {
    flex: 0 0 450px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border: 1px solid #edf2f7;
}

.test-ride-form-container h3 {
    font-size: 24px;
    color: #1a1d22;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: #f9fbfd;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: var(--primary-green);
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
}

.test-ride-form-container .submit-btn {
    background: var(--primary-green);
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.test-ride-form-container .submit-btn:hover {
    background: var(--primary-green-hover);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .test-ride-wrapper {
        flex-direction: column;
        padding: 40px 20px;
    }
    .test-ride-form-container {
        flex: 1;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 576px) {
    .test-ride-wrapper {
        padding: 30px 0;
        gap: 20px;
    }
    .test-ride-content {
        padding: 0 15px;
    }
    .test-ride-content h2 {
        font-size: 18px !important;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .test-ride-content p {
        font-size: 13px;
        text-align: justify;
        margin-bottom: 20px;
    }
    .test-benefits li {
        font-size: 13px;
        gap: 8px;
        margin-bottom: 10px;
    }
    .test-benefits li svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    .test-ride-form-container {
        padding: 20px 15px;
        border-radius: 0;
        margin: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid #edf2f7;
    }
    .test-ride-form-container h3 {
        font-size: 18px;
        margin-bottom: 18px;
    }
    .form-group {
        margin-bottom: 14px;
    }
    .form-group input {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* Customer Reviews Section */
.reviews-section {
    padding: 50px 0;
    background: #f4f7f6;
}

.reviews-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    position: relative;
}

.slider-nav {
    background: #ffffff;
    border: 1px solid #edf2f7;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: #1a1d22;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
}

.slider-nav svg {
    width: 24px;
    height: 24px;
}

.reviews-track-container {
    overflow: hidden;
    flex: 1;
    border-radius: 20px;
    padding: 10px 0; /* space for box-shadow on cards */
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #edf2f7;
    transition: transform 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.user-avatar svg {
    width: 24px;
    height: 24px;
}

.user-info h4 {
    font-size: 16px;
    color: #1a1d22;
    margin: 0 0 4px 0;
}

.user-info span {
    font-size: 13px;
    color: #a0aab2;
}

.rating-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.rating-stars svg {
    width: 18px;
    height: 18px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    font-style: italic;
}

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

.dot {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-green);
    width: 25px;
    border-radius: 10px;
}

/* Nav buttons inside slider-dots: hidden on desktop, shown on mobile */
.slider-dots .slider-nav {
    display: none;
}

@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    /* Card takes full width, no arrows overlapping */
    .reviews-slider-wrapper {
        margin-top: 25px;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    .reviews-track-container {
        overflow: hidden;
        width: 100%;
        padding: 5px 0;
        border-radius: 0;
    }
    .reviews-track {
        gap: 0;
    }
    .review-card {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: start;
        box-sizing: border-box;
    }
    /* Controls row: [prev] [dots] [next] */
    .slider-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 20px;
    }
    /* Show nav arrows inside the dots row */
    .slider-dots .slider-nav {
        display: flex;
        position: static;
        transform: none;
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        background: #ffffff;
        border: 1px solid #edf2f7;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        border-radius: 50%;
        color: #1a1d22;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }
    .slider-dots .slider-nav:hover {
        background: var(--primary-green);
        color: #fff;
        border-color: var(--primary-green);
    }
    .slider-dots .slider-nav svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {
    .reviews-section {
        padding: 35px 0;
    }
    .reviews-slider-wrapper {
        margin-top: 20px;
    }
    .reviews-track {
        gap: 15px;
    }
    .review-card {
        padding: 20px 15px;
        border-radius: 14px;
    }
    .review-header {
        gap: 10px;
        margin-bottom: 12px;
    }
    .user-avatar {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    .user-avatar svg {
        width: 18px;
        height: 18px;
    }
    .user-info h4 {
        font-size: 14px;
    }
    .user-info span {
        font-size: 11px;
    }
    .rating-stars {
        margin-bottom: 10px;
    }
    .rating-stars svg {
        width: 14px;
        height: 14px;
    }
    .review-text {
        font-size: 13px;
        line-height: 1.6;
    }
    .slider-dots {
        margin-top: 20px;
        gap: 8px;
    }
    .dot {
        width: 6px;
        height: 6px;
    }
    .dot.active {
        width: 20px;
        height: 4px;
        border-radius: 4px;
    }
}

/* Dealer Locator Section */
.dealer-locator-section {
    padding: 50px 0;
    background: #ffffff;
}

.locator-wrapper {
    display: flex;
    gap: 30px;
    height: 500px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
    overflow: hidden;
    margin-top: 40px;
}

.dealer-list-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f9fbfd;
    border-right: 1px solid #edf2f7;
}

.search-box {
    padding: 20px;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #edf2f7;
    background: #ffffff;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.search-box input:focus {
    border-color: var(--primary-green);
}

.search-btn {
    background: var(--primary-green);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.search-btn:hover {
    background: var(--primary-green-hover);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

.dealers-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.dealer-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dealer-card:last-child {
    margin-bottom: 0;
}

.dealer-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: var(--primary-green);
}

.dealer-card.active {
    border-color: var(--primary-green);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.1);
}

.dealer-card h4 {
    font-size: 16px;
    color: #1a1d22;
    margin-bottom: 5px;
}

.dealer-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 15px;
}

.dealer-actions {
    display: flex;
    gap: 15px;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
}

.action-link svg {
    width: 14px;
    height: 14px;
}

.action-link:hover {
    color: var(--primary-green-hover);
}

.map-col {
    flex: 1.5;
    position: relative;
}

.map-col iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .locator-wrapper {
        flex-direction: column;
        height: 700px;
    }
    .dealer-list-col {
        flex: 1;
        border-right: none;
        border-bottom: 1px solid #edf2f7;
    }
    .map-col {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .dealer-locator-section {
        padding: 35px 0;
    }
    .locator-wrapper {
        flex-direction: column;
        height: auto;
        border-radius: 16px;
        margin-top: 20px;
    }
    .dealer-list-col {
        max-height: 320px;
        border-right: none;
        border-bottom: 1px solid #edf2f7;
    }
    .search-box {
        padding: 12px;
        gap: 8px;
    }
    .search-box input {
        padding: 10px 14px;
        font-size: 13px;
    }
    .search-btn {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        flex-shrink: 0;
    }
    .dealers-scroll {
        padding: 12px;
    }
    .dealer-card {
        padding: 14px;
        margin-bottom: 10px;
        border-radius: 12px;
    }
    .dealer-card h4 {
        font-size: 14px;
    }
    .dealer-card p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .action-link {
        font-size: 12px;
    }
    .map-col {
        height: 220px;
        flex: none;
    }
}

/* Blog Section */
.blog-section {
    padding: 50px 0 50px 0; /* Increased bottom padding to fix sticking issue */
    background: #f9fbfd;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #edf2f7;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-green);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    font-size: 20px;
    color: #1a1d22;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: gap 0.3s;
}

.read-more svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.read-more:hover {
    gap: 12px;
}

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

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 35px 0;
    }
    .blog-grid {
        gap: 15px;
        margin-top: 20px;
    }
    .blog-img {
        height: 180px;
    }
    .blog-tag {
        font-size: 10px;
        padding: 5px 10px;
        top: 12px;
        left: 12px;
    }
    .blog-content {
        padding: 18px 15px;
    }
    .blog-content h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .blog-content p {
        font-size: 13px;
        margin-bottom: 14px;
    }
    .read-more {
        font-size: 13px;
    }
}

/* Social Media Feed Section */
.social-section {
    padding: 50px 0;
    background: #ffffff;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.social-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    display: block;
    aspect-ratio: 1 / 1;
}

.social-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.social-card:hover .social-overlay {
    opacity: 1;
}

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

.social-stats {
    display: flex;
    gap: 20px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
}

.social-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-stats svg {
    width: 20px;
    height: 20px;
}

.post-type-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.post-type-icon svg {
    width: 24px;
    height: 24px;
}

.mt-5 {
    margin-top: 50px;
}

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

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

@media (max-width: 576px) {
    .social-grid {
        gap: 10px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 20px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background-color: #fff;
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f1f1f1;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary-green);
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fafafa;
}

.faq-answer p {
    padding: 20px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 576px) {
    .faq-section {
        padding: 35px 0;
    }
    .faq-category {
        margin-bottom: 25px;
    }
    .faq-category h3 {
        font-size: 18px;
        margin-bottom: 14px;
    }
    .faq-item {
        margin-bottom: 10px;
        border-radius: 10px;
    }
    .faq-question {
        padding: 14px 15px;
        font-size: 14px;
    }
    .faq-question::after {
        font-size: 20px;
    }
    .faq-answer p {
        padding: 14px 15px;
        font-size: 13px;
    }
}

/* V2 Models Grid */
.models-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 10px;
}

.product-card-v2 {
    background: #fff;
    border: 1px solid #f1f3f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.pc-image-area {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #e9ecef;
    position: relative;
    overflow: hidden;
}

.pc-image-area.studio-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.pc-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-image-area.studio-bg img.scooter-img {
    width: 90%;
    height: auto;
    object-fit: contain;
    z-index: 2;
}

.mix-blend-multiply {
    mix-blend-mode: multiply;
}

.card-shadow {
    position: absolute;
    bottom: 15%;
    left: 20%;
    width: 60%;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(4px);
    z-index: 1;
}

.pc-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pc-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.pc-header-row h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1d22;
}

.pc-colors {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.color-label {
    font-size: 11px;
    color: #868e96;
    margin-bottom: 5px;
}

.color-dots {
    display: flex;
    gap: 6px;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s;
}

.color-dot:hover {
    transform: scale(1.1);
}

.color-dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--primary-green, #68A020);
    border-radius: 50%;
}

.scooter-img {
    transition: filter 0.5s ease;
}

.filter-red {
    filter: sepia(1) hue-rotate(320deg) saturate(3) brightness(0.9);
}

.filter-blue {
    filter: sepia(1) hue-rotate(190deg) saturate(3) brightness(0.9);
}

.filter-black {
    filter: none;
}

.filter-grey {
    filter: grayscale(100%) brightness(1.2);
}

.filter-white {
    filter: grayscale(100%) brightness(1.5) contrast(0.8);
}

.pc-price-info {
    margin-bottom: 25px;
}

.starting-price {
    font-size: 15px;
    color: #495057;
    margin-bottom: 5px;
}

.starting-price strong {
    font-size: 16px;
    color: #212529;
}

.flexipay {
    font-size: 13px;
    color: #868e96;
}

.pc-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

@media (max-width: 768px) {
    .models-grid-v2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .pc-content {
        padding: 15px;
    }
    .pc-header-row {
        margin-bottom: 12px;
    }
    .pc-header-row h3 {
        font-size: 20px;
    }
    .color-dot {
        width: 16px;
        height: 16px;
    }
    .pc-price-info {
        margin-bottom: 15px;
    }
    .starting-price {
        font-size: 13.5px;
    }
    .starting-price strong {
        font-size: 14.5px;
    }
    .flexipay {
        font-size: 12px;
    }
    .pc-actions {
        gap: 10px;
    }
    .pc-actions .btn {
        padding: 8px 10px;
        font-size: 13px;
    }
}

/* Custom Test Ride Sizes */
.test-ride-content h2 {
    font-size: 56px !important;
}

.test-ride-content p {
    font-size: 18px !important;
    line-height: 1.6;
}

.test-benefits li {
    font-size: 18px !important;
    margin-bottom: 20px;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.animate-fade-left.is-visible, .animate-fade-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}
.animate-zoom-in.is-visible {
    opacity: 1;
    transform: scale(1);
}

.animate-flip-in {
    opacity: 0;
    transform: perspective(400px) rotateX(-20deg) translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}
.animate-flip-in.is-visible {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg) translateY(0);
}

/* ---- MAXIMUM ATTRACTIVE DESIGN UPGRADES ---- */

/* 1. Simple Shadow for Sticky Header */
.main-header.scrolled {
    animation: floatingPill 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* 2. Nav Link Animated Glowing Underline */
.main-nav a {
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-green);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

/* 3. Button Shiny Sweep Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shineSweep 4s infinite;
    z-index: -1;
}

@keyframes shineSweep {
    0% { left: -150%; }
    15% { left: 150%; }
    100% { left: 150%; }
}

/* Progress Glass Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 60px;
    height: 60px;
    background: rgba(12, 18, 24, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.4);
    background: rgba(20, 30, 40, 0.85);
}

.scroll-to-top .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* Start at top */
}

.scroll-to-top .progress-ring__circle {
    stroke-dasharray: 176;
    stroke-dashoffset: 176;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

.scroll-to-top .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-to-top .arrow-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    opacity: 0;
    transform: translate(-50%, -20%);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-to-top:hover .progress-text {
    opacity: 0;
    transform: translate(-50%, -80%);
}

.scroll-to-top:hover .arrow-icon {
    opacity: 1;
    transform: translate(-50%, -50%);
}

@media (max-width: 576px) {
    .scroll-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 15px;
    }
    .scroll-to-top .progress-text {
        font-size: 10px;
    }
    .scroll-to-top .arrow-icon {
        width: 16px;
        height: 16px;
    }
}

/* Showcase Gallery Section */
.showcase-section {
    padding: 100px 0;
    background: radial-gradient(circle at 50% -20%, #ffffff 0%, #f4f7f6 100%);
    position: relative;
    overflow: hidden;
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(227, 30, 36, 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    padding: 20px 15px;
    position: relative;
    z-index: 1;
}

.showcase-item {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: #000;
}

.showcase-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 3;
}

.showcase-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
    opacity: 0.9;
}

.showcase-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 60px rgba(227, 30, 36, 0.15), 0 15px 20px rgba(0,0,0,0.1);
}

.showcase-item:hover img {
    transform: scale(1.1) rotate(1deg);
    opacity: 1;
}

.showcase-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-green);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 2;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: 0.1s;
}

.showcase-item:hover .showcase-badge {
    transform: translateY(0);
    opacity: 1;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 30px 30px;
    background: linear-gradient(to top, rgba(10, 15, 20, 0.95) 0%, rgba(10, 15, 20, 0.6) 50%, transparent 100%);
    color: white;
    z-index: 1;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
    padding-bottom: 40px;
    background: linear-gradient(to top, rgba(10, 15, 20, 1) 0%, rgba(10, 15, 20, 0.8) 60%, transparent 100%);
}

.showcase-overlay h4 {
    margin: 0 0 8px 0;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    transform: translateY(20px);
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    letter-spacing: 0.5px;
}

.showcase-overlay p {
    margin: 0;
    font-size: 1.05rem;
    color: #cbd5e1;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: 0.1s;
    line-height: 1.5;
}

.showcase-item:hover .showcase-overlay h4,
.showcase-item:hover .showcase-overlay p {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px 0;
    }
    .showcase-item {
        border-radius: 15px;
    }
    .showcase-item img {
        height: 250px;
    }
    .showcase-badge {
        font-size: 11px;
        padding: 5px 12px;
        top: 15px;
        right: 15px;
    }
    .showcase-overlay {
        padding: 20px;
    }
    .showcase-overlay h4 {
        font-size: 1.5rem;
    }
    .showcase-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .showcase-grid {
        gap: 15px;
    }
    .showcase-item {
        border-radius: 12px;
    }
    .showcase-item img {
        height: 200px;
    }
    .showcase-overlay h4 {
        font-size: 1.25rem;
    }
    .showcase-overlay p {
        font-size: 0.8rem;
    }
}

/* Video Showcase Section */
.video-section {
    padding: 50px 0;
    background: #fdfbf7;
    position: relative;
    overflow: hidden;
}

.video-section .section-header {
    position: relative;
    z-index: 1;
}

.video-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px 15px;
    position: relative;
    z-index: 1;
}

.video-item {
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    padding: 0;
    position: relative;
    background: transparent;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
    overflow: hidden;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1/1;
    opacity: 1;
    transition: opacity 0.5s ease;
    position: relative;
    z-index: 1;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.video-item:hover video {
    opacity: 1;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 70px;
    height: 70px;
    background: rgba(227, 30, 36, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.5);
    animation: pulsePlay 2s infinite;
}

.video-item:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    background: var(--primary-green);
    animation: none;
}

.play-overlay svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(227, 30, 36, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(227, 30, 36, 0);
    }
}

@media (max-width: 768px) {
    .video-grid {
        gap: 20px;
        padding: 10px 0;
    }
    .video-item {
        border-radius: 16px;
    }
    .video-item video {
        aspect-ratio: 16 / 9;
    }
    .play-overlay {
        width: 50px;
        height: 50px;
    }
    .play-overlay svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .video-grid {
        gap: 15px;
    }
    .video-item {
        border-radius: 12px;
    }
    .play-overlay {
        width: 45px;
        height: 45px;
    }
    .play-overlay svg {
        width: 18px;
        height: 18px;
    }
}

/* Showroom Gallery */
.showroom-gallery {
    padding: 80px 0;
    background: #0d1117;
}

.showroom-gallery .section-header h2 {
    color: #fff;
}

.showroom-gallery .section-header p {
    color: #a0abb8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(227, 30, 36, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.gallery-overlay h4 {
    color: #fff;
    font-size: 18px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

/* Responsive adjustments for Model Cards */
@media (max-width: 768px) {
    .model-card {
        padding: 15px;
    }
    .model-badge {
        font-size: 10px;
        padding: 3px 10px;
        top: -10px;
        right: 15px;
    }
    .model-info h3 {
        font-size: 18px;
        margin-top: 5px;
    }
    .model-price {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .model-features li {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .model-actions .btn {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Finance Partners */
.finance-partners {
    margin-top: 50px;
    text-align: center;
    background: #0f141a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.partners-title {
    color: #fff;
    margin-bottom: 30px;
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.partner-card {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 28px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 180px;
    cursor: pointer;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.partner-logo-img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}
.fallback-icon {
    color: #333;
    opacity: 0.8;
}
.partner-name {
    color: #333;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 15px;
    }
    .partner-card {
        width: calc(50% - 15px);
        min-width: auto;
    }
}
