/* ========================================
   RETAIL PAGE - ORGANIZED BY VISUAL HIERARCHY
   ======================================== */

/* ========================================
   1. NAVIGATION (Top of page)
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000 !important;
    transition: all 0.3s ease;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force correct navigation layout */
.navbar .nav-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-direction: row !important;
    width: 100% !important;
    height: 80px !important;
    padding-top: 20px !important;
}

.navbar .nav-logo {
    order: 1 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.navbar .nav-menu {
    order: 2 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    position: fixed !important;
    width: 200px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%) !important;
    backdrop-filter: blur(12px) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 0.5rem 0 !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease !important;
    z-index: 1000 !important;
    gap: 0 !important;
}

.navbar .nav-menu.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    pointer-events: all !important;
}

.navbar .nav-menu .nav-item {
    width: 100%;
    margin: 0;
}

.navbar .nav-menu .nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1E293B !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    width: 100%;
}

.navbar .nav-menu .nav-link:hover {
    background: rgba(50, 205, 50, 0.1);
    color: #32CD32 !important;
}

.navbar .nav-menu .nav-link.active {
    background: rgba(50, 205, 50, 0.15);
    color: #32CD32 !important;
}

.navbar .nav-menu .nav-link.active::after {
    display: none;
}

.navbar .nav-toggle {
    order: 3 !important;
    display: flex !important;
}

.nav-logo img {
    height: 120px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #1E293B !important;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.nav-link:hover {
    color: #32CD32;
}

.nav-link.active {
    color: #32CD32;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #32CD32;
    border-radius: 2px;
}

.nav-home:hover { color: #32CD32; }
.nav-retail:hover { color: #32CD32; }
.nav-lmd:hover { color: #32CD32; }
.nav-about:hover { color: #32CD32; }
.nav-contact:hover { color: #32CD32; }
.nav-blog:hover { color: #32CD32; }
.nav-blog.active::after { background: #32CD32; }
.nav-careers:hover { color: #32CD32; }
.nav-careers.active::after { background: #32CD32; }

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #64748B;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================
   2. STICKY CTAs (Fixed position)
   ======================================== */

.sticky-ctas {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: revealStickyCTA 0.8s ease-out 2s forwards;
}

.cta-rider-btn {
    padding: 12px 24px;
    background: #32CD32;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(50, 205, 50, 0.3);
    white-space: nowrap;
    display: inline-block;
}

.cta-rider-btn:hover {
    background: #228B22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
}

.go-to-top-btn {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #64748B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
    opacity: 0;
    z-index: 998;
    animation: revealGoToTop 0.8s ease-out 2.5s forwards;
}

.go-to-top-btn:hover {
    background: #475569;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(100, 116, 139, 0.4);
}

.go-to-top-btn i {
    color: white;
    font-size: 1.2rem;
}

@keyframes revealGoToTop {
    0% { opacity: 0; transform: translateY(-50%) scale(0.8); }
    100% { opacity: 1; transform: translateY(-50%) scale(1); }
}

/* ========================================
   3. MAIN CONTENT CONTAINER
   ======================================== */

.seamless-content {
    margin-top: 80px;
    background: #FFFFFF;
}

/* ========================================
   4. HERO SECTION (First visible content)
   ======================================== */

.hero-section {
    padding: 100px 0;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    max-width: 80%;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #64748B;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-visual {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
}

/* ========================================
   5. BUTTONS (Used throughout page)
   ======================================== */

.btn {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: #32CD32;
    color: white;
}

.btn-primary:hover {
    background: #1e991e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.3);
}

.btn-secondary {
    background: #32CD32;
    color: white;
}

.btn-secondary:hover {
    background: #1e991e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.3);
}

.btn-outline {
    background: transparent;
    color: #3B82F6;
    border-color: #3B82F6;
}

.btn-outline:hover {
    background: #3B82F6;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 50px;
}

/* ========================================
   6. MULTI-BRAND SHOWROOMS SECTION
   ======================================== */

.multi-brand-section {
    padding: 50px 0;
    background: #FFFFFF;
    position: relative;
    margin-top: -20px;
}

.multi-brand-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: #FFFFFF;
    z-index: 1;
}

.multi-brand-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 50vh;
}

.multi-brand-text {
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 3;
}

.multi-brand-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.multi-brand-text p {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.multi-brand-visual {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.multi-brand-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

/* ========================================
   7. DEDICATED SHOWROOMS SECTION
   ======================================== */

.dedicated-showrooms-section {
    padding: 50px 0;
    background: #FFFFFF;
    position: relative;
    margin-top: -20px;
}

.dedicated-showrooms-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: #FFFFFF;
    z-index: 1;
}

.dedicated-showrooms-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 50vh;
}

.dedicated-showrooms-text {
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 3;
}

.dedicated-showrooms-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.dedicated-showrooms-text p {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.dedicated-showrooms-visual {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dedicated-showrooms-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

/* ========================================
   8. AFTER-SALES SERVICE SECTION
   ======================================== */

.after-sales-section {
    padding: 50px 0;
    background: #FFFFFF;
    position: relative;
    margin-top: -20px;
}

.after-sales-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: #FFFFFF;
    z-index: 1;
}

.after-sales-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 50vh;
}

.after-sales-text {
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 3;
}

.after-sales-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.after-sales-text p {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.after-sales-visual {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.after-sales-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

/* ========================================
   9. GENUINE SPARES SECTION
   ======================================== */

.genuine-spares-section {
    padding: 20px 0;
    background: #FFFFFF;
    position: relative;
    margin-top: -40px;
}

.genuine-spares-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: #FFFFFF;
    z-index: 1;
}

.genuine-spares-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 50vh;
}

.genuine-spares-text {
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 3;
}

.genuine-spares-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.genuine-spares-text p {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.genuine-spares-visual {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.genuine-spares-image {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

/* ========================================
   10. TRANSPARENT PRICING SECTION
   ======================================== */

.transparent-pricing-section {
    padding: 50px 0;
    background: #FFFFFF;
    position: relative;
    margin-top: -20px;
}

.transparent-pricing-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: #FFFFFF;
    z-index: 1;
}

.transparent-pricing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 50vh;
}

.transparent-pricing-text {
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 3;
}

.transparent-pricing-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.transparent-pricing-text p {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.transparent-pricing-visual {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.transparent-pricing-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

/* ========================================
   11. END-TO-END SUPPORT SECTION
   ======================================== */

.end-to-end-support-section {
    padding: 50px 0;
    background: #FFFFFF;
    position: relative;
    margin-top: -20px;
}

.end-to-end-support-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: #FFFFFF;
    z-index: 1;
}

.end-to-end-support-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 50vh;
}

.end-to-end-support-text {
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 3;
}

.end-to-end-support-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.end-to-end-support-text p {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.end-to-end-support-visual {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.end-to-end-support-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

/* ========================================
   12. FINANCE ASSISTANCE SECTION
   ======================================== */

.finance-assistance-section {
    padding: 50px 0;
    background: #FFFFFF;
    position: relative;
    margin-top: -20px;
}

.finance-assistance-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: #FFFFFF;
    z-index: 1;
}

.finance-assistance-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 50vh;
}

.finance-assistance-text {
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 3;
}

.finance-assistance-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.finance-assistance-text p {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.finance-assistance-visual {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.finance-assistance-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

/* ========================================
   13. FEATURE LISTS (Used in content blocks)
   ======================================== */

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

.feature-list li {
    padding: 12px 0;
    color: #475569;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========================================
   14. BRANDS SECTION (Mid-page section)
   ======================================== */

.brands-section {
    padding: 50px 0;
    background: #FFFFFF;
    position: relative;
    margin-top: -20px;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: #FFFFFF;
    z-index: 1;
}

.brands-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    text-align: center;
}

.brands-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 40px 0;
    line-height: 1.3;
}

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

.brand-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.brand-logo {
    width: 120px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
}

.brand-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1E293B;
    margin: 0 0 10px 0;
}

.brand-tag {
    font-size: 0.9rem;
    color: #32CD32;
    font-weight: 500;
    margin: 0 0 15px 0;
    text-align: center !important;
}

.brand-card p {
    color: #64748B;
    line-height: 1.5;
    margin: 0 0 20px 0;
    text-align: left;
}

.brand-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.brand-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.brand-gallery img:hover {
    transform: scale(1.05);
}

/* ========================================
   15. CTA SECTION (Pre-footer section)
   ======================================== */

.cta-section {
    padding: 50px 0;
    background: #FFFFFF;
    color: #1E293B;
    text-align: center;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #1E293B;
}

.cta-content p {
    font-size: 1.2rem;
    color: #64748B;
    margin: 0 0 30px 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   16. FOOTER (Bottom of page)
   ======================================== */

/* Footer Container */
.footer {
    background: #FFFFFF;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 25px 0 15px;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 0px !important;
    margin-bottom: 15px;
    align-items: start;
}

/* Footer Sections - General */
.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #1E293B;
}

.footer-section p {
    color: #64748B;
    line-height: 1.4;
    margin: 0 0 10px 0;
    font-size: 0.9rem;
}

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

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.footer-section ul li a:hover {
    color: #32CD32;
}

/* Section 1: Company Info & Logo */
.footer-section:nth-child(1) {
    max-width: 250px;
    order: 1;
    align-self: flex-start;
    margin-top: -20px;
}

.footer-section:nth-child(1) p {
    margin-top: -15px;
}

/* Section 2: Quick Links */
.footer-section:nth-child(2) {
    display: flex;
    flex-direction: column;
    order: 2;
    align-self: flex-start;
}

/* Section 3: Contact Info & Social */
.footer-section:nth-child(3) {
    order: 3;
    justify-self: end;
    text-align: right;
}

.footer-section:nth-child(3) h4 {
    text-align: left;
}

.footer-section:nth-child(2) h4 {
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
    align-self: center;
    margin-left: -100px;
}

.quick-links-container {
    display: flex !important;
    gap: 0px !important;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.quick-links-left,
.quick-links-right {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.quick-links-left a,
.quick-links-right a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
    margin-bottom: 2px;
    text-align: left;
}

.quick-links-left a:hover,
.quick-links-right a:hover {
    color: #32CD32;
}

/* Section 3: Contact Info & Social */
.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #64748B;
    font-size: 15px;
}

.contact-info i {
    color: #32CD32;
    width: 16px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.social-icons a:hover {
    background: #32CD32;
    color: white;
    border-color: #32CD32;
    transform: translateY(-2px);
}

.footer-logo {
    margin-bottom: -25px;
    margin-top: -10px;
}

.footer-logo img {
    height: 100px;
    width: auto;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #E2E8F0;
    padding-top: 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
}

.footer-bottom p {
    color: #64748B;
    margin: 0 0 5px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #32CD32;
    text-decoration: none;
    font-weight: 400;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========================================
   19. IMAGE MODAL
   ======================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    z-index: 2001;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.prev-btn {
    margin-left: 20px;
}

.next-btn {
    margin-right: 20px;
}

.modal-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.gallery-image {
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ========================================
   20. ANIMATIONS
   ======================================== */

@keyframes revealStickyCTA {
    0% { 
        opacity: 0; 
        transform: translateY(20px) scale(0.8); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

@keyframes revealGoToTop {
    0% { opacity: 0; transform: translateY(-50%) scale(0.8); }
    100% { opacity: 1; transform: translateY(-50%) scale(1); }
}

/* ========================================
   18. RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    /* Navigation - Override base styles */
    .navbar .nav-menu {
        position: fixed !important;
        top: 80px !important;
        right: 20px !important;
        left: auto !important;
        width: 160px !important;
        height: 0rem !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        transition: opacity 0.3s ease, transform 0.3s ease !important;
        z-index: 1000 !important;
        backdrop-filter: blur(12px) !important;
        display: flex !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        padding: 0.2rem 0 !important;
        margin: 0 !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        opacity: 0 !important;
        transform: translateY(-10px) !important;
    }

    .navbar .nav-menu.active {
        opacity: 1 !important;
        transform: translateY(0) !important;
        height: auto !important;
    }

    .navbar .nav-toggle {
        display: flex !important;
        order: 3 !important;
        margin-left: auto !important;
    }

    .nav-link {
        padding: 12px 20px !important;
        color: #1E293B !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    }

    .nav-link:last-child {
        border-bottom: none !important;
    }

    /* Hero Section */
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-visual {
        order: 1;
    }

    .hero-text {
        order: 2;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 200px;
        padding: 10px 18px;
        font-size: 13px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        max-width: 80%;
        padding: 0 10px;
    }

    .hero-image {
        max-width: 100%;
        transform: scale(1.2);
        margin: 20px 0;
    }

    /* Reduce section padding for mobile */
    .hero-section,
    .multi-brand-section,
    .dedicated-showrooms-section,
    .after-sales-section,
    .genuine-spares-section,
    .transparent-pricing-section,
    .end-to-end-support-section,
    .finance-assistance-section,
    .brands-section,
    .cta-section {
        padding: 30px 0;
    }

    /* Reduce wrapper gaps for mobile */
    .multi-brand-wrapper,
    .dedicated-showrooms-wrapper,
    .after-sales-wrapper,
    .genuine-spares-wrapper,
    .transparent-pricing-wrapper,
    .end-to-end-support-wrapper,
    .finance-assistance-wrapper {
        gap: 10px;
    }

    /* Feature Lists */
    .feature-list li {
        padding: 8px 0;
        font-size: 0.9rem;
        padding-left: 25px;
        text-align: left;
    }

    /* Content Blocks */
    .multi-brand-wrapper,
    .dedicated-showrooms-wrapper,
    .after-sales-wrapper,
    .genuine-spares-wrapper,
    .transparent-pricing-wrapper,
    .end-to-end-support-wrapper,
    .finance-assistance-wrapper {
        flex-direction: column;
        gap: 15px;
        min-height: auto;
        text-align: left;
    }

    .multi-brand-text,
    .dedicated-showrooms-text,
    .after-sales-text,
    .end-to-end-support-text,
    .finance-assistance-text {
        order: 2;
        max-width: 100%;
        padding: 0 20px;
        margin-bottom: 10px;
    }

    /* Reduce padding above genuine spares section content */
    .genuine-spares-text {
        order: 2;
        max-width: 100%;
        padding: -10px 20px 0 20px;
        margin-bottom: 10px;
        margin-top: -20px;
    }

    /* Add padding above transparent pricing section content */
    .transparent-pricing-text {
        order: 2;
        max-width: 100%;
        padding: 15px 20px 0 20px;
        margin-bottom: 10px;
    }

    .multi-brand-text h2,
    .dedicated-showrooms-text h2,
    .after-sales-text h2,
    .genuine-spares-text h2,
    .transparent-pricing-text h2,
    .end-to-end-support-text h2,
    .finance-assistance-text h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .multi-brand-text p,
    .dedicated-showrooms-text p,
    .after-sales-text p,
    .genuine-spares-text p,
    .transparent-pricing-text p,
    .end-to-end-support-text p,
    .finance-assistance-text p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    /* Reorder content sections for mobile - images first */
    .multi-brand-visual,
    .dedicated-showrooms-visual,
    .after-sales-visual,
    .genuine-spares-visual,
    .transparent-pricing-visual,
    .end-to-end-support-visual,
    .finance-assistance-visual {
        order: 1;
        max-width: 100%;
        padding: 0 20px;
    }

    .multi-brand-image,
    .dedicated-showrooms-image,
    .after-sales-image,
    .transparent-pricing-image,
    .end-to-end-support-image,
    .finance-assistance-image {
        max-width: 80%;
        transform: scale(1.15);
        margin: 15px 0;
    }

    /* Scale down genuine spares image specifically for mobile */
    .genuine-spares-image {
        max-width: 100%;
        transform: scale(1);
        margin: 5px 0;
    }

    /* Brands Section */
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brand-card {
        padding: 20px;
    }

    .brand-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Modal responsive styles */
    .modal-content {
        width: 95%;
        max-width: 90vw;
    }

    .modal-content img {
        max-height: 70vh;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
        padding: 10px 15px;
    }

    .prev-btn {
        margin-left: 10px;
    }

    .next-btn {
        margin-right: 10px;
    }

    .close {
        top: -30px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .sticky-ctas {
        bottom: 20px;
        right: 20px;
    }

    .cta-rider-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .go-to-top-btn {
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .go-to-top-btn i {
        font-size: 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .footer-section:nth-child(1) {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }

    .footer-section:nth-child(2) {
        text-align: center;
    }

    .footer-section:nth-child(3) {
        text-align: center;
        justify-self: center;
    }

    .footer-section:nth-child(2) h4 {
        margin-left: 0;
        text-align: center;
    }

    .footer-logo {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .footer-logo img {
        margin: 0 auto;
        display: block;
    }

    /* Center company info text in mobile */
    .footer-section:nth-child(1) p {
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
    }

    .footer-section h4 {
        text-align: center;
    }

    .footer-section p {
        text-align: center;
    }

    .footer-section ul {
        text-align: center;
    }

    .footer-section ul li {
        text-align: center;
    }

    .footer-section ul li a {
        text-align: center;
    }

    .quick-links-container {
        text-align: center;
        justify-items: center;
        max-width: 150px;
    }

    .quick-links-left,
    .quick-links-right {
        text-align: center;
    }

    .quick-links-left ul,
    .quick-links-right ul {
        text-align: center;
    }

    .quick-links-left ul li,
    .quick-links-right ul li {
        text-align: center;
    }

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

    .contact-info p {
        text-align: center;
    }

    .footer-section:nth-child(3) h4 {
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.7rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet Styles */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-links-container {
        max-width: 200px;
    }
}

@media (min-width: 769px) {
    /* Desktop and Tablet - Reset order to default */
    .hero-visual,
    .hero-text {
        order: unset;
    }

    .multi-brand-visual,
    .dedicated-showrooms-visual,
    .after-sales-visual,
    .genuine-spares-visual,
    .transparent-pricing-visual,
    .end-to-end-support-visual,
    .finance-assistance-visual {
        order: unset;
    }

    .multi-brand-text,
    .dedicated-showrooms-text,
    .after-sales-text,
    .genuine-spares-text,
    .transparent-pricing-text,
    .end-to-end-support-text,
    .finance-assistance-text {
        order: unset;
    }

    /* Swap positions for specific sections in desktop view */
    /* Multi-brand showrooms - image left, text right */
    .multi-brand-visual {
        order: 1;
    }
    .multi-brand-text {
        order: 2;
    }

    /* After-sales service - image left, text right */
    .after-sales-visual {
        order: 1;
    }
    .after-sales-text {
        order: 2;
    }

    /* Transparent pricing - image left, text right */
    .transparent-pricing-visual {
        order: 1;
    }
    .transparent-pricing-text {
        order: 2;
    }

    /* Finance assistance - image left, text right */
    .finance-assistance-visual {
        order: 1;
    }
    .finance-assistance-text {
        order: 2;
    }

    /* Reduce margins for genuine spares image on desktop */
    .genuine-spares-image {
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.3rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .partnerships-text h2,
    .rider-management-text h2,
    .ev-fleet-text h2,
    .fleet-operations-text h2,
    .coverage-text h2,
    .success-story-text h2 {
        font-size: 1.3rem;
    }

    .partnerships-text p,
    .rider-management-text p,
    .ev-fleet-text p,
    .fleet-operations-text p,
    .coverage-text p,
    .success-story-text p {
        font-size: 0.8rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .brand-card {
        padding: 15px;
    }

    .brand-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Additional mobile scaling for smaller screens */
    .hero-image {
        transform: scale(1.3);
    }

    .multi-brand-image,
    .dedicated-showrooms-image,
    .after-sales-image,
    .transparent-pricing-image,
    .end-to-end-support-image,
    .finance-assistance-image {
        transform: scale(1.25);
    }

    /* Scale down genuine spares image for smaller mobile screens too */
    .genuine-spares-image {
        transform: scale(0.7);
        margin: 3px 0;
    }

    /* Further reduce spacing for smaller mobile screens */
    .hero-section,
    .multi-brand-section,
    .dedicated-showrooms-section,
    .after-sales-section,
    .genuine-spares-section,
    .transparent-pricing-section,
    .end-to-end-support-section,
    .finance-assistance-section,
    .brands-section,
    .cta-section {
        padding: 20px 0;
    }

    .multi-brand-wrapper,
    .dedicated-showrooms-wrapper,
    .after-sales-wrapper,
    .genuine-spares-wrapper,
    .transparent-pricing-wrapper,
    .end-to-end-support-wrapper,
    .finance-assistance-wrapper {
        gap: 5px;
    }

    /* Additional padding for transparent pricing on smaller mobile screens */
    .transparent-pricing-text {
        padding: 20px 20px 0 20px;
    }

    /* Further reduce padding above genuine spares content on smaller screens */
    .genuine-spares-text {
        padding: -15px 20px 0 20px;
        margin-top: -15px;
    }

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

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .sticky-ctas {
        bottom: 15px;
        right: 15px;
    }

    .cta-rider-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .go-to-top-btn {
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .go-to-top-btn i {
        font-size: 0.9rem;
    }
}