/* =====================================================
   ABOUT US
===================================================== */

.about-section {
    width: 92%;
    max-width: 1250px;
    margin: 100px auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-label {
    color: #ff3b30;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: clamp(35px, 5vw, 55px);
    line-height: 1.1;
    margin: 0 0 25px;
}

.about-content h2 span {
    color: #e53935;
    display: block;
}

.about-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #ffffff;
}

.about-content p:not(.about-intro) {
    color: #aaa;
    line-height: 1.8;
}

.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.about-contact-btn {
    padding: 15px 25px;
    border: 1px solid #555;
    border-radius: 30px;
    font-weight: 800;
}

.about-contact-btn:hover {
    border-color: #e53935;
    color: #ff3b30;
}


/* =====================================================
   ABOUT VISUAL
===================================================== */

.about-visual {
    min-height: 430px;
    position: relative;

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

.about-main-card {
    width: 75%;
    min-height: 280px;

    background:
        linear-gradient(
            145deg,
            #222,
            #111
        );

    border: 1px solid #444;
    border-radius: 25px;

    padding: 45px 35px;

    text-align: center;

    box-shadow:
        0 25px 60px rgba(0,0,0,.5);

    animation: aboutFloat 4s ease-in-out infinite;
}

.about-icon {
    font-size: 70px;
    margin-bottom: 15px;
}

.about-main-card h3 {
    font-size: 28px;
}

.about-main-card p {
    color: #aaa;
    line-height: 1.6;
}


/* =====================================================
   FLOATING CARDS
===================================================== */

.about-small-card {
    position: absolute;

    background: #191919;

    border: 1px solid #444;

    border-radius: 14px;

    padding: 14px 18px;

    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 700;

    box-shadow:
        0 12px 35px rgba(0,0,0,.5);

    animation: aboutFloat 3s ease-in-out infinite;
}

.about-small-card strong {
    font-size: 25px;
}

.card-one {
    top: 20px;
    left: 0;
}

.card-two {
    right: 0;
    top: 130px;
    animation-delay: .5s;
}

.card-three {
    bottom: 20px;
    left: 30px;
    animation-delay: 1s;
}


/* =====================================================
   WHY FORWHEELZ
===================================================== */

.why-forwheelz {
    margin-top: 100px;
}

.why-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.why-card {
    position: relative;

    background: #161616;

    border: 1px solid #303030;

    border-radius: 18px;

    padding: 30px;

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: #e53935;
}

.why-number {
    position: absolute;

    top: 10px;
    right: 18px;

    font-size: 45px;

    font-weight: 900;

    color: #252525;
}

.why-icon {
    font-size: 38px;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 22px;
}

.why-card p {
    color: #999;
    line-height: 1.6;
}


/* =====================================================
   ABOUT ANIMATION
===================================================== */

@keyframes aboutFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }

}


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

@media (max-width: 900px) {

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

}


@media (max-width: 600px) {

    .about-section {
        margin: 70px auto;
    }

    .about-visual {
        min-height: 380px;
    }

    .about-main-card {
        width: 80%;
        padding: 30px 20px;
    }

    .about-small-card {
        font-size: 12px;
        padding: 10px 12px;
    }

    .card-one {
        left: 0;
    }

    .card-two {
        right: 0;
    }

    .card-three {
        left: 0;
    }

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

}/* =====================================================
   FORWHEELZ
===================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0b0b;
    color: #ffffff;
}

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


/* =====================================================
   TOP BAR
===================================================== */

.topbar {
    min-height: 40px;
    background: #e53935;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 5%;
    font-weight: 700;
}

.topbar a {
    color: #ffffff;
}


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

header {
    background: #090909;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    width: 92%;
    max-width: 1250px;
    margin: auto;
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link img {
    width: 100px;
    height: auto;
    display: block;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    font-weight: 700;
}

nav a:hover {
    color: #ff3b30;
}

.nav-book {
    background: #e53935;
    padding: 12px 18px;
    border-radius: 8px;
}


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

.hero {
    min-height: 570px;

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

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

    text-align: center;
    position: relative;
}

.hero-content {
    width: 92%;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 68px);
    margin: 0 0 20px;
}

.hero h2 {
    color: #ff3b30;
    font-size: clamp(25px, 4vw, 40px);
}

.hero p {
    font-size: 22px;
}

.hero strong {
    display: block;
    margin: 25px 0;
    color: #ff3b30;
    font-size: 24px;
}

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


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

.btn {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 800;
    border: 0;
    cursor: pointer;
}

.redbtn {
    background: #e53935;
    color: #ffffff;
}

.redbtn:hover {
    background: #ff514b;
}

.whitebtn {
    background: #ffffff;
    color: #111111;
}

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


/* =====================================================
   OFFER
===================================================== */

.offer {
    width: 92%;
    max-width: 1200px;
    margin: 40px auto;

    padding: 25px 35px;

    border: 1px solid #333;
    border-radius: 18px;

    background: #161616;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.offer small {
    color: #ff3b30;
    font-weight: 800;
}

.offer h2 {
    margin: 8px 0;
}


/* =====================================================
   SECTIONS
===================================================== */

.section {
    width: 92%;
    max-width: 1250px;
    margin: 80px auto;
}

.dark {
    width: 100%;
    max-width: none;
    padding: 80px 4%;
    background: #101010;
}

.heading {
    text-align: center;
    margin-bottom: 40px;
}

.heading small {
    color: #ff3b30;
    font-weight: 800;
}

.heading h2 {
    font-size: 38px;
    margin: 10px 0;
}


/* =====================================================
   CARDS
===================================================== */

.cards {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.card {
    background: #171717;
    border: 1px solid #303030;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

.card h3 {
    font-size: 25px;
}

.card li {
    margin: 10px 0;
    text-align: left;
}

.cardbtn {
    display: block;
    margin-top: 25px;
    padding: 13px;
    background: #e53935;
    border-radius: 8px;
    font-weight: 800;
}


/* =====================================================
   PACKAGES
===================================================== */

.packages {
    width: 100%;
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.package {
    background: #181818;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 25px;
}

.package.featured {
    border: 2px solid #e53935;
}

.package h3 {
    font-size: 23px;
}

.package p {
    color: #ccc;
    min-height: 65px;
}


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

.contact {
    width: 92%;
    max-width: 1100px;
    margin: 80px auto;
}

.contactgrid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.contactgrid a {
    background: #171717;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.contactgrid b,
.contactgrid small {
    display: block;
    margin-top: 8px;
}


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

footer {
    background: #050505;
    border-top: 1px solid #222;
    padding: 30px;
    text-align: center;
    color: #aaa;
}


/* =====================================================
   BOOKING MODAL
===================================================== */

.booking-modal {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.82);

    z-index: 99999;

    display: none;

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

    padding: 20px;

    overflow-y: auto;
}

.booking-modal.show {
    display: flex;
}

.booking-box {
    width: 100%;
    max-width: 850px;

    max-height: 94vh;
    overflow-y: auto;

    background: #181818;

    border: 1px solid #383838;
    border-radius: 20px;

    padding: 35px;

    position: relative;

    box-shadow:
        0 20px 80px rgba(0,0,0,.8);
}

.booking-close {
    position: absolute;
    right: 18px;
    top: 14px;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;

    background: #e53935;
    color: white;

    font-size: 30px;
    cursor: pointer;
}

.booking-title {
    text-align: center;
    margin-bottom: 25px;
}

.booking-title small {
    color: #ff3b30;
    font-weight: 800;
}

.booking-title h2 {
    font-size: 34px;
    margin: 8px 0;
}

.booking-title p {
    color: #bbb;
}


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

.form-row {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    background: #101010;
    color: #ffffff;

    border: 1px solid #4a4a4a;
    border-radius: 8px;

    padding: 14px;

    font-size: 16px;

    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e53935;
}

.form-group select:disabled {
    opacity: .55;
    cursor: not-allowed;
}


/* =====================================================
   PRICE
===================================================== */

.price-box {
    background: #221010;
    border: 1px solid #e53935;
    border-radius: 10px;

    padding: 18px;
    margin-bottom: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-box span {
    font-weight: 700;
}

.price-box strong {
    color: #ff4b45;
    font-size: 25px;
}


/* =====================================================
   INCLUDED
===================================================== */

.included-box {
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;

    padding: 20px;
    margin-bottom: 20px;
}

.included-box h3 {
    color: #ff3b30;
    margin-top: 0;
}

.service-included ul,
.included-box ul {
    margin: 0;
    padding-left: 22px;
}

.included-box li {
    margin: 7px 0;
}


/* =====================================================
   SUBMIT
===================================================== */

.booking-submit {
    width: 100%;

    border: 0;
    border-radius: 10px;

    padding: 16px;

    background: #e53935;
    color: #ffffff;

    font-size: 18px;
    font-weight: 800;

    cursor: pointer;
}

.booking-submit:hover {
    background: #ff4b45;
}

.booking-submit:disabled {
    opacity: .6;
    cursor: wait;
}

.booking-status {
    text-align: center;
    margin: 15px 0 0;
    font-weight: 700;
}


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

@media (max-width: 850px) {

    nav {
        gap: 12px;
        font-size: 14px;
    }

    .cards,
    .packages,
    .contactgrid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .offer {
        flex-direction: column;
        text-align: center;
    }

}


@media (max-width: 600px) {

    .topbar {
        font-size: 12px;
    }

    .nav {
        min-height: 70px;
    }

    .logo-link img {
        width: 75px;
    }

    nav a:not(.nav-book) {
        display: none;
    }

    .hero {
        min-height: 500px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero strong {
        font-size: 18px;
    }

    .booking-box {
        padding: 22px 16px;
    }

    .booking-title h2 {
        font-size: 27px;
    }

}.date-input-wrap {
    position: relative;
}

.date-input-wrap input {
    padding-right: 50px;
    cursor: pointer;
}

.calendar-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
}
/* =====================================================
   FORWHEELZ - INDEPENDENCE DAY BANNER
===================================================== */

body .independence-offer {
    width: 100% !important;
    padding: 10px 0 !important;
    background: #080808 !important;
    box-sizing: border-box !important;
}

body .independence-offer-container {
    width: 92% !important;
    max-width: 1100px !important;
    height: auto !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    border-radius: 12px !important;
}

body .independence-offer-container a {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    line-height: 0 !important;
}

body .independence-offer-container img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
}

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

@media (max-width: 768px) {

    body .independence-offer {
        padding: 5px 0 !important;
    }

    body .independence-offer-container {
        width: 96% !important;
        max-width: none !important;
        height: auto !important;
    }

    body .independence-offer-container a {
        height: auto !important;
    }

    body .independence-offer-container img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }
}/* =====================================================
   FORWHEELZ - MOBILE HEADER FIX
===================================================== */

@media (max-width: 600px) {

    header {
        width: 100%;
        height: 70px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .nav {
        width: 100%;
        height: 70px;
        min-height: 70px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-link {
        display: flex;
        align-items: center;
    }

    .logo-link img {
        width: 75px;
        height: auto;
        display: block;
    }

    nav {
        display: flex;
        align-items: center;
        gap: 0;
    }

    nav a:not(.nav-book) {
        display: none !important;
    }

    .nav-book {
        display: inline-block !important;
        padding: 12px 24px;
        font-size: 17px;
        border-radius: 8px;
        white-space: nowrap;
    }
}/* =====================================================
   FORWHEELZ - FINAL MOBILE HEADER COMPACT
===================================================== */

@media (max-width: 600px) {

    /* Top contact bar */
    .topbar {
        height: 40px !important;
        min-height: 40px !important;
        padding: 0 12px !important;
        font-size: 13px !important;
        display: flex !important;
        align-items: center !important;
    }

    .topbar a {
        font-size: 13px !important;
    }

    /* Main navigation */
    header {
        height: 70px !important;
    }

    .nav {
        height: 70px !important;
        min-height: 70px !important;
        padding: 0 12px !important;
    }

    /* Logo */
    .logo-link img {
        width: 65px !important;
        height: auto !important;
    }

    /* Hide desktop navigation links */
    nav a:not(.nav-book) {
        display: none !important;
    }

    /* Book Now */
    .nav-book {
        display: inline-block !important;
        padding: 10px 22px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
        white-space: nowrap !important;
    }
}