@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0D7C66;
    --primary-light: #12A085;
    --primary-dark: #095C4B;
    --accent: #D4A854;
    --accent-light: #E4C07A;
    --dark: #1A1A2E;
    --dark-card: #16213E;
    --text: #333333;
    --text-light: #6B7280;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --transition: 0.3s ease;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
}

.section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
}

.btn-primary-new {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-new:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-accent:hover {
    background: #C49A48;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-new {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 26px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-new:hover {
    background: var(--primary);
    color: #fff;
}

.btn-white-new {
    background: #fff;
    color: var(--dark);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-white-new:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-nav {
    background: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-logo-img {
    height: 50px;
    margin-right: 12px;
}

.nav-brand-text {
    font-weight: 800;
    font-size: 19px;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.nav-brand-text span {
    color: var(--primary);
    font-weight: 800;
}

.nav-brand-text small {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

.site-nav .nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px;
    transition: var(--transition);
}

.site-nav .nav-link:hover {
    color: var(--primary);
}

.site-nav .nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.hero-section {
    position: relative;
    min-height: 53vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0D7C66 0%, #1A1A2E 60%, #095C4B 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 16px;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff !important;
}

.hero-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 22px;
    color: #fff !important;
}

/* Hero slider arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-arrow:hover {
    background: rgba(255,255,255,0.3);
}
.hero-arrow-left { left: 24px; }
.hero-arrow-right { right: 24px; }

/* Hero dots */
.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}
.hero-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

.trust-bar {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
}

.trust-bar .star {
    color: var(--accent);
}

.how-strip {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef1f5 100%);
    padding: 28px 0;
    border-bottom: 1px solid #e0e0e0;
}

.how-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap !important;
}

.how-strip .step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s ease;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.how-strip .step:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.how-strip .step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 2px 6px rgba(var(--primary-rgb, 0,0,0), 0.25);
}

.how-strip .step h6 {
    font-size: 14px;
    margin: 0;
    color: var(--dark);
    font-weight: 600;
}

.how-strip .step p {
    font-size: 12px;
    margin: 0;
    color: var(--text-light);
}

.how-strip .step-arrow {
    color: var(--primary);
    font-size: 20px;
    opacity: 0.4;
}

.bike-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.bike-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.bike-card-img {
    height: 200px;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.bike-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Coming Soon badge overlay */
.coming-soon-badge {
    position: absolute;
    top: 10px;
    left: -2px;
    background: linear-gradient(135deg, #fd7e14, #e06600);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px 4px 10px;
    border-radius: 0 20px 20px 0;
    z-index: 5;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(253, 126, 20, 0.35);
    text-transform: uppercase;
}

.bike-card-body {
    padding: 16px;
}

.bike-card-body h5 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--dark);
}

.bike-card-body .stars {
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 10px;
}

.price-badge {
    display: inline-block;
    background: rgba(212, 168, 84, 0.12);
    color: #B8932F;
    font-weight: 700;
    font-size: 17px;
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.stats-section {
    background: var(--dark);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
}

.stat-label {
    font-size: 14px;
    color: var(--primary-light);
    margin-top: 2px;
}

.why-card {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(13, 124, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
    color: var(--primary);
}

.why-card h6 {
    font-size: 14px;
    margin-bottom: 6px;
}

.why-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* ─── Rental Add-ons Section ─── */
.addons-section {
    padding: 20px 0 60px;
    background: #f9fafb;
}

.addon-card {
    text-align: center;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px 16px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(13, 124, 102, 0.12);
}

.addon-card-img {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.addon-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.addon-card:hover .addon-card-img img {
    transform: scale(1.08);
}

.addon-card-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.addon-card-desc {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.4;
    margin-left: 0;
    margin-right: 0;
}

.addon-card-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(13, 124, 102, 0.08);
    padding: 3px 14px;
    border-radius: 20px;
    display: inline-block;
}

.addon-card-price.free {
    color: #198754;
    background: rgba(25, 135, 84, 0.08);
}

/* ─── Scroll-Synced Gallery ─── */
.scroll-gallery-section {
    overflow: hidden;
    padding: 0;
    background: #f9fafb;
}

.scroll-gallery-track {
    display: flex;
    gap: 12px;
    padding: 3px 0 10px;
    will-change: transform;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.scroll-gallery-track.dragging {
    cursor: grabbing;
}

.scroll-gallery-item {
    flex: 0 0 auto;
    width: 480px;
    height: 340px;
    border-radius: 14px;
    overflow: hidden;
    -webkit-touch-callout: none;
}

.scroll-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

@media (hover: hover) {
    .scroll-gallery-item:hover img {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .scroll-gallery-item {
        width: 400px;
        height: 280px;
        border-radius: 10px;
    }
    .scroll-gallery-track {
        gap: 8px;
        padding: 3px 0 10px;
    }
}

@media (max-width: 480px) {
    .scroll-gallery-item {
        width: 370px;
        height: 260px;
    }
}

.testimonial-card {
    background: var(--dark-card);
    border-radius: var(--radius-md);
    padding: 24px;
    color: #fff;
    height: 100%;
}

.testimonial-card .stars {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 14px;
}

.testimonial-card .badge-ta {
    background: var(--primary);
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-block;
}

.testimonial-card .review-text {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.7;
    font-style: italic;
    margin: 12px 0;
}

.testimonial-card .reviewer {
    font-weight: 600;
    font-size: 14px;
}

.testimonial-card .reviewer-meta {
    font-size: 12px;
    opacity: 0.5;
}

.sister-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.sister-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sister-card .sister-logo {
    height: 60px;
    margin-bottom: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 11px;
    background: #ffffff;
}

.sister-card .sister-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.sister-card h6 {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--dark);
}

.sister-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.footer-section {
    background: var(--dark);
    padding: 48px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-section h6 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-logo-block img {
    height: 40px;
    margin-bottom: 8px;
}

.footer-brand-name {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 2px;
}

.footer-brand-sub {
    font-size: 12px;
    opacity: 0.5;
}

.footer-link-list {
    line-height: 2.2;
    font-size: 13px;
}

.footer-contact-list {
    line-height: 2;
    font-size: 13px;
}

.footer-contact-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-list i {
    color: var(--primary-light);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    margin-top: 32px;
    font-size: 12px;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.footer-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}

.footer-links-row h6 {
    font-size: 13px;
    margin-bottom: 12px;
}

.social-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 6px;
    transition: var(--transition);
    font-size: 16px;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
}

.breadcrumb-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 48px 0;
    text-align: center;
    color: #fff;
}

.breadcrumb-banner h2,
.breadcrumb-banner .breadcrumb-path,
.breadcrumb-banner .breadcrumb-path a {
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.breadcrumb-banner h2 {
    font-size: 32px;
    margin-bottom: 8px;
    color: #fff;
}

.breadcrumb-path {
    font-size: 14px;
    opacity: 0.7;
}

.breadcrumb-path a {
    color: var(--accent);
    text-decoration: none;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: var(--text);
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.fleet-filter-strip {
    position: relative;
    margin-bottom: 16px;
}

.fleet-filter-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px;
    scrollbar-width: none;
}

.fleet-filter-scroll::-webkit-scrollbar {
    display: none;
}

.filter-divider {
    width: 1px;
    background: #ddd;
    flex-shrink: 0;
    margin: 4px 4px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-feature .af-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(13, 124, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(13, 124, 102, 0.2);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-card-title {
    font-size: 16px;
    margin-bottom: 6px;
}
.contact-card-val {
    font-size: 14px;
    margin: 0;
    word-break: break-word;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(13, 124, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 12px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item .gallery-img {
    height: 220px;
    background: linear-gradient(135deg, #ddd, #ccc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: 0.3s;
}

.gallery-item .gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 124, 102, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(13, 124, 102, 0.4);
}

.gallery-item .gallery-overlay i {
    color: #fff;
    font-size: 28px;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay i {
    opacity: 1;
}

.main-img-box {
    height: 350px;
    background: linear-gradient(135deg, #e0e0e0, #ccc);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    margin-bottom: 12px;
    cursor: pointer;
}

.thumb-row {
    display: flex;
    gap: 8px;
}

.thumb-item {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #e8e8e8, #d5d5d5);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 11px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
}

.thumb-item.active {
    border-color: var(--primary);
}

.spec-table td {
    padding: 8px 12px;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--dark);
    width: 40%;
}

.booking-form {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 24px;
}

.booking-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.booking-form .form-control,
.booking-form .form-select {
    border-radius: var(--radius-sm);
    border: 1px solid #ddd;
    font-size: 14px;
    padding: 10px 14px;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 124, 102, 0.15);
}

.policy-card {
    background: #fff;
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    overflow: hidden;
}

.policy-card .card-body {
    padding: 20px 24px;
}

.policy-card h4 {
    color: var(--dark);
    font-size: 17px;
    margin-bottom: 10px;
}

.policy-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

.cms-content h4 {
    color: var(--dark);
    font-size: 17px;
    margin-bottom: 10px;
}

.cms-content p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

.listing-discounts {
    padding-top: 10px;
    border-top: 1px dashed #ddd;
}

.listing-discounts .discount-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
}

.listing-discounts .discount-price {
    color: var(--primary);
    font-weight: 600;
}

/* --- Text visibility improvements --- */
.hero-content h1,
.hero-content p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.cta-banner h2,
.cta-banner p {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* About page text colors */
.about-feature h6 {
    color: var(--dark);
}

.about-feature p {
    color: var(--text-light) !important;
}

/* FAQ accordion readability */
.accordion-button {
    font-weight: 600;
    color: var(--dark);
}

.accordion-body {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

/* Contact page form labels */
.contact-card .form-label {
    color: var(--dark);
    font-weight: 600;
}

/* Discount percentage badge in fleet */
.discount-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}

.discount-badge-row .d-badge {
    display: inline-block;
    background: rgba(13, 124, 102, 0.08);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Discount ribbon – compact promo strip */
.discount-ribbon {
    background: linear-gradient(135deg, #0d7c66 0%, #095e4e 60%, #0a4a3d 100%);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(13, 124, 102, 0.18);
}

.discount-ribbon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 10px 28px;
    flex-wrap: nowrap;
}

.discount-ribbon-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: -0.01em;
}

.discount-ribbon-tag i {
    font-size: 17px;
    color: #f0c040;
}

.discount-ribbon-sep {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.25);
    margin: 0 20px;
    flex-shrink: 0;
}

.discount-ribbon-tiers {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.discount-ribbon-tiers::-webkit-scrollbar { display: none; }

.discount-ribbon-chip {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 7px 18px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}

.discount-ribbon-chip strong {
    font-weight: 800;
    font-size: 16px;
    color: #f0c040;
}

.discount-ribbon-chip:hover {
    background: rgba(255,255,255,0.22);
    transform: scale(1.04);
}

.discount-ribbon-auto {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 20px;
    padding-left: 0;
}

.discount-ribbon-auto i {
    color: #7edfcc;
    font-size: 14px;
}

/* Homepage variant – centered layout */
.discount-ribbon-home .discount-ribbon-inner {
    padding: 8px 18px;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    text-align: center;
}

.discount-ribbon-home .discount-ribbon-tag {
    font-size: 14px;
    width: 100%;
    text-align: center;
}

.discount-ribbon-home .discount-ribbon-tag i {
    font-size: 14px;
}

.discount-ribbon-home .discount-ribbon-tiers {
    justify-content: center;
    width: 100%;
}

.discount-ribbon-home .discount-ribbon-chip {
    font-size: 13px;
    padding: 5px 14px;
}

.discount-ribbon-home .discount-ribbon-chip strong {
    font-size: 14px;
}

/* Fleet bike cards */

#fleetSort:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 124, 102, 0.1);
    color: var(--primary);
}

/* Compare page bike selector */
.compare-selector {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.compare-selector label {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

/* Compare checkbox on fleet */
.compare-check-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
    cursor: pointer;
    margin-top: 8px;
}

.compare-check-label input[type="checkbox"] {
    accent-color: var(--primary);
}

.compare-floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 12px 0;
    z-index: 999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.compare-floating-bar.show {
    display: block;
}

@media (max-width: 991px) {
    /* Hide hamburger + collapse, show compact strip instead */
    .site-nav .navbar-collapse {
        display: none !important;
    }
    .site-nav .navbar-toggler {
        display: none !important;
    }

    .mobile-nav-strip {
        width: 100%;
        border-top: 1px solid #eee;
        padding: 6px 0;
        text-align: center;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    /* Center logo + brand text on mobile */
    .site-nav .container {
        justify-content: center !important;
    }
    .mobile-nav-strip .container {
        display: flex !important;
        justify-content: center !important;
        max-width: 100% !important;
        padding: 0 !important;
        width: 100% !important;
    }
    .mobile-nav-list {
        list-style: none;
        margin: 0 auto;
        padding: 0;
        display: flex !important;
        gap: 0;
        white-space: nowrap;
        justify-content: center;
        width: 100%;
    }
    .mobile-nav-list li {
        flex: 1;
        text-align: center;
    }
    .mobile-nav-list li a {
        display: block;
        padding: 5px 4px;
        font-size: 13px;
        font-weight: 600;
        color: var(--text);
        text-decoration: none;
        border-radius: 20px;
        transition: all 0.2s;
    }
    .mobile-nav-list li a:hover,
    .mobile-nav-list li a.active {
        color: var(--primary);
        background: rgba(13, 124, 102, 0.08);
    }
    .mobile-nav-list li a.book-now-pill {
        background: var(--primary);
        color: #fff;
        padding: 5px 14px;
    }
    .mobile-nav-list li a.book-now-pill:hover {
        background: var(--primary-dark);
    }

    .nav-logo-img {
        height: 40px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 12px;
    }

    /* How-strip: tablet — horizontal compact, hide descriptions */
    .how-steps {
        gap: 4px;
    }
    .how-strip .step-arrow {
        font-size: 14px;
    }
    .how-strip .step {
        gap: 8px;
        padding: 8px 12px;
    }
    .how-strip .step p {
        display: none;
    }
    .how-strip .step-num {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 12px;
    }
    .how-strip .step h6 {
        font-size: 12px;
    }

    /* Breadcrumb */
    .breadcrumb-banner {
        padding: 36px 16px;
    }
    .breadcrumb-banner h2 {
        font-size: 28px;
    }

    /* Section spacing */
    section {
        overflow-x: hidden;
    }

    /* Gallery: 2 cols on tablet */
    .gallery-item .gallery-img {
        height: 180px;
    }

    /* Contact cards: compact inline */
    .contact-card {
        padding: 14px 8px;
    }
    .contact-card-title {
        font-size: 11px;
    }
    .contact-card-val {
        font-size: 10px;
    }
    .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-bottom: 8px;
    }

    /* Footer columns */
    .footer-section .footer-top {
        text-align: center;
    }
    .footer-section .footer-top .d-flex.gap-2 {
        justify-content: center;
    }
    .footer-links-row {
        font-size: 12px;
    }
    .footer-links-row h6 {
        font-size: 11px;
        margin-bottom: 8px;
    }
    .footer-link-list {
        line-height: 2;
    }
    .footer-contact-grid {
        font-size: 11px;
        gap: 6px;
    }
    .footer-contact-grid i {
        font-size: 11px;
    }

    /* Testimonials: full-width cards */
    .testimonial-card {
        padding: 20px;
    }

    /* About page: image full width */
    .about-feature {
        gap: 12px;
    }

    /* Sister sites: 2 cols on tablet */
    .sister-card {
        padding: 16px;
    }

    /* Quick info card (single bike) */
    .quick-info {
        padding: 20px;
    }

    /* Discount ribbon tablet */
    .discount-ribbon-inner {
        padding: 6px 12px;
        flex-wrap: wrap;
        gap: 4px;
        justify-content: flex-start;
    }
    .discount-ribbon-tag {
        font-size: 13px;
        width: 100%;
        text-align: left;
    }
    .discount-ribbon-sep {
        display: none !important;
    }
    .discount-ribbon-tiers {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 5px;
        width: 100%;
    }
    .discount-ribbon-chip {
        font-size: 12px;
        padding: 4px 12px;
    }
    .discount-ribbon-chip strong {
        font-size: 13px;
    }
    .discount-ribbon-auto {
        display: none !important;
    }

    /* Homepage ribbon tablet: 2 rows of 2 chips */
    .discount-ribbon-home .discount-ribbon-inner {
        padding: 6px 12px;
        gap: 4px;
        justify-content: center;
        text-align: center;
    }
    .discount-ribbon-home .discount-ribbon-tag {
        text-align: center;
    }
    .discount-ribbon-home .discount-ribbon-tiers {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
        justify-items: center;
        width: 100%;
    }
    .discount-ribbon-home .discount-ribbon-chip {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    body {
        background: #fff;
    }

    .hero-section {
        min-height: 44vh;
    }

    .hero-content {
        padding: 0 12px;
    }

    .hero-content h1 {
        font-size: 20px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .hero-content .btn-accent {
        padding: 12px 28px;
        font-size: 14px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .hero-arrow-left { left: 12px; }
    .hero-arrow-right { right: 12px; }

    /* Trust bar */
    .trust-bar {
        gap: 12px;
        font-size: 12px;
    }

    /* How-strip mobile — compact centered single line */
    .how-strip {
        padding: 12px 0;
    }
    .how-strip .container {
        padding: 0 8px;
    }
    .how-strip .row {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .how-strip .row > .col-auto:has(.step-arrow) {
        display: none !important;
    }
    .how-strip .row > .col-auto {
        flex: 0 1 auto;
        max-width: none;
        padding: 0 3px;
    }
    .how-strip .step {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        padding: 6px 10px;
        border-radius: 50px;
        justify-content: center;
    }
    .how-strip .step-num {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 11px;
    }
    .how-strip .step h6 {
        font-size: 11px;
        margin: 0;
        line-height: 1.2;
        white-space: nowrap;
    }
    .how-strip .step p {
        display: none;
    }
    .how-strip .step-arrow {
        display: none !important;
    }

    /* Breadcrumb */
    .breadcrumb-banner {
        padding: 30px 12px;
    }
    .breadcrumb-banner h2 {
        font-size: 24px;
    }
    .breadcrumb-path {
        font-size: 13px;
    }

    /* Section title */
    .section-title {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    /* Buttons */
    .btn-primary-new,
    .btn-accent,
    .btn-outline-new {
        font-size: 14px;
        padding: 10px 22px;
    }

    /* Bike cards */
    .bike-card-img {
        height: 180px;
    }
    .bike-card-body {
        padding: 14px;
    }
    .bike-card-body h5 {
        font-size: 15px;
    }
    .price-badge {
        font-size: 15px;
        padding: 2px 8px;
    }
    .coming-soon-badge {
        font-size: 9px;
        padding: 3px 10px 3px 8px;
    }
    .coming-soon-badge i {
        font-size: 8px;
    }

    /* Stats */
    .stat-number {
        font-size: 32px;
    }
    .stat-label {
        font-size: 13px;
    }

    /* Why cards */
    .why-card {
        padding: 12px 6px;
    }
    .why-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-bottom: 6px;
    }
    .why-card h6 {
        font-size: 11px;
    }
    .why-card p {
        font-size: 9px;
        line-height: 1.3;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 18px;
    }
    .testimonial-card .review-text {
        font-size: 12px;
    }

    /* Add-ons cards */
    .addons-section {
        padding: 20px 0 30px;
    }
    .addons-section .row {
        gap: 0;
    }
    .addons-section .row > [class*="col-"] {
        padding-left: 4px;
        padding-right: 4px;
    }
    .addon-card {
        padding: 12px 6px;
    }
    .addon-card-img {
        width: 36px;
        height: 36px;
        margin-bottom: 6px;
    }
    .addon-card-name {
        font-size: 11px;
        margin-bottom: 3px;
    }
    .addon-card-desc {
        font-size: 9px;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    .addon-card-price {
        font-size: 9px;
        padding: 2px 8px;
    }
    }

    /* Footer */
    .footer-section {
        padding: 28px 0 0;
    }
    .footer-section .footer-top {
        text-align: center;
    }
    .footer-section .footer-top > .d-flex:first-child {
        flex-direction: column;
        gap: 8px !important;
    }
    .footer-section .footer-top .d-flex.gap-2 {
        justify-content: center;
    }
    .footer-links-row {
        text-align: left;
    }
    .footer-links-row h6 {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .footer-link-list {
        font-size: 12px;
        line-height: 2;
    }
    .footer-contact-grid {
        font-size: 12px;
    }
    .footer-bottom {
        text-align: center;
        flex-direction: column;
        gap: 6px;
        margin-top: 20px;
    }
    .footer-brand-name {
        font-size: 15px;
    }

    /* Gallery */
    .gallery-item .gallery-img {
        height: 160px;
    }

    /* About page */
    .team-avatar {
        width: 90px;
        height: 90px;
    }
    .about-feature .af-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }

    /* Contact */
    .contact-card {
        padding: 10px 6px;
    }
    .contact-card-title {
        font-size: 9px;
    }
    .contact-card-val {
        font-size: 9px;
    }
    .contact-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
        margin-bottom: 6px;
    }

    /* Sister sites */
    .sister-card {
        padding: 14px 10px;
    }
    .sister-card .sister-logo {
        height: 45px;
        margin-bottom: 8px;
    }
    .sister-card h6 {
        font-size: 13px;
    }

    /* Filter pills */
    .filter-pill {
        padding: 6px 14px;
        font-size: 11px;
    }
    .fleet-filter-scroll {
        gap: 6px;
    }

    /* Quick info */
    .quick-info {
        padding: 18px;
    }
    .quick-info .price-big {
        font-size: 28px;
    }
    .quick-info .info-list li {
        font-size: 12px;
        padding: 6px 0;
        gap: 5px;
    }
    .quick-info .info-list li i {
        font-size: 12px;
        width: 14px;
    }

    /* Discount tiers */
    .discount-tiers {
        padding: 12px 14px;
    }
    .discount-tiers h5 {
        font-size: 13px;
    }

    /* Discount ribbon mobile – unified centered 2x2 layout */
    .discount-ribbon {
        border-radius: 10px;
    }
    .discount-ribbon-inner {
        padding: 8px 12px;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
        text-align: center;
    }
    .discount-ribbon-tag {
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
    .discount-ribbon-sep {
        display: none !important;
    }
    .discount-ribbon-tiers {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
        justify-items: center;
        width: 100%;
    }
    .discount-ribbon-chip {
        font-size: 12px;
        padding: 5px 10px;
        width: 100%;
        text-align: center;
    }
    .discount-ribbon-chip strong {
        font-size: 13px;
    }
    .discount-ribbon-auto {
        display: none !important;
    }

    /* Bike cards: 2-col mobile adjustments */
    .bike-card-body .btn-primary-new {
        font-size: 12px !important;
        padding: 7px 10px !important;
    }

    /* CTA banner */
    .cta-banner {
        padding: 40px 16px;
    }
    .cta-banner h2 {
        font-size: 24px;
    }

    /* Policy cards */
    .policy-card .card-body {
        padding: 16px;
    }

    /* Spec rows inside single-bike */
    .policy-card .row > [class*="col-md-6"] {
        padding: 6px 10px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    /* Very small phones */
    .hero-section {
        min-height: 38vh;
    }
    .hero-content h1 {
        font-size: 17px;
    }
    .hero-content p {
        font-size: 10px;
    }
    .hero-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .hero-arrow-left { left: 8px; }
    .hero-arrow-right { right: 8px; }
    .hero-dots { bottom: 14px; gap: 8px; }
    .hero-dot { width: 8px; height: 8px; }

    .breadcrumb-banner h2 {
        font-size: 20px;
    }

    /* Bike cards: tighter */
    .bike-card-img {
        height: 160px;
    }
    .bike-card-body {
        padding: 12px;
    }
    .bike-card-body h5 {
        font-size: 14px;
    }
    .price-badge {
        font-size: 14px;
    }
    .coming-soon-badge {
        font-size: 8px;
        padding: 2px 8px 2px 6px;
        top: 6px;
    }

    /* Gallery */
    .gallery-item .gallery-img {
        height: 140px;
    }

    /* How strip — small phone: tighten */
    .how-steps {
        gap: 3px;
    }
    .how-strip .step-num {
        width: 20px;
        height: 20px;
        min-width: 20px;
        font-size: 10px;
    }
    .how-strip .step {
        gap: 4px;
        padding: 5px 8px;
    }
    .how-strip .step h6 {
        font-size: 10px;
    }
    .how-strip .step-arrow {
        font-size: 10px;
    }

    /* Quick info */
    .quick-info .price-big {
        font-size: 24px;
    }
    .quick-info .info-list li {
        font-size: 11px;
        padding: 5px 0;
        gap: 4px;
    }
    .quick-info .info-list li i {
        font-size: 11px;
        width: 13px;
    }

    /* Why cards */
    .why-card {
        padding: 10px 4px;
    }
    .why-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 16px;
    }

    /* Add-ons cards */
    .addons-section {
        padding: 30px 0;
    }
    .addon-card {
        padding: 16px 10px 14px;
        border-radius: 12px;
    }
    .addon-card-img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    .addon-card-name {
        font-size: 12px;
    }
    .addon-card-desc {
        font-size: 10px;
        min-height: 28px;
        margin-bottom: 8px;
    }
    .addon-card-price {
        font-size: 10px;
        padding: 2px 10px;
    }

    /* Footer */
    .footer-section h6 {
        font-size: 11px;
    }
    .footer-link-list {
        font-size: 11px;
        line-height: 1.9;
    }
    .footer-contact-grid {
        font-size: 11px;
    }

    /* Nav */
    .nav-brand-text {
        font-size: 16px;
    }
    .nav-brand-text small {
        font-size: 10px;
    }
    .nav-logo-img {
        height: 36px;
        margin-right: 8px;
    }
}
