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

body {
    font-family: 'Inter', sans-serif;
    color: #000000;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    min-width: 320px;
}

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: auto;
    background: transparent;
    overflow: hidden;
    padding-bottom: 0;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
    height: 101px;
    background: transparent;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 74px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    background: #181843;
}

.navbar.hidden {
    transform: translateX(-50%) translateY(-100%);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: transparent;
    z-index: -1;
    transition: background 0.3s ease;
}

.navbar.scrolled::before {
    background: #181843;
}

.nav-logo,
.nav-links,
.nav-cta {
    position: relative;
    z-index: 1;
}

.nav-logo img {
    width: 120px;
    height: 120px;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.21;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-cta .btn-secondary {
    width: 158px;
    height: 44px;
    background: #EFC271;
    border-radius: 6px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #181843;
    cursor: pointer;
    transition: transform 0.2s;
}

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

.mobile-menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
}

/* Loading State */
.hero-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hero-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(222, 175, 91, 0.2);
    border-top-color: #DEAF5B;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.hero.loading .hero-content,
.hero.loading .navbar {
    opacity: 0;
    visibility: hidden;
}

.hero-content,
.navbar {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero.loaded .hero-content,
.hero.loaded .navbar {
    opacity: 1;
    visibility: visible;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 93px;
    max-width: 1440px;
    width: 100%;
}

/* Large Desktop */
@media (min-width: 1441px) {
    .hero-content {
        padding: 0 93px;
    }
}

.hero-text {
    text-align: center;
    max-width: 521px;
}

.hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42.23px;
    line-height: 1.21;
    color: #FFFFFF;
    margin-bottom: 29px;
}

.text-gold {
    color: #DEAF5B;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.21;
    color: #FFFFFF;
    margin-bottom: 39px;
    max-width: 466px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    width: 170px;
    height: 49px;
    background: #EFC271;
    border-radius: 6px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #181843;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

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

.btn-secondary-alt {
    width: 170px;
    height: 49px;
    background: #D9D9D9;
    border-radius: 6px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #181843;
    cursor: pointer;
    transition: transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-decoration: none;
}

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

/* For Riders Section */
.for-riders {
    width: 100%;
    background: #F3F3F3;
    padding: 76px 0;
}

.container {
    max-width: 1335px;
    margin: 0 auto;
    padding: 0 123px;
}

.section-layout {
    display: flex;
    gap: 125px;
    align-items: flex-start;
}

.rider-image {
    width: 100%;
    max-width: 593px;
    height: 508px;
    flex-shrink: 0;
}

.rider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px;
}

.rider-content {
    width: 483px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.21;
    color: #DDAC55;
}

.section-header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42.23px;
    line-height: 1.21;
    color: #000000;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.feature-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-icon {
    width: 69.71px;
    height: 67px;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.feature-text h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.21;
    color: #171641;
}

.feature-text p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.21;
    color: #000000;
}

.btn-cta {
    width: 100%;
    height: 49px;
    background: #2A2561;
    border-radius: 6px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.21;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: transform 0.2s;
}

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

.btn-cta:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-cta.success {
    background: #28a745 !important;
    animation: successPulse 0.5s ease;
}

/* For Drivers Section */
.for-drivers {
    width: 100%;
    background: #181843;
    padding: 100px 0;
}

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

.driver-layout {
    display: flex;
    flex-direction: row;
    gap: 264px;
    align-items: flex-start;
}

.driver-header-section {
    display: flex;
    flex-direction: column;
    gap: 52px;
    align-items: flex-start;
}

.section-header-center {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
}

.section-label-white {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.21;
    text-align: center;
    color: #FFFFFF;
}

.section-title-white {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42.23px;
    line-height: 1.21;
    color: #FFFFFF;
    text-align: left;
}

.driver-image {
    width: 100%;
    max-width: 348.69px;
    height: 335.36px;
    flex-shrink: 0;
}

.driver-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 32px;
}

.driver-features {
    display: flex;
    flex-direction: column;
    gap: 42px;
    width: 100%;
    max-width: 571px;
    flex-shrink: 0;
}

.driver-feature-card {
    display: flex;
    gap: 35px;
    align-items: center;
    background: #2C2C68;
    border-radius: 15px;
    padding: 25px 35px;
    width: 100%;
}

.driver-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.driver-feature-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.driver-feature-text h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.21;
    color: #FFFFFF;
}

.driver-feature-text p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.21;
    color: #FFFFFF;
}

.driver-cta-section {
    display: flex;
    gap: 42px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.driver-cta-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.21;
    color: #FFFFFF;
}

/* Launch States Section */
.launch-states {
    width: 100%;
    background: #FFFFFF;
    padding: 70px 0;
}

.launch-layout {
    display: flex;
    gap: 120px;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.map-container {
    width: 700px;
    height: 400px;
    flex-shrink: 0;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.launch-content {
    width: 454px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-shrink: 0;
}

.launch-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 147px;
}

.launch-info h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42.23px;
    line-height: 1.21;
    color: #000000;
}

.launch-info p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.21;
    color: #181843;
    text-align: justify;
    max-width: 380px;
}

.launch-form {
    width: 100%;
    max-width: 370px;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.launch-form label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.21;
    color: #181843;
}

.email-signup {
    width: 100%;
}

.email-signup input {
    width: 100%;
    height: 49px;
    background: #F8F8F8;
    border: 1px solid #B5B5B5;
    border-radius: 5px;
    padding: 15px 21px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #888888;
    box-sizing: border-box;
}

.email-signup input::placeholder {
    color: #888888;
}

/* Newsletter Section */
.newsletter {
    width: 100%;
    background: #DEAF5B;
    padding: 95px 0;
}

.container-alt {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 200px;
}

.newsletter-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 150px;
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    grid-column: 1;
    grid-row: 1;
}

.newsletter-header-with-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 400px;
    flex-shrink: 0;
}

.section-header-dark {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-label-dark {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.21;
    color: #3E3E52;
}

.section-title-black {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42.23px;
    line-height: 1.21;
    color: #000000;
}

.newsletter-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.21;
    color: #3E3E52;
    max-width: 370px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 47px;
    width: 600px;
    flex-shrink: 0;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.21;
    color: #2C2C68;
}

.form-group input {
    width: 100%;
    height: 49px;
    background: #F8F8F8;
    border: none;
    border-radius: 5px;
    padding: 15px 21px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #888888;
}

.form-group input::placeholder {
    color: #888888;
}

.btn-submit {
    width: 100%;
    height: 49px;
    background: #2A2561;
    border-radius: 6px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.21;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    padding: 13px 35px;
    transition: transform 0.2s;
}

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

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-submit.success {
    background: #28a745 !important;
    animation: successPulse 0.5s ease;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Form Messages */
.form-message {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-align: center;
    display: none;
}

.form-message.success,
.form-message.error {
    display: block;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Validation Error States */
.form-group.error input,
.email-signup.error input {
    border: 2px solid #dc3545 !important;
    background-color: #fff5f5;
}

.form-group.error label {
    color: #dc3545;
}

.form-group.error input:focus,
.email-signup.error input:focus {
    outline: none;
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.contact-info {
    display: flex;
    gap: 39px;
    align-items: center;
    margin-top: 20px;
}

.contact-icon {
    width: 70px;
    height: 70px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-text h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.21;
    color: #2C2C68;
}

.contact-text p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.21;
    color: #3E3E52;
}

/* Download App Section */
.download-app {
    width: 100%;
    background: #F8F8F8;
    padding: 80px 0;
}

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

.download-content h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42.23px;
    line-height: 1.21;
    color: #181843;
    margin-bottom: 20px;
}

.download-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.21;
    color: #3E3E52;
    margin-bottom: 40px;
}

.app-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #181843;
}

.app-btn:hover {
    border-color: #EFC271;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-btn img {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    width: 100%;
    background: #181843;
    padding: 46px 0 21px 0;
}

.footer-content {
    padding: 0 154px;
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.footer-logo img {
    width: 99px;
    height: 99px;
}

.footer-links {
    display: flex;
    gap: 100px;
}

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

.footer-column h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.21;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.footer-column a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.21;
    color: #DDAC55;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 0.8;
}

.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 19px;
    align-items: flex-end;
    position: absolute;
    right: 154px;
}

.app-downloads p {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.21;
    color: #DDAC55;
}

.app-buttons {
    display: flex;
    gap: 25px;
}

.app-btn {
    background: #2C2C68;
    border-radius: 5px;
    border: none;
    padding: 9px 10px;
    height: 36px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

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

.app-btn img {
    width: 16px;
    height: 16px;
}

.app-btn span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.21;
    color: #DDAC55;
    width: 142px;
    text-align: left;
}

.footer-bottom {
    margin-top: 40px;
    padding: 0 154px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons img {
    width: 138px;
    height: 18px;
}

.footer-copyright {
    display: flex;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.21;
}

.footer-copyright span {
    color: #D5D5D5;
}

.footer-copyright .brand {
    font-weight: 600;
    color: #DEAF5B;
}

/* Responsive Design - Large Desktop */
@media (max-width: 1600px) {
    .hero-content {
        padding: 174px 60px 0 60px;
    }
    
    .navbar {
        padding: 0 60px;
    }
    
    .container,
    .container-wide,
    .container-alt {
        padding: 0 60px;
    }
}

/* Responsive Design - Desktop */
@media (max-width: 1440px) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 0 40px;
    }
    
    .hero-text {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 15px;
        max-width: 100%;
    }
    
    .navbar {
        padding: 0 40px;
        height: auto;
        min-height: 101px;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .section-layout {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }
    
    .section-header {
        text-align: center;
    }
    
    .section-label {
        text-align: center;
    }
    
    .section-header-center {
        text-align: center;
        align-items: center;
    }
    
    .section-label-white {
        text-align: center;
    }
    
    .section-title-white {
        text-align: center;
    }
    
    .launch-info h2 {
        text-align: center;
    }
    
    .launch-info {
        text-align: center;
    }
    
    .launch-info p {
        text-align: center;
    }
    
    .launch-form label {
        text-align: center;
    }
    
    .launch-form {
        align-items: center;
        text-align: center;
    }
    
    .launch-form label {
        text-align: center;
        display: block;
    }
    
    .btn-primary,
    .btn-secondary-alt {
        margin: 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 350px;
        padding: 0;
    }
    
    .driver-cta-section .btn-primary {
        width: 100%;
        max-width: 350px;
    }
    
    .btn-cta {
        margin: 0 auto;
        display: block;
    }
    
    .rider-image {
        width: 100%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 593/508;
    }
    
    .rider-content {
        width: 100%;
        max-width: 600px;
    }
    
    .container,
    .container-wide,
    .container-alt {
        padding: 0 40px;
    }
    
    .driver-layout {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }
    
    .driver-header-section {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .driver-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 348.69/335.36;
    }
    
    .driver-features {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .launch-layout {
        flex-direction: column-reverse;
        gap: 60px;
        padding: 0 40px;
    }
    
    .map-container {
        width: 100%;
        height: auto;
        max-width: 600px;
    }
    
    .launch-content {
        width: 100%;
        max-width: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-layout {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .newsletter-header-with-contact {
        width: 100%;
        max-width: 600px;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 600px;
    }
    
    .btn-submit {
        width: 100%;
    }
    
    .download-content h2 {
        font-size: 36px;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-content {
        padding: 0 40px;
    }
    
    .app-downloads {
        position: relative;
        right: auto;
        align-items: flex-start;
    }
    
    .footer-bottom {
        padding: 0 40px;
        flex-direction: column;
        gap: 20px;
    }
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 0 30px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .navbar {
        padding: 0 30px;
    }
    
    .nav-links {
        gap: 15px;
        font-size: 13px;
    }
    
    .container,
    .container-wide,
    .container-alt {
        padding: 0 30px;
    }
    
    .section-header h2,
    .section-title-white,
    .section-title-black,
    .launch-info h2 {
        font-size: 36px;
    }
    
    .driver-feature-card {
        padding: 20px 25px;
        gap: 25px;
    }
    
    .driver-feature-text h3 {
        font-size: 20px;
    }
    
    .map-container {
        max-width: 500px;
    }
    
    .newsletter-layout {
        gap: 30px;
    }
    
    .form-row {
        gap: 20px;
    }
    
    .footer-links {
        gap: 60px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary-alt {
        width: 100%;
        max-width: 280px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    .navbar {
        padding: 10px 20px;
        flex-direction: row;
        gap: 15px;
        height: auto;
        min-height: 60px;
        justify-content: space-between;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: #FFFFFF;
        font-size: 28px;
        cursor: pointer;
        z-index: 20;
        padding: 5px 10px;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #181843;
        z-index: 25;
        transition: left 0.3s ease;
        padding: 80px 20px 20px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-menu.active {
        left: 0;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #FFFFFF;
        font-size: 32px;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu a {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 18px;
        padding: 15px 0;
        border-bottom: 1px solid #2C2C68;
    }
    
    .mobile-menu .btn-secondary {
        width: 100%;
        height: 50px;
        background: #EFC271;
        border-radius: 6px;
        border: none;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: #181843;
        cursor: pointer;
        margin-top: 20px;
    }
    
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 20;
        display: none;
    }
    
    .mobile-overlay.active {
        display: block;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-logo img {
        width: 100px;
        height: 100px;
    }
    
    .container,
    .container-wide,
    .container-alt {
        padding: 0 20px;
    }
    
    .section-header h2,
    .section-title-white,
    .section-title-black,
    .launch-info h2 {
        font-size: 28px;
    }
    
    .section-layout {
        gap: 40px;
    }
    
    .rider-content {
        gap: 30px;
    }
    
    .features {
        gap: 25px;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .driver-layout {
        gap: 40px;
    }
    
    .driver-features {
        gap: 30px;
    }
    
    .driver-feature-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }
    
    .driver-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }
    
    .driver-feature-text h3 {
        font-size: 18px;
    }
    
    .driver-cta-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .launch-layout {
        gap: 40px;
        padding: 0 20px;
    }
    
    .map-container {
        max-width: 100%;
        height: 300px;
    }
    
    .launch-form {
        width: 100%;
    }
    
    .newsletter-layout {
        gap: 30px;
    }
    
    .newsletter-description {
        max-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        gap: 15px;
    }
    
    .form-group.full-width {
        width: 100%;
    }
    
    .btn-submit {
        width: 100%;
        height: 45px;
    }
    
    .contact-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .footer-content {
        padding: 0 20px;
        gap: 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
    
    .footer-column {
        text-align: center;
        min-width: 120px;
    }
    
    .app-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .app-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .section-header h2,
    .section-title-white,
    .section-title-black,
    .launch-info h2 {
        font-size: 24px;
    }
    
    .nav-links {
        font-size: 11px;
    }
    
    .driver-feature-text h3 {
        font-size: 16px;
    }
    
    .feature-text h3 {
        font-size: 16px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
}

