/* =====================================================
   SAMOA RIDE
   MAIN STYLESHEET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --navy: #092c4c;
    --navy-dark: #061f36;
    --blue: #087ea4;
    --blue-light: #e9f7fb;

    --green: #16835b;
    --green-dark: #0e6847;
    --green-light: #eaf8f2;

    --gold: #e3a72f;
    --gold-light: #fff6df;

    --cream: #faf9f5;
    --white: #ffffff;

    --text: #17202a;
    --text-light: #64707b;
    --muted: #8b949e;

    --border: #e4e8eb;

    --shadow-sm:
        0 4px 16px rgba(9, 44, 76, 0.07);

    --shadow:
        0 15px 45px rgba(9, 44, 76, 0.12);

    --shadow-lg:
        0 25px 70px rgba(9, 44, 76, 0.18);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;

    --container: 1180px;
}


/* =====================================================
   BASE
===================================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;
}


/* =====================================================
   TYPOGRAPHY
===================================================== */

h1,
h2,
h3,
h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    font-weight: 800;
    letter-spacing: -0.05em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

p {
    color: var(--text-light);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;

    color: var(--green);

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* =====================================================
   BUTTONS
===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border: 1px solid transparent;
    border-radius: 10px;

    padding: 11px 19px;

    font-size: 0.92rem;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--green);
    color: var(--white);

    box-shadow:
        0 8px 22px rgba(22, 131, 91, 0.22);
}

.btn-primary:hover {
    background: var(--green-dark);

    box-shadow:
        0 12px 30px rgba(22, 131, 91, 0.28);
}

.btn-outline {
    background: var(--white);
    color: var(--navy);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--green);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
}

.btn-white:hover {
    box-shadow: var(--shadow);
}

.btn-outline-white {
    color: var(--white);
    border-color: rgba(255,255,255,0.55);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
}

.btn-large {
    min-height: 54px;
    padding: 15px 25px;
    font-size: 0.98rem;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: fixed;
    z-index: 1000;

    top: 0;
    left: 0;
    width: 100%;

    background: rgba(255,255,255,0.96);

    border-bottom: 1px solid rgba(228,232,235,0.8);

    transition:
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}

.logo-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: var(--green);
    color: var(--white);

    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 0.75rem;

    box-shadow:
        0 7px 18px rgba(22,131,91,0.2);
}

.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1.05;
}

.logo-text strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
}

.logo-text span {
    color: var(--green);

    font-size: 0.75rem;
    font-weight: 700;
}


/* NAV */

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-link {
    position: relative;

    padding: 28px 0;

    color: #59636d;

    font-size: 0.88rem;
    font-weight: 600;

    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
}

.nav-link.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 17px;

    height: 2px;

    border-radius: 5px;

    background: var(--green);
}


/* HEADER ACTIONS */

.header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.mobile-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    background: transparent;
}

.mobile-menu-btn span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: var(--navy);

    transition: 0.25s ease;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 790px;

    display: flex;
    align-items: center;

    padding-top: 76px;

    overflow: hidden;

    background:
        linear-gradient(
            115deg,
            #082e4f 0%,
            #0a4662 48%,
            #087b75 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -200px;
    top: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.11),
            transparent 68%
        );
}

.hero::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -240px;
    bottom: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(227,167,47,0.18),
            transparent 68%
        );
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,26,44,0.55),
            transparent 65%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        430px;

    align-items: center;

    gap: 80px;
}


/* HERO COPY */

.hero-copy {
    color: var(--white);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 25px;

    padding: 7px 13px;

    border:
        1px solid rgba(255,255,255,0.18);

    border-radius: 50px;

    background:
        rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    font-size: 0.78rem;
    font-weight: 700;
}

.pulse-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #54d39b;

    box-shadow:
        0 0 0 5px rgba(84,211,155,0.13);
}

.hero h1 {
    max-width: 700px;
    margin-bottom: 25px;

    color: var(--white);
}

.hero h1 span {
    color: #7fe3ba;
}

.hero-copy > p {
    max-width: 610px;
    margin-bottom: 32px;

    color: rgba(255,255,255,0.78);

    font-size: 1.08rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 45px;
}

.button-icon {
    font-size: 1rem;
}

.hero-trust {
    display: flex;
    gap: 30px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: var(--white);
    font-size: 0.9rem;
}

.trust-item span {
    color: rgba(255,255,255,0.55);
    font-size: 0.75rem;
}


/* =====================================================
   BOOKING CARD
===================================================== */

.booking-card {
    padding: 28px;

    border:
        1px solid rgba(255,255,255,0.35);

    border-radius: var(--radius-lg);

    background:
        rgba(255,255,255,0.98);

    box-shadow: var(--shadow-lg);
}

.booking-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 23px;
}

.small-label {
    color: var(--green);

    font-size: 0.68rem;
    font-weight: 800;

    letter-spacing: 0.14em;
}

.booking-header h2 {
    margin-top: 5px;

    font-size: 1.45rem;
    letter-spacing: -0.03em;
}

.booking-car-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: var(--green-light);

    font-size: 1.25rem;
}


/* LOCATION INPUTS */

.location-inputs {
    position: relative;
}

.location-line {
    position: absolute;

    left: 17px;
    top: 25px;
    bottom: 25px;

    width: 1px;

    border-left:
        1px dashed #b8c3c9;
}

.location-group {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 66px;

    padding: 8px 0;

    border-bottom: 1px solid var(--border);
}

.location-group:last-child {
    border-bottom: 0;
}

.location-icon {
    position: relative;
    z-index: 2;

    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--white);

    font-size: 0.7rem;
}

.pickup-icon {
    color: var(--green);
}

.destination-icon {
    color: var(--navy);
}

.input-wrapper {
    flex: 1;
}

.input-wrapper label {
    display: block;

    margin-bottom: 2px;

    color: var(--muted);

    font-size: 0.68rem;
    font-weight: 700;
}

.input-wrapper input {
    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--text);

    font-size: 0.92rem;
    font-weight: 600;
}

.input-wrapper input::placeholder {
    color: #a5adb3;
    font-weight: 500;
}


/* QUICK LOCATIONS */

.quick-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin: 15px 0;
}

.quick-locations button {
    padding: 7px 10px;

    border: 1px solid var(--border);
    border-radius: 7px;

    background: var(--white);

    color: var(--text-light);

    font-size: 0.7rem;
    font-weight: 600;

    transition: 0.2s ease;
}

.quick-locations button:hover {
    border-color: var(--green);
    color: var(--green);
}


/* RIDE OPTIONS */

.ride-options {
    display: grid;
    gap: 8px;

    margin-bottom: 17px;
}

.ride-option {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    cursor: pointer;

    transition: 0.2s ease;
}

.ride-option:hover {
    border-color: #9acdb9;
}

.ride-option.active {
    border-color: var(--green);

    background: var(--green-light);
}

.ride-option-icon {
    font-size: 1.2rem;
}

.ride-option div {
    flex: 1;

    display: flex;
    flex-direction: column;
}

.ride-option strong {
    font-size: 0.78rem;
}

.ride-option small {
    color: var(--muted);
    font-size: 0.65rem;
}

.ride-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--navy);
}

.booking-submit {
    width: 100%;
}

.booking-note {
    margin-top: 10px;

    text-align: center;

    color: var(--muted);

    font-size: 0.66rem;
}


/* =====================================================
   STATS
===================================================== */

.stats-section {
    position: relative;
    z-index: 5;

    margin-top: -45px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: var(--white);

    box-shadow: var(--shadow);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 13px;

    min-height: 110px;

    padding: 20px;

    border-right: 1px solid var(--border);
}

.stat-card:last-child {
    border-right: 0;
}

.stat-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 11px;

    background: var(--blue-light);

    font-size: 1.1rem;
}

.stat-card strong {
    display: block;

    margin-bottom: 2px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.85rem;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.7rem;
}


/* =====================================================
   SECTIONS
===================================================== */

.section {
    padding: 105px 0;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading h2 {
    margin-bottom: 17px;
}

.section-heading p {
    max-width: 620px;
    margin: 0 auto;

    font-size: 0.98rem;
}


/* =====================================================
   HOW IT WORKS
===================================================== */

.how-section {
    background: var(--cream);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.step-card {
    position: relative;

    padding: 30px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--white);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.step-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: #dbe2e6;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.step-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin-bottom: 23px;

    border-radius: 14px;

    background: var(--green-light);

    font-size: 1.3rem;
}

.step-card h3 {
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.85rem;
}


/* =====================================================
   DRIVER
===================================================== */

.driver-section {
    padding: 105px 0;

    background:
        linear-gradient(
            120deg,
            var(--navy-dark),
            var(--navy)
        );

    color: var(--white);
}

.driver-grid {
    display: grid;
    grid-template-columns: 1fr 440px;

    align-items: center;

    gap: 90px;
}

.driver-content h2 {
    max-width: 600px;

    margin-bottom: 20px;

    color: var(--white);
}

.driver-content > p {
    max-width: 560px;
    margin-bottom: 35px;

    color: rgba(255,255,255,0.68);
}

.driver-benefits {
    display: grid;
    gap: 19px;

    margin-bottom: 35px;
}

.benefit {
    display: flex;
    gap: 13px;
}

.benefit > span {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(84,211,155,0.14);

    color: #70dfae;

    font-size: 0.75rem;
    font-weight: 800;
}

.benefit strong {
    display: block;

    margin-bottom: 2px;

    font-size: 0.88rem;
}

.benefit p {
    color: rgba(255,255,255,0.53);
    font-size: 0.75rem;
}


/* DRIVER CARD */

.driver-card {
    padding: 27px;

    border:
        1px solid rgba(255,255,255,0.13);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.09),
            rgba(255,255,255,0.04)
        );

    box-shadow:
        0 25px 70px rgba(0,0,0,0.18);
}

.driver-card-top {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 25px;

    color: rgba(255,255,255,0.6);

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.online-indicator {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #62d99f;
}

.driver-profile {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 28px;
}

.driver-avatar {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #1d9b70,
            #086a66
        );

    font-weight: 800;
}

.driver-profile strong {
    display: block;
    margin-bottom: 5px;
}

.rating {
    color: #f2c14e;
    font-size: 0.8rem;
}

.driver-earnings {
    padding: 20px;

    border-radius: 14px;

    background: rgba(255,255,255,0.06);

    margin-bottom: 15px;
}

.driver-earnings span {
    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,0.5);

    font-size: 0.72rem;
}

.driver-earnings strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.7rem;
}

.driver-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.driver-mini-stats > div {
    text-align: center;

    border-right:
        1px solid rgba(255,255,255,0.1);
}

.driver-mini-stats > div:last-child {
    border-right: 0;
}

.driver-mini-stats strong {
    display: block;
    font-size: 0.95rem;
}

.driver-mini-stats span {
    color: rgba(255,255,255,0.45);
    font-size: 0.65rem;
}


/* =====================================================
   SAFETY
===================================================== */

.safety-section {
    background: var(--white);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.safety-card {
    padding: 28px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--white);

    transition: 0.25s ease;
}

.safety-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.safety-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 13px;

    background: var(--gold-light);

    font-size: 1.2rem;
}

.safety-card h3 {
    margin-bottom: 9px;
}

.safety-card p {
    font-size: 0.82rem;
}


/* =====================================================
   LOCATIONS
===================================================== */

.locations-section {
    padding: 105px 0;

    background: var(--cream);
}

.locations-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

.locations-content h2 {
    margin-bottom: 18px;
}

.locations-content > p {
    max-width: 560px;
    margin-bottom: 30px;
}

.location-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.location-list div {
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 12px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: var(--white);
}

.location-list span {
    font-size: 0.95rem;
}

.location-list strong {
    font-size: 0.76rem;
}


/* MAP */

.map-placeholder {
    position: relative;

    min-height: 440px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            135deg,
            #d9f0e9,
            #c5e5ee
        );

    box-shadow: var(--shadow);
}

.map-grid {
    position: absolute;
    inset: 0;

    opacity: 0.5;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.6) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.6) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}

.map-placeholder::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 200px;

    top: 80px;
    left: 70px;

    border-radius: 55% 45% 60% 40%;

    background: rgba(255,255,255,0.55);

    transform: rotate(-18deg);
}

.map-placeholder::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 150px;

    bottom: 50px;
    right: 50px;

    border-radius: 50%;

    background: rgba(255,255,255,0.4);
}

.map-route {
    position: absolute;
    inset: 0;
}

.map-pin {
    position: absolute;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 4px solid var(--white);

    border-radius: 50%;

    background: var(--green);
    color: var(--white);

    font-weight: 800;

    box-shadow: 0 8px 20px rgba(0,0,0,0.16);
}

.pin-one {
    left: 26%;
    top: 30%;
}

.pin-two {
    right: 22%;
    bottom: 25%;

    background: var(--navy);
}

.route-line {
    position: absolute;

    width: 50%;
    height: 5px;

    left: 31%;
    top: 47%;

    border-radius: 10px;

    background:
        repeating-linear-gradient(
            90deg,
            var(--green) 0 12px,
            transparent 12px 20px
        );

    transform: rotate(25deg);
}

.map-label {
    position: absolute;

    left: 25px;
    bottom: 22px;

    padding: 9px 13px;

    border-radius: 8px;

    background: rgba(255,255,255,0.9);

    color: var(--navy);

    font-weight: 800;

    box-shadow: var(--shadow-sm);
}


/* =====================================================
   ABOUT
===================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 85px;

    align-items: center;
}

.about-image {
    min-height: 470px;

    display: flex;
    align-items: flex-end;

    padding: 35px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            #0b5974,
            #087b75 55%,
            #16835b
        );

    box-shadow: var(--shadow);

    position: relative;
}

.about-image::before {
    content: "SAMOA";

    position: absolute;

    top: 55px;
    left: -20px;

    color: rgba(255,255,255,0.08);

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 7rem;
    font-weight: 800;
    letter-spacing: -0.08em;
}

.about-image::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: -120px;
    right: -120px;

    border-radius: 50%;

    border:
        70px solid rgba(255,255,255,0.08);
}

.about-image-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
}

.about-image-content > span {
    margin-bottom: 15px;
    font-size: 2.8rem;
}

.about-image-content strong {
    margin-bottom: 7px;

    color: var(--white);

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2rem;
}

.about-image-content small {
    max-width: 320px;

    color: rgba(255,255,255,0.68);

    font-size: 0.82rem;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 0.94rem;
}

.text-link {
    display: inline-block;

    margin-top: 12px;

    color: var(--green);

    font-size: 0.86rem;
    font-weight: 800;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
    padding: 70px 0;

    background:
        linear-gradient(
            120deg,
            var(--green-dark),
            var(--green)
        );

    color: var(--white);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.cta-content .eyebrow {
    color: #a6edca;
}

.cta-content h2 {
    margin-bottom: 9px;

    color: var(--white);
}

.cta-content p {
    color: rgba(255,255,255,0.7);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.contact-card {
    padding: 32px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--white);

    text-align: center;
}

.contact-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin: 0 auto 18px;

    border-radius: 14px;

    background: var(--blue-light);

    font-size: 1.3rem;
}

.contact-card h3 {
    margin-bottom: 8px;
}

.contact-card p {
    margin-bottom: 12px;

    font-size: 0.8rem;
}

.contact-card a {
    color: var(--green);

    font-size: 0.82rem;
    font-weight: 800;
}

.text-button {
    border: 0;
    background: transparent;

    color: var(--green);

    font-size: 0.82rem;
    font-weight: 800;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: var(--navy-dark);
    color: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);

    gap: 50px;

    padding: 70px 0 55px;
}

.footer-logo .logo-mark {
    background: var(--green);
}

.footer-brand > p {
    max-width: 260px;

    margin-top: 18px;

    color: rgba(255,255,255,0.5);

    font-size: 0.8rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-column h4 {
    margin-bottom: 8px;

    font-size: 0.8rem;
}

.footer-column a {
    color: rgba(255,255,255,0.5);

    font-size: 0.76rem;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 0;

    border-top:
        1px solid rgba(255,255,255,0.08);

    color: rgba(255,255,255,0.4);

    font-size: 0.7rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}


/* =====================================================
   MODAL
===================================================== */

.modal {
    position: fixed;
    z-index: 2000;

    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(3,19,31,0.7);

    backdrop-filter: blur(6px);
}

.modal-content {
    position: relative;
    z-index: 2;

    width: min(100%, 420px);

    padding: 38px;

    border-radius: var(--radius-lg);

    background: var(--white);

    text-align: center;

    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;

    top: 14px;
    right: 17px;

    width: 35px;
    height: 35px;

    border: 0;
    border-radius: 50%;

    background: var(--cream);

    color: var(--text);

    font-size: 1.4rem;
}

.modal-icon {
    width: 65px;
    height: 65px;

    display: grid;
    place-items: center;

    margin: 0 auto 20px;

    border-radius: 18px;

    background: var(--green-light);

    font-size: 1.7rem;
}

.modal-content h2 {
    margin-bottom: 10px;

    font-size: 1.8rem;
}

.modal-content p {
    margin-bottom: 25px;

    font-size: 0.88rem;
}


/* =====================================================
   SCROLL ANIMATION
===================================================== */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .main-nav {
        gap: 17px;
    }

    .header-actions {
        display: none;
    }

    .hero-content {
        grid-template-columns:
            minmax(0, 1fr)
            390px;

        gap: 40px;
    }

    .steps-grid,
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .driver-grid {
        gap: 50px;
    }

    .footer-main {
        grid-template-columns: 1.5fr repeat(2, 1fr);
    }

}


@media (max-width: 820px) {

    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }

    .header-inner {
        min-height: 68px;
    }

    .main-nav {
        position: fixed;

        top: 68px;
        left: 15px;
        right: 15px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        padding: 15px;

        border: 1px solid var(--border);
        border-radius: 14px;

        background: var(--white);

        box-shadow: var(--shadow);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition: 0.25s ease;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        padding: 11px 12px;
    }

    .nav-link.active::after {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: auto;

        padding-top: 115px;
        padding-bottom: 70px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .booking-card {
        width: min(100%, 520px);
        margin: 0 auto;
    }

    .stats-section {
        margin-top: -25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card:nth-child(2) {
        border-right: 0;
    }

    .stat-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .driver-grid,
    .locations-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .driver-card {
        width: min(100%, 480px);
        margin: 0 auto;
    }

    .locations-content {
        order: 1;
    }

    .map-placeholder {
        order: 2;
    }

    .about-image {
        min-height: 380px;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


@media (max-width: 560px) {

    .container {
        width: calc(100% - 24px);
    }

    h1 {
        font-size: 2.75rem;
    }

    .hero-copy > p {
        font-size: 0.93rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 18px;
    }

    .trust-item strong {
        font-size: 0.8rem;
    }

    .trust-item span {
        font-size: 0.65rem;
    }

    .booking-card {
        padding: 21px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        border-right: 0 !important;
        border-bottom: 1px solid var(--border);
    }

    .stat-card:last-child {
        border-bottom: 0;
    }

    .section,
    .driver-section,
    .locations-section {
        padding: 75px 0;
    }

    .steps-grid,
    .safety-grid {
        grid-template-columns: 1fr;
    }

    .location-list {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        min-height: 330px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cta-buttons {
        width: 100%;
    }

    .cta-buttons .btn {
        flex: 1;
    }

    .modal-content {
        padding: 30px 22px;
    }

}