/* =========================================================
   KOT WESTGATE LOGISTICS
   COMPLETE WEBSITE STYLESHEET
   ========================================================= */


/* =========================================================
   FONTS
   ========================================================= */

@font-face {
    font-family: "Sora";
    src: url("../assets/fonts/Sora-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Sora";
    src: url("../assets/fonts/Sora-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Sora";
    src: url("../assets/fonts/Sora-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Sora";
    src: url("../assets/fonts/Sora-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}


/* =========================================================
   KOT DESIGN SYSTEM
   ========================================================= */

:root {
    --emerald: #0b7a53;
    --emerald-dark: #075c3f;
    --emerald-light: #eaf6f1;

    --charcoal: #202522;
    --text-muted: #6d746f;

    --white: #ffffff;
    --background: #f7f9f8;
    --border: #e4e9e6;

    --shadow: 0 18px 50px rgba(20, 40, 30, 0.08);
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        "Sora",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background:
        radial-gradient(
            circle at 85% 8%,
            rgba(11, 122, 83, 0.14) 0%,
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 55%,
            rgba(11, 122, 83, 0.08) 0%,
            transparent 38%
        ),
        radial-gradient(
            circle at 90% 88%,
            rgba(11, 122, 83, 0.10) 0%,
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f5f9f7 38%,
            #edf6f1 70%,
            #e6f2eb 100%
        );

    background-attachment: fixed;

    color: var(--charcoal);
    line-height: 1.5;
}


button,
input {
    font-family: inherit;
}


button {
    -webkit-tap-highlight-color: transparent;
}


.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    background: rgba(247, 249, 248, 0.94);
    border-bottom: 1px solid var(--border);

    position: sticky;
    top: 0;
    z-index: 100;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


.nav-container {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}


.brand {
    display: flex;
    align-items: center;
    gap: 11px;

    min-width: 0;

    text-decoration: none;
    color: var(--charcoal);
}


.brand-logo {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    object-fit: cover;
    border-radius: 10px;
}


.brand-text {
    display: flex;
    flex-direction: column;

    min-width: 0;

    line-height: 1.05;
}


.brand-title {
    color: var(--emerald);

    font-size: 17px;
    font-weight: 700;

    letter-spacing: -0.3px;
}


.brand-name {
    margin-top: 4px;

    color: var(--charcoal);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.15px;
}


nav {
    display: flex;
    align-items: center;
    gap: 32px;

    flex-shrink: 0;
}


nav a {
    text-decoration: none;

    color: var(--text-muted);

    font-size: 14px;
    font-weight: 600;

    transition: color 0.2s ease;
}


nav a:hover,
nav a.active {
    color: var(--emerald);
}


/* =========================================================
   BOOKING / HERO
   ========================================================= */

.booking-section {
    padding: 85px 0 80px;
}


.booking-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;

    gap: 70px;

    align-items: center;
}


.eyebrow {
    display: inline-block;

    color: var(--emerald);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.8px;

    margin-bottom: 18px;
}


h1 {
    font-size: clamp(48px, 6vw, 76px);

    line-height: 0.98;

    letter-spacing: -3px;

    margin-bottom: 25px;
}


h1 span {
    color: var(--emerald);
}


.intro {
    color: var(--text-muted);

    font-size: 16px;

    max-width: 500px;

    margin-bottom: 34px;
}


/* =========================================================
   BOOKING CARD
   ========================================================= */

.booking-card {
    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 22px;

    padding: 26px;

    box-shadow: var(--shadow);
}


.location-field {
    display: flex;
    align-items: center;

    gap: 16px;
}


.location-icon {
    width: 15px;
    height: 15px;

    border-radius: 50%;

    flex-shrink: 0;
}


.pickup-icon {
    background: var(--emerald);

    box-shadow:
        0 0 0 5px var(--emerald-light);
}


.destination-icon {
    background: var(--charcoal);

    box-shadow:
        0 0 0 5px #eef0ef;
}


.field-content {
    position: relative;

    flex: 1;

    min-width: 0;
}


.field-content label {
    display: block;

    color: var(--text-muted);

    font-size: 11px;
    font-weight: 600;

    margin-bottom: 4px;
}


.field-content input {
    width: 100%;

    border: none;
    outline: none;

    color: var(--charcoal);
    background: transparent;

    font-size: 15px;

    padding: 3px 0;
}


.field-content input::placeholder {
    color: #b0b6b2;
}


.route-line {
    height: 27px;

    border-left: 2px dotted #c9d2cd;

    margin-left: 6px;
}


/* =========================================================
   SEARCH SUGGESTIONS
   ========================================================= */

.suggestions {
    display: none;

    position: absolute;
    z-index: 50;

    left: 0;
    right: 0;

    top: calc(100% + 10px);

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 12px;

    box-shadow:
        0 14px 35px rgba(20, 40, 30, 0.14);

    overflow: hidden;
    overflow-y: auto;

    max-height: 260px;
}


.suggestions.show {
    display: block;
}


.suggestion-item {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 3px;

    padding: 12px 14px;

    border: 0;
    border-bottom: 1px solid var(--border);

    background: var(--white);

    text-align: left;

    cursor: pointer;
}


.suggestion-item:last-child {
    border-bottom: 0;
}


.suggestion-item:hover {
    background: var(--emerald-light);
}


.suggestion-item strong {
    color: var(--charcoal);

    font-size: 12px;
}


.suggestion-item span {
    color: var(--text-muted);

    font-size: 10px;
    line-height: 1.35;
}


.suggestion-empty {
    padding: 13px 14px;

    color: var(--text-muted);

    font-size: 11px;
}


/* =========================================================
   SELECT ON MAP
   ========================================================= */

.map-select-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 9px;

    padding: 7px 12px;

    border: 1px solid rgba(11, 122, 83, 0.18);
    border-radius: 8px;

    background: rgba(11, 122, 83, 0.06);

    color: var(--emerald);

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.map-select-button:hover {
    background: rgba(11, 122, 83, 0.11);

    border-color: rgba(11, 122, 83, 0.32);
}


.map-select-button:active {
    transform: scale(0.98);
}


.map-select-button:focus-visible {
    outline: 3px solid rgba(11, 122, 83, 0.16);
    outline-offset: 2px;
}


.map-select-button.is-active {
    color: var(--white);

    background: var(--emerald);

    border-color: var(--emerald);
}


/* =========================================================
   MAP SELECTION NOTICE
   ========================================================= */

.map-selection-notice {
    margin-top: 16px;
    margin-bottom: 4px;

    padding: 13px 14px;

    border: 1px solid rgba(11, 122, 83, 0.16);
    border-radius: 10px;

    background: rgba(11, 122, 83, 0.055);
}


.map-selection-notice[hidden] {
    display: none;
}


.map-selection-notice strong {
    display: block;

    margin-bottom: 3px;

    color: var(--emerald);

    font-size: 13px;
    font-weight: 700;
}


.map-selection-notice span {
    display: block;

    color: #626b66;

    font-size: 12px;
    line-height: 1.45;
}


.cancel-map-selection {
    margin-top: 8px;

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--charcoal);

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    text-decoration: underline;
    text-underline-offset: 3px;
}


.cancel-map-selection:hover {
    color: var(--emerald);
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.primary-button {
    width: 100%;

    margin-top: 25px;

    border: none;
    border-radius: 13px;

    padding: 16px 18px;

    background: var(--emerald);

    color: var(--white);

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.primary-button:hover {
    background: var(--emerald-dark);

    transform: translateY(-1px);
}


.primary-button:disabled {
    opacity: 0.65;

    cursor: wait;

    transform: none;
}


.primary-button span {
    font-size: 20px;
}


/* =========================================================
   ROUTE STATUS
   ========================================================= */

.route-status {
    margin-top: 13px;

    color: var(--text-muted);

    font-size: 11px;
    line-height: 1.45;

    text-align: center;
}


/* =========================================================
   DELIVERY ESTIMATE
   ========================================================= */

.delivery-estimate {
    margin-top: 16px;

    overflow: hidden;

    border: 1px solid rgba(11, 122, 83, 0.16);
    border-radius: 16px;

    background: var(--white);
}


.delivery-estimate[hidden] {
    display: none;
}


.estimate-header {
    padding: 10px 14px;

    background: var(--emerald-light);

    color: var(--emerald);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.estimate-main {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 17px 14px;
}


.estimate-distance {
    display: flex;
    align-items: center;

    gap: 10px;

    min-width: 0;
}


.estimate-bike {
    font-size: 23px;
    line-height: 1;
}


.estimate-distance div,
.estimate-price {
    display: flex;
    flex-direction: column;
}


.estimate-distance strong {
    color: var(--charcoal);

    font-size: 18px;
    font-weight: 700;

    line-height: 1.15;
}


.estimate-distance span:not(.estimate-bike),
.estimate-price span {
    margin-top: 3px;

    color: var(--text-muted);

    font-size: 9px;
}


.estimate-price {
    align-items: flex-end;

    flex-shrink: 0;

    text-align: right;
}


.estimate-price strong {
    color: var(--emerald);

    font-size: 25px;
    font-weight: 700;

    line-height: 1;
}


.estimate-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 10px 14px;

    border-top: 1px solid var(--border);

    background: #fbfcfb;

    color: var(--text-muted);

    font-size: 9px;
}


.estimate-footer strong {
    color: var(--charcoal);

    font-size: 10px;
    font-weight: 600;
}



/* =========================================================
   REQUEST DELIVERY
   ========================================================= */

.estimate-action {
    padding: 12px 14px 14px;

    border-top: 1px solid var(--border);

    background: var(--white);
}


.request-delivery-button {
    width: 100%;

    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 12px 15px;

    border: none;
    border-radius: 11px;

    background: var(--charcoal);

    color: var(--white);

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.request-delivery-button:hover {
    background: var(--emerald);

    transform: translateY(-1px);
}


.request-delivery-button:active {
    transform: translateY(0);
}


.request-delivery-button span:last-child {
    font-size: 17px;
    line-height: 1;
}

/* =========================================================
   DELIVERY REQUEST MODAL
   ========================================================= */

.delivery-request-modal {
    position: fixed;
    inset: 0;

    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;
}


.delivery-request-modal[hidden] {
    display: none;
}


.delivery-request-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(20, 25, 22, 0.48);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    animation: requestBackdropIn 0.22s ease;
}


.delivery-request-form {
    position: relative;
    z-index: 1;

    width: min(520px, 100%);
    max-height: calc(100vh - 48px);

    overflow-y: auto;

    padding: 26px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: var(--white);

    box-shadow:
        0 28px 80px rgba(20, 40, 30, 0.22);

    animation: requestModalIn 0.28s ease;
}


.close-delivery-request {
    position: absolute;

    top: 16px;
    right: 16px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--background);

    color: var(--charcoal);

    font-size: 22px;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.close-delivery-request:hover {
    background: var(--emerald);

    color: var(--white);

    transform: rotate(6deg);
}


.request-form-header {
    margin-bottom: 22px;

    padding-right: 45px;
}


.request-form-eyebrow {
    display: block;

    margin-bottom: 6px;

    color: var(--emerald);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.8px;
}


.request-form-header h2 {
    margin: 0;

    color: var(--charcoal);

    font-size: 22px;
    font-weight: 700;

    letter-spacing: -0.6px;
}


.request-form-header p {
    margin-top: 6px;

    color: var(--text-muted);

    font-size: 11px;
    line-height: 1.5;
}


.request-form-section {
    padding: 18px 0;

    border-top: 1px solid var(--border);
}


.request-form-section h3 {
    margin-bottom: 14px;

    color: var(--charcoal);

    font-size: 12px;
    font-weight: 700;
}


.request-field {
    margin-bottom: 14px;
}


.request-field:last-child {
    margin-bottom: 0;
}


.request-field label {
    display: block;

    margin-bottom: 6px;

    color: var(--text-muted);

    font-size: 10px;
    font-weight: 600;
}


.request-field label span {
    font-weight: 400;
}


.request-field input,
.request-field textarea {
    width: 100%;

    padding: 12px 13px;

    border: 1px solid var(--border);
    border-radius: 10px;

    outline: none;

    background: #fbfcfb;

    color: var(--charcoal);

    font-family: inherit;
    font-size: 12px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.request-field textarea {
    min-height: 85px;

    resize: vertical;
}


.request-field input::placeholder,
.request-field textarea::placeholder {
    color: #a8afab;
}


.request-field input:focus,
.request-field textarea:focus {
    border-color: var(--emerald);

    background: var(--white);

    box-shadow:
        0 0 0 3px rgba(11, 122, 83, 0.08);
}

/* FORM VALIDATION */

.request-field input.is-invalid,
.request-field textarea.is-invalid {
    border-color: #c94a4a;

    background: #fffafa;

    box-shadow:
        0 0 0 3px rgba(201, 74, 74, 0.08);
}


.field-error {
    display: block;

    margin-top: 5px;

    color: #c94a4a;

    font-size: 9px;
    font-weight: 500;

    line-height: 1.4;
}


.field-error[hidden] {
    display: none;
}


.delivery-request-form .primary-button {
    margin-top: 4px;
}


@keyframes requestBackdropIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes requestModalIn {

    from {
        opacity: 0;

        transform: translateY(18px) scale(0.98);
    }

    to {
        opacity: 1;

        transform: translateY(0) scale(1);
    }

}

/* =========================================================
   DELIVERY REVIEW
   ========================================================= */

.delivery-review[hidden] {
    display: none;
}


.delivery-review {
    animation: reviewSlideIn 0.25s ease;
}


.review-header {
    margin-bottom: 22px;

    padding-right: 45px;
}


.review-header h2 {
    margin: 0;

    color: var(--charcoal);

    font-size: 22px;
    font-weight: 700;

    letter-spacing: -0.6px;
}


.review-header p {
    margin-top: 6px;

    color: var(--text-muted);

    font-size: 11px;
    line-height: 1.5;
}


/* ROUTE */

.review-route {
    padding: 16px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: #fbfcfb;
}


.review-location {
    display: flex;
    align-items: flex-start;

    gap: 11px;
}


.review-location div {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 3px;
}


.review-location small {
    color: var(--text-muted);

    font-size: 9px;
}


.review-location strong {
    color: var(--charcoal);

    font-size: 11px;
    font-weight: 600;

    line-height: 1.4;
}


.review-dot {
    width: 10px;
    height: 10px;

    margin-top: 4px;

    border-radius: 50%;

    flex-shrink: 0;
}


.review-dot.pickup {
    background: var(--emerald);
}


.review-dot.destination {
    background: var(--charcoal);
}


.review-route-line {
    height: 18px;

    margin-left: 4px;

    border-left: 2px dotted #c9d2cd;
}


/* ESTIMATE */

.review-estimate {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 8px;

    margin-top: 12px;
}


.review-estimate div {
    padding: 12px 10px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: var(--white);

    text-align: center;
}


.review-estimate small {
    display: block;

    margin-bottom: 5px;

    color: var(--text-muted);

    font-size: 8px;
}


.review-estimate strong {
    color: var(--charcoal);

    font-size: 11px;
    font-weight: 700;
}


.review-estimate div:last-child strong {
    color: var(--emerald);

    font-size: 14px;
}


/* DETAILS */

.review-section {
    padding: 17px 0;

    border-bottom: 1px solid var(--border);
}


.review-section h3 {
    margin-bottom: 10px;

    color: var(--charcoal);

    font-size: 11px;
    font-weight: 700;
}


.review-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    padding: 5px 0;
}


.review-row span {
    color: var(--text-muted);

    font-size: 9px;

    flex-shrink: 0;
}


.review-row strong {
    color: var(--charcoal);

    font-size: 10px;
    font-weight: 600;

    text-align: right;

    overflow-wrap: anywhere;
}


/* ACTIONS */

.review-actions {
    margin-top: 18px;
}


.review-actions .primary-button {
    margin-top: 10px;
}


.review-edit-button {
    width: 100%;

    padding: 11px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: var(--white);

    color: var(--charcoal);

    font-family: inherit;
    font-size: 11px;
    font-weight: 600;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}


.review-edit-button:hover {
    border-color: rgba(11, 122, 83, 0.3);

    background: var(--emerald-light);

    color: var(--emerald);
}


@keyframes reviewSlideIn {

    from {
        opacity: 0;
        transform: translateX(14px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/* =========================================================
   DELIVERY CONFIRMATION
   ========================================================= */

.delivery-confirmation[hidden] {
    display: none;
}


.delivery-confirmation {
    padding: 20px 4px 4px;

    text-align: center;

    animation: confirmationIn 0.3s ease;
}


.confirmation-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--emerald-light);

    color: var(--emerald);

    font-size: 25px;
    font-weight: 700;
}


.delivery-confirmation .request-form-eyebrow {
    margin-bottom: 7px;
}


.delivery-confirmation h2 {
    margin: 0;

    color: var(--charcoal);

    font-size: 23px;
    font-weight: 700;

    letter-spacing: -0.6px;
}


.confirmation-message {
    max-width: 360px;

    margin: 8px auto 22px;

    color: var(--text-muted);

    font-size: 11px;
    line-height: 1.6;
}


.confirmation-summary {
    margin-bottom: 18px;

    border: 1px solid var(--border);
    border-radius: 13px;

    overflow: hidden;

    background: #fbfcfb;

    text-align: left;
}


.confirmation-summary div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    padding: 14px;
}


.confirmation-summary div + div {
    border-top: 1px solid var(--border);
}


.confirmation-summary span {
    color: var(--text-muted);

    font-size: 9px;

    flex-shrink: 0;
}


.confirmation-summary strong {
    color: var(--charcoal);

    font-size: 10px;
    font-weight: 600;

    text-align: right;
}


.confirmation-summary .confirmation-price {
    color: var(--emerald);

    font-size: 15px;
    font-weight: 700;
}


.confirmation-note {
    margin-bottom: 18px;

    color: var(--text-muted);

    font-size: 9px;
    line-height: 1.5;
}


.delivery-confirmation .primary-button {
    margin-top: 0;
}


@keyframes confirmationIn {

    from {
        opacity: 0;
        transform: translateY(12px) scale(0.99);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

/* =========================================================
   BOOKING NOTE
   ========================================================= */

.booking-note {
    margin-top: 13px;

    text-align: center;

    color: #929894;

    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   LIVE MAP
   ========================================================= */

.map-card {
    position: relative;

    min-height: 570px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 30px;

    background: var(--white);

    padding: 10px;

    box-shadow: var(--shadow);
}


.map-container {
    width: 100%;

    min-height: 550px;

    overflow: hidden;

    border-radius: 23px;
}


.map-placeholder {
    min-height: 550px;

    border-radius: 23px;

    background:
        linear-gradient(rgba(255, 255, 255, 0.30),
            rgba(255, 255, 255, 0.30)),
        repeating-linear-gradient(45deg,
            #edf3ef,
            #edf3ef 20px,
            #f5f8f6 20px,
            #f5f8f6 40px);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 30px;
}


.map-overlay {
    position: absolute;

    inset: 10px;

    min-height: 0;

    transition: opacity 0.25s ease;
}


.map-overlay.is-hidden {
    opacity: 0;

    pointer-events: none;
}


.map-pin {
    width: 62px;
    height: 62px;

    border-radius: 50% 50% 50% 8px;

    transform: rotate(-45deg);

    background: var(--emerald);

    color: var(--white);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    box-shadow:
        0 15px 30px rgba(11, 122, 83, 0.25);
}


.map-pin span {
    transform: rotate(45deg);

    font-size: 12px;
    font-weight: 700;
}


.map-message {
    display: flex;
    flex-direction: column;

    gap: 7px;

    max-width: 300px;
}


.map-message strong {
    font-size: 16px;
}


.map-message span {
    color: var(--text-muted);

    font-size: 12px;
}


.mapboxgl-ctrl-logo,
.mapboxgl-ctrl-attrib {
    font-size: 10px;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.benefits-section {
    background: rgba(255, 255, 255, 0.28);

    border-top: 1px solid rgba(228, 233, 230, 0.7);
    border-bottom: 1px solid rgba(228, 233, 230, 0.7);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}


.benefits {
    min-height: 150px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    align-items: center;
}


.benefit {
    display: flex;

    gap: 17px;

    padding: 30px;
}


.benefit+.benefit {
    border-left: 1px solid var(--border);
}


.benefit-number {
    color: var(--emerald);

    font-size: 11px;
    font-weight: 700;
}


.benefit strong {
    font-size: 14px;
}


.benefit p {
    margin-top: 5px;

    color: var(--text-muted);

    font-size: 12px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 45px 0;
}


.footer-content {
    display: flex;

    justify-content: space-between;
    align-items: center;
}


.footer-content strong {
    font-size: 13px;
}


.footer-content p {
    margin-top: 4px;

    color: var(--text-muted);

    font-size: 11px;
}


.copyright {
    text-align: right;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

    .booking-section {
        padding: 55px 0 60px;
    }


    .booking-grid {
        grid-template-columns: 1fr;

        gap: 42px;
    }


    h1 {
        letter-spacing: -2px;
    }


    .map-card {
        min-height: 430px;
    }


    .map-container,
    .map-placeholder {
        min-height: 410px;
    }


    .benefits {
        grid-template-columns: 1fr;
    }


    .benefit+.benefit {
        border-left: none;

        border-top: 1px solid var(--border);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .container {
        width: calc(100% - 28px);
    }


    /* HEADER */

    .nav-container {
        min-height: 64px;

        gap: 12px;
    }


    .brand {
        gap: 8px;
    }


    .brand-logo {
        width: 36px;
        height: 36px;

        border-radius: 8px;
    }


    .brand-title {
        font-size: 14px;
    }


    .brand-name {
        margin-top: 3px;

        font-size: 7px;

        white-space: nowrap;
    }


    nav {
        gap: 13px;
    }


    nav a {
        font-size: 10px;
    }


    /* HERO */

    .booking-section {
        padding: 38px 0 48px;
    }


    .booking-grid {
        gap: 30px;
    }


    .eyebrow {
        margin-bottom: 12px;

        font-size: 10px;

        letter-spacing: 1.4px;
    }


    h1 {
        max-width: 340px;

        margin-bottom: 17px;

        font-size: clamp(42px, 13vw, 54px);

        line-height: 0.98;

        letter-spacing: -2.3px;
    }


    .intro {
        max-width: 350px;

        margin-bottom: 25px;

        font-size: 13px;
        line-height: 1.6;
    }


    /* BOOKING CARD */

    .booking-card {
        padding: 20px 18px;

        border-radius: 18px;
    }


    .location-field {
        gap: 13px;
    }


    .location-icon {
        width: 13px;
        height: 13px;
    }


    .pickup-icon {
        box-shadow:
            0 0 0 4px var(--emerald-light);
    }


    .destination-icon {
        box-shadow:
            0 0 0 4px #eef0ef;
    }


    .field-content label {
        margin-bottom: 3px;

        font-size: 10px;
    }


    .field-content input {
        font-size: 14px;

        padding: 4px 0;
    }


    .route-line {
        height: 23px;

        margin-left: 5px;
    }


    /* SELECT ON MAP */

    .map-select-button {
        margin-top: 7px;

        padding: 7px 10px;

        border-radius: 7px;

        font-size: 10px;
    }


    .map-selection-notice {
        margin-top: 13px;

        padding: 10px 11px;

        border-radius: 9px;
    }


    .map-selection-notice strong {
        margin-bottom: 2px;

        font-size: 11px;
    }


    .map-selection-notice span {
        font-size: 10px;

        line-height: 1.4;
    }


    .cancel-map-selection {
        margin-top: 6px;

        font-size: 10px;
    }


    /* ROUTE BUTTON */

    .primary-button {
        min-height: 50px;

        margin-top: 18px;

        padding: 14px 16px;

        border-radius: 12px;

        font-size: 13px;
    }


    .primary-button span {
        font-size: 18px;
    }


    .route-status {
        margin-top: 10px;

        font-size: 10px;
    }


    /* DELIVERY ESTIMATE */

    .delivery-estimate {
        margin-top: 13px;

        border-radius: 13px;
    }


    .estimate-header {
        padding: 8px 11px;

        font-size: 9px;
    }


    .estimate-main {
        gap: 12px;

        padding: 14px 11px;
    }


    .estimate-bike {
        font-size: 20px;
    }


    .estimate-distance {
        gap: 8px;
    }


    .estimate-distance strong {
        font-size: 16px;
    }


    .estimate-distance span:not(.estimate-bike),
    .estimate-price span {
        font-size: 8px;
    }


    .estimate-price strong {
        font-size: 22px;
    }


    .estimate-footer {
        padding: 9px 11px;

        font-size: 8px;
    }


    .estimate-footer strong {
        font-size: 9px;
    }


    .estimate-action {
        padding: 10px 11px 11px;
    }


    .request-delivery-button {
        min-height: 44px;

        padding: 11px 13px;

        border-radius: 10px;

        font-size: 11px;
    }

    .booking-note {
        margin-top: 10px;

        font-size: 9px;
    }


    /* SEARCH RESULTS */

    .suggestions {
        top: calc(100% + 8px);

        max-height: 220px;

        border-radius: 10px;
    }


    .suggestion-item {
        padding: 11px 12px;
    }


    .suggestion-item strong {
        font-size: 11px;
    }


    .suggestion-item span {
        font-size: 9px;
    }


    /* MAP */

    .map-card {
        min-height: 350px;

        padding: 7px;

        border-radius: 20px;
    }


    .map-container,
    .map-placeholder {
        min-height: 336px;

        border-radius: 15px;
    }


    .map-overlay {
        inset: 7px;
    }


    /* BENEFITS */

    .benefit {
        padding: 24px 8px;
    }


    /* FOOTER */

    footer {
        padding: 32px 0;
    }


    .footer-content {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }


    .copyright {
        text-align: left;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 390px) {

    .container {
        width: calc(100% - 22px);
    }


    .brand-logo {
        width: 34px;
        height: 34px;
    }


    .brand-title {
        font-size: 13px;
    }


    .brand-name {
        font-size: 6.5px;
    }


    nav {
        gap: 10px;
    }


    nav a {
        font-size: 9px;
    }


    h1 {
        font-size: 41px;

        letter-spacing: -2px;
    }


    .booking-card {
        padding: 18px 15px;
    }


    .map-select-button {
        font-size: 9.5px;
    }


    .estimate-main {
        gap: 8px;

        padding-left: 10px;
        padding-right: 10px;
    }


    .estimate-bike {
        font-size: 18px;
    }


    .estimate-distance strong {
        font-size: 15px;
    }


    .estimate-price strong {
        font-size: 20px;
    }


    .map-card {
        min-height: 320px;
    }


    .map-container,
    .map-placeholder {
        min-height: 306px;
    }

}/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
    padding: 88px 0;
    background: transparent;
}
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 64px;
    align-items: center;
}

.contact-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0d7a4b;
}

.contact-intro h2 {
    margin: 0 0 16px;
    max-width: 520px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.contact-intro p {
    max-width: 500px;
    margin: 0 0 24px;
    line-height: 1.7;
    color: #626762;
}

.contact-tagline {
    font-size: 14px;
}

.contact-card {
    padding: 32px;
    border: 1px solid rgba(20, 30, 24, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 55px rgba(20, 30, 24, 0.08);
}

/* WhatsApp */

.contact-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 19px;
    border-radius: 13px;
    background: #0d7a4b;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-primary:hover {
    transform: translateY(-2px);
    opacity: 0.94;
}

/* Phone numbers */

.contact-phone-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.contact-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid #dfe4df;
    border-radius: 12px;
    background: #ffffff;
    color: #202522;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-secondary:hover {
    border-color: #0d7a4b;
    background: #f8faf8;
}

/* Email / Social / Service Area */

.contact-details {
    display: grid;
    margin-top: 26px;
    border-top: 1px solid #ecefec;
}

.contact-detail-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 18px;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid #ecefec;
    color: #202522;
    text-decoration: none;
}

.contact-detail-row span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #858b86;
}

.contact-detail-row strong {
    font-size: 13px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

a.contact-detail-row:hover strong {
    color: #0d7a4b;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Mobile */

@media (max-width: 760px) {

    .contact-section {
        padding: 58px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-card {
        padding: 22px;
        border-radius: 20px;
    }
}

@media (max-width: 500px) {

    .contact-phone-row {
        grid-template-columns: 1fr;
    }

    .contact-detail-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}