/* ═══════════════════════════════════════════════
   OPPA RIDE — BECOME A DRIVER PAGE STYLESHEET
   2026
═══════════════════════════════════════════════ */

:root {
    --yellow: #f4ca46;
    --yellow-pale: #FFFBEC;
    --dark: #0E1017;
    --dark-2: #1A1D26;
    --mid: #6B7280;
    --light: #F7F4EC;
    --cream: #F2EDD8;
    --white: #FFFFFF;
    --border: #E5E7EB;
    --radius: 16px;
    --shadow: 0 2px 16px rgba(0,0,0,0.07);
    --transition: 0.25s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* TOPBAR */
.topbar {
    background: var(--yellow);
    padding: 0.9rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.brand-logo { height: 44px; width: auto; }
.brand-accent { color: #000000; }
.back-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.back-link:hover { opacity: 1; }

/* PAGE HEADER */
.page-header {
    background: var(--dark-2);
    color: #fff;
    padding: 3.5rem 2rem 3rem;
    text-align: center;
}
.page-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 0.75rem;
}
.page-header h1 em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--yellow);
}
.page-header p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

/* MAIN LAYOUT */
.page-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* BLOCK CARD */
.block {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.block-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.3rem 1.8rem;
    border-bottom: 1px solid var(--border);
    background: var(--yellow-pale);
}
.block-header-icon { font-size: 1.3rem; line-height: 1; }
.block-header h2 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
}
.block-body { padding: 1.8rem; }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 1.2rem; }
.step { display: flex; align-items: flex-start; gap: 1.2rem; }
.step-num {
    width: 34px; height: 34px; min-width: 34px;
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-top: 2px;
}
.step-text strong { display: block; font-weight: 700; font-size: 0.96rem; margin-bottom: 0.1rem; }
.step-text span { font-size: 0.87rem; color: var(--mid); }

/* CONTACT ROWS */
.contact-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-icon {
    font-size: 1.4rem;
    width: 44px; height: 44px; min-width: 44px;
    background: var(--yellow-pale);
    border-radius: 12px;
    display: grid;
    place-items: center;
}
.contact-info strong { display: block; font-weight: 700; font-size: 0.93rem; margin-bottom: 0.15rem; }
.contact-info a { font-size: 0.9rem; color: var(--dark); font-weight: 500; transition: color var(--transition); }
.contact-info a:hover { color: hsl(47, 91%, 40%); }
.contact-info .note { display: block; font-size: 0.8rem; color: var(--mid); margin-top: 0.2rem; }

/* ADDRESS */
.address-details { display: flex; flex-direction: column; gap: 1rem; }
.address-line { display: flex; gap: 1rem; align-items: flex-start; }
.address-line-icon { font-size: 1.1rem; margin-top: 3px; min-width: 22px; }
.address-line p { font-size: 0.93rem; color: var(--dark); line-height: 1.65; }
.address-line p small { display: block; font-size: 0.8rem; color: var(--mid); margin-top: 0.2rem; }
.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    margin-top: 0.5rem;
    transition: background var(--transition), transform var(--transition);
}
.map-btn:hover { background: var(--dark-2); transform: translateY(-1px); }

/* REQUIREMENTS */
.req-groups {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem 2.5rem;
}
.req-group h3 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mid);
    margin-bottom: 0.75rem;
}
.req-group ul { display: flex; flex-direction: column; gap: 0.5rem; }
.req-group li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--dark);
    line-height: 1.5;
}
.req-group li::before {
    content: '';
    width: 7px; height: 7px; min-width: 7px;
    border-radius: 50%;
    background: var(--yellow);
    margin-top: 7px;
}

/* FOOTER */
.page-footer {
    background: var(--dark);
    text-align: center;
    padding: 1.2rem 2rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .page-body { padding: 2rem 1.25rem 4rem; gap: 1.5rem; }
    .block-body { padding: 1.4rem; }
    .req-groups { grid-template-columns: 1fr; gap: 1.4rem; }
    .page-header { padding: 2.5rem 1.5rem 2rem; }
    .topbar { padding: 0.8rem 1.25rem; }
}
