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

:root {
    --primary-color: #39ff14;
    --secondary-color: #32cd32;
    --dark-color: #1a1a1a;
    --light-color: #f8f8f8;
    --text-color: #333;
    --gray-color: #666;
    --white: #ffffff;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

a {
    color: #32cd32;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: #000000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    text-decoration: none;
}

.logo img {
    height: 80px;
}

.logo-text {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.5px;
    display: none; /* Hide on desktop by default */
}

/* Hide logo text on desktop screens */
@media (min-width: 769px) {
    .logo-text {
        display: none !important;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: 5rem;
}

.nav-links a {
    color: #ffffff;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

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

.whatsapp-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 1rem;
    min-width: 180px;
    text-align: center;
}

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

.email-btn {
    background-color: #007bff;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 1rem;
    min-width: 180px;
    text-align: center;
}

.whatsapp-btn {
    margin-left: 1rem;
}

.email-btn:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-2px);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 3rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle:focus {
    outline: none;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 0;
        position: relative;
        min-height: auto;
        gap: 0.5rem;
    }
    
    .logo {
        order: 1;
        align-self: center;
        margin-left: 0;
        text-align: center;
        width: 100%;
        display: block;
    }
    
    .logo a {
        display: block;
        text-align: center;
        margin-left: 0;
    }
    
    .logo img {
        display: block;
        margin: 0 auto 0 auto;
        height: 80px;
        max-width: 100%;
        width: auto;
    }
    
    .logo-text {
        display: block;
        font-size: 1.2rem;
        line-height: 1.3;
        text-align: center;
        font-weight: 400;
        letter-spacing: 0.5px;
        color: var(--white);
        margin: 0;
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 1;
        z-index: 1002;
        position: absolute;
        top: 1rem;
        right: 0;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    /* Second row with buttons */
    .nav-cta {
        order: 2;
        margin: 0;
        align-self: center;
        display: flex;
        flex-direction: row;
        gap: 0.3rem;
        justify-content: center;
        width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }
    
    .nav-links {
        order: 4;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 1rem 0;
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1001;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 2rem;
        padding: 2rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: var(--transition);
        text-align: left;
        font-weight: 600;
    }
    
    .nav-links a:hover {
        background: rgba(57, 255, 20, 0.1);
        color: var(--primary-color);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .whatsapp-btn,
    .email-btn {
        padding: 0.7rem 0.2rem;
        font-size: 0.7rem;
        white-space: nowrap;
        z-index: 1000;
        position: relative;
        min-width: 0;
        text-align: center;
        flex: 1;
        max-width: none;
        overflow: hidden;
        text-overflow: ellipsis;
        border-radius: 20px;
    }
    
    .whatsapp-btn {
        margin-left: 0;
    }
    
    .email-btn {
        background-color: #007bff;
        border: none;
        border-radius: 25px;
        color: white;
        font-weight: 700;
        cursor: pointer;
        transition: var(--transition);
        font-family: inherit;
    }
    
    .email-btn:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }
    
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--gray-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    min-height: 600px;
    height: 90vh;
    max-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    animation: fadeInLeft 1s ease;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    padding: 3rem;
    border-left: 4px solid var(--primary-color);
    position: relative;
    max-width: 600px;
    margin-left: -20px;
    padding-left: 40px;
}

.hero-title {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta {
    margin-top: 2.5rem;
}

.hero-cta .btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(57, 255, 20, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
    }
}

@media (max-width: 768px) {
    .hero {
        background-position: 70% center;
        min-height: 400px;
        height: 80vh;
        max-height: 500px;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
        margin-left: -15px;
        padding-left: 20px;
        max-width: 95%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.3) 100%);
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Stats Section */
.stats {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 0;
}

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

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Archivo Black', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Section Styles */
section {
    padding: 4rem 0;
    scroll-margin-top: 100px; /* Account for sticky header */
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

/* About Section */
.about {
    background-color: var(--white);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-description {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-color);
}

/* Services Section */
.services {
    background-color: var(--light-color);
}

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

.service-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    color: #32cd32;
    margin-bottom: 1rem;
}

/* Moving Text Section */
.moving-text {
    background-color: var(--primary-color);
    color: #000000;
    padding: 1.5rem 0;
    overflow: hidden;
    width: 100%;
}

.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
    min-width: 100%;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Gallery Section */
.gallery {
    background-color: var(--white);
    padding: 4rem 0;
}

/* Image Wall Styles */
.image-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.image-wall-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
    height: 250px;
}

.image-wall-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.2);
}

.image-wall-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.image-wall-item:hover img {
    transform: scale(1.05);
}

/* Create a staggered layout for visual interest */
.image-wall-item:nth-child(3n+1) {
    grid-column: span 2;
    height: 300px;
}

@media (max-width: 1024px) {
    .image-wall {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .image-wall-item:nth-child(3n+1) {
        grid-column: span 1;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .image-wall {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .image-wall-item {
        height: 200px;
    }
    
    .image-wall-item:nth-child(3n+1) {
        height: 200px;
    }
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.carousel-slide.active {
    display: block;
    opacity: 1;
}

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

/* Navigation Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

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

/* Dots Navigation */
.carousel-dots {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
}

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

.dot:hover {
    background-color: var(--white);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .carousel {
        height: 350px;
    }
    
    .carousel-btn {
        font-size: 1.5rem;
        padding: 0.5rem;
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .dot {
        height: 12px;
        width: 12px;
    }
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
}

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

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.info-item h3 {
    color: #000000;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #000000;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
}

.social-links a svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Help Our Cause Section */
.help-cause {
    background-color: var(--primary-color);
    text-align: center;
    padding: 3rem 0;
}

@media (max-width: 768px) {
    .help-cause {
        padding: 2rem 0;
    }
    
    .help-cause .btn-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .help-cause .btn {
        display: block;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

.help-cause h2,
.help-cause p {
    color: #000000;
}

.help-cause p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Button container for desktop */
.help-cause .btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.help-cause .btn {
    flex: 0 0 auto;
}

/* Join Rider Page Styles */
.join-rider-hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

/* BYOD Platform Styles */
.byod-platform {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin: 0 auto 3rem;
    max-width: 800px;
    color: var(--gray-color);
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tier-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tier-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.tier-ultimate:before {
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
}

.tier-premium:before {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.tier-standard:before {
    background: linear-gradient(90deg, #6c757d, #495057);
}

.tier-header {
    text-align: center;
    margin-bottom: 1rem;
}

.tier-header h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.tier-rate {
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
}

.tier-ultimate .tier-rate {
    background: #ff6b35;
    color: var(--white);
}

.tier-premium .tier-rate {
    background: var(--primary-color);
    color: var(--dark-color);
}

.tier-standard .tier-rate {
    background: #6c757d;
    color: var(--white);
}

.tier-specs {
    margin-bottom: 1rem;
}

.tier-specs h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.tier-specs p {
    color: var(--gray-color);
    font-size: 0.8rem;
    line-height: 1.3;
    margin: 0;
}

.daily-calc {
    text-align: center;
    margin-top: 1rem;
    padding: 0.8rem;
    background: var(--light-color);
    border-radius: 8px;
    color: var(--text-color);
}

.visibility-benefits {
    margin-top: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    color: var(--dark-color);
}

.visibility-benefits h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.visibility-benefits p {
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.visibility-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.visibility-item:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.visibility-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.visibility-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
}

.visibility-item p {
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.what-we-provide {
    margin-top: 3rem;
    text-align: center;
}

.what-we-provide h3 {
    margin-bottom: 2rem;
    color: var(--text-color);
}

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

.provide-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.provide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.provide-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.provide-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
}

.provide-item p {
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.rental-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.rental-info h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.rental-info p {
    color: var(--gray-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.rental-item {
    background: var(--light-color);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.rental-item:hover {
    border-color: var(--primary-color);
    background: var(--white);
}

.rental-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
}

.rental-item p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .tier-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .provide-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tier-card {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .tier-rate {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .tier-specs p {
        font-size: 0.85rem;
    }
    
    .rental-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .rental-item {
        padding: 0.8rem;
    }
    
    .visibility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .provide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-pricing {
        margin: 1rem 0.5rem !important;
        padding: 1rem !important;
    }
    
    .section-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

.benefits {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.requirements {
    padding: 5rem 0;
    background-color: var(--white);
}

.requirements-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

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

.requirements-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.requirements-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.how-it-works {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.step-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 60px;
    margin-bottom: 1rem;
}

.application {
    padding: 5rem 0;
    background-color: var(--white);
}

.application-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.application-form {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 10px;
}

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

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

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

.application-form .form-group input,
.application-form .form-group select,
.application-form .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.application-form .form-group input:focus,
.application-form .form-group select:focus,
.application-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.application-info {
    padding: 2rem;
}

.application-info .info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.application-info .info-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-content {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .application-content {
        grid-template-columns: 1fr;
    }
    
    .application-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.site-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    margin: 0.5rem 0;
}

.footer-brand {
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-tagline {
    color: var(--primary-color);
    font-style: italic;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Medium Screens - Fix header extension */
@media (min-width: 482px) and (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
        min-height: auto;
    }
    
    .logo img {
        height: 80px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}

/* Mobile Small Screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .visibility-grid,
    .provide-grid {
        grid-template-columns: 1fr;
    }
    
    .tier-card {
        margin: 0;
    }
    
    .container {
        padding: 0 10px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .logo img {
        height: 45px;
    }
    
    .logo-text {
        font-size: 0.7rem;
        max-width: 100%;
        line-height: 1.0;
        white-space: normal;
        word-wrap: break-word;
        width: 100%;
    }
    
    /* Keep vertical layout on small screens */
    .logo a {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }
    
    .whatsapp-btn,
    .email-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
        padding: 0.3rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Join Rider Page - Reduced Section Spacing */
body:has(.coming-soon-banner) section {
    padding: 2rem 0;
}

body:has(.coming-soon-banner) .section-title {
    margin-bottom: 2rem;
}

body:has(.coming-soon-banner) .rental-info {
    margin-top: 1rem;
}

body:has(.coming-soon-banner) .rental-info h3 {
    margin-bottom: 1rem;
}

body:has(.coming-soon-banner) .rental-info p {
    margin-bottom: 1.5rem;
}

body:has(.coming-soon-banner) .what-we-provide {
    margin-top: 1rem;
}

body:has(.coming-soon-banner) .what-we-provide h3 {
    margin-bottom: 1rem;
}

body:has(.coming-soon-banner) .visibility-benefits {
    margin-top: 1rem;
}

body:has(.coming-soon-banner) .visibility-benefits h3 {
    margin-bottom: 1rem;
}