/*
Theme Name: RideUp Nassau
Theme URI: https://rideupnassau.com
Author: RideUp
Description: Premium transportation theme for RideUp Nassau - fully customizable from the WordPress admin panel.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rideup
*/

:root {
    --navy: #0D2149;
    --navy-deep: #060E1F;
    --navy-mid: #162d5e;
    --mist: #C2CCDE;
    --white: #FFFFFF;
    --off: #F4F6FB;
    --text: #1a2340;
    --soft: #8594B0;
    --accent: #3B7BF8;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, padding 0.3s;
}

nav.scrolled {
    background: rgba(6, 14, 31, 0.97);
    backdrop-filter: blur(12px);
    padding: 14px 48px;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 0;
    text-decoration: none;
}

.nav-logo .ride {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -1px;
    color: white;
}

.nav-logo .up {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 28px;
    letter-spacing: -1px;
    color: rgba(255,255,255,0.35);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

.nav-links .nav-cta {
    background: white !important;
    color: var(--navy) !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0 !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-links .nav-cta:hover {
    background: var(--mist) !important;
    transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--navy-deep);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(59,123,248,0.12) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 20% 80%, rgba(13,33,73,0.8) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-left {
    animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 28px;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3B7BF8;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 0.95;
    letter-spacing: -2px;
    color: white;
    margin-bottom: 24px;
}

.hero-title span {
    color: rgba(255,255,255,0.25);
    font-weight: 300;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
    max-width: 440px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    background: white;
    color: var(--navy);
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255,255,255,0.15);
}

.btn-ghost {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    transition: color 0.2s;
}

.btn-ghost:hover {
    color: white;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-val {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: white;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin-top: 2px;
    letter-spacing: 1px;
}

/* Hero right — booking card */
.hero-right {
    animation: fadeUp 0.9s 0.2s ease both;
}

.booking-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 36px;
    backdrop-filter: blur(20px);
}

.booking-card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
    margin-bottom: 6px;
}

.booking-card-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 28px;
}

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

.form-label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.form-input, .form-select {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 14px 16px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
}

.form-input::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-input:focus, .form-select:focus {
    border-color: rgba(255,255,255,0.3);
}

.form-select option {
    background: var(--navy);
    color: white;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-book {
    width: 100%;
    background: white;
    color: var(--navy);
    border: none;
    border-radius: 50px;
    padding: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255,255,255,0.15);
}

.secure-note {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--navy);
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-family: 'DM Sans', sans-serif;
}

.trust-icon {
    font-size: 18px;
}

/* ── SECTIONS ── */
section {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 4vw, 52px);
    letter-spacing: -2px;
    color: var(--navy-deep);
    line-height: 1.05;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--mist);
}

.section-desc {
    font-size: 16px;
    color: var(--soft);
    line-height: 1.7;
    max-width: 520px;
    font-weight: 300;
}

/* ── SERVICES ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.service-card {
    background: var(--off);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(13,33,73,0.12);
}

.service-card.featured {
    background: var(--navy);
    color: white;
}

.service-emoji {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.service-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
    color: var(--navy-deep);
    margin-bottom: 10px;
}

.service-card.featured .service-name {
    color: white;
}

.service-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--soft);
    margin-bottom: 24px;
    font-weight: 300;
}

.service-card.featured .service-desc {
    color: rgba(255,255,255,0.55);
}

.service-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--navy);
    letter-spacing: -1px;
}

.service-card.featured .service-price {
    color: white;
}

.service-price-label {
    font-size: 12px;
    color: var(--soft);
    margin-top: 2px;
}

.service-card.featured .service-price-label {
    color: rgba(255,255,255,0.4);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    margin-top: 20px;
    font-family: 'Outfit', sans-serif;
}

.service-card.featured .service-link {
    color: rgba(255,255,255,0.6);
}

/* ── WHY RIDEUP ── */
.why-section {
    background: var(--off);
    border-radius: 32px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin: 0 48px;
    max-width: none;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 48px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.why-item-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--navy-deep);
    margin-bottom: 4px;
}

.why-item-desc {
    font-size: 14px;
    color: var(--soft);
    line-height: 1.6;
    font-weight: 300;
}

/* Car visual */
.car-visual {
    background: var(--navy);
    border-radius: 24px;
    padding: 52px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    position: relative;
    overflow: hidden;
}

.car-visual-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(59,123,248,0.15) 0%, transparent 70%);
}

.car-emoji-big {
    font-size: 80px;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.car-detail {
    text-align: center;
    position: relative;
    z-index: 2;
}

.car-model {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
    letter-spacing: -0.5px;
}

.car-year {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
    letter-spacing: 2px;
}

.car-specs {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.spec {
    text-align: center;
}

.spec-val {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
}

.spec-label {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
    margin-top: 2px;
}

/* ── HOW IT WORKS ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mist), transparent);
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-num {
    width: 64px;
    height: 64px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: white;
    margin: 0 auto 20px;
}

.step-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: var(--soft);
    line-height: 1.6;
    font-weight: 300;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: var(--navy-deep);
    padding: 100px 48px;
}

.testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-title span {
    color: rgba(255,255,255,0.2);
}

.testimonials-section .section-eyebrow {
    color: rgba(255,255,255,0.4);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.review-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px;
}

.stars {
    color: #FFB800;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.reviewer-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.reviewer-origin {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin-top: 2px;
}

/* ── CTA SECTION ── */
.cta-section {
    background: var(--navy);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
    margin: 0 48px 100px;
}

.cta-section .section-title {
    color: white;
    margin: 0 auto 16px;
}

.cta-section .section-title span {
    color: rgba(255,255,255,0.25);
}

.cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 36px;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
    background: var(--navy-deep);
    padding: 60px 48px 36px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 32px;
}

.footer-brand .ride {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: -1px;
    color: white;
}

.footer-brand .up {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 32px;
    letter-spacing: -1px;
    color: rgba(255,255,255,0.25);
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    margin-top: 10px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 280px;
}

.footer-col-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.2);
}

/* WordPress Menu Support */
.nav-links .menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links .menu li {
    list-style: none;
}

.nav-links .menu a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-links .menu a:hover {
    color: white;
}

.footer-links .menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.footer-links .menu li {
    list-style: none;
}

.footer-links .menu a {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links .menu a:hover {
    color: white;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
    nav {
        padding: 16px 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 40px;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    section {
        padding: 60px 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-section {
        grid-template-columns: 1fr;
        padding: 48px 32px;
        margin: 0 24px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2,1fr);
    }
    
    .steps-grid::before {
        display: none;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 48px 32px;
        margin: 0 24px 60px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .trust-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 24px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
}
