/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FDB913;
    --primary-hover: #e5a810;
    --dark-color: #1a1a1a;
    --light-gray: #f5f5f5;
    --text-gray: #666;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.taxi-icon {
    font-size: 80px;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto 0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Header */
/* header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
} */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

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



.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-color);
}

.logo-icon {
    margin-right: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
    display: inline-block;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.dropdown-toggle:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.header-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-login {
    background: none;
    border: none;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-login:hover {
    color: var(--primary-color);
}

/* Make the mobile menu overlay the whole viewport */
.mobile-menu {
    display: none;
    position: fixed;
    /* take out of document flow */
    inset: 0;
    /* shorthand for top:0; right:0; bottom:0; left:0; */
    top: var(--header-height, 60px);
    /* optionally keep header visible; set to 0 if you want full cover */
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    /* or rgba(0,0,0,0.8) for overlay effect */
    z-index: 1200;
    /* above header/content */
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    /* allow the menu to scroll if content is tall */
    -webkit-overflow-scrolling: touch;
    /* smooth scrolling on iOS */
}

/* show */
.mobile-menu.active {
    display: flex;
}

/* if you want a semi-transparent backdrop separated from the menu panel,
   you can add a .mobile-menu--backdrop element instead (optional) */

/* Prevent body from scrolling when mobile menu is active */
body.no-scroll {
    overflow: hidden;
    /* disable scroll on body */
    height: 100vh;
    /* avoid iOS bounce allowing background scroll */
}

/* small visual tweak to ensure menu content doesn't push page horizontally */
.mobile-menu,
.mobile-menu * {
    box-sizing: border-box;
    max-width: 100%;
}


.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark-color);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid var(--light-gray);
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 20px;
}

.mobile-nav-item {
    margin-bottom: 16px;
}

.mobile-dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    padding: 8px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
    margin-top: 8px;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 8px 0;
    color: var(--text-gray);
    text-decoration: none;
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

.btn-secondary:hover {
    background: var(--dark-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-yellow {
    background: var(--primary-color);
    color: var(--dark-color);
}

.btn-yellow:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

.btn-book {
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 10px 24px;
}

.btn-book:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), #f5c842);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: var(--dark-color);
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(to top, var(--white), transparent);
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
}

.story-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--primary-color);
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.experience-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.experience-text {
    font-size: 16px;
    color: var(--dark-color);
    opacity: 0.8;
}

.story-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 24px;
}

.story-content>p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.feature-list {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-icon {
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.feature-desc {
    color: var(--text-gray);
    font-size: 14px;
}

/* How Started Section */
.how-started-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.step-item:hover .step-icon {
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-gray);
    font-size: 14px;
}

.step-line {
    width: 48px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Enjoy Ride Section */
.enjoy-ride-section {
    padding: 100px 0;
    background: var(--dark-color);
}

.enjoy-ride-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url('https://images.unsplash.com/photo-1677667402044-a1e5f5956124?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxjaXR5JTIwcm9hZCUyMHRyYWZmaWN8ZW58MXx8fHwxNzYxNjMwMDAyfDA&ixlib=rb-4.1.0&q=80&w=1080');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.enjoy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.enjoy-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.enjoy-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.enjoy-icon {
    font-size: 60px;
    margin-bottom: 25px;
}

.enjoy-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.enjoy-card>p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 16px;
}

.enjoy-list {
    list-style: none;
    padding: 0;
}

.enjoy-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
}

.enjoy-list li:last-child {
    border-bottom: none;
}

.step-item {
    text-align: center;
}

.step-item:hover .step-icon {
    transform: scale(1.1);
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.step-item p {
    color: var(--text-light);
}

.slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.slider {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px;
    color: var(--white);
}

.slide-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.slide-content p {
    font-size: 16px;
    color: #e0e0e0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    color: var(--dark-color);
    font-weight: bold;
}

.slider-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

/* Riders Section */
.riders-section {
    padding: 100px 0;
    background: var(--white);
}

.riders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.rider-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.rider-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.rider-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s;
}

.rider-card:hover img {
    transform: scale(1.1);
}

.rider-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--dark-color), transparent);
    padding: 24px;
    color: var(--white);
}

.rider-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.rider-role {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 2px;
}

.rider-exp {
    color: #ddd;
    font-size: 14px;
}

.rider-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.service-item:hover {
    box-shadow: var(--shadow-lg);
}

.service-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-item:hover img {
    transform: scale(1.1);
}

.service-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-icon {
    font-size: 40px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.service-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--dark-color);
    opacity: 0.8;
}

/* Book Ride Section */
.book-ride-section {
    padding: 100px 0;
    background: var(--white);
}

.book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.book-form-wrapper h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.book-form-wrapper p {
    color: var(--text-gray);
    margin-bottom: 32px;
}

.book-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.book-form input,
.book-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.book-form input:focus,
.book-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.book-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    background: var(--white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
}

.testimonial-stars {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.testimonial-role {
    color: var(--text-gray);
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-color);
}

.blog-content {
    padding: 24px;
}

.blog-date {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.blog-card:hover h3 {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.blog-link:hover {
    gap: 12px;
}

.text-center {
    text-align: center;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--primary-color);
    margin-right: 8px;
}

.footer-desc {
    color: #999;
    line-height: 1.6;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    color: #999;
}

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

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 700;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-hover);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .steps-grid,
    .riders-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-menu,
    .header-buttons {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-grid,
    .story-grid,
    .book-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-image {
        order: -1;
    }

    .experience-badge {
        bottom: 16px;
        right: 16px;
    }

    .steps-grid,
    .riders-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item {
        grid-template-columns: 1fr;
    }

    .service-item img {
        height: 250px;
    }

    .slider {
        height: 400px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .testimonial-card {
        padding: 40px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2,
    .story-content h2,
    .book-form-wrapper h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 36px;
    }

    .slider {
        height: 300px;
    }

    .testimonial-text {
        font-size: 16px;
    }
}

/* Utility Classes */
.rounded-shadow {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 996px) {
    .mobile-menu.active {
        display: none !important;
    }

   
}

