/* One Day Brakes - Global Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --accent: #E53E3E;
    --accent-dark: #C53030;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;
    --white: #ffffff;
}
body { font-family: 'Inter', sans-serif; color: var(--gray-900); background: var(--white); line-height: 1.5; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* HEADER / NAV */
.header { background: var(--white); border-bottom: 1px solid var(--gray-300); position: sticky; top: 0; z-index: 100; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-brand .logo { height: 44px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-menu a { font-size: 15px; font-weight: 500; color: var(--gray-700); transition: color 0.2s; }
.nav-menu a:hover { color: var(--accent); }
.btn-nav { background: var(--accent) !important; color: var(--white) !important; padding: 8px 18px; border-radius: 6px; font-weight: 600 !important; }
.btn-nav:hover { background: var(--accent-dark) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-700); border-radius: 2px; }

/* HERO */
.hero { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%); color: var(--white); padding: 80px 0; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-text h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero-subtitle { font-size: 1.1rem; color: #cbd5e0; margin-bottom: 28px; line-height: 1.6; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.btn { display: inline-block; padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.2s; text-align: center; border: none; }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-accent { background: #fbbf24; color: var(--gray-900); }
.btn-accent:hover { background: #f59e0b; }
.btn-light { background: var(--white); color: var(--gray-900); }
.btn-light:hover { background: var(--gray-100); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.trust-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.88rem; color: #a0aec0; }
.trust-icon { color: #68d391; font-weight: 700; }
.hero-image img { border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

/* DISCOUNT BANNER */
.discount-banner { background: var(--accent); color: var(--white); text-align: center; padding: 12px 20px; font-size: 0.95rem; }
.discount-banner strong { font-weight: 700; }

/* SERVICES */
.services { padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 12px; }
.section-header p { font-size: 1rem; color: var(--gray-600); max-width: 560px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: 16px; padding: 32px; position: relative; transition: box-shadow 0.2s; }
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.service-card.featured { border-color: var(--accent); box-shadow: 0 4px 16px rgba(229,62,62,0.15); }
.service-card.membership-highlight { border-color: #fbbf24; }
.service-badge { position: absolute; top: -10px; right: 20px; background: #fbbf24; color: var(--gray-900); font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.service-icon { font-size: 2.2rem; margin-bottom: 12px; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.service-description { color: var(--gray-600); font-size: 0.93rem; margin-bottom: 18px; line-height: 1.6; }
.pricing { margin-bottom: 16px; }
.price-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.92rem; }
.price-item.highlight .price { color: var(--accent); font-weight: 700; font-size: 1.1rem; }
.price-label { color: var(--gray-700); }
.additional-pricing { margin-bottom: 20px; }
.service-features { list-style: none; margin-bottom: 24px; }
.service-features li { padding: 5px 0; font-size: 0.9rem; color: var(--gray-700); }
.pricing-disclaimer { text-align: center; color: var(--gray-600); font-size: 0.82rem; margin-top: 32px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* WHY CHOOSE */
.why-choose { padding: 72px 0; background: var(--gray-100); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.benefit { background: var(--white); border-radius: 12px; padding: 28px; }
.benefit-icon { font-size: 2rem; margin-bottom: 12px; }
.benefit h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.benefit p { font-size: 0.91rem; color: var(--gray-600); line-height: 1.6; }

/* SERVICE AREA */
.service-area { padding: 72px 0; }
.cities-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 20px; }
.city { background: var(--gray-100); border-radius: 20px; padding: 6px 16px; font-size: 0.9rem; font-weight: 500; color: var(--gray-700); }
.service-area-note { text-align: center; color: var(--gray-600); font-size: 0.9rem; }
.service-area-note a { color: var(--accent); text-decoration: underline; }

/* FLEET CTA */
.fleet-cta { background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%); color: var(--white); padding: 64px 0; text-align: center; }
.fleet-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.fleet-cta p { color: #9ca3af; max-width: 560px; margin: 0 auto 28px; line-height: 1.7; }

/* SOCIAL PROOF */
.social-proof { padding: 72px 0; background: var(--gray-100); }
.rating { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 10px; }
.stars { font-size: 1.3rem; }
.rating-text { font-size: 0.95rem; color: var(--gray-600); font-weight: 500; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; }
.review-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.review-stars { font-size: 1.1rem; margin-bottom: 10px; }
.review-text { font-style: italic; color: var(--gray-700); margin-bottom: 12px; line-height: 1.6; font-size: 0.93rem; }
.review-author { font-weight: 600; color: var(--gray-600); font-size: 0.85rem; }

/* CTA SECTION */
.cta-section { background: var(--accent); color: var(--white); padding: 72px 0; text-align: center; }
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 12px; }
.cta-section p { opacity: 0.9; margin-bottom: 32px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer { background: var(--gray-800); color: #9ca3af; padding: 48px 0 24px; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer-logo { height: 36px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-col p { line-height: 1.7; margin-bottom: 6px; }
.footer-col a { color: #9ca3af; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-contact p { display: flex; align-items: center; gap: 6px; }
.footer-bottom { border-top: 1px solid #374151; padding-top: 20px; text-align: center; }

/* RESPONSIVE — MOBILE FIRST */
@media (max-width: 768px) {
    /* NAV */
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px 20px;
        gap: 20px;
        z-index: 99;
        overflow-y: auto;
        border-top: 1px solid var(--gray-300);
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { font-size: 17px; padding: 6px 0; border-bottom: 1px solid var(--gray-100); }
    .btn-nav {
        display: block;
        text-align: center;
        padding: 14px 20px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
        margin-top: 8px;
    }

    /* HERO */
    .hero { padding: 48px 0 40px; }
    .hero-content { grid-template-columns: 1fr; gap: 0; }
    .hero-image { display: block; margin-top: 28px; }
    .hero-image img { border-radius: 10px; width: 100%; max-height: 220px; object-fit: cover; }
    .hero-text h1 { font-size: 1.9rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { flex-direction: column; gap: 12px; }
    .btn-lg { width: 100%; text-align: center; padding: 16px 20px; font-size: 1rem; }
    .trust-badges { gap: 10px; }
    .trust-item { font-size: 0.82rem; }

    /* DISCOUNT BANNER */
    .discount-banner { font-size: 0.88rem; padding: 10px 16px; }

    /* SERVICES */
    .services { padding: 48px 0; }
    .section-header { margin-bottom: 32px; }
    .section-header h2 { font-size: 1.6rem; }
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card { padding: 24px 20px; }

    /* WHY CHOOSE */
    .why-choose { padding: 48px 0; }
    .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
    .benefit { padding: 20px; }

    /* SERVICE AREA */
    .service-area { padding: 48px 0; }
    .cities-grid { gap: 8px; }
    .city { font-size: 0.85rem; padding: 5px 12px; }

    /* FLEET CTA */
    .fleet-cta { padding: 48px 0; }
    .fleet-cta h2 { font-size: 1.5rem; }
    .fleet-cta p { font-size: 0.93rem; }

    /* REVIEWS */
    .social-proof { padding: 48px 0; }
    .reviews-grid { grid-template-columns: 1fr; }

    /* CTA */
    .cta-section { padding: 48px 0; }
    .cta-section h2 { font-size: 1.6rem; }
    .cta-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
    .cta-buttons .btn { width: 100%; }

    /* FOOTER */
    .footer { padding: 40px 0 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-col:first-child { grid-column: 1 / -1; }

    /* MAP */
    .map-container { height: 320px; }

    /* GENERAL */
    .container { padding: 0 16px; }
}

/* SMALL PHONES */
@media (max-width: 390px) {
    .hero-text h1 { font-size: 1.65rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .btn-nav { font-size: 15px !important; }
}

/* STICKY MOBILE CTA BAR */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-300);
    padding: 12px 16px;
    z-index: 98;
    gap: 10px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}
.mobile-cta-bar a {
    flex: 1;
    text-align: center;
    padding: 13px 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
}
.mobile-cta-bar .call-btn {
    background: var(--gray-100);
    color: var(--gray-900);
    border: 2px solid var(--gray-300);
}
.mobile-cta-bar .book-btn {
    background: var(--accent);
    color: var(--white);
}
@media (max-width: 768px) {
    .mobile-cta-bar { display: flex; }
    body { padding-bottom: 76px; }
}

/* ============================================
   CONVERSION PSYCHOLOGY & BRAND EXPERIENCE
   Applied: April 9, 2026
   ============================================ */

/* --- INNER PAGE HEROES (fix light text on white) --- */
.about-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    color: var(--white);
    padding: 56px 0 48px;
    text-align: center;
}
.about-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}
.about-hero .hero-subtitle {
    color: #cbd5e0;
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- TRUST BAR (social proof at top) --- */
.trust-bar {
    background: #f0fdf4;
    border-bottom: 1px solid #bbf7d0;
    padding: 10px 0;
    text-align: center;
}
.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    font-weight: 600;
    color: #166534;
}
.trust-bar-inner span { display: flex; align-items: center; gap: 5px; }

/* --- EMOTIONAL HERO ENHANCEMENTS --- */
.hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fbbf24;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* --- WARM SECTION: "HOW YOU FEEL" BLOCK --- */
.feel-section {
    background: #fff7ed;
    border-left: 4px solid #f97316;
    padding: 32px 36px;
    border-radius: 0 12px 12px 0;
    margin: 40px 0;
}
.feel-section h3 { color: #9a3412; font-size: 1.15rem; margin-bottom: 8px; }
.feel-section p { color: #7c2d12; line-height: 1.7; }

/* --- PROCESS STEPS (visual momentum) --- */
.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    margin: 8px 0;
}

/* --- GUARANTEE BADGE --- */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 24px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.guarantee-badge .badge-icon { font-size: 1.8rem; }

/* --- MICRO-TESTIMONIAL (inline trust signal) --- */
.micro-testimonial {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-left: 3px solid #fbbf24;
    border-radius: 8px;
    padding: 14px 18px;
    margin: 20px 0;
    font-size: 0.92rem;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.6;
}
.micro-testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--gray-600);
    font-size: 0.82rem;
    margin-top: 6px;
}

/* --- URGENCY / SCARCITY (honest, not pushy) --- */
.availability-note {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.88rem;
    color: #92400e;
    font-weight: 600;
    text-align: center;
    margin: 16px 0;
}

/* --- SECTION TRANSITIONS (visual flow) --- */
.section-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #fbbf24, var(--accent));
    border: none;
    margin: 0;
    opacity: 0.3;
}

/* --- WARM CTA VARIANT --- */
.cta-warm {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: var(--white);
    padding: 64px 0;
    text-align: center;
}
.cta-warm h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.cta-warm .cta-sub { color: #94a3b8; font-size: 1rem; margin-bottom: 12px; line-height: 1.7; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-warm .cta-reassurance {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 16px;
}

/* --- READABILITY FIXES (all body text must be dark enough) --- */
.section-header p { color: var(--gray-700); } /* was gray-600 — darker */
.service-description { color: var(--gray-700); }
.benefit p { color: var(--gray-700); }
.review-text { color: var(--gray-800); } /* reviews should feel strong */
.pricing-disclaimer { color: var(--gray-700); }
.fleet-cta p { color: #d1d5db; } /* on dark bg — lighter is ok */

/* --- MOBILE READABILITY --- */
@media (max-width: 768px) {
    .about-hero { padding: 40px 0 32px; }
    .about-hero h1 { font-size: 1.7rem; }
    .about-hero .hero-subtitle { font-size: 0.97rem; padding: 0 8px; }
    .trust-bar-inner { gap: 14px; font-size: 0.82rem; }
    .feel-section { padding: 22px 20px; }
    .guarantee-badge { font-size: 0.88rem; padding: 12px 16px; }
}

/* --- SCROLL ANIMATION (subtle, not gimmicky) --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   INNER PAGE HERO FIXES — All pages dark hero
   Fixes light gray text on white background
   ============================================ */

/* Universal inner page hero — dark, readable, on-brand */
.careers-hero,
.fleet-hero,
.contact-hero,
.about-hero,
.membership-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    color: var(--white);
    padding: 56px 0 48px;
    text-align: center;
}

.careers-hero h1,
.fleet-hero h1,
.contact-hero h1,
.careers-hero h2,
.fleet-hero h2,
.contact-hero h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}

/* Fix hero-subtitle on ALL inner pages — was #cbd5e0 on white = invisible */
.careers-hero .hero-subtitle,
.fleet-hero .hero-subtitle,
.contact-hero .hero-subtitle,
.careers-hero p,
.fleet-hero p:not(.btn),
.contact-hero p:not(.btn) {
    color: #cbd5e0 !important;
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Fleet hero has extra content inside it */
.fleet-hero-content { max-width: 700px; margin: 0 auto; }
.fleet-hero .hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* Mobile inner hero fixes */
@media (max-width: 768px) {
    .careers-hero,
    .fleet-hero,
    .contact-hero {
        padding: 40px 0 32px;
    }
    .careers-hero h1,
    .fleet-hero h1,
    .contact-hero h1 {
        font-size: 1.7rem;
    }
    .careers-hero .hero-subtitle,
    .fleet-hero .hero-subtitle,
    .contact-hero .hero-subtitle {
        font-size: 0.97rem !important;
        padding: 0 8px;
    }
    .fleet-hero .hero-cta { flex-direction: column; align-items: center; }
    .fleet-hero .hero-cta .btn { width: 100%; max-width: 320px; }
}
