/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f7fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

/* ===== HEADER / NAVBAR ===== */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 35px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
}

.logo-text .r {
    color: #333;
}

.logo-text .e {
    color: #0dbcb0;
}

.logo-text .v1 {
    color: #e87461;
}

.logo-text .v2 {
    color: #333;
}

.logo-sub {
    font-size: 10px;
    color: #666;
    margin-top: 2px;
}

.logo-sub span {
    font-weight: 700;
    font-style: italic;
    color: #0dbcb0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #0dbcb0;
}

.nav-links .dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.login-btn:hover {
    color: #0dbcb0;
}

.login-btn .icon {
    width: 36px;
    height: 36px;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    text-align: center;
    padding: 15px 0;
    background: linear-gradient(90deg, #e0f7f5, #f0f7fa, #e0f7f5);
}

.announcement-bar .pill {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.announcement-bar .pill .learn-more {
    color: #0dbcb0;
    font-weight: 600;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 20px 20px 30px;
}

.hero .container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.hero-left {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
}

.hero-right {
    flex: 1;
    padding-top: 20px;
}

.hero-subtitle {
    font-size: 14px;
    color: #0dbcb0;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #e0f7f5;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #0dbcb0;
}

.hero-badge i {
    font-size: 14px;
}

/* Hero Vehicle Showcase */
.hero-vehicle-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showcase-card {
    padding: 25px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ebike-showcase {
    background: linear-gradient(135deg, #e0f7f5 0%, #b2f0e8 100%);
}

.eauto-showcase {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.showcase-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 12px;
}

.ebike-showcase .showcase-icon {
    background: rgba(13, 188, 176, 0.2);
    color: #0dbcb0;
}

.eauto-showcase .showcase-icon {
    background: rgba(232, 116, 97, 0.2);
    color: #e87461;
}

.showcase-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 5px;
}

.showcase-card p {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.showcase-price {
    font-size: 18px;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 12px;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 2px solid #333;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
}

.showcase-btn:hover {
    background: #333;
    color: #fff;
}

/* Tab Switcher */
.tab-switcher {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    cursor: pointer;
    border: 2px solid #0dbcb0;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.tab-btn:first-child {
    border-radius: 12px 0 0 12px;
}

.tab-btn:last-child {
    border-radius: 0 12px 12px 0;
}

.tab-btn.active {
    background: #0dbcb0;
    color: #fff;
}

.tab-btn .tab-sub {
    font-size: 12px;
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #0dbcb0;
}

.tab-btn:not(.active) {
    background: #fff;
    color: #333;
}

/* Rental Title */
.rental-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.rental-title .highlight {
    color: #0dbcb0;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 12px 20px;
    gap: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.search-bar:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.search-icon {
    width: 42px;
    height: 42px;
    background: #0dbcb0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.search-bar span {
    flex: 1;
    color: #999;
    font-size: 15px;
}

.search-arrow {
    color: #e87461;
    font-size: 22px;
    font-weight: 300;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    font-weight: 300;
    color: #a0b4be;
}

.carousel-nav {
    display: flex;
    gap: 10px;
}

.carousel-nav button {
    width: 38px;
    height: 38px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #666;
}

.carousel-nav button:hover {
    border-color: #0dbcb0;
    color: #0dbcb0;
}

/* ===== FEATURED SECTION ===== */
.featured-section {
    padding: 40px 0;
}

.featured-cards {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.featured-cards::-webkit-scrollbar {
    display: none;
}

.featured-card {
    min-width: 380px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.3s;
}

.featured-card:hover {
    transform: translateY(-5px);
}

.featured-card-1 {
    background: linear-gradient(135deg, #e0f7f5 0%, #6dd5c8 100%);
    display: flex;
    align-items: center;
    padding: 25px;
    min-height: 200px;
}

.featured-card-1 .card-content {
    flex: 1;
}

.featured-card-1 h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 3px;
}

.featured-card-1 .sub {
    color: #0dbcb0;
    font-size: 18px;
    font-weight: 600;
}

.featured-card-1 .cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-weight: 600;
    font-size: 14px;
}

.featured-card-1 .card-image {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-card-2 {
    background: linear-gradient(135deg, #b2f0e8 0%, #7ecfc5 50%, #e8f8f5 100%);
    display: flex;
    align-items: center;
    padding: 25px;
    min-height: 200px;
}

.featured-card-2 .card-content {
    flex: 1;
}

.featured-card-2 .logo-small {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.featured-card-2 .logo-small .e {
    color: #0dbcb0;
}

.featured-card-2 .card-image {
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-card-2 p {
    font-size: 14px;
    margin-top: 5px;
}

.featured-card-3 {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-card-3 .card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.featured-card-3 h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0dbcb0;
}

.featured-card-3 .rupee-icon {
    width: 50px;
    height: 50px;
    background: #e8f4fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0dbcb0;
    font-size: 22px;
}

.featured-card-3 p {
    font-size: 14px;
    margin: 10px 0;
}

.featured-card-3 .highlight-text {
    color: #0dbcb0;
    font-weight: 600;
}

.featured-card-3 .tc {
    font-size: 11px;
    color: #aaa;
    text-align: right;
}

.featured-card-3 .card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 10px;
}

.featured-card-3 .ride-safe {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
}

.featured-card-3 .arrow-btn {
    font-size: 20px;
    color: #333;
}

/* ===== TOP SELLING VEHICLES ===== */
.top-selling-section {
    padding: 40px 0;
}

.eauto-section {
    padding-top: 10px;
}

.car-cards,
.auto-cards {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.car-cards::-webkit-scrollbar,
.auto-cards::-webkit-scrollbar {
    display: none;
}

.car-card {
    min-width: 340px;
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
    scroll-snap-align: start;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #e8f0f5;
    position: relative;
}

.car-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

/* EV Badge */
.ev-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #0dbcb0, #17a2b8);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.eauto-badge {
    background: linear-gradient(135deg, #e87461, #ff9a76) !important;
}

/* Vehicle Icon */
.vehicle-icon-large {
    width: 100px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #0dbcb0;
    opacity: 0.6;
}

.auto-icon {
    color: #e87461 !important;
}

.car-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.car-card-info h3 {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    line-height: 1.3;
}

.car-card-info .brand {
    font-size: 22px;
    font-weight: 700;
    color: #2d3436;
}

.car-card-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.car-card-specs .spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #777;
}

.spec-icon {
    font-size: 16px;
    color: #999;
}

.car-card-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.car-card-price .rupee {
    font-size: 13px;
    color: #333;
}

.car-card-price .amount {
    font-size: 26px;
    font-weight: 800;
    color: #2d3436;
}

.car-card-price .per-day {
    font-size: 13px;
    color: #999;
}

/* Auto card border accent */
.auto-card {
    border-left: 3px solid #e87461;
}

/* ===== REAL TIME INFO SECTION ===== */
.realtime-section {
    padding: 40px 0;
}

.realtime-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.realtime-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.realtime-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.realtime-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.realtime-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.realtime-icon.blue {
    background: #e8f4fd;
    color: #0dbcb0;
}

.realtime-icon.green {
    background: #e0f7f5;
    color: #0dbcb0;
}

.realtime-item .label {
    font-size: 13px;
    color: #888;
    margin-bottom: 3px;
}

.realtime-item .value {
    font-size: 20px;
    font-weight: 700;
    color: #2d3436;
}

.realtime-item .value .unit {
    font-size: 13px;
    font-weight: 400;
    color: #888;
}

.stars {
    display: inline-flex;
    gap: 2px;
    color: #ff9800;
    font-size: 16px;
}

/* ===== OFFERS SECTION ===== */
.offers-section {
    padding: 40px 0;
}

.offer-cards {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scrollbar-width: none;
}

.offer-cards::-webkit-scrollbar {
    display: none;
}

.offer-card {
    min-width: 340px;
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
    border: 1px solid #e8f0f5;
    position: relative;
    overflow: hidden;
}

.offer-card::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(135deg, transparent 50%, #0dbcb0 50%);
}

.offer-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.offer-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3436;
}

.offer-discount {
    font-size: 24px;
    font-weight: 800;
    color: #0dbcb0;
}

.offer-card p {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.coupon-code {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #0dbcb0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #2d3436;
    background: #e0f7f5;
    cursor: pointer;
    transition: all 0.3s;
}

.coupon-code:hover {
    background: #0dbcb0;
    color: #fff;
}

/* ===== WHY RIDEON GO SECTION ===== */
.why-revv-section {
    padding: 40px 0;
}

.why-revv-cards {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scrollbar-width: none;
}

.why-revv-cards::-webkit-scrollbar {
    display: none;
}

.why-revv-card {
    min-width: 350px;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid #e8f0f5;
}

.why-icon {
    width: 55px;
    height: 55px;
    background: #e0f7f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0dbcb0;
    flex-shrink: 0;
}

.why-revv-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 8px;
}

.why-revv-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 40px 0;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    overflow: hidden;
    border: 1px solid #e8f0f5;
}

.faq-question {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #2d3436;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8fbfc;
}

.faq-question .faq-toggle {
    font-size: 22px;
    color: #0dbcb0;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 25px;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* ===== VIDEO TESTIMONIALS ===== */
.video-testimonials-section {
    padding: 40px 0;
}

.video-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scrollbar-width: none;
}

.video-grid::-webkit-scrollbar {
    display: none;
}

.video-card {
    min-width: 280px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    background: #222;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
}

.play-btn {
    width: 60px;
    height: 42px;
    background: red;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: transform 0.3s;
}

.video-card:hover .play-btn {
    transform: scale(1.15);
}

.video-info {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-info .revv-badge {
    width: 32px;
    height: 32px;
    background: #0dbcb0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #fff;
    font-weight: 700;
}

.video-info .video-title {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.video-info .video-subtitle {
    color: #ddd;
    font-size: 11px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* ===== HAPPY CUSTOMERS ===== */
.happy-customers-section {
    padding: 40px 0;
}

.testimonial-cards {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scrollbar-width: none;
}

.testimonial-cards::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 300px;
    background: #fff;
    border-radius: 15px;
    padding: 28px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
    border: 1px solid #e8f0f5;
    position: relative;
}

.testimonial-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
}

.testimonial-card .quote-icon {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 40px;
    color: #e8f0f5;
    font-family: Georgia, serif;
}

/* ===== DOWNLOAD APP SECTION ===== */
.download-section {
    padding: 40px 0;
}

.download-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.download-left {
    flex: 1;
}

.download-left h2 {
    font-size: 30px;
    font-weight: 300;
    color: #aaa;
    margin-bottom: 10px;
}

.download-desc {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
    line-height: 1.5;
}

.store-buttons {
    display: flex;
    gap: 15px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #000;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.store-btn:hover {
    transform: translateY(-3px);
}

.store-btn .store-icon {
    font-size: 28px;
}

.store-btn .store-text {
    font-size: 10px;
    line-height: 1.3;
}

.store-btn .store-text span {
    font-size: 16px;
    font-weight: 600;
    display: block;
}

.download-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 180px;
    height: 350px;
    background: linear-gradient(135deg, #0dbcb0, #17a2b8);
    border-radius: 25px;
    border: 6px solid #333;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.phone-mockup:first-child {
    transform: translateX(30px);
    z-index: 1;
}

.phone-mockup:last-child {
    transform: translateX(-30px);
}

/* ===== JOURNEY SECTION ===== */
.journey-section {
    padding: 40px 0;
}

.journey-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.journey-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.journey-stat .stat-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    background: #e0f7f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #0dbcb0;
    position: relative;
}

.journey-stat .stat-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #d4f0d4;
    border-radius: 50%;
    top: -5px;
    right: -5px;
    opacity: 0.5;
}

.journey-stat .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 5px;
}

.journey-stat .stat-label {
    font-size: 14px;
    color: #888;
}

/* ===== DARK INFO SECTIONS ===== */
.dark-info-section {
    padding: 15px 0;
}

.dark-card {
    background: #2d3436;
    border-radius: 15px;
    padding: 35px 40px;
    color: #fff;
    margin-bottom: 15px;
}

.dark-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.dark-card-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dark-card-links a {
    color: #aab;
    font-size: 14px;
    transition: color 0.3s;
}

.dark-card-links a:hover {
    color: #0dbcb0;
}

.car-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.car-type-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.car-type-col a {
    display: block;
    color: #aab;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.car-type-col a:hover {
    color: #0dbcb0;
}

/* ===== FOOTER ===== */
.footer {
    padding: 50px 0 30px;
    background: #fff;
    margin-top: 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3436;
}

.footer-about p {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo .logo-text {
    font-size: 30px;
}

.footer-copyright {
    font-size: 11px;
    color: #aaa;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 14px;
    color: #777;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #0dbcb0;
}

.footer-social h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3436;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    transition: all 0.3s;
}

.social-icons a:hover {
    border-color: #0dbcb0;
    color: #0dbcb0;
    transform: translateY(-3px);
}

.footer-social h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3436;
}

.footer-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
    max-width: 250px;
}

.footer-store-btn:hover {
    border-color: #0dbcb0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.footer-store-btn .store-icon {
    font-size: 22px;
}

.footer-store-btn .store-info {
    font-size: 11px;
    color: #888;
}

.footer-store-btn .store-info span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #0dbcb0;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(13,188,176,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: #0aa89d;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-right {
        width: 100%;
    }

    .realtime-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .realtime-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .download-card {
        flex-direction: column;
        text-align: center;
    }

    .store-buttons {
        justify-content: center;
    }

    .hero-vehicle-showcase {
        flex-direction: row;
    }

    .showcase-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .desktop-login {
        display: none;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-vehicle-showcase {
        flex-direction: column;
    }

    .featured-card,
    .car-card,
    .offer-card,
    .why-revv-card,
    .testimonial-card {
        min-width: 300px;
    }

    .realtime-grid {
        grid-template-columns: 1fr;
    }

    .realtime-grid-bottom {
        grid-template-columns: 1fr;
    }

    .dark-card-links {
        grid-template-columns: 1fr;
    }

    .car-types-grid {
        grid-template-columns: 1fr;
    }

    .journey-stats {
        grid-template-columns: 1fr 1fr;
    }

    .tab-btn {
        font-size: 13px;
        padding: 12px 15px;
    }

    .section-title {
        font-size: 22px;
    }

    .video-card {
        min-width: 220px;
        height: 320px;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-left {
        padding: 20px;
    }

    .rental-title {
        font-size: 28px;
    }

    .featured-card,
    .car-card,
    .offer-card,
    .why-revv-card,
    .testimonial-card {
        min-width: 260px;
    }

    .download-card {
        padding: 30px 20px;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .phone-mockup {
        width: 140px;
        height: 280px;
    }

    .hero-badges {
        flex-direction: column;
    }

    .logo-text {
        font-size: 26px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: none;
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 15px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    margin-top: 15px;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    font-size: 14px;
    color: #555;
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    background: #f0f7fa;
    color: #0dbcb0;
}

/* Smooth scrolling for all carousels */
.featured-cards,
.car-cards,
.auto-cards,
.offer-cards,
.why-revv-cards,
.testimonial-cards,
.video-grid {
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}