/* ================================
   OH Ride and Share - Main Styles
   Primary Color: Light Blue (Lake Ohrid)
   ================================ */

/* CSS Variables */
:root {
    --primary-color: #009BDA;
    --primary-dark: #014165;
    --primary-light: #4295ED;
    --secondary-color: #2C3E50;
    --accent-color: #27AE60;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-bg: #F8FBFD;
    --border-color: #E0E0E0;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rebond Grotesque', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================
   Navigation
   ================================ */
.navbar {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    transition: var(--transition);
}

.navbar-scrolled .logo-text {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.navbar-scrolled .nav-menu a {
    color: var(--primary-color);
}

.nav-menu a:hover,
.nav-menu a.active {
    opacity: 0.8;
}

.nav-btn {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--white);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.navbar-scrolled .nav-btn {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

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

.navbar-scrolled .nav-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-scrolled .mobile-menu-toggle span {
    background-color: var(--primary-color);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ================================
   Hero Section
   ================================ */
.hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    margin-left: calc(-50vw + 50%);
    background-color: var(--secondary-color);
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.video-desktop,
.video-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-desktop iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-mobile {
    display: none;
}

.video-mobile iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero with Image Background */
.hero-image {
    position: relative;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}
.container-hero {
    max-width: 1200px;
    margin: 0;
    padding: 0;
    width: 100%;
}

.hero-content {
    text-align: left;
    color: var(--white);
    padding: 2rem;
}

.hero-content h1 {
    font-size: 6.25rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-block;
    padding: .65rem 1.56rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    transform: translateY(-2px);
}

/* ================================
   Content Sections
   ================================ */
.content-section {
    padding: 5rem 0;
    background-color: var(--white);
}

/* Main Content Grid - 2 Columns */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column */
.content-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    height: 100%;
}

.intro-text-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.intro-text-box h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.intro-text-box p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Features Grid Compact - 2x2 */
.features-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Feature Box - Modern Minimal Left Aligned */
.feature-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    transition: var(--transition);
    border-top: 1px solid var(--primary-light);
    padding-top: 1rem;
}

/* Minimal Icon */
.feature-icon-minimal {
    width: 65px;
    height: 65px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Feature Text - Left Aligned */
.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: left;
}

.feature-text h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.feature-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Right Column - Image */
.content-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Section Header - Shared */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.left {
    text-align: left;
}

.section-header h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ================================
   E-Bikes Section
   ================================ */
.ebikes-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.ebikes-header {
    margin-bottom: 3rem;
}

.ebikes-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.ebikes-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
}

.ebikes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ebike-card {
    background: #f8f9fb;
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.ebike-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ebike-image {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.ebike-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.ebike-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.ebike-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.ebike-content .route-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.ebike-content .route-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ebike-content .route-meta i {
    color: var(--primary-color);
}

.ebike-price {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-value {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
}

.ebike-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.ebike-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-primary-dark {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: 1.5px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ================================
   Popular Routes Section
   ================================ */
.routes-section {
    padding: 5rem 0;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.route-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.route-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.route-card:hover .route-image img {
    transform: scale(1.05);
}

.route-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.route-badge.moderate {
    background: #F39C12;
}

.route-content {
    padding: 1.5rem;
}

.route-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.route-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.route-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.route-meta i {
    color: var(--primary-color);
}

.route-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ================================
   Route Detail Pages
   ================================ */
.route-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin-top: 0;
}

.route-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
}

.route-hero-content {
    color: var(--white);
    padding: 2rem 0;
}

.route-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.route-meta-large {
    display: flex;
    gap: 2rem;
    font-size: 1.1rem;
    flex-wrap: wrap;
}

.route-meta-large span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-meta-large i {
    font-size: 1.2rem;
}

.route-details {
    padding: 4rem 0;
}

.route-description {
    margin-bottom: 4rem;
}

.route-description h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.route-description p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.route-highlights {
    margin-bottom: 4rem;
}

.route-highlights h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--shadow);
}

.highlight-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-item h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.route-tips {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 4rem;
}

.route-tips h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.route-tips ul {
    list-style: none;
    padding: 0;
}

.route-tips ul li {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.route-tips ul li i {
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.route-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 15px;
    color: var(--white);
}

.route-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.route-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ================================
   How It Works Section
   ================================ */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    position: relative;
}

.step-image {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.step-content {
    text-align: left;
}

.step-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* ================================
   Statistics Section
   ================================ */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ================================
   Why Choose Us Section
   ================================ */
.why-choose-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-content h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-icon {
    flex-shrink: 0;
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.why-text h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.why-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.why-choose-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CTA Section */
.cta-section {
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    position: relative;
}
.cta-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    padding: 10rem 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: 0rem -13rem;
    z-index: -1;
    backdrop-filter: blur(20px);

}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.cta-section .btn-primary:hover {
    background-color: var(--light-bg);
}

/* ================================
   Page Header
   ================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
    padding: 8rem 0 3rem;
    margin-top: 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ================================
   About Page
   ================================ */
.about-section,
.project-details {
    padding: 4rem 0;
    background-color: var(--white);
}

.about-content,
.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2,
.project-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.about-text p,
.project-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-image img,
.project-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    width: 100%;
}

/* Mission Section */
.mission-section {
    padding: 4rem 0;
    text-align: center;
}

.mission-section h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* New Mission Section */
.mission-section-new {
    padding: 5rem 0;
    background-color: #f8f9fb;
}

.mission-header {
    max-width: 800px;
    margin-bottom: 4rem;
}

.mission-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.mission-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.mission-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.mission-card-new {
    text-align: left;
}

.mission-icon-new {
    width: 80px;
    height: 80px;
    background: #fce8e8;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon-new i {
    font-size: 2rem;
    color: #e57373;
}

.mission-card-new h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.mission-card-new p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Partnership Section */
.partnership-section {
    background-color: var(--light-bg);
    padding: 4rem 0;
    text-align: center;
}

.partnership-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.partnership-content p {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.partner-logo {
    display: inline-block;
    padding: 2rem;
}

.partner-logo i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ================================
   Booking Page
   ================================ */
.booking-intro {
    padding: 3rem 0;
    background-color: var(--light-bg);
    text-align: center;
}

.booking-intro .intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Bike Fleet */
.bike-fleet {
    padding: 4rem 0;
}

.bike-fleet h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.bikes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.bikes-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

.bike-card {
    background: #F5F5F5;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.bike-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.bike-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    border-radius: 15px;
}

.bike-image img {
    width: Auto;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    border-radius: 15px;    
}


.bike-content {
    padding: 2rem;
}

.bike-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.bike-model {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.bike-description {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bike-price {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #E0E0E0;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.bike-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-item {
    text-align: left;
}

.spec-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.spec-value {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.bike-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-details {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-rent {
    background: var(--primary-dark);
    color: var(--white);
    border: 2px solid var(--primary-dark);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    display: block;
}

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

/* Bike Details Modal */
.bike-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(4px);
}

.bike-modal {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #F5F5F5;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-weight: 300;
}

.modal-close:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: rotate(90deg);
}

.bike-modal h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 600;
    padding-right: 3rem;
}

.modal-model {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.modal-description {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #F5F5F5;
    border-radius: 15px;
    font-size: 1rem;
}

.modal-specs h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-specs ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.modal-specs li {
    padding: 1rem;
    background: #F5F5F5;
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.modal-specs strong {
    color: var(--text-dark);
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.modal-rent-btn {
    margin-top: 2rem;
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Booking Form */
.booking-form-section {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-wrapper h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

/* ================================
   Contact Page
   ================================ */
.contact-intro {
    padding: 3rem 0;
    background-color: var(--light-bg);
    text-align: center;
}

.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-box,
.contact-form-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-info-box h2,
.contact-form-box h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.contact-text h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-text p,
.contact-text a {
    color: var(--text-light);
}

.social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.social-section h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.social-links-large a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

/* New Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}

.contact-heading h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-heading p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-new {
    display: flex;
    flex-direction: column;
}

.form-group-new.full-width {
    grid-column: 1 / -1;
}

.form-group-new label {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group-new input,
.form-group-new select,
.form-group-new textarea {
    padding: 0.9rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

.form-group-new input::placeholder,
.form-group-new textarea::placeholder {
    color: #999;
}

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

.form-group-new select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group-new textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form-new button[type="submit"] {
    width: fit-content;
    padding: 1rem 3rem;
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.map-container iframe {
    width: 100%;
    display: block;
}

/* ================================
   Footer
   ================================ */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 4rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 250px;
}

.footer-logo h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    color: var(--white);
}

.footer-copyright {
    margin-top: auto;
}

.footer-copyright p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

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

/* Legacy footer styles for backward compatibility */
.footer-section h3,
.footer-section h4 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
        justify-content: flex-start;
    }

    .nav-menu a {
        color: var(--primary-color) !important;
        padding: 1rem;
        display: block;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
        width: 100%;
    }

    .nav-btn {
        display: none;
    }

    .nav-wrapper {
        position: relative;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
    }

    .video-container {
        height: 100vh;
    }

    .video-desktop {
        display: none;
    }

    .video-mobile {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    /* Grid Layouts */
    .content-grid,
    .about-content,
    .project-content,
    .contact-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* New Contact Form */
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-heading h2 {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .content-image {
        max-height: 400px;
    }

    .intro-text-box h2 {
        font-size: 2rem;
    }

    /* New sections responsive */
    .routes-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .why-choose-content h2 {
        font-size: 2rem;
    }

    .why-choose-image {
        max-height: 400px;
    }

    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Forms */
    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    /* Page Header */
    .page-header h1 {
        font-size: 2rem;
    }

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

    /* Social Links */
    .social-links-large {
        flex-direction: column;
    }

    /* Bike Cards */
    .bikes-grid,
    .bikes-grid-two {
        grid-template-columns: 1fr;
    }
    
    .bike-content {
        padding: 1.5rem;
    }
    
    .bike-specs-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .bike-image {
        height: 220px;
        padding: 1.5rem;
    }
    
    /* Bike Modal */
    .bike-modal {
        padding: 2rem;
        margin: 0.5rem;
    }
    
    .bike-modal h2 {
        font-size: 1.5rem;
        padding-right: 2rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
    }
    
    .modal-specs ul {
        grid-template-columns: 1fr;
    }
    
    .modal-specs strong {
        display: block;
        margin-bottom: 0.25rem;
    }

    /* E-Bikes Section */
    .ebikes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ebike-card {
        padding: 1.5rem;
    }

    .ebike-image {
        min-height: 200px;
        border-radius: 15px;
    }

    .ebike-content h3 {
        font-size: 1.5rem;
    }

    .ebike-specs {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .ebikes-header h2 {
        font-size: 2rem;
    }

    /* New Mission Section */
    .mission-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .mission-header h2 {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        min-height: auto;
        gap: 2rem;
    }

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

    .footer-social {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .intro-text-box h2 {
        font-size: 1.8rem;
    }

    .feature-box {
        padding: 1rem;
    }

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

    /* New sections mobile */
    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .step-number {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        top: 10px;
        right: 10px;
    }

    .step-image {
        height: 200px;
    }

    .route-content h3 {
        font-size: 1.2rem;
    }

    .why-choose-content h2 {
        font-size: 1.8rem;
    }

    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Route Detail Pages */
    .route-hero {
        height: 50vh;
        min-height: 300px;
    }

    .route-hero-content h1 {
        font-size: 2rem;
    }

    .route-meta-large {
        font-size: 0.9rem;
        gap: 1rem;
    }

    .route-description h2,
    .route-highlights h2,
    .route-tips h2 {
        font-size: 1.5rem;
    }

    .route-cta h2 {
        font-size: 1.8rem;
    }

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

    /* New Mission Section */
    .mission-grid-new {
        grid-template-columns: 1fr;
    }

    .mission-header h2 {
        font-size: 1.8rem;
    }

    .mission-header {
        margin-bottom: 3rem;
    }

    /* Contact Form */
    .contact-heading h2 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-box,
.bike-card,
.mission-card,
.route-card,
.step-card,
.stat-card,
.why-item {
    animation: fadeIn 0.6s ease-out;
}

