/* =========================================
   HEAD START MOBILE LOGISTICS
   GLOBAL STYLES
   ========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* =========================================
   HEADER
   ========================================= */

.site-header {
    background: #111111;
    color: #ffffff;
    width: 100%;
}

.nav-container {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO */

.site-logo {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
}

.site-logo span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 3px;
    margin-top: 6px;
    color: #cccccc;
}


/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.main-nav a {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
    transform: translateY(-4px);
    color: #cccccc;
}


/* BOOK NOW BUTTON */

.nav-book-btn {
    background: #ffffff;
    color: #111111;
    padding: 11px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: 0.2s ease;
}

.nav-book-btn:hover {
    background: #dddddd;
}


/* =========================================
   PAGE HERO
   ========================================= */

.page-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.58),
            rgba(0, 0, 0, 0.58)
        ),
        url("../images/hero-default.jpg") center / cover no-repeat;

    color: #ffffff;
    padding: 30px 20px;
}

.page-hero-content {
    max-width: 850px;
}

.page-hero h1 {
    font-size: clamp(2.3rem, 6vw, 4.5rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.1rem;
    color: #eeeeee;
}


/* =========================================
   MAIN CONTENT
   ========================================= */

main {
    min-height: 500px;
}

section {
    padding: 30px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    text-transform: uppercase;
}

.section-title p {
    margin-top: 10px;
    color: #666666;
}


/* =========================================
   BUTTONS
   ========================================= */

.btn {
    display: inline-block;
    padding: 13px 25px;
    background: #111111;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 700;
    transition: 0.2s ease;
}

.btn:hover {
    background: #333333;
}


/* =========================================
   FOOTER
   ========================================= */

.site-footer {
    background: #111111;
    color: #ffffff;
    text-align: center;
    padding: 50px 0 30px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.footer-brand p {
    color: #bbbbbb;
    margin-bottom: 20px;
}

.footer-copy {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333333;
    color: #888888;
    font-size: 0.85rem;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 900px) {

    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 0;
    }

    .main-nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-book-btn {
        display: none;
    }
}


@media (max-width: 600px) {

    .main-nav {
        gap: 10px 15px;
    }

    .main-nav a {
        font-size: 0.8rem;
    }

    .page-hero {
        min-height: 240px;
    }

    section {
        padding: 50px 0;
    }
}

/* =========================================
   SCOOTER PAGE
   ========================================= */

.scooter-placeholder {
    max-width: 750px;
    margin: 0 auto;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid #dddddd;
    border-radius: 6px;
}

.scooter-placeholder h3 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.scooter-placeholder p {
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   HOME HERO
   ========================================= */

.home-hero {
    background:
        linear-gradient(
            105deg,
            rgba(0, 0, 0, 0.90) 0%,
            rgba(75, 75, 75, 0.65) 18%,
            rgba(185, 185, 185, 0.32) 30%,
            rgba(25, 25, 25, 0.78) 43%,
            rgba(150, 150, 150, 0.28) 55%,
            rgba(35, 35, 35, 0.78) 68%,
            rgba(190, 190, 190, 0.25) 82%,
            rgba(0, 0, 0, 0.92) 100%
        ),
        url("../images/hero-default.jpg") center / cover no-repeat;
}

.home-hero-content {
    max-width: 950px;
    background: rgba(0, 0, 0, 0.82);
    padding: 45px 55px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-eyebrow,
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.home-hero h1 {
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 0.9;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    letter-spacing: 1px;
    margin-bottom: 35px;
    color: #eeeeee;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================================
   BUTTON VARIATIONS
   ========================================= */

.btn-primary {
    background: #ffffff;
    color: #111111;
}

.btn-primary:hover {
    background: #dddddd;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #111111;
}

.btn-large {
    padding: 16px 35px;
    font-size: 1rem;
}


/* =========================================
   SUMMER DEALS
   ========================================= */

.summer-deals-section {
    background: #f3f3f3;
}

.summer-deals-section .section-title {
    margin-bottom: 40px;
}

.deal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.deal-card {
    position: relative;
    background: #ffffff;
    padding: 35px 25px 30px;
    text-align: center;
    border: 1px solid #dddddd;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.deal-card.featured-deal {
    border: 2px solid #111111;
}

.deal-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #777777;
    margin-bottom: 12px;
}

.deal-card h3 {
    font-size: 1.25rem;
    line-height: 1.15;
    margin-bottom: 22px;
}

.deal-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 12px;
}

.deal-price span {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
}

.deal-price small {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.deal-detail {
    color: #666666;
    font-size: 0.88rem;
    min-height: 45px;
    margin-bottom: 25px;
}

.deal-card .btn {
    width: 100%;
}


/* =========================================
   SERVICES
   ========================================= */

.services-section {
    background: #ffffff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: #111111;
    color: #ffffff;
    min-height: 260px;
    padding: 35px;
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-number {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #999999;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.service-card p {
    color: #cccccc;
    max-width: 450px;
}

.service-link {
    margin-top: auto;
    padding-top: 25px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}


/* =========================================
   WHY HEAD START
   ========================================= */

.why-section {
    background: #f4f4f4;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.why-item span {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #777777;
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-item p {
    color: #666666;
    font-size: 0.9rem;
}


/* =========================================
   HOME CTA
   ========================================= */

.home-cta {
    background: #111111;
    color: #ffffff;
    text-align: center;
}

.home-cta-content {
    max-width: 750px;
    margin: 0 auto;
}

.home-cta h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: 20px;
}

.home-cta p:not(.section-eyebrow) {
    color: #cccccc;
    margin-bottom: 30px;
}


/* =========================================
   HOME MOBILE
   ========================================= */

@media (max-width: 1000px) {

    .deal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 650px) {

    .home-hero {
        min-height: 550px;
    }

    .home-hero h1 {
        font-size: 3.5rem;
    }

    .deal-grid,
    .service-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .deal-card {
        padding: 30px 20px;
    }

    .service-card {
        min-height: 230px;
    }
}

/* =========================================
   RENTALS PAGE
   ========================================= */

.rentals-section {
    background: #ffffff;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.vehicle-card {
    background: #ffffff;
    border: 1px solid #dddddd;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.vehicle-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #eeeeee;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vehicle-image-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.vehicle-card-content {
    padding: 25px;
}

.vehicle-location {
    color: #777777;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.vehicle-card h3 {
    font-size: 1.5rem;
    line-height: 1.15;
    margin-bottom: 12px;
}

.vehicle-description {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.vehicle-pricing {
    display: flex;
    gap: 25px;
    padding: 18px 0;
    margin-bottom: 15px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.vehicle-pricing div {
    display: flex;
    flex-direction: column;
}

.vehicle-pricing strong {
    font-size: 1.5rem;
    line-height: 1;
}

.vehicle-pricing span {
    color: #777777;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 5px;
}

.vehicle-book-btn {
    width: 100%;
    text-align: center;
}


/* =========================================
   RENTALS MOBILE
   ========================================= */

@media (max-width: 950px) {

    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 650px) {

    .vehicle-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-image {
        height: 230px;
    }
}

/* =========================================
   VEHICLE PHOTO GALLERY
========================================= */

.vehicle-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 640px;
    margin: 15px auto 0;
}

.vehicle-gallery-thumb {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eeeeee;
    border: 1px solid #dddddd;
}

.vehicle-gallery-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.vehicle-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.vehicle-gallery-thumb:hover img {
    transform: scale(1.05);
}

@media (max-width: 650px) {

    .vehicle-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

}
/* =========================================
VEHICLE DETAIL PHOTO
========================================= */

.vehicle-detail-image {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.vehicle-detail-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    display: block;
}

.vehicle-gallery {
    max-width: 640px;
    margin: 15px auto 0;
}

.vehicle-gallery-thumb {
    aspect-ratio: 4 / 3;
}

/* =========================================
TCP / CHAUFFEUR — CENTER CARD
========================================= */

.tcp-service-grid {
    display: flex;
    justify-content: center;
}

.tcp-service-grid .vehicle-card {
    width: min(400px, 100%);
}

/* =========================================
   PHOTO LIGHTBOX
========================================= */

.photo-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: pointer;
}

.photo-lightbox.active {
    display: flex;
}

.photo-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.photo-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 45px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.vehicle-gallery-thumb img {
    cursor: pointer;
}
/* =========================================
VEHICLE PHOTO LIGHTBOX
========================================= */

.photo-lightbox {
display: none;
position: fixed;
z-index: 9999;
inset: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.92);


align-items: center;
justify-content: center;

padding: 40px 90px;


}

.photo-lightbox img {
max-width: 85vw;
max-height: 85vh;
width: auto;
height: auto;


object-fit: contain;

box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);


}

/* PREVIOUS / NEXT */

.photo-lightbox-prev,
.photo-lightbox-next {
position: absolute;
top: 50%;
transform: translateY(-50%);


width: 55px;
height: 70px;

border: none;
background: rgba(255, 255, 255, 0.12);
color: #ffffff;

font-size: 2.5rem;
line-height: 1;

cursor: pointer;

display: flex;
align-items: center;
justify-content: center;

transition: background 0.2s ease, transform 0.2s ease;


}

.photo-lightbox-prev {
left: 25px;
}

.photo-lightbox-next {
right: 25px;
}

.photo-lightbox-prev:hover,
.photo-lightbox-next:hover {
background: rgba(255, 255, 255, 0.25);
}

/* CLOSE BUTTON */

.photo-lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;


    width: 50px;
    height: 50px;

    border: none;
    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-size: 2rem;
    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.2s ease;


}

.photo-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* MOBILE */

@media (max-width: 650px) {


.photo-lightbox {
    padding: 25px 50px;
}

.photo-lightbox img {
    max-width: 90vw;
    max-height: 80vh;
}

.photo-lightbox-prev,
.photo-lightbox-next {
    width: 40px;
    height: 55px;
    font-size: 1.8rem;
}

.photo-lightbox-prev {
    left: 8px;
}

.photo-lightbox-next {
    right: 8px;
}

.photo-lightbox-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
}


}
/* =========================================
BOOKING VEHICLE PHOTO
========================================= */

.booking-vehicle-image {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 4 / 3;
    margin: 20px 0 25px;
    background: #eeeeee;
    overflow: hidden;
    }

    .booking-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    }
/* =========================================
BOOKING PAGE
========================================= */

.booking-grid {
    width: min(1100px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
}


.booking-form-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 45px;
    background: #ffffff;
    color: #111111;
    border: 1px solid #dcdcdc;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.booking-form-container h2 {
    margin: 0 0 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #111111;
}

.booking-form-container > p {
    margin-bottom: 30px;
    color: #555555;
}

.booking-summary {
    background: #f4f4f4;
    padding: 30px;
}

@media (max-width: 800px) {

    .booking-grid {
        grid-template-columns: 1fr;
        width: 92%;
        gap: 25px;
        padding: 40px 0;
    }

}

/* =========================================
VEHICLE DETAIL PAGE
========================================= */

.page-hero {
    width: 100%;
    text-align: center;
}

.page-hero-content {
    width: min(1200px, 92%);
    margin: 0 auto;
    text-align: center;
}

.vehicle-detail-grid {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 50px;
    padding: 60px 0;
}

.vehicle-detail-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.vehicle-detail-info {
    width: 100%;
    
}

@media (max-width: 800px) {

    .vehicle-detail-grid {
        width: 92%;
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
    }

}
/* =========================================
ABOUT SERVICE LINKS
========================================= */

.about-services h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.about-services h3 a:hover {
    color: #0f2194;
    opacity: 0.8;
}
.deal-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eeeeee;
    margin-bottom: 20px;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
CONTACT FORM
========================================= */

.contact-form-container {
    width: min(650px, 100%);
    margin: 0 auto;
}

.contact-form-container form p {
    margin-bottom: 18px;
}

.contact-form-container label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
}

.contact-form-container textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: #111111;
}

.contact-form-container .btn {
    margin-top: 5px;
}

/* =========================================
   HEAD START — STRONG METALLIC FINISH
   ========================================= */

.site-header,
.site-footer,
.service-card,
.home-cta {
    background:
        linear-gradient(
            115deg,
            #050505 0%,
            #5a5a5a 18%,
            #151515 32%,
            #777777 48%,
            #0b0b0b 62%,
            #4d4d4d 78%,
            #080808 100%
        );
}

/* HERO — DARK CHROME */
.home-hero {
    background:
        linear-gradient(
            115deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(120, 120, 120, 0.38) 25%,
            rgba(10, 10, 10, 0.70) 45%,
            rgba(160, 160, 160, 0.28) 65%,
            rgba(0, 0, 0, 0.82) 100%
        ),
        url("../images/hero-default.jpg") center / cover no-repeat;
}

/* SILVER SECTIONS */
.summer-deals-section,
.why-section {
    background:
        linear-gradient(
            110deg,
            #8b8b8b 0%,
            #eeeeee 18%,
            #9b9b9b 35%,
            #f8f8f8 50%,
            #888888 70%,
            #e5e5e5 86%,
            #777777 100%
        );
}

/* CARDS */
.deal-card,
.vehicle-card {
    border: 1px solid #777777;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9),
        0 8px 20px rgba(0,0,0,0.15);
}

/* FEATURED CARD */
.deal-card.featured-deal {
    border: 2px solid #555555;
    box-shadow:
        inset 0 1px 0 #ffffff,
        0 12px 30px rgba(0,0,0,0.25);
}

/* METALLIC BUTTONS */
.btn {
    background:
        linear-gradient(
            105deg,
            #111111 0%,
            #777777 20%,
            #eeeeee 38%,
            #555555 52%,
            #bdbdbd 70%,
            #111111 100%
        );
    color: #ffffff;
    border: 1px solid #999999;
    text-shadow: 0 1px 2px #000000;
}

.btn:hover {
    background:
        linear-gradient(
            105deg,
            #444444 0%,
            #eeeeee 25%,
            #ffffff 45%,
            #888888 65%,
            #222222 100%
        );
    color: #111111;
    text-shadow: none;
}

/* HERO WHITE BUTTON */
.btn-primary {
    background:
        linear-gradient(
            105deg,
            #777777,
            #ffffff 25%,
            #bcbcbc 50%,
            #ffffff 75%,
            #777777
        );
    color: #111111;
    border: 1px solid #666666;
    text-shadow: none;
}

/* HERO OUTLINE BUTTON */
.btn-secondary {
    background:
        linear-gradient(
            105deg,
            rgba(30,30,30,0.7),
            rgba(150,150,150,0.35),
            rgba(20,20,20,0.7)
        );
    border: 1px solid #eeeeee;
}

/* NAV BOOK BUTTON */
.nav-book-btn {
    background:
        linear-gradient(
            105deg,
            #777777,
            #ffffff 25%,
            #bcbcbc 50%,
            #ffffff 75%,
            #777777
        );
    color: #111111;
    border: 1px solid #555555;
}

/* IMAGE PLACEHOLDERS */
.vehicle-image,
.vehicle-image-placeholder {
    background:
        linear-gradient(
            110deg,
            #777777,
            #eeeeee 20%,
            #999999 40%,
            #ffffff 55%,
            #777777 75%,
            #dddddd
        );
}

/* METALLIC INPUTS */
.contact-form-container input,
.contact-form-container textarea {
    border: 1px solid #888888;
    box-shadow:
        inset 0 2px 5px rgba(0,0,0,0.12);
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    border-color: #444444;
    box-shadow:
        0 0 0 2px rgba(120,120,120,0.25),
        inset 0 2px 5px rgba(0,0,0,0.08);
}

/* CARD HOVER */
.deal-card:hover,
.vehicle-card:hover {
    box-shadow:
        inset 0 1px 0 #ffffff,
        0 15px 40px rgba(0,0,0,0.30),
        0 0 12px rgba(190,190,190,0.35);
}
.scooter-card {
    max-width: 900px;
    margin: 50px auto;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.scooter-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: #000;
}

.scooter-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}


.scooter-price {
    font-size: 1.3rem;
    margin: 20px 0 10px;
}

.scooter-discount {
    margin-bottom: 25px;
}

.scooter-grid {
    display: flex;
    justify-content: center;
    width: 100%;
}

.scooter-grid .vehicle-card {
    width: 100%;
    max-width: 450px;
}

/* =========================================
   STRIPE CARD ELEMENT
   ========================================= */

.stripe-card-element {
    background: #ffffff;
    border: 1px solid #cccccc;
    padding: 16px;
    min-height: 24px;
    margin-bottom: 20px;
}

.stripe-card-element iframe {
    width: 100% !important;
}

.home-ad {
    display: flex;
    justify-content: center;
    margin: 50px auto;
}

/* =========================================================
   BOOKING / CONFIRMATION
   ========================================================= */

.booking-form-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 45px;
    background: #ffffff;
    color: #111111;
    border: 1px solid #dcdcdc;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}


/* MAIN HEADING */

.booking-form-container h2 {
    margin: 0 0 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #111111;
}

.booking-form-container > p {
    color: #555555;
    font-size: 15px;
}


/* CUSTOMER INFORMATION */

.booking-customer-info {
    margin-top: 35px;
    padding: 30px;
    background: #f7f7f7;
    color: #111111;
    border: 1px solid #e2e2e2;
}

.booking-customer-info .section-eyebrow {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #777777;
}

.booking-customer-info h3 {
    margin: 0 0 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111111;
}

.booking-customer-info p {
    color: #444444;
}

.booking-customer-info a {
    color: #111111;
    font-weight: 700;
}


/* VEHICLE INFORMATION */

.vehicle-detail-info {
    margin: 30px 0;
    padding: 35px;
    background: #ffffff;
    color: #111111;
    border: 1px solid #dcdcdc;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.vehicle-detail-info .vehicle-location {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #777777;
}

.vehicle-detail-info h2 {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #111111;
}

.vehicle-detail-info .vehicle-description {
    margin-top: 15px;
    color: #555555;
    font-size: 15px;
}


/* CONFIRMATION DETAILS */

.confirmation-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 35px 0 20px;
    background: #ffffff;
    color: #111111;
    border: 1px solid #dcdcdc;
}

.confirmation-details > div {
    padding: 22px 25px;
    border-right: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}

.confirmation-details > div:nth-child(even) {
    border-right: none;
}

.confirmation-details span {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #777777;
}

.confirmation-details strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #111111;
}


/* TOTAL */

.confirmation-details > div:nth-child(4) strong {
    font-size: 21px;
}


/* CONFIRMATION NOTE */

.confirmation-note {
    padding: 18px 20px;
    background: #f7f7f7;
    border-left: 3px solid #111111;
    color: #555555;
    font-size: 14px;
}


/* MOBILE */

@media (max-width: 700px) {

    .booking-form-container {
        margin: 30px 15px;
        padding: 30px 20px;
    }

    .vehicle-detail-info {
        padding: 25px 20px;
    }

    .confirmation-details {
        grid-template-columns: 1fr;
    }

    .confirmation-details > div,
    .confirmation-details > div:nth-child(even) {
        border-right: none;
    }

    .confirmation-details > div:last-child {
        border-bottom: none;
    }
}

.booking-success {
    padding: 25px 30px;
    margin-bottom: 30px;
    background: #f1f8f2;
    border: 1px solid #b8d8bd;
    border-left: 5px solid #2e7d32;
    box-shadow: 0 5px 18px rgba(46, 125, 50, 0.08);
    color: #245b2d;
}

.booking-success h2,
.booking-success h3 {
    margin-top: 0;
    color: #245b2d;
}

.booking-success p {
    color: #3f6345;
}

.availability-success {
    padding: 25px 30px;
    margin-bottom: 30px;
    background: #f1f8f2;
    border: 1px solid #b8d8bd;
    border-left: 5px solid #2e7d32;
    box-shadow: 0 5px 18px rgba(46, 125, 50, 0.08);
    color: #245b2d;
}

.availability-success h2,
.availability-success h3 {
    margin-top: 0;
    color: #245b2d;
}

.availability-success p {
    color: #3f6345;
}
.availability-error {
    padding: 25px 30px;
    margin-bottom: 30px;
    background: #fdf2f2;
    border: 1px solid #e2b8b8;
    border-left: 5px solid #b52b2b;
    box-shadow: 0 5px 18px rgba(181, 43, 43, 0.08);
    color: #7a2020;
}

.availability-error h2,
.availability-error h3 {
    margin-top: 0;
    color: #7a2020;
}

.availability-error p {
    color: #754444;
}
.about-gallery {
    width: 100%;
    margin-top: 60px;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-gallery-item {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eeeeee;
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 800px) {
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .about-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.account-form {
    max-width: 600px;
    margin-top: 30px;
}

.account-form-title {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
}

.account-form .form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.account-form label {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.account-form input {
    width: 100%;
    box-sizing: border-box;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid #111111;
    border-radius: 0;
    background: #ffffff;
    color: #111111;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.account-form input::placeholder {
    color: #888888;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.account-form input:focus {
    border-color: #111111;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.account-form-button {
    margin-top: 5px;
    border: 1px solid #111111;
    cursor: pointer;
}

.booking-scooter-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin: 25px auto 30px;
}

.booking-scooter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}