:root {
    --primary-red: #d52b1e;
    /* Official TVS Red approx, or keep standard red if preferred, but user said 'Clone'. Standard TVS red is brighter. */
    --secondary-blue: #183883;
    /* Exact Deep Blue from TVS site */
    --accent-green: #00A550;
    /* For EV branding */
    --bg-light: #F9F9FB;
    --text-dark: #333333;
    --white: #ffffff;
    --grey-border: #e6e6e6;
    --transition-speed: 0.3s;
    --header-height: 56px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Styles */
.global-header {
    height: var(--header-height);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid var(--grey-border);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 50px;
}

.logo-container img {
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links li a {
    font-weight: 500;
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-speed);
}

.nav-links li i {
    font-size: 10px;
    margin-top: 2px;
}

.nav-links li a:hover {
    color: var(--secondary-blue);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.secondary-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-blue);
}

.secondary-links a:hover {
    color: var(--primary-red);
}

.divider {
    color: #ccc;
    font-weight: 300;
}

.utility-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    color: #555;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.2s;
}

.country-selector:hover {
    background: #f5f5f5;
}

.country-selector img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.country-selector i {
    font-size: 10px;
}

.icon-link {
    font-size: 18px;
    color: #555;
    transition: color 0.2s;
}

.icon-link:hover {
    color: var(--secondary-blue);
}

.header-social-group {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
    border-right: 1px solid #ddd;
    margin-right: 15px;
}

.header-social-label {
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-buy {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 4px;
    font-size: 14px;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-buy:hover {
    background: #b82318;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 43, 30, 0.3);
}


/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: auto;
    background: #fff;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Base Layout Utilities */
.section {
    padding: 80px 4%;
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 40px;
}

/* Product Explorer Section Redesign */
.section-products {
    background: #fff;
    padding: 80px 4%;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.products-title-wrapper {
    border-left: 6px solid var(--primary-red);
    padding-left: 20px;
}

.products-title-wrapper h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #333;
}

.products-title-wrapper span {
    font-size: 24px;
    font-weight: 600;
    color: #666;
}

.products-filters {
    display: flex;
    gap: 30px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.type-buttons {
    display: flex;
    background: #fff;
    padding: 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
}

.tab-main {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    background: transparent;
    min-width: 140px;
}

.tab-main.active {
    background: var(--secondary-blue);
    color: #fff;
    box-shadow: none;
}

.mode-dropdown {
    position: relative;
    width: 240px;
}

.mode-dropdown select {
    width: 100%;
    padding: 12px 20px;
    padding-right: 55px;
    border-radius: 8px;
    border: 1px solid #ddd;
    appearance: none;
    -webkit-appearance: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    background: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.mode-dropdown select:focus {
    border-color: var(--secondary-blue);
}

.mode-dropdown::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-blue);
    color: #fff;
    border-radius: 0 8px 8px 0;
    pointer-events: none;
    z-index: 2;
}

/* Sub Tabs (Model Buttons) */
.product-sub-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
    justify-content: center;
}

.tab-sub {
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: #E8E8E8;
    color: #333;
    outline: none;
}

.tab-sub:hover {
    background: #ddd;
}

.tab-sub.active {
    background: #D6E4FF !important;
    color: #183883 !important;
    box-shadow: none !important;
}

/* Redesigned Product Display */
.product-display {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    background: none;
    padding: 0;
    box-shadow: none;
}

.product-features-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row i {
    font-size: 28px;
    width: 40px;
    color: #333;
    text-align: center;
}

.feature-row span {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
}

.product-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.city-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.tvsmotor.com/three-wheelers/-/media/Feature/tvs-three-wheeler/product-showcase-bg.png') no-repeat center center;
    background-size: contain;
    opacity: 0.15;
    z-index: 0;
}

.product-main-img {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image-col:hover .product-main-img {
    transform: scale(1.03) translateY(-10px);
}

@media (max-width: 1024px) {
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .product-display {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-image-col {
        order: -1;
    }
}

.main-tab-content {
    display: none;
}

.main-tab-content.active {
    display: block;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Features Carousel Section Redesign */
.section-features-carousel {
    background-color: #f8f9fa;
    padding: 80px 4%;
    overflow: hidden;
}

.features-header-title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 50px;
    text-align: left;
}

.features-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.features-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: none;
    /* Hide for Firefox */
    width: 100%;
}

.features-slider::-webkit-scrollbar {
    display: none;
    /* Hide for Chrome/Safari */
}

.feature-card-new {
    flex: 0 0 380px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 420px;
    text-align: center;
}

.feature-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-img-box {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.feature-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.feature-title-new {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
}

.feature-icon-new {
    font-size: 80px;
    color: var(--secondary-blue);
    margin-bottom: 30px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-carousel-container {
    position: relative;
    padding: 0 60px;
    display: flex;
    align-items: center;
}

.features-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    width: 100%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    /* Increased to be absolutely certain */
    transition: all 0.3s;
    pointer-events: auto;
    /* Explicitly allowed */
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-btn i {
    pointer-events: none;
}

.carousel-btn:hover {
    background: var(--secondary-blue);
    color: #fff;
    border-color: var(--secondary-blue);
}

.btn-know-more {
    display: inline-block;
    background-color: var(--secondary-blue);
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(24, 56, 131, 0.3);
}

.btn-know-more:hover {
    background-color: #112a63;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 56, 131, 0.4);
}

@media (max-width: 768px) {
    .features-carousel-container {
        padding: 0;
    }

    .feature-card-new {
        min-width: 280px;
        height: 300px;
    }

    .carousel-btn {
        display: none;
        /* Swipe on mobile */
    }
}

/* Finance Section Redesign */
.section-finance-new {
    background-color: #f1f4f8;
    /* Very light grey-blue */
    padding: 80px 4%;
    position: relative;
    overflow: hidden;
}

.section-finance-new::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(#d1d9e6 20%, transparent 20%);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 0;
}

.finance-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.finance-visuals {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.finance-city-watermark {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://www.tvsmotor.com/three-wheelers/-/media/Feature/tvs-three-wheeler/product-showcase-bg.png') no-repeat center bottom;
    background-size: contain;
    opacity: 0.1;
    z-index: 0;
}

.finance-main-img {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.finance-texts {
    flex: 1;
}

.finance-header {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.red-bar {
    width: 6px;
    height: 60px;
    background-color: var(--primary-red);
}

.finance-sub {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.finance-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
}

.finance-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.finance-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.list-num {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.finance-list p {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

@media (max-width: 1024px) {
    .finance-flex {
        flex-direction: column;
        gap: 50px;
    }

    .finance-main-title {
        font-size: 32px;
    }
}

/* Finance Partners Redesign */
.finance-partners-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    min-height: 380px;
    position: relative;
    z-index: 10;
}

.recommended-partner {
    background-color: #f8f9fa;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #eee;
    text-align: center;
    width: 35%;
    min-width: 300px;
    flex-shrink: 0;
}

.recommend-badge {
    color: #28a745;
    background: #fff;
    padding: 5px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.recommended-partner h3 {
    font-size: 20px;
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
}

.partner-logo-main {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.partner-logo-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.btn-outline-blue {
    padding: 12px 40px;
    border: 2px solid var(--secondary-blue);
    color: var(--secondary-blue);
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-outline-blue:hover {
    background: var(--secondary-blue);
    color: #fff;
}

.preferred-partners {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 65%;
    flex-grow: 1;
}

.partners-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.partners-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.partner-slide {
    flex: 0 0 100%;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.preferred-partners h3 {
    font-size: 20px;
    font-weight: 800;
    color: #333;
    margin-bottom: 40px;
}

.partners-grid-simple {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.partner-logo-box {
    width: 200px;
    height: 100px;
    border: 1px solid #eee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.partner-logo-box img {
    max-width: 100%;
    max-height: 100%;
}

.partner-dots {
    display: flex;
    gap: 12px;
}

.partner-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d9e6;
    display: block;
    cursor: pointer;
    transition: all 0.3s;
}

.partner-dots .dot.active {
    background: var(--secondary-blue);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .finance-partners-card {
        flex-direction: column;
        margin-top: 0;
    }

    .recommended-partner {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .partner-slide {
        flex-direction: column;
        align-items: center;
    }

    .partner-logo-box {
        width: 100%;
        max-width: 250px;
    }

    .recommended-partner,
    .preferred-partners {
        width: 100% !important;
    }
}

.dealer-contact-footer {
    text-align: center;
    margin-top: 40px;
}

.dealer-contact-footer p {
    font-size: 16px;
    font-weight: 700;
    color: #666;
}

.dealer-contact-footer i {
    color: var(--secondary-blue);
    margin-top: 10px;
    font-size: 20px;
}

@media (max-width: 768px) {
    .finance-partners-card {
        grid-template-columns: 1fr;
    }
}





/* Reviews Section Redesign */
.section-reviews-new {
    background-color: #f7f9fc;
    padding: 100px 4%;
    position: relative;
    background-image:
        radial-gradient(#e1e4e8 1px, transparent 1px),
        linear-gradient(rgba(247, 249, 252, 0.9), rgba(247, 249, 252, 0.9));
    background-size: 40px 40px;
}

.reviews-header-main {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
}

.red-bar-large {
    width: 6px;
    height: 70px;
    background-color: var(--primary-red);
    border-radius: 3px;
}

.rev-sub {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.rev-main-title {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
}

.reviews-tab-nav {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid #ddd;
}

.rev-tab {
    padding: 15px 0;
    font-size: 20px;
    font-weight: 700;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.rev-tab.active {
    color: #1a1a1a;
}

.rev-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary-blue);
    border-radius: 2px 2px 0 0;
}

.rev-tab:hover {
    color: #555;
}

.rev-panel {
    display: none;
}

.rev-panel.active {
    display: block;
}

.rev-slider-wrapper {
    position: relative;
    padding: 0 60px;
    display: flex;
    align-items: center;
}

.rev-slider {
    display: flex;
    gap: 30px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Hide for Firefox */
    padding: 10px 0;
}

.rev-slider::-webkit-scrollbar {
    display: none;
    /* Hide for Chrome/Safari */
}

.rev-video-card {
    min-width: calc(33.333% - 20px);
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    cursor: pointer;
}

.rev-video-card:hover {
    transform: translateY(-10px);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}

.rev-video-card:hover .play-btn-overlay {
    background: var(--primary-red);
    transform: translate(-50%, -50%) scale(1.1);
}

.rev-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s;
}

.rev-slider-btn.prev {
    left: 0;
}

.rev-slider-btn.next {
    right: 0;
}

.rev-slider-btn:hover {
    background: var(--secondary-blue);
    color: #fff;
    border-color: var(--secondary-blue);
}

@media (max-width: 1024px) {
    .rev-video-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .rev-main-title {
        font-size: 32px;
    }

    .rev-video-card {
        min-width: 100%;
    }

    .rev-slider-wrapper {
        padding: 0;
    }

    .rev-slider-btn {
        display: none;
    }
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .product-display {
        flex-direction: column;
        text-align: center;
    }

    .finance-container {
        flex-direction: column;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .global-header {
        padding: 0 15px;
        height: 60px;
    }

    .nav-links,
    .header-right {
        display: none;
    }

    .logo-container img {
        height: 30px;
    }


    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .finance-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .finance-steps {
        flex-direction: column;
        gap: 15px;
    }

    .product-tabs-main {
        gap: 20px;
    }

    .tab-main {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .product-display {
        padding: 20px;
    }

    .product-info h3 {
        font-size: 24px;
    }
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--white);
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 998;
    /* Below header, above subnav */
    border-top: 1px solid var(--grey-border);
    height: 400px;
    /* Fixed height for consistency */
}

.mega-menu.active {
    display: flex;
}

.mm-sidebar {
    width: 250px;
    background: #f9f9f9;
    border-right: 1px solid var(--grey-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
}

.mm-tab {
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.mm-tab:hover,
.mm-tab.active {
    background: var(--white);
    color: var(--primary-red);
    border-right: 3px solid var(--primary-red);
}

.mm-tab .arrow {
    display: none;
}

.mm-tab.active .arrow {
    display: block;
}

.explore-all {
    padding: 20px 30px;
}

.explore-all a {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 14px;
}

.mm-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
}

.mm-panel {
    display: none;
}

.mm-panel.active {
    display: block;
}

.mm-header {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.mm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mm-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.mm-item:hover {
    transform: translateY(-5px);
}

.mm-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.mm-item p {
    font-weight: 700;
    font-size: 14px;
    color: var(--secondary-blue);
}

@media (max-width: 768px) {
    .mega-menu {
        position: fixed;
        top: 60px;
        height: calc(100vh - 60px);
        flex-direction: column;
        overflow-y: auto;
    }

    .mm-sidebar {
        width: 100%;
        height: auto;
    }

    .mm-content {
        padding: 20px;
    }

    .mm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Social Media Icons */
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.social-icon:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(213, 43, 30, 0.4);
}

/* Input Styles */


/* Sub-navigation Header */
.sub-header {
    position: sticky;
    top: 0;
    z-index: 999;
    height: 82px;
    background-color: var(--white);
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.16);
    border-radius: 0 0 30px 30px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.sub-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.sub-brand img {
    height: 45px;
}

.sub-nav-links {
    display: flex;
    align-items: center;
    height: 82px;
}

.sub-nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
}

.sub-nav-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    padding: 0 25px;
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.sub-nav-link:hover {
    color: var(--primary-red);
}

.sub-nav-link i {
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s;
}

.sub-dropdown:hover .sub-nav-link i {
    transform: rotate(180deg);
}

/* Sub-dropdown Menu */
.sub-dropdown {
    position: relative;
}

.sub-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #eeeeee;
    min-width: 250px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 15px 15px;
    overflow: hidden;
}

.sub-dropdown:hover .sub-dropdown-menu {
    display: flex;
}

.sub-dropdown-item {
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    transition: background 0.3s, color 0.3s;
}

.sub-dropdown-item:hover {
    background: var(--white);
    color: var(--primary-red);
}

.sub-dropdown-item i {
    font-size: 10px;
    opacity: 0.5;
}

/* Global Presence Section Styles */
.section-global {
    background-color: var(--white);
    padding: 80px 4% 40px;
    background-image: radial-gradient(circle at center, rgba(24, 56, 131, 0.03) 0%, transparent 70%);
}

.global-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
}

.global-content {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.global-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}



/* Statistics Styles */
.global-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

/* Global Action Bar Styles */
.global-action-bar {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #333;
    transition: all 0.3s;
}

.action-item i {
    font-size: 24px;
    color: #666;
    transition: color 0.3s;
}

.action-item span {
    font-size: 14px;
    font-weight: 600;
}

.action-item:hover {
    color: var(--primary-red);
}

.action-item:hover i {
    color: var(--primary-red);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .global-title {
        font-size: 28px;
    }

    .global-stats {
        flex-direction: column;
        gap: 30px;
    }

    .global-action-bar {
        gap: 30px;
        flex-wrap: wrap;
    }
}

/* Offset for ID anchors to account for sticky sub-header */
#products,
#features,
#reviews {
    scroll-margin-top: 82px;
}

@media (max-width: 1024px) {
    .sub-nav-link {
        padding: 0 15px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .sub-header {
        height: auto;
        border-radius: 0 0 20px 20px;
        padding: 10px 0;
    }

    .sub-header-container {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        overflow: hidden;
    }

    .sub-nav-links {
        height: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 5px;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }

    .sub-nav-links::-webkit-scrollbar {
        display: none;
    }

    .sub-nav-link {
        padding: 10px 15px;
        font-size: 13px;
        height: auto;
        white-space: nowrap;
    }

    .sub-dropdown-menu {
        left: 50%;
        transform: translateX(-50%);
        top: calc(100% + 5px);
    }
}

/* Newsletter Section */
.section-newsletter {
    background: var(--bg-light);
    border-top: 1px solid var(--grey-border);
    padding: 60px 4%;
}

.newsletter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-content {
    flex: 1;
    min-width: 300px;
}

.newsletter-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-blue);
    margin-bottom: 10px;
}

.newsletter-content p {
    font-size: 16px;
    color: #666;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 550px;
    min-width: 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--primary-red);
}

.newsletter-form button {
    background: var(--primary-red);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #b82318;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 43, 30, 0.3);
}

.newsletter-success {
    background: #e7f4e8;
    color: #2e7d32;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    margin-top: 20px;
    border: 1px solid #c8e6c9;
}

@media (max-width: 1024px) {
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
    }
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 900px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close-modal {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }

    .close-modal {
        top: -40px;
        right: 10px;
    }
}

/* Floating Buttons */
.floating-enquiry {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background: var(--primary-red);
    color: #fff;
    padding: 12px 25px;
    font-weight: 800;
    border-radius: 8px 8px 0 0;
    z-index: 1001;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-enquiry:hover {
    background: #b82318;
    padding-right: 35px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float span {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 15px;
        width: 60px;
        height: 60px;
        justify-content: center;
        border-radius: 50%;
        bottom: 20px;
        left: 20px;
    }
}

/* Gallery Section & Page Styles */
.section-gallery-preview {
    background-color: var(--white);
    padding: 80px 4%;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.gallery-title-wrapper {
    display: flex;
    gap: 20px;
}

.gallery-title-group {
    display: flex;
    flex-direction: column;
}

.gal-sub {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-red);
}

.gal-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
}

.btn-outline-red {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-red:hover {
    background: var(--primary-red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 43, 30, 0.2);
}

.gallery-teaser-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.gallery-item-large {
    grid-row: span 2;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-item-small {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-item-large,
.gallery-item-small,
.gallery-card {
    background: linear-gradient(90deg, #f0f0f0 25%, #f7f7f7 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.gallery-teaser-grid img,
.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 56, 131, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 40px;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item-large:hover img,
.gallery-item-small:hover img,
.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-item-large:hover .gallery-overlay,
.gallery-item-small:hover .gallery-overlay,
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-large:hover .gallery-overlay i,
.gallery-item-small:hover .gallery-overlay i,
.gallery-card:hover .gallery-overlay i {
    transform: scale(1);
}

/* Gallery Page Specific */
.gallery-page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), #1a1a1a;
    background-size: cover;
    background-position: center;
    padding: 120px 4% 80px;
    text-align: center;
    color: #fff;
}

.gallery-page-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.gallery-page-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.gallery-grid-container {
    padding: 80px 4%;
    background: #fdfdfd;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-teaser-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item-large {
        grid-row: auto;
        height: 300px;
    }

    .gallery-item-small {
        height: 200px;
    }

    .gallery-page-hero h1 {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section Grid & Hero CSS */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

@media (max-width: 768px) {
    .hero-img {
        min-height: 250px;
        object-fit: cover;
        object-position: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 20px;
    }

    .contact-info-card {
        padding: 25px;
    }
}