/* =========================================================
   LUMA – Shared Global Styles
   Applies to: driver landing page, inner pages (about, faq,
   locations, blog, privacy, terms), and any page extending
   main.layouts.app.
   ========================================================= */

/* ── Badge pill ─────────────────────────────────────────── */
.badge {
    display: inline-block;
    background: #FFE6D8;
    color: #E55E20;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ── Primary CTA button ──────────────────────────────────── */
.btn-primary-luma {
    background: linear-gradient(135deg, #FF7A3E 0%, #E55E20 100%);
    color: white !important;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255, 122, 62, 0.3);
}
.btn-primary-luma:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 62, 0.4);
}

/* ── Secondary CTA button ────────────────────────────────── */
.btn-secondary-luma {
    background: transparent;
    color: white !important;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    font-size: 16px;
    text-decoration: none !important;
    transition: background 0.2s, border-color 0.2s;
}
.btn-secondary-luma:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: white;
}

/* ── Section helpers ─────────────────────────────────────── */
.section-title {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: #1A1A1A;
}
.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666666;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}
.text-center { text-align: center; }

/* ── Service cards ───────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.service-card {
    background: white;
    border: 1px solid #EAEAEA;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #FFE6D8;
    color: #FF7A3E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}
.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1A1A;
}
.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 25px;
}
.service-link {
    color: #FF7A3E !important;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}
.service-link:hover { gap: 12px; }

/* ── Driver split section ────────────────────────────────── */
.driver-split-section {
    background: #F9F6F4;
    padding: 100px 0;
}
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 992px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.split-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.split-text-col h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1A1A1A;
}
.split-text-col p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 30px;
}
.benefit-list {
    list-style: none;
    padding: 0;
}
.benefit-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
    color: #444444;
}
.benefit-list li i {
    color: #FF7A3E;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── Safety section ──────────────────────────────────────── */
.safety-section { padding: 100px 0; }
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.safety-item { padding: 20px; }
.safety-icon {
    font-size: 45px;
    color: #FF7A3E;
    margin-bottom: 25px;
}
.safety-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1A1A;
}
.safety-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

/* ── App promo section ───────────────────────────────────── */
.app-promo-section {
    background: linear-gradient(135deg, #FF7A3E 0%, #E55E20 100%);
    color: white;
    padding: 80px 0 0;
    overflow: hidden;
}
.app-promo-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 768px) {
    .app-promo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .badges-wrapper { justify-content: center !important; }
    .app-mockup { max-width: 60% !important; }
}
.app-promo-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white !important;
}
.app-promo-text p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}
.badges-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.app-mockup {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    margin: 0 auto;
    transform: translateY(20px);
    filter: drop-shadow(0 -10px 20px rgba(0,0,0,0.15));
}

/* ── Page hero banner (inner pages) ─────────────────────── */
/*  Used on: about, faq, locations, blog, terms, privacy.
    Provides a dark strip so the transparent fixed header
    links (white text) are always visible on scroll start. */
.page-hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    padding: 140px 5% 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,122,62,0.12) 0%, rgba(255,122,62,0) 70%);
    top: -120px;
    right: -120px;
    pointer-events: none;
}
.page-hero .badge {
    background: rgba(255,230,216,0.15);
    color: #FFB899;
    border: 1px solid rgba(255,122,62,0.3);
}
.page-hero h1 {
    font-size: 46px;
    font-weight: 800;
    color: white !important;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.2;
}
.page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .page-hero h1 { font-size: 32px; }
    .page-hero { padding: 120px 5% 50px; }
}

/* ── Inner page content wrapper ─────────────────────────── */
.inner-page-body {
    background: #F9F6F4;
    padding: 60px 5%;
}
.inner-page-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    padding: 50px 60px;
    max-width: 860px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .inner-page-card {
        padding: 30px 24px;
    }
    .inner-page-body {
        padding: 40px 16px;
    }
}

/* ── Driver landing hero ─────────────────────────────────── */
.driver-hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    padding: 160px 5% 100px;
    color: white;
    position: relative;
    overflow: hidden;
}
.driver-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,122,62,0.15) 0%, rgba(255,122,62,0) 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}
.driver-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 992px) {
    .driver-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .driver-hero-img-col {
        display: flex;
        justify-content: center;
    }
    .driver-hero-img-col img {
        max-width: 85%;
    }
}
.driver-hero-content .badge {
    background: rgba(255,230,216,0.12);
    color: #FFB899;
    border: 1px solid rgba(255,122,62,0.3);
}
.driver-hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    color: white !important;
    margin-bottom: 20px;
}
.driver-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 35px;
}
.driver-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .driver-hero-content h1 { font-size: 34px; }
    .driver-hero { padding: 130px 5% 70px; }
}

/* ── Driver stats bar ────────────────────────────────────── */
.driver-stats-bar {
    background: #FF7A3E;
    background: linear-gradient(135deg, #FF7A3E 0%, #E55E20 100%);
    padding: 40px 5%;
}
.driver-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}
@media (max-width: 600px) {
    .driver-stats-grid { grid-template-columns: 1fr; gap: 24px; }
}
.driver-stat-number {
    font-size: 42px;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.driver-stat-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── How it works steps ──────────────────────────────────── */
.steps-section {
    padding: 100px 5%;
    background: white;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.step-card {
    text-align: center;
    padding: 30px 20px;
}
.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF7A3E 0%, #E55E20 100%);
    color: white;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(255,122,62,0.35);
}
.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 12px;
}
.step-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}
.section-container {
    padding: 100px 5%;
}

/* ── Inner page helpers ──────────────────────────────────── */
.legal-h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 36px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #FFE6D8;
}
.faq-question {
    font-size: 17px;
    font-weight: 700;
    color: #E55E20;
    margin-bottom: 8px;
    margin-top: 0;
}
.faq-question.green { color: #4B8E4B; }

/* ── Global container padding (prevents content touching edges) ── */
.hero-container,
.section-container,
.container.split-grid,
.driver-stats-bar,
.steps-section,
.safety-section,
.driver-hero,
.page-hero,
.inner-page-body {
    padding-left: max(5%, 16px);
    padding-right: max(5%, 16px);
    box-sizing: border-box;
}

/* Inner page card also needs edge-safe padding */
.inner-page-card {
    padding-left: clamp(20px, 5vw, 60px);
    padding-right: clamp(20px, 5vw, 60px);
}

/* ── Notification panel styles ──────────────────────────────── */
.notifier-fixed__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 20px;
}
.notifier-fixed__divider {
    height: 1px;
    background: #EAEAEA;
    margin: 0 28px 20px;
}
.notifier-fixed-close-btn {
    background: #F5F5F5;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #444;
    transition: background 0.2s, color 0.2s;
}
.notifier-fixed-close-btn:hover {
    background: #1A1A1A;
    color: white;
}
.notifier-fixed__area-product {
    padding: 0 28px;
    height: calc(100% - 100px);
    overflow-y: auto;
}
.notifier-fixed__area-product::-webkit-scrollbar { width: 4px; }
.notifier-fixed__area-product::-webkit-scrollbar-thumb {
    background: #DDD;
    border-radius: 4px;
}

/* Notification items */
.notification-item {
    padding: 18px 0;
    border-bottom: 1px solid #F0F0F0;
}
.notification-item:last-child {
    border-bottom: none;
}

/* Empty state */
.notifier-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}