:root {
    --primary-color: #953d10;
    --primary-hover: #d95816;
    --bg-light: #ffffff;
    --bg-section: #f9f7f2;
    --card-bg: #1a1a1a;
    --text-dark: #111111;
    --text-muted: #666666;
    --border-light: #e0e0e0;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-outline-custom {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--text-dark);
    color: white;
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-light);
    font-size: 0.85rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.social-icons a {
    color: var(--text-dark);
    margin-left: 15px;
    font-size: 1rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    color: var(--text-dark) !important;
    height: 90px;
    width: 120px;
}

.navbar-brand span {
    color: var(--text-dark);
}

.navbar-brand img {
    height: 90px;
    width: 120px;
    margin-right: 10px;
    transition: transform 0.3s ease;
    padding-left: 5px;
}

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

.nav-link {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px !important;
    color: var(--text-dark) !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 60%;
}

/* Page Header */
.page-header {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6)), url('https://images.unsplash.com/photo-1558981403-c5f9899a28bc?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0;
}

.page-title span {
    color: var(--primary-color);
}

.breadcrumb {
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.breadcrumb-item::before {
    color: #ffffff !important;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, rgba(255, 255, 255, .5) 40%, rgba(255, 255, 255, 0.1)), url('../images/hero/hero.png') no-repeat center center/cover;
    padding: 100px 0 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-subtitle {
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-title span {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.hero-section .lead {
    color: var(--text-dark);
    font-weight: 500;
}

.hero-features {
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
    margin-top: 40px;
}

.hero-feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hero-feature-item p {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    color: var(--text-dark);
}

/* Fleet Section */
.fleet-section {
    background-color: var(--bg-section);
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
}

.fleet-page-section {
    background-color: var(--bg-section);
    padding: 60px 0 100px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark);
}

.section-title span {
    color: var(--primary-color);
}

.filter-buttons {
    margin-bottom: 30px;
    display: flex;
    background-color: white;
    border-radius: 8px;
    padding: 5px;
    border: 1px solid var(--border-light);
}

.filter-buttons button {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-right: 1px solid var(--border-light);
    transition: all 0.3s ease;
    border-radius: 6px;
}

.filter-buttons button:last-child {
    border-right: none;
}

.filter-buttons button:hover {
    color: var(--text-dark);
}

.filter-buttons button.active {
    color: white;
    background-color: var(--primary-color);
    border-right: none;
}

.search-box .input-group-text {
    background-color: white;
    border: 1px solid var(--border-light);
}

.search-box .form-control {
    border: 1px solid var(--border-light);
    border-left: none;
}

.search-box .form-control:focus {
    box-shadow: none;
    border-color: var(--border-light);
}

/* Bike Cards */
.bike-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
    height: 100%;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
}

.bike-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bike-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    padding: 15px;
    background-color: #f8f9fa;
}

.bike-card .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.bike-card .badge.rented {
    background-color: #dcdcdc;
    color: #666;
}

.bike-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bike-title {
    font-weight: 800;
    font-size: 1.15rem;
    margin: 0;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: var(--text-dark);
    line-height: 1.3;
}

.bike-title span {
    font-weight: 400;
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.bike-category {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.bike-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.bike-price {
    font-size: 1.25rem;
    font-weight: 700;
}

.bike-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.btn-view-details {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background: transparent;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-view-details:hover {
    background: var(--primary-color);
    color: white;
}


/* About Section */
.about-section {
    background-color: var(--bg-light);
    padding: 120px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.about-img-wrapper {
    position: relative;
    z-index: 1;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    z-index: -1;
}

.about-img-main {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: white;
    padding: 25px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(242, 104, 34, 0.4);
    text-align: center;
}

.about-experience-badge h2 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.about-experience-badge p {
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.about-title span {
    color: var(--primary-color);
    font-style: italic;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(242, 104, 34, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.about-feature-item h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Features Box Section */
.features-box-section {
    background-color: var(--bg-light);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.feature-icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.feature-icon-box h5 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
}

.feature-icon-box p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.95)), url('https://images.unsplash.com/photo-1558981420-c532902e58b4?q=80&w=1920&auto=format&fit=crop') center/cover fixed;
    padding: 70px 0;
    color: white;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-title span {
    color: var(--primary-color);
    font-style: italic;
}

.cta-text {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 40px;
    color: #dcdcdc;
    line-height: 1.6;
}

.btn-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 45px;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(242, 104, 34, 0.3);
    border: 2px solid var(--primary-color);
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(242, 104, 34, 0.4);
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    padding: 80px 0 0 0;
    color: var(--text-dark);
}

.footer h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 1.3rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(242, 104, 34, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 104, 34, 0.4);
}

.footer-bottom {
    background-color: #111111;
    padding: 25px 0;
    margin-top: 60px;
    font-size: 0.9rem;
    color: #aaaaaa;
    font-weight: 500;
    width: 100%;
}

.footer-bottom p {
    color: #aaaaaa !important;
}

.newsletter-form .form-control {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1050;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    background: var(--bg-light);
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 1051;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Header Shape for Large Screens */
@media (min-width: 1200px) {
    .navbar {
        position: relative;
    }

    .navbar::before {
        content: '';
        position: absolute;
        top: 0;
        left: -10%;
        height: 100%;
        width: 19%;
        background-color: #111111;
        border-bottom-right-radius: 0px;
        transform: skewX(-30deg);
        transform-origin: top right;
        z-index: 0;
    }

    .navbar>.container {
        position: relative;
        z-index: 1;
    }
}

/* ============================================
   RESPONSIVE — Mobile / Tablet / Laptop
   ============================================ */

/* ─── TABLET (≤ 991px) ─────────────────────── */
@media (max-width: 991px) {

    /* Navbar */
    .navbar-brand,
    .navbar-brand img {
        height: 70px;
        width: 95px;
    }

    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 15px 20px 20px;
        border-top: 1px solid var(--border-light);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    }

    .nav-link {
        padding: 10px 6px !important;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-link::after {
        display: none;
    }

    .navbar-collapse .btn-primary-custom {
        width: 100%;
        text-align: center;
        margin-top: 10px !important;
    }

    /* Hero */
    .hero-section {
        padding: 80px 0 50px;
        min-height: 60vh;
        background-position: right center;
        text-align: center;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    /* Page Header */
    .page-header {
        padding: 45px 0;
        text-align: center;
    }

    .page-title,
    .about-title,
    .cta-title {
        font-size: 2.8rem;
    }

    /* About */
    .about-section {
        padding: 80px 0;
    }

    .about-img-main {
        height: 400px;
    }

    .about-experience-badge {
        bottom: -20px;
        right: -15px;
        padding: 18px 25px;
    }

    .about-experience-badge h2 {
        font-size: 2.2rem;
    }

    .about-features {
        gap: 20px;
    }

    /* CTA */
    .cta-title {
        font-size: 2.8rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    /* Fleet */
    .fleet-section {
        padding: 60px 0;
    }

    .fleet-page-section {
        padding: 40px 0 70px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Filter buttons — wrap on tablet */
    .filter-buttons {
        flex-wrap: wrap;
        gap: 6px;
        padding: 8px;
    }

    .filter-buttons button {
        flex: 1 1 auto;
        border-right: none !important;
        border-bottom: 1px solid var(--border-light);
        border-radius: 6px;
        text-align: center;
    }

    .filter-buttons button:last-child {
        border-bottom: none;
    }

    /* Features */
    .features-box-section {
        padding: 50px 0;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }

    .footer-bottom {
        margin-top: 40px;
        text-align: left;
    }

    /* Lightbox — stack vertically */
    .lightbox-content .row.g-0 {
        flex-direction: column;
    }

    .lightbox-content .col-md-6:first-child img {
        max-height: 220px;
    }
}


/* ─── MOBILE (≤ 767px) ─────────────────────── */
@media (max-width: 767px) {

    body {
        font-size: 15px;
    }

    /* Navbar */
    .navbar-brand,
    .navbar-brand img {
        height: 60px;
        width: 82px;
    }

    /* Hero */
    .hero-section {
        padding: 70px 0 40px;
        min-height: auto;
        text-align: center;
        background-position: center;
        /* Full overlay so text is always readable on mobile */
        background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('../images/hero/hero.png');
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.2;
    }

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

    .hero-section .lead {
        font-size: 1rem;
    }

    .hero-section .d-flex {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .hero-section .btn {
        width: 100%;
        text-align: center;
    }

    /* Page Header */
    .page-header {
        padding: 35px 0;
        text-align: center;
    }

    .page-title,
    .about-title,
    .cta-title {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1rem !important;
    }

    /* Sections */
    .section-title {
        font-size: 1.7rem;
    }

    .fleet-section {
        padding: 50px 0;
    }

    .fleet-page-section {
        padding: 30px 0 60px;
    }

    /* Filter buttons — horizontal scroll on mobile */
    .filter-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        padding: 5px;
    }

    .filter-buttons button {
        flex: 0 0 auto;
        border-bottom: none !important;
        border-right: 1px solid var(--border-light) !important;
        white-space: nowrap;
        font-size: 0.78rem;
        padding: 8px 14px;
    }

    .filter-buttons button:last-child {
        border-right: none !important;
    }

    /* About */
    .about-section {
        padding: 50px 0;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-img-main {
        height: 270px;
    }

    .about-img-wrapper {
        margin-bottom: 30px;
        /* prevent the ::before frame from causing horizontal scroll */
        overflow: visible;
    }

    .about-img-wrapper::before {
        top: -8px;
        left: -8px;
    }

    .about-experience-badge {
        display: none !important;
    }

    .about-features {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }

    /* Features Box */
    .features-box-section {
        padding: 40px 0;
    }

    .feature-icon-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 10px;
    }

    .feature-icon-box i {
        font-size: 2rem;
        flex-shrink: 0;
    }

    /* CTA */
    .cta-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .btn-cta {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer {
        padding: 50px 0 0;
        text-align: left;
    }

    .footer h5 {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-socials {
        padding-top: 5px;
        justify-content: flex-start;
    }

    .footer-contact li {
        justify-content: flex-start;
    }

    .footer-bottom {
        margin-top: 30px;
        padding: 20px 0;
        font-size: 0.82rem;
    }

    /* Lightbox — bottom sheet on mobile */
    .lightbox-overlay {
        padding: 10px;
        align-items: flex-end;
    }

    .lightbox-content {
        border-radius: 16px 16px 0 0;
        max-height: 92vh;
    }

    .lightbox-content .col-md-6:first-child {
        padding: 20px !important;
    }

    .lightbox-content .col-md-6:last-child {
        padding: 20px 20px 25px !important;
    }

    .lightbox-content .col-md-6:first-child img {
        max-height: 180px;
    }

    /* Map section */
    .map-section {
        height: 280px !important;
    }

    /* Contact padding on mobile */
    .bg-white.p-5 {
        padding: 25px !important;
    }
}


/* ─── SMALL MOBILE (≤ 480px) ───────────────── */
@media (max-width: 480px) {

    /* Navbar */
    .navbar-brand,
    .navbar-brand img {
        height: 54px;
        width: 72px;
    }

    .navbar-toggler {
        padding: 5px 9px;
        font-size: 0.9rem;
    }

    /* Hero */
    .hero-section {
        padding: 60px 0 35px;
    }

    .hero-title {
        font-size: 2rem;
    }

    /* Page Header */
    .page-title {
        font-size: 1.8rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.5rem;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    /* Bike Cards — 1 column */
    .bike-card img {
        height: 160px;
    }

    /* Filter buttons — more compact */
    .filter-buttons button {
        font-size: 0.72rem;
        padding: 7px 10px;
        letter-spacing: 0;
    }

    /* About */
    .about-img-main {
        height: 230px;
    }

    /* Features Box — column stack on very small screens */
    .feature-icon-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .feature-icon-box i {
        font-size: 1.7rem;
    }

    .feature-icon-box h5 {
        font-size: 0.82rem;
    }

    .feature-icon-box p {
        font-size: 0.75rem;
    }

    /* CTA — full width button */
    .btn-cta {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 40px;
    }

    /* Footer */
    .footer h5 {
        font-size: 1.1rem;
    }

    /* Headings */
    h4.text-uppercase.fw-bold {
        font-size: 1.1rem;
    }
}