/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #05060a;
    color: #ffffff;
}

/* NAV */
.nav {
    width: 100%;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.nav-links a {
    margin-left: 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

/* HERO */
.hero {
    height: 100vh;
    background: url('../public/img/fast-index.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,204,0,0.18), transparent 55%),
                linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.85));
}

.hero-content {
    position: relative;
    max-width: 640px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.1rem;
    margin-bottom: 18px;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    padding: 14px 26px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.primary-btn {
    background: #ffcc00;
    color: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.45);
}

.primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.6);
}

.secondary-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.08);
}

/* WELCOME */
.welcome {
    padding: 80px 40px 60px;
    text-align: center;
    background: #0b0c10;
}

.welcome h2 {
    font-size: 2.1rem;
    margin-bottom: 18px;
}

.welcome p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    opacity: 0.85;
    line-height: 1.7;
}

/* SECTIONS */
.section {
    padding: 90px 40px;
    text-align: center;
}

.section.dark {
    background: #101118;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section p.section-sub {
    max-width: 640px;
    margin: 0 auto 40px;
    opacity: 0.8;
}

/* HOW IT WORKS */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.step {
    background: rgba(10,10,15,0.9);
    border-radius: 18px;
    padding: 22px 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step p {
    font-size: 0.98rem;
    opacity: 0.85;
}

/* ORDER PANEL */
.order-panel {
    max-width: 520px;
    margin: 30px auto 0;
    text-align: left;
    background: #0d0f16;
    border-radius: 18px;
    padding: 24px 22px;
    border: 1px solid rgba(255,255,255,0.06);
}

.order-panel h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.order-panel p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 16px;
}

.order-panel button {
    width: 100%;
}

/* RIDERS */
.rider-grid {
    max-width: 720px;
    margin: 30px auto 0;
    display: grid;
    gap: 18px;
    text-align: left;
}

.rider-card {
    background: #0b0d14;
    border-radius: 16px;
    padding: 18px 18px;
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 0.96rem;
    opacity: 0.9;
}

/* FORMS (order.html / riders.html) */
.form-wrapper {
    max-width: 520px;
    margin: 120px auto 60px;
    background: #0d0f16;
    border-radius: 18px;
    padding: 26px 22px 28px;
    border: 1px solid rgba(255,255,255,0.08);
}

.form-wrapper h1 {
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.form-wrapper p {
    font-size: 0.98rem;
    opacity: 0.85;
    margin-bottom: 22px;
}

.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 6px;
    opacity: 0.9;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 11px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: #05060a;
    color: #ffffff;
    font-size: 0.95rem;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.form-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 16px;
}

.form-actions {
    margin-top: 10px;
}

/* FOOTER */
footer {
    padding: 20px;
    text-align: center;
    background: #000000;
    opacity: 0.9;
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav {
        padding: 14px 18px;
    }

    .hero {
        padding: 0 18px;
        justify-content: center;
        text-align: left;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .section,
    .welcome {
        padding: 70px 18px;
    }

    .form-wrapper {
        margin: 100px 18px 50px;
    }
}
