:root {
    --primary: #e61e2a; /* Red from your logo */
    --primary-dark: #c1121f;
    --dark: #1a1a1a;
    --light: #fdfdfd;
    --gray: #666;
    --border: #eeeeee;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--dark); background: var(--light); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
.navbar { padding: 15px 0; background: white; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-area { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 40px; }
.logo-text { font-weight: 800; font-size: 24px; color: var(--primary); letter-spacing: 1px; }
.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--primary); }

/* Buttons */
.btn-red { background: var(--primary); color: white; padding: 10px 24px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn-red:hover { background: var(--primary-dark); }
.btn-outline-red { border: 2px solid var(--primary); color: var(--primary); padding: 8px 22px; border-radius: 50px; text-decoration: none; font-weight: 600; margin-right: 10px; }

/* Hero */
.hero { padding: 80px 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.promo-badge { background: #ffebee; color: var(--primary); display: inline-block; padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 13px; margin-bottom: 15px; }
.hero-text h1 { font-size: 58px; line-height: 1.1; margin-bottom: 20px; }
.text-red { color: var(--primary); }
.store-btn { background: var(--dark); color: white; border: none; padding: 15px 25px; border-radius: 10px; font-size: 16px; margin-right: 10px; cursor: pointer; }

.hero-visual { position: relative; text-align: center; }
.circle-bg { position: absolute; width: 450px; height: 450px; background: #ffebee; border-radius: 50%; z-index: -1; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.phone-img { width: 300px; border-radius: 30px; border: 8px solid var(--dark); }

/* Features */
.features { padding: 80px 0; background: #fff; }
.section-title { text-align: center; margin-bottom: 50px; }
.underline { width: 60px; height: 4px; background: var(--primary); margin: 10px auto; }
.feature-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.side-box { padding: 40px; background: #f9f9f9; border-radius: 20px; }
.driver-theme { background: var(--dark); color: white; }
.feature-item { display: flex; gap: 20px; margin-bottom: 30px; align-items: flex-start; }
.feature-item i { font-size: 28px; color: var(--primary); background: white; padding: 15px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.driver-theme i { background: #333; color: var(--primary); }
/* --- APP SCREENS SECTION (The "App View") --- */
.screens { padding: 100px 0; background: var(--white); text-align: center; }
.screen-slider {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap; /* Ensures they show up on all screens */
}

.screen-card {
    width: 280px;
    border-radius: 30px;
    overflow: hidden;
    border: 8px solid #333; /* Phone frame effect */
    box-shadow: var(--shadow);
    transition: transform 0.4s ease;
}

.screen-card:hover { transform: translateY(-15px); }
.screen-card img { width: 100%; height: auto; display: block; }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .menu-toggle { display: block; }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%; /* Hidden by default */
        background: white;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        padding: 40px;
        transition: 0.4s;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        align-items: flex-start;
    }

    .nav-links.active { right: 0; } /* Class added by JS */
    
    .nav-cta { display: none; } /* Hide CTAs on mobile or move into menu */
    
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 38px; }
    .hero-btns { justify-content: center; flex-wrap: wrap; }
    .hero-stats { justify-content: center; gap: 20px; }
}
/* FAQ */
.faq { padding: 80px 0; background: #fdfdfd; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-card { background: white; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 15px; cursor: pointer; }
.faq-header { padding: 20px; font-weight: 700; display: flex; justify-content: space-between; }
.faq-body { padding: 0 20px 20px; color: var(--gray); display: none; }

/* Contact */
.contact { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; }
.contact-form-side input, .contact-form-side textarea { width: 100%; padding: 15px; margin-bottom: 20px; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; }
.btn-red-wide { width: 100%; background: var(--primary); color: white; border: none; padding: 15px; border-radius: 8px; font-weight: 700; cursor: pointer; }
.info-card { background: #f9f9f9; padding: 30px; border-radius: 15px; margin-bottom: 20px; border-left: 5px solid var(--primary); }

footer { background: var(--dark); color: white; padding: 40px 0; text-align: center; }
.captcha-box {
    font-weight: bold;
    letter-spacing: 3px;
    background: #eee;
    padding: 8px;
    display: inline-block;
    margin-bottom: 5px;
}
.captcha-badge {
    background: #ffebee;
    color: var(--primary);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}
/* Responsive */
@media (max-width: 768px) {
    .hero-grid, .feature-layout, .contact-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}