﻿:root {
    --primary-gradient: linear-gradient(135deg, #FF4B2B, #FF416C);
    --soft-red: #FF416C;
    --deep-orange: #FF4B2B;
    --dark: #0F172A;
    --gray-bg: #F8FAFC;
    --text-main: #334155;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: #FFFFFF;
    color: var(--text-main);
    overflow-x: hidden;
}

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

/* Container for Wide Layout */
.container-wide {
    max-width: 1450px; 
    margin: 0 auto;
    padding: 0 50px;
}

/* Tiny Height Top Bar */
.header-top {
    background: #000;
    color: #fff;
    padding: 2px 0; /* Minimized height */
    font-size: 0.75rem;
}

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Tiny Height Navbar */
.navbar {
    padding: 2px 0; /* Reduced vertical padding for "tiny" height */
    background: #fff;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

/* Fixed state when scrolling */
.navbar.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 8px 0; /* Even slimmer when sticky */
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    z-index: 1000;
}

.flex-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo - Scaled slightly down for the slim header */
.logo a {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    text-decoration: none;
}

/* Wide Menu Link Gap */
.nav-links {
    display: flex;
    list-style: none;
    gap: 60px; /* Increased horizontal gap between links */
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Side Buttons */
.nav-btns { 
    display: flex; 
    align-items: center; 
    gap: 40px; /* Increased gap here too */
}

.btn-login {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
}

.btn-primary {
    background: #FF4500;
    color: #fff;
    padding: 8px 25px; /* Slimmer button to match tiny header */
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    transition: 0.3s;
}

/* Navbar Elegance */
.navbar {
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -1px;
}

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

.desktop-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    margin: 0 20px;
    transition: 0.3s;
}

.desktop-nav a:hover { color: var(--soft-red); }

/* Hero & Stats Grid */
.hero-elegant { padding: 100px 0; background: var(--gray-bg); }

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge {
    background: #FFE4E1;
    color: var(--soft-red);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin: 20px 0;
    color: var(--dark);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Stats Card Styling */
.stats-card-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.stat-item:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(255, 75, 43, 0.1); }

.stat-item h3 { font-size: 2rem; color: var(--dark); margin-bottom: 5px; }

/* Bike Cards Premium */
.fleet-section {
    padding: 100px 0;
    background-color: #FBFBFB;
}

.bike-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Professional Elementor-style Card Shadow */
.bike-card-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    /* Soft Initial Shadow */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); 
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

/* Hover Effect: Deep lifting shadow */
.bike-card-modern:hover {
    transform: translateY(-12px);
    border-color: #FF4500;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.status-badge {
    position: absolute;
    top: 15px; left: 15px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 2;
}
.available { background: #2ecc71; color: white; }
.booked { background: #e74c3c; color: white; }

.card-image { height: 190px; position: relative; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.bike-card-modern:hover .card-image img { transform: scale(1.08); }


.card-body { padding: 25px; }

.bike-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 8px;
    margin: 20px 0;
    background: #F8F9FA;
    padding: 12px;
    border-radius: 12px;
}

.info-item { font-size: 0.7rem; color: #555; text-align: center; }
.info-item i { display: block; font-size: 1rem; margin-bottom: 2px; }

.card-actions { display: flex; gap: 10px; }

.btn-view, .btn-book-now {
    flex: 1;
    padding: 12px 2px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-view {
    background: #fff;
    border: 1px solid #ddd;
    color: #444;
}

.btn-view:hover { border-color: #111; color: #111; }

.btn-book-now {
    background: #111;
    border: 1px solid #111;
    color: #fff;
}

.btn-book-now:hover { background: #FF4500; border-color: #FF4500; }

/* Responsive */
@media (max-width: 1024px) { .bike-grid-four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bike-grid-four { grid-template-columns: 1fr; } }

/* Common Buttons */
.btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 14px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.btn-card {
    width: 100%;
    padding: 15px;
    border: 2px solid #F1F5F9;
    background: white;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.bike-card-premium:hover .btn-card {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

:root {
    --primary-orange: #FF4500;
    --accent-red: #D32F2F;
    --primary-gradient: linear-gradient(135deg, #FF4500, #D32F2F);
    --dark: #1A1A1B;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

/* Hero Slider Background */
.hero-slider {
    position: relative;
    height: 85vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.slider-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.slide {
    position: absolute;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active { opacity: 1; }

.hero-overlay-content { position: relative; z-index: 5; width: 100%; }

.hero-overlay-content h1 { font-size: 4.5rem; margin-bottom: 15px; font-family: var(--font-heading); font-weight: 800; }
.hero-overlay-content p { font-size: 1.4rem; margin-bottom: 40px; opacity: 0.9; }

/* Rounded Search Form */
.search-container-round {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 10px;
    border-radius: 60px; /* Pill design */
    border: 1px solid rgba(255,255,255,0.2);
}

.search-input-group {
    display: flex;
    background: white;
    padding: 5px;
    border-radius: 50px;
}

.round-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    border-radius: 50px 0 0 50px;
    font-size: 1.1rem;
    outline: none;
    font-family: var(--font-body);
}

.btn-search-round {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-search-round:hover { transform: scale(1.02); opacity: 0.9; }

/* Statistics Bubbles */
.stats-row { display: flex; justify-content: center; gap: 20px; margin-top: 40px; }
.stat-bubble {
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Bike Cards */
.fleet-section { padding: 80px 0; background: #fff; }
.bike-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

.bike-card-premium {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    position: relative;
    transition: 0.3s;
}

.bike-card-premium:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: translateY(-5px); }

.price-tag {
    position: absolute;
    top: 15px; right: 15px;
    background: var(--primary-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: 700;
    z-index: 2;
}

.bike-image img { width: 100%; height: 220px; object-fit: cover; }

.bike-details { padding: 25px; text-align: center; }
.category { color: var(--accent-red); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }
.bike-details h3 { margin: 10px 0 20px; font-size: 1.4rem; }

.btn-card {
    width: 100%;
    padding: 12px;
    border-radius: 50px; /* Matching the round design */
    border: 2px solid var(--primary-orange);
    background: white;
    color: var(--primary-orange);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-card:hover { background: var(--primary-orange); color: white; }

/* Rest of standard flex and navbar styles... */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.navbar { height: 80px; display: flex; align-items: center; border-bottom: 1px solid #eee; }
.logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; }
.logo span { color: var(--primary-orange); }

/* Core Variables */
:root {
    --primary-orange: #FF4500;
    --accent-red: #D32F2F;
    --dark-bg: #0F172A;
    --black-footer: #0a0a0a;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Smooth Transitions & Hover Effects */
.btn-primary, .bike-card-elegant, .btn-card-fill, a {
    transition: var(--transition);
}

/* Logo Sizing */
.logo img, .footer-logo {
    height: 50px;
    width: auto;
}

/* About Us Section Style */
.about-section { padding: 100px 0; background: #fff; }
.about-img { position: relative; flex: 1; margin-right: 50px; }
.about-img img { width: 100%; border-radius: 30px; box-shadow: 20px 20px 60px rgba(0,0,0,0.05); }
.experience-badge {
    position: absolute; bottom: -20px; right: 20px;
    background: var(--primary-orange); color: white;
    padding: 20px; border-radius: 20px; font-weight: 800;
}
.about-content { flex: 1; }
.about-list { list-style: none; margin: 25px 0; }
.about-list li { margin-bottom: 12px; font-weight: 600; color: var(--dark-bg); }

/* Elegant Bike Suggestions */
.bike-card-elegant {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.bike-thumb { position: relative; overflow: hidden; height: 240px; }
.bike-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bike-card-elegant:hover .bike-thumb img { transform: scale(1.1); }

.card-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3); display: flex; align-items: center;
    justify-content: center; opacity: 0; transition: var(--transition);
}
.bike-card-elegant:hover .card-overlay { opacity: 1; }

.bike-info { padding: 25px; }
.bike-cat { color: var(--accent-red); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }
.bike-price { background: #fff1f0; color: var(--accent-red); padding: 4px 12px; border-radius: 50px; font-weight: 700; }
.bike-info h3 { margin: 15px 0 5px; font-size: 1.5rem; }
.bike-stats-mini { font-size: 0.9rem; color: #64748b; margin-bottom: 20px; }

.btn-card-fill {
    width: 100%; background: var(--dark-bg); color: white;
    border: none; padding: 14px; border-radius: 50px; font-weight: 700; cursor: pointer;
}
.btn-card-fill:hover { background: var(--primary-orange); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 69, 0, 0.3); }

/* Black Footer */
/* Main Footer Wrapper */
.main-footer {
    background: #0b0b0b; /* Deep black for a premium feel */
    color: #a5a5a5;
    padding: 80px 0 20px;
    font-family: 'Inter', sans-serif;
}

/* Wide Container for Footer */
.container-wide {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Grid Layout - 4 Columns */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px; /* Matching the wide gap logic of the header */
    margin-bottom: 60px;
}

/* Logo in Footer */
.footer-col .logo-footer {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-col .logo-footer span {
    color: #FF4500;
}

.footer-col p {
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Social Icon Row */
.social-links-footer {
    display: flex;
    gap: 15px;
}

.social-links-footer a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links-footer a:hover {
    background: #FF4500;
    transform: translateY(-5px);
}

/* Column Headings */
.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: #FF4500;
}

/* Footer Navigation Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul li a {
    color: #a5a5a5;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #FF4500;
    padding-left: 8px;
}

/* Newsletter Input Field */
.newsletter-box {
    display: flex;
    margin-top: 20px;
    background: #1a1a1a;
    padding: 6px;
    border-radius: 8px;
}

.newsletter-box input {
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: #fff;
    width: 100%;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-box button {
    background: #FF4500;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.newsletter-box button:hover {
    background: #e63e00;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom .copyright span {
    color: #FF4500;
    font-weight: 700;
}

.footer-bottom-links a {
    color: #a5a5a5;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Global Utilities */
.flex-row { display: flex; align-items: center; justify-content: space-between; }

/* Fleet Grid: 4 per row */
.bike-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.bike-card-elegant {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    transition: 0.4s ease;
}
.bike-card-elegant:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.bike-thumb img { width: 100%; height: 200px; object-fit: cover; }
.bike-info { padding: 20px; text-align: center; }
.bike-info h3 { font-size: 1.1rem; margin-bottom: 15px; font-weight: 700; color: #1A1A1B; min-height: 44px; }

/* Tablet & Mobile Responsiveness */
@media (max-width: 1024px) { .bike-grid-four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bike-grid-four { grid-template-columns: 1fr; } }

/* Testimonial & Ratings Styles */
.testimonial-trust-section { padding: 80px 0; background: #F8FAFC; }
.col-sm-6 { width: 48%; }

.testimonial-slider-box {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.testimonial-slide p {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--dark-bg);
    margin: 20px 0;
}

.ratings-slider-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
}

.rating-slide {
    background: white;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.4s;
}

.rating-slide:hover {
    border-color: var(--primary-orange);
    transform: translateX(10px);
}

.stars { color: #FFD700; font-size: 1.2rem; margin: 10px 0; }

/* Transitions */
.bike-card-elegant, .rating-slide, .btn-card-fill {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bike-card-elegant:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}



.features-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-top: -40px; /* Overlaps slightly with the fleet section for a modern look */
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f5f5f5;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border-color: #FF4500;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: #FFF5F2; /* Very light orange tint */
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.feature-card:hover .icon-box {
    background: #FF4500;
}

.icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: 0.3s;
}

.feature-card:hover .icon-box img {
    filter: brightness(0) invert(1); /* Turns icon white on hover */
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .features-section { margin-top: 0; }
}


.serving-cities {
    padding: 10px 0;
    background-color: #F9FAFB;
}

/* 6 Column Grid specifically for 12 items (2 Rows) */
.cities-grid-six {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.city-item {
    background: #ffffff;
    padding: 35px 15px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.city-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.12);
    border-color: #FF4500;
}

.city-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF5F2; 
    border-radius: 50%;
    transition: 0.3s ease;
}

.city-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: 0.3s ease;
}

/* Hover Interaction */
.city-item:hover .city-icon {
    background: #FF4500;
}

.city-item:hover .city-icon img {
    filter: brightness(0) invert(1);
}

.city-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .cities-grid-six { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 650px) {
    .cities-grid-six { grid-template-columns: repeat(2, 1fr); }
    .city-item { padding: 25px 10px; }
}

.blog-section {
    padding: 10px 0;
    background-color: #ffffff;
}

.blog-carousel {
    display: flex;
    overflow-x: auto; /* Enables horizontal scroll for carousel feel */
    gap: 30px;
    padding: 20px 0 40px;
    scrollbar-width: none; /* Hides scrollbar for Firefox */
}

.blog-carousel::-webkit-scrollbar {
    display: none; /* Hides scrollbar for Chrome/Safari */
}

.blog-card {
    min-width: 370px; /* Width of each blog post */
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-img {
    position: relative;
    height: 240px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Date Badge exactly like the reference */
.date-badge {
    position: absolute;
    bottom: -15px;
    left: 25px;
    background: #FF4500;
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.date-badge span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 5px;
}

.blog-content {
    padding: 40px 25px 30px;
}

.blog-meta {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 15px;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: 0.3s;
}

.blog-card:hover h3 {
    color: #FF4500;
}

.blog-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #111;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.read-more:hover {
    color: #FF4500;
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-card { min-width: 300px; }
}

.hero-search-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('your-hero-bg.jpg');
    background-size: cover;
    text-align: center;
    color: #fff;
}

/* Rounded Search Bar Wrapper */
.search-form-wrapper {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 100px; /* Perfect Pill Shape */
    padding: 10px 10px 10px 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.hero-search-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-group {
    flex: 1;
    text-align: left;
    padding: 0 15px;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input, .form-group select {
    border: none;
    outline: none;
    font-weight: 700;
    color: #111;
    width: 100%;
    background: transparent;
    font-size: 0.95rem;
}

/* Vertical Divider */
.divider {
    width: 1px;
    height: 40px;
    background: #eee;
}

/* GPS Icon Styling */
.input-with-icon { display: flex; align-items: center; }
.gps-icon { color: #FF4500; margin-left: 10px; cursor: pointer; }

/* Search Button */
.btn-search {
    background: #FF5A5F; /* Soft Red/Coral from screenshot */
    color: #fff;
    border: none;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-search:hover { background: #FF4500; transform: scale(1.05); }

/* Trust Badges Styling */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.badge-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

/* Hero Content Text */
.hero-text-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.hero-text-content .subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text-content .description {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.how-it-works {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.guide-header h2 {
    font-size: 2.5rem;
    color: #1a2b3c;
    margin-bottom: 10px;
    font-weight: 700;
}

.guide-header p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 60px;
}

.guide-header p span {
    color: #26baaf; /* Teal color from screenshot */
    font-weight: 700;
}

/* Steps Grid */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 10px;
}

.step-item {
    flex: 1;
    padding: 0 20px;
    position: relative;
}

.step-img {
    height: 150px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-img img {
    max-height: 100%;
    width: auto;
}

.step-item h3 {
    font-size: 1.5rem;
    color: #1a2b3c;
    margin-bottom: 15px;
    font-weight: 800;
}

.step-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Connecting Arrows Positioning */
.step-arrow {
    position: absolute;
    top: 40%;
    right: -50px;
    width: 100px;
    z-index: 1;
}

/* Alternating Arrow Directions */
.arrow-2 { top: 60%; }

/* Responsive View */
@media (max-width: 991px) {
    .steps-container { flex-direction: column; gap: 50px; }
    .step-arrow { display: none; } /* Hide arrows on mobile for better flow */
    .step-item { width: 100%; }
}

/* Informational Segment */

.info-segment {
    padding: 2px 0;
    background-color: #ffffff;
    text-align: center;
}

.info-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.info-header p {
    max-width: 1100px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.info-grid {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    text-align: center;
}

.info-block p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: center;
}

/* Show More Button Styling */
.info-footer {
    margin-top: 20px;
}

.btn-show-more {
    background: transparent;
    border: none;
    color: #111;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    padding: 10px 20px;
    transition: 0.3s;
}

.btn-show-more:hover {
    color: #FF4500;
}

/* search page */
.search-modifier-bar {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 60px; /* Sits right under your tiny header */
    z-index: 99;
}

.results-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 40px 0;
}

.vehicle-horizontal-card {
    display: flex;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eee;
    margin-bottom: 25px;
    overflow: hidden;
    transition: 0.3s;
}

.vehicle-horizontal-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #FF4500;
}

.v-img {
    width: 300px;
    position: relative;
    background: #fdfdfd;
}

.v-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.availability-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #28a745;
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.v-details {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.v-header h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.v-rating {
    font-size: 0.9rem;
    color: #555;
}

.v-specs {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.spec {
    font-size: 0.85rem;
    color: #777;
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 5px;
}

.v-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}

.v-price .amt {
    font-size: 1.6rem;
    font-weight: 900;
    color: #111;
}

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

.btn-secondary {
    background: #eee;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

:root {
    --brand-red: #FF5A5F;
    --text-white: #ffffff;
    --nav-height: 64px; /* Slimmer profile */
}

/* Top Header - White text, properly aligned */
.header-top-bar {
    background: var(--brand-red);
    height: 30px;
    display: flex;
    align-items: center;
}

.top-bar-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: var(--text-white);
    font-size: 12px;
    font-weight: 600;
}

.top-link { color: var(--text-white); text-decoration: none; }

/* Main Navbar - Minimal Padding */
.navbar-main {
    background: #fff;
    border-bottom: 1px solid #eee;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-flex {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.main-logo {
    height: 40px;
    width: auto;
    display: block;
}

/* Center Search Pill - Perfectly Centered */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.search-pill {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 40px;
    padding: 2px 2px 2px 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    background: #fff;
}

.pill-sec { display: flex; flex-direction: column; padding: 2px 12px; }

.pill-lab { font-size: 9px; font-weight: 800; color: #aaa; }

.pill-sec input { border: none; outline: none; font-size: 13px; font-weight: 700; width: 125px; }

.pill-sep { width: 1px; height: 25px; background: #eee; }

.pill-btn {
    background: var(--brand-red);
    color: white;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
}

/* Right Nav - Icons and Profile */
.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 25px; /* Consistent spacing between icons */
}

.icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

.icon-link span { font-size: 10px; font-weight: 700; margin-top: -2px; }

.nav-txt-link { font-size: 13px; font-weight: 700; color: #333; text-decoration: none; }

.user-action-pill {
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

:root {
    --primary: #FF5A5F;
    --text-dark: #1A202C;
    --text-muted: #718096;
    --bg-light: #F7FAFC;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Header & Search Pill Refinement */
.header-search-pill {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    padding: 4px 4px 4px 20px;
    box-shadow: var(--shadow);
}

.input-wrap input {
    border: none;
    outline: none;
    font-size: 0.85rem;
    font-weight: 600;
    width: 140px;
    background: transparent;
}

.search-divider {
    width: 1px;
    height: 25px;
    background: #E2E8F0;
    margin: 0 15px;
}

.header-search-submit {
    background: var(--primary);
    color: white;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

/* Vehicle Type Toggles */
.type-filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 25px 0;
}

.type-pill {
    background: white;
    border: 1px solid #E2E8F0;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.type-pill.active {
    border-color: var(--primary);
    color: var(--primary);
    background: #FFF5F5;
}

/* The 4-Column Grid */
.fleet-grid {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 20px var(--side-padding);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Premium Card Design */
.vehicle-card-v2 {
    background: white;
    border-radius: 20px;
    border: 1px solid #EDF2F7;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-img {
    height: 160px;
    padding: 20px;
    background: #fdfdfd;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-info { padding: 20px; }

.duration-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin: 15px 0;
    background: #F7FAFC;
    padding: 5px;
    border-radius: 12px;
}

.dur {
    text-align: center;
    font-size: 0.7rem;
    padding: 8px 2px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-muted);
}

.dur.active {
    background: var(--primary);
    color: white;
}

.btn-book-now {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 15px;
}

.container-header, 
.fleet-section .container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--side-padding);
    display: flex;
    align-items: center;
    width: 100%;
}


/* Responsive filter */
/* Overlay Effect */
.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Sidebar Drawer */
.filter-drawer {
    position: fixed;
    top: 0;
    right: -400px; /* Hidden by default */
    width: 380px;
    height: 100%;
    background: #fff;
    z-index: 2001;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

/* Toggle Classes */
.filter-drawer.open { right: 0; }
.filter-overlay.open { display: block; opacity: 1; }

.drawer-header {
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h3 { font-weight: 800; font-size: 1.2rem; margin: 0; }

.close-btn { background: none; border: none; font-size: 20px; cursor: pointer; color: #999; }

.drawer-body {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.filter-group { margin-bottom: 30px; }

.filter-group label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; }

.pill {
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.pill.active { border-color: #FF5A5F; color: #FF5A5F; background: #FFF5F5; }

.drawer-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 15px;
}

.btn-apply {
    flex: 1;
    background: #FF5A5F;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
}

.btn-clear {
    padding: 14px;
    background: #f5f5f5;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}


/* detail page */
:root {
    --form-bg: #F8FAFC; /* Light Blue/Gray for contrast */
    --brand-red: #FF5A5F;
}

.detail-container {
    padding: 40px 0;
    background: #fff;
}

.content-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Left Sidebar - Scroll Lock / Sticky */
.booking-sidebar {
    flex: 0 0 400px;
    position: sticky;
    top: 100px; /* Adjust based on header height */
}

.booking-card {
    background: #f2f3f4;
    padding: 10px;
    margin-left:5%;
    border-radius: 24px;
    border: 1px solid #74797f;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.booking-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 800;
}

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

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748B;
    margin-bottom: 6px;
}

.form-group input {
    width: 90%;
    padding: 12px;
    border: 1px solid #CBD5E1;
    border-radius: 10px;
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-confirm-booking {
    width: 100%;
    background: var(--brand-red);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

/* Right Side - Bike Details */
.bike-details { flex: 1; }

.bike-hero {
    background: #F1F5F9;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.bike-hero img {
    max-width: 100%;
    height: 400px;
    object-fit: contain;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.spec-item {
    background: #fff;
    border: 1px solid #EDF2F7;
    padding: 15px;
    border-radius: 15px;
}

.spec-item span { display: block; font-size: 10px; color: #718096; }
.spec-item strong { font-size: 16px; color: #1A202C; }

/* Reviews Styling */
.review-card {
    background: #fff;
    border-bottom: 1px solid #EDF2F7;
    padding: 20px 0;
}

.rev-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

/* Layout for Details Left, Bike Right */
.bike-main-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.bike-specs-content { flex: 1; }
.bike-image-v2 { flex: 1.2; text-align: right; }


.bike-image-v2 img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display:block;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
}

.bike-image-v2 .price-badge{}
.price-badge {
    display: block;
    position: relative;
    width:50%;
    background: #FF4500;
    color: #fff;
    padding: 7px;
    border-radius: 10px;
    float:right;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(255, 69, 0, 0.3);
}




.bike-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A202C;
    margin-bottom: 20px;
}

/* Internal Specs Grid */
.specs-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.spec-card {
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
}

.spec-card span { display: block; font-size: 10px; color: #718096; font-weight: 700; text-transform: uppercase; }
.spec-card strong { font-size: 16px; color: #2D3748; }

/* Full Width Sections */
.full-width-desc {
    width: 100%;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.auth-required-card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff7ed, #fff);
    border: 1px solid #fed7aa;
    box-shadow: 0 12px 30px rgba(255, 69, 0, 0.08);
    text-align: center;
}

.auth-required-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 69, 0, 0.12);
    font-size: 1.4rem;
    margin: 0 auto;
}

.auth-required-card h4 {
    margin: 0;
    color: #111827;
    font-size: 1.02rem;
}

.auth-required-card p {
    margin: 0;
    color: #475569;
    line-height: 1.5;
    font-size: 0.95rem;
}

.auth-action-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-auth {
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    padding: 10px 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-auth:hover {
    border-color: #ff4500;
    color: #ff4500;
}

.btn-auth-primary {
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    color: #fff;
    border-color: #ff4500;
}

.booking-disabled-note {
    margin-top: 12px;
    font-size: 0.88rem;
    color: #64748b;
    text-align: center;
}

.booking-form-disabled {
    border: 0;
    margin: 0;
    padding: 0;
}

.auth-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.68);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    z-index: 1200;
}

.auth-modal-backdrop.open {
    display: flex;
}

.auth-modal-card {
    width: min(460px, 100%);
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.20);
    padding: 22px;
    position: relative;
    border: 1px solid #e5e7eb;
}

.auth-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #111827;
    font-size: 1.15rem;
    cursor: pointer;
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 14px;
}

.auth-modal-header h3 {
    margin: 4px 0;
    font-size: 1.25rem;
    color: #111827;
}

.auth-modal-copy {
    margin: 0;
    color: #475569;
    font-size: 0.92rem;
}

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.auth-tab {
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 10px 12px;
    background: #fff;
    color: #334155;
    font-weight: 700;
    cursor: pointer;
}

.auth-tab.active {
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    color: #fff;
    border-color: #ff4500;
}

.auth-panel {
    display: none;
}

.auth-panel.active {
    display: block;
}

.auth-form {
    display: grid;
    gap: 10px;
}

.auth-form label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    font-weight: 700;
}

.auth-form input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
}

.bike-visual-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 250px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    color: #ff5a5f;
    font-size: 4rem;
    box-shadow: inset 0 0 0 1px rgba(255, 90, 95, 0.15);
}

.vehicle-info-block {
    margin-top: 24px;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.details-table th,
.details-table td {
    border: 1px solid #e5e7eb;
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
    font-size: 0.95rem;
}

.details-table th {
    background: #fff7ed;
    color: #111827;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.75rem;
}

.details-table td {
    color: #334155;
}

.full-width-desc h3 { font-weight: 800; margin-bottom: 10px; }

/* 4-Block Review Grid */
.reviews-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.rev-block {
    background: #fff;
    border: 1px solid #E2E8F0;
    padding: 20px;
    border-radius: 16px;
    transition: 0.3s;
}

.rev-block:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #FF5A5F;
}

.rev-block strong { display: block; font-size: 14px; margin-bottom: 5px; }
.rev-block .stars { font-size: 12px; margin-bottom: 10px; }
.rev-block p { font-size: 12.5px; color: #4A5568; line-height: 1.5; }

/* bookig confirmation page */
:root {
    --success-green: #22C55E;
    --brand-red: #FF5A5F;
    --bg-light: #F8FAFC;
}

.confirmation-wrapper {
    background: var(--bg-light);
    padding: 60px 0;
    min-height: 80vh;
}

/* Success Banner */
.success-banner {
    text-align: center;
    margin-bottom: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

.booking-id {
    display: inline-block;
    background: #E2E8F0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
}

/* Content Grid */
.conf-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.conf-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.conf-card h3 { font-weight: 800; margin-bottom: 25px; }

/* Bike Row */
.conf-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #F1F5F9;
    margin-bottom: 25px;
}

.conf-bike-img { width: 120px; height: auto; object-fit: contain; }

.conf-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.info-item span {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #94A3B8;
    margin-bottom: 4px;
}

/* Payment Summary */
.price-breakdown { margin-bottom: 30px; }

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: #475569;
}

.price-row.total {
    border-top: 2px dashed #E2E8F0;
    margin-top: 10px;
    padding-top: 15px;
    font-weight: 800;
    font-size: 18px;
    color: #1A202C;
}

/* Actions */
.conf-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.btn-print {
    background: #1A202C;
    color: white;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.btn-home {
    text-align: center;
    text-decoration: none;
    color: #64748B;
    font-weight: 700;
    font-size: 14px;
}

/* profile page */
:root {
    --brand-red: #FF5A5F;
    --status-green: #22C55E;
    --bg-light: #F8FAFC;
}

.profile-container {
    background: var(--bg-light);
    padding: 50px 0;
    min-height: 90vh;
    
}

/* Sidebar Styling */
.profile-sidebar {
    flex: 0 0 320px;
    position: sticky;
    top: 100px;
   margin-left:5%;
}

.user-card-main {
    background: rgb(189, 184, 184);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    text-align: center;
}

.profile-pic-large {
    width: 100px;
    height: 100px;
    background: #EDF2F7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.user-card-main h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 5px; }
.user-card-main p { font-size: 12px; color: #718096; margin-bottom: 25px; }

.personal-info-list {
    text-align: left;
    margin-bottom: 30px;
}

.info-row { margin-bottom: 15px; }
.info-row span { display: block; font-size: 10px; font-weight: 800; color: #A0AEC0; text-transform: uppercase; }
.info-row strong { font-size: 14px; color: #2D3748; }

.btn-logout {
    width: 100%;
    padding: 12px;
    background: #FFF5F5;
    color: #C53030;
    border: 1px solid #FED7D7;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.btn-logout:hover { background: #FEB2B2; }

/* Right Content Styling */
.profile-content { flex: 1; }

.section-group { margin-bottom: 40px; }
.section-title { font-weight: 800; font-size: 1.1rem; margin-bottom: 20px; }

/* Upcoming Card */
.upcoming-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #E2E8F0;
}

.upcoming-card img { width: 100px; height: auto; object-fit: contain; }

.ride-details { flex: 1; }
.ride-details h4 { font-weight: 800; margin: 5px 0; }

.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}
.status-badge.active { background: #F0FFF4; color: #22C55E; }
.status-badge.done { background: #EDF2F7; color: #718096; }

/* History Table */
.history-table-wrapper {
    background: white;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
}

.history-table th {
    background: #F8FAFC;
    text-align: left;
    padding: 15px 20px;
    font-size: 11px;
    color: #718096;
    text-transform: uppercase;
}

.history-table td {
    padding: 20px;
    border-top: 1px solid #F1F5F9;
    font-size: 13px;
    font-weight: 600;
}
