* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b0f19;
    color: #ffffff;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    height: 100vh;
}
 
.content-left {
    width: 50%;
    padding: 4% 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #3b82f6;
    margin-bottom: 25px;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Styling your custom feature boxes */
.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    border-left: 2px solid #3b82f6;
    padding-left: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-item span {
    font-size: 18px;
    margin-top: 2px;
}

.feature-item p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
}

.feature-item strong {
    color: #3b82f6;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-rider {
    background-color: #1e293b;
    color: #ffffff;
    border: 1px solid #334155;
}

.btn-rider:hover {
    background-color: #334155;
}

.btn-boda {
    background-color: #f59e0b;
    color: #0b0f19;
}

.btn-boda:hover {
    background-color: #d97706;
}

.btn-car {
    background-color: #3b82f6;
    color: #ffffff;
}

.btn-car:hover {
    background-color: #2563eb;
}

.content-right {
    width: 50%;
    background: linear-gradient(rgba(11, 15, 25, 0.3), #0b0f19), url('https://images.unsplash.com/photo-1617788138017-80ad40651399?auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }
    .content-left, .content-right {
        width: 100%;
    }
    .content-left {
        padding: 30px 20px;
    }
    .content-right {
        height: 30vh;
    }
    h1 {
        font-size: 30px;
    }
}
/* ⚠️ FORCE MODAL OVERLAYS TO STAY HIDDEN ON MOBILE */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
}

/* ⚠️ DISPLAY CODE WHEN ACTIVATED BY BUTTON CLICK */
.modal-overlay:target {
    opacity: 1;
    pointer-events: auto;
}
/* 📱 ADD BREATHING SPACE TO THE TOP OF THE MOBILE SCREEN */
.container {
    padding-top: 40px !important;
}
/* 🔥 RESTORE BLUE COMPANY HEADING WITH MOBILE TOP SPACING */
.logo {
    display: block !important;
    visibility: visible !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #3b82f6 !important; /* Your crisp corporate blue from yesterday */
    margin-top: 55px !important; /* Keeps it completely safe below the status bar */
    margin-bottom: 25px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}