* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-red: #ff0040;
    --neon-blue: #00d4ff;
    --neon-cyan: #00ffff;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --gradient-primary: linear-gradient(135deg, #ff0040, #ff4066);
    --gradient-secondary: linear-gradient(135deg, #00d4ff, #0099cc);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 64, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, var(--dark-bg) 0%, #111 50%, var(--dark-bg) 100%);
    z-index: -1;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 0, 64, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
    text-shadow: 
        0 0 10px var(--neon-red),
        0 0 20px var(--neon-red),
        0 0 30px var(--neon-red);
    animation: pulse-red 2s ease-in-out infinite alternate;
}

.logo-moto {
    color: var(--neon-blue);
    text-shadow: 
        0 0 10px var(--neon-blue),
        0 0 20px var(--neon-blue),
        0 0 30px var(--neon-blue);
}

.logo-garage {
    font-size: 0.8rem;
    color: var(--neon-cyan);
    text-shadow: 
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--neon-red);
    text-shadow: 0 0 10px var(--neon-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-red);
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon-red);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    position: absolute;
    right: 100px;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-btn:hover {
    border-color: var(--neon-red);
    color: var(--text-primary);
    box-shadow: 0 0 10px rgba(255, 0, 64, 0.5);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--gradient-primary);
    border-color: var(--neon-red);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.6);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.title-line:nth-child(1) {
    color: var(--neon-red);
    text-shadow: 
        0 0 20px var(--neon-red),
        0 0 40px var(--neon-red),
        0 0 60px var(--neon-red);
    animation: pulse-red 3s ease-in-out infinite alternate;
}

.title-line:nth-child(2) {
    color: var(--neon-blue);
    text-shadow: 
        0 0 20px var(--neon-blue),
        0 0 40px var(--neon-blue),
        0 0 60px var(--neon-blue);
    animation: pulse-blue 3s ease-in-out infinite alternate 0.5s;
}

.subtitle {
    font-size: 0.6em;
    color: var(--neon-cyan);
    text-shadow: 
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan);
    animation: pulse-cyan 3s ease-in-out infinite alternate 1s;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.5);
}

.cta-button.primary:hover {
    box-shadow: 0 0 30px rgba(255, 0, 64, 0.8);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
}

.cta-button.secondary:hover {
    background: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-rider {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.rider-silhouette {
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle at 30% 30%, transparent 20%, rgba(255, 0, 64, 0.1) 40%, transparent 60%),
        radial-gradient(circle at 70% 70%, transparent 20%, rgba(0, 212, 255, 0.1) 40%, transparent 60%);
    border-radius: 50%;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.rider-silhouette::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-image: url('image.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px var(--neon-red));
}

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

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 64, 0.5);
}

.services {
    padding: 5rem 0;
    background: var(--dark-secondary);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 64, 0.3);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-red);
    box-shadow: 0 10px 30px rgba(255, 0, 64, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

.service-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.about {
    padding: 5rem 0;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-red);
    text-shadow: 0 0 20px var(--neon-red);
}

.stat-label {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact {
    padding: 5rem 0;
    background: var(--dark-secondary);
}

.contact-content-centered {
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 64, 0.3);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-red);
    box-shadow: 0 5px 20px rgba(255, 0, 64, 0.3);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

.contact-item h3 {
    font-family: 'Orbitron', monospace;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-item a:hover {
    color: var(--neon-red);
    text-shadow: 0 0 10px var(--neon-red);
    transform: scale(1.05);
}

.footer {
    background: var(--dark-bg);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 0, 64, 0.3);
}

@keyframes pulse-red {
    0% { text-shadow: 0 0 20px var(--neon-red), 0 0 40px var(--neon-red); }
    100% { text-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--neon-red), 0 0 30px var(--neon-red); }
}

@keyframes pulse-blue {
    0% { text-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue); }
    100% { text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue); }
}

@keyframes pulse-cyan {
    0% { text-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan); }
    100% { text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 30px var(--neon-cyan); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .language-switcher {
        position: static;
        order: -1;
        margin-right: auto;
        margin-left: 1rem;
    }

    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        border-left: 2px solid var(--neon-red);
        box-shadow: -5px 0 30px rgba(255, 0, 64, 0.3);
        z-index: 1000;
    }

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

    .nav-menu li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }

    .nav-link {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem 0;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 1.5rem 2rem;
        min-height: auto;
    }

    .hero-content {
        padding-top: 2rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-rider {
        margin-top: 2rem;
        order: -1;
    }

    .rider-silhouette,
    .rider-silhouette::before {
        width: 250px;
        height: 250px;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

    .service-card {
        padding: 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .services,
    .about,
    .contact {
        padding: 3rem 0;
    }


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

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

/* Booking Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--dark-secondary);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--neon-red);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 
        0 0 30px rgba(255, 0, 64, 0.3),
        inset 0 0 30px rgba(255, 0, 64, 0.05);
    backdrop-filter: blur(20px);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    color: var(--text-secondary);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close:hover {
    color: var(--neon-red);
    background: rgba(255, 0, 64, 0.2);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 0, 64, 0.3);
}

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

.booking-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.booking-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.booking-contact-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.booking-contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.booking-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.booking-contact-item h3 {
    font-family: 'Orbitron', monospace;
    color: var(--neon-cyan);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--neon-red);
    text-shadow: 0 0 10px var(--neon-red);
    transform: scale(1.05);
}

.booking-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 0, 64, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.booking-detail-item h4 {
    font-family: 'Orbitron', monospace;
    color: var(--neon-cyan);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.booking-detail-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Gallery Modal Styles */
.gallery-modal-content {
    max-width: 1200px;
    width: 95%;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-height: 70vh;
    overflow-y: auto;
    padding: 1rem;
    box-sizing: border-box;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 64, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-red);
    box-shadow: 0 10px 30px rgba(255, 0, 64, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 0, 64, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--text-primary);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3001;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--neon-red);
    background: rgba(255, 0, 64, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-size: 2rem;
    border: 1px solid rgba(255, 0, 64, 0.3);
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    z-index: 3001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 0, 64, 0.3);
    border-color: var(--neon-red);
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.5);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-primary);
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 64, 0.3);
    z-index: 3001;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 2% auto;
        padding: 1.5rem;
        width: 95%;
        max-height: 95vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding-right: 2rem;
    }

    .booking-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

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

    .booking-details {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .contact-link {
        font-size: 1rem;
        word-break: break-word;
    }

    .close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-height: 60vh;
        padding: 0.5rem;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .gallery-item {
        margin-bottom: 0;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-counter {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        bottom: 20px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .nav {
        padding: 0.8rem 1rem;
    }

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

    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

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

    .rider-silhouette,
    .rider-silhouette::before {
        width: 200px;
        height: 200px;
    }

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

    .service-card h3 {
        font-size: 1.3rem;
    }

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

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

    .contact-form,
    .contact-info {
        padding: 1rem;
    }

    .modal-content {
        width: 98%;
        padding: 1rem;
    }

    .modal-content h2 {
        font-size: 1.3rem;
    }

    .nav-menu {
        width: 80%;
    }
}

/* Improve touch targets */
@media (hover: none) and (pointer: coarse) {
    .nav-link {
        padding: 0.75rem;
    }

    .cta-button {
        min-height: 48px;
        touch-action: manipulation;
    }

    .hamburger {
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
    }

    .service-card {
        touch-action: manipulation;
    }
}