*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
    color:#222;
}

/* HEADER */

header{
    position:absolute;
    top:0;
    left:0;
    width:100%;

    display:grid;
    grid-template-columns:120px 1fr 180px;
    align-items:center;

    padding:20px 40px;

    background:rgba(0,0,0,.30);
    backdrop-filter:blur(5px);

    z-index:1000;

    box-sizing:border-box;
}

.logo{
    margin-right:40px;
}

.logo img{
    height:90px;
}

nav{
    display:flex;
    justify-content:center;
    gap:28px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    white-space:nowrap;
}

.book-btn{
    justify-self:end;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    width:170px;
    height:48px;

    border:2px solid #fff;
    border-radius:8px;

    color:#fff;
    text-decoration:none;
    white-space:nowrap;
}

.book-btn:hover{
    background:#fff;
    color:#000;
}

/* HERO */

.hero{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:700px;
    padding:80px 7%;
    color:#fff;

    background:
    linear-gradient(rgba(0,0,0,.20),rgba(0,0,0,.20)),
    url("Images/hero-bg.jpg");

    background-size:105%;
    background-position:center center;
    background-repeat:no-repeat;
}

.hero-left{
    width:45%;
    z-index:2;
}

.hero-left h3{
    font-size:22px;
    font-weight:600;
    letter-spacing:2px;
    color:#ddd;
}

.hero-left h1{
    font-size:78px;
    line-height:80px;
    font-weight:800;
    margin:15px 0;
}

.hero-left p{
    font-size:24px;
    color:#e5e5e5;
    margin-bottom:35px;
}

.buttons{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.call-btn{
    background:#fff;
    color:#000;
    padding:16px 32px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.msg-btn{
    border:2px solid #fff;
    color:#fff;
    padding:16px 32px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.call-btn:hover{
    background:#dcdcdc;
}

.msg-btn:hover{
    background:#fff;
    color:#000;
}

.hero-left h2{
    margin-top:10px;
    font-size:28px;
    font-weight:600;
}

.hero-right{
    width:55%;
    position:relative;
    height:600px;
}

.hero-right img{
    position:absolute;
    bottom:0;
    transition:.4s;
}

.hero-right img:first-child{
    width:58%;
    left:0;
    z-index:2;
}

.hero-right img:last-child{
    width:70%;
    right:0;
    z-index:1;
}

.hero-right img:hover{
    transform:translateY(-10px);
}

/* SECTION TITLE */

section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:15px;
    font-weight:800;
}

/* OUR CARS */

.cars{
    padding:80px 7%;
    background:#fff;
}

.cars>p{
    text-align:center;
    color:#666;
    margin-bottom:50px;
    font-size:20px;
}

.car-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.car-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    display:flex;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    transition:.3s;
}

.car-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.car-card img{
    width:50%;
    height:320px;
    object-fit:contain;
    background:#f7f7f7;
    padding:15px;
}

.info{
    padding:30px;
    display:flex;
    flex-direction:column;
}

.info h3{
    font-size:18px;
}

.info h1{
    font-size:42px;
    font-weight:800;
}

.info h4{
    margin-bottom:15px;
}

.info ul{
    list-style:none;
}

.info li{
    margin:12px 0;
    font-size:18px;
}

.price{
    margin-top:25px;
    background:#000;
    color:#fff;
    display:block;
    width:100%;
    text-align:center;
    padding:14px 22px;
    border-radius:8px;
    font-size:22px;
    font-weight:700;
}

.note{
    text-align:center;
    margin-top:40px;
    color:#777;
    font-style:italic;
}

/* FEATURES */

.features{
    background:#000;
    color:#fff;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
    padding:60px 7%;
}

.features div{
    text-align:center;
}

.features h3{
    margin-bottom:15px;
}

/* REQUIREMENTS */

.requirements{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:80px;
    padding:80px 7%;
}

.requirements h2{
    text-align:left;
    font-size:34px;
    margin-bottom:30px;
}

.requirements ul{
    list-style:none;
}

.requirements li{
    margin:18px 0;
    font-size:20px;
}

/* LOCATION */

.location{
    background:#000;
    color:#fff;
    display:grid;
    grid-template-columns:35% 65%;
    gap:40px;
    padding:70px 7%;
    align-items:center;
}

.location h2{
    text-align:left;
}

.location p{
    margin:30px 0;
    line-height:32px;
    font-size:20px;
}

.location a{
    color:#fff;
    text-decoration:none;
    border:2px solid #fff;
    display:inline-block;
    padding:15px 28px;
    border-radius:8px;
    transition:.3s;
}

.location a:hover{
    background:#fff;
    color:#000;
}

.location img{
    width:100%;
    border-radius:12px;
}

/* FOOTER */

footer{
    background:#000;
    color:#fff;
    border-top:1px solid #333;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px 7%;
}

footer i{
    margin-left:15px;
    font-size:28px;
}

/* RESPONSIVE */

@media(max-width:992px){

.hero{
    flex-direction:column;
    text-align:center;
}

.hero-left,
.hero-right{
    width:100%;
}

.hero-right{
    margin-top:60px;
    height:420px;
}

.hero-right img{
    position:absolute;
}

.hero-left h1{
    font-size:52px;
    line-height:60px;
}

.car-grid{
    grid-template-columns:1fr;
}

.features{
    grid-template-columns:repeat(2,1fr);
}

.requirements{
    grid-template-columns:1fr;
}

.location{
    grid-template-columns:1fr;
}

footer{
    flex-direction:column;
    gap:20px;
}

}

@media(max-width:768px){

header{
    padding:15px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:absolute;
    z-index:1000;
}

.logo{
    margin-right:0;
}

.menu-toggle{
    display:block;
    position:relative;
    z-index:1002;
    font-size:30px;
    color:#fff;
    cursor:pointer;
    padding:8px;
}

.book-btn{
    display:none;
}

.logo img{
    height:65px;
}

.book-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:6px;

    width:auto;

    height:40px;

    padding:0 14px;

    margin-left:auto;

    margin-right:12px;

    font-size:12px;

}

.book-btn i{

    font-size:12px;

}

.hero{
    min-height:100vh;
    padding:120px 25px 60px;
    background-size:cover;
    background-position:center;
}

.hero-left{
    width:100%;
    text-align:center;
}

.hero-left h3{
    font-size:18px;
}

.hero-left h1{
    font-size:42px;
    line-height:48px;
}

.hero-left p{
    font-size:18px;
    line-height:28px;
}

.hero-left h2{
    font-size:22px;
    line-height:30px;
}

.buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
}

.call-btn,
.msg-btn{
    width:100%;
    max-width:300px;
    text-align:center;
}

.features{
    grid-template-columns:1fr;
}

.car-card{
    flex-direction:column;
}

.car-card img{
    width:100%;
    height:240px;
}

.info{
    padding:22px;
}

.info h1{
    margin:8px 0;
}

.info ul{
    margin-top:10px;
}

.price{
    margin-top:20px;
}

.contact-cta{

    padding:70px 25px;

}

.contact-cta h2{

    font-size:34px;

}

.contact-cta p{

    font-size:17px;

    line-height:28px;

}

.cta-buttons{

    flex-direction:column;

    align-items:center;

}

.cta-buttons a{

    width:100%;

    max-width:330px;

}
    
}

.view-btn{
    display:block;
    width:100%;
    margin-top:15px;
    padding:14px;
    background:#fff;
    color:#000;
    border:2px solid #000;
    border-radius:8px;
    text-decoration:none;
    text-align:center;
    font-weight:600;
    transition:.3s;
}

.view-btn:hover{
    background:#000;
    color:#fff;
}

/* POPUP */

.popup{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.85);
    justify-content:center;
    align-items:center;
}

.popup img{
    max-width:85%;
    max-height:85%;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.6);
}

.close{
    position:absolute;
    top:30px;
    right:40px;
    color:#fff;
    font-size:50px;
    cursor:pointer;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    color:#fff;
    font-size:55px;
    cursor:pointer;
    user-select:none;
    padding:15px;
}

.prev{
    left:30px;
}

.next{
    right:30px;
}

.prev:hover,
.next:hover{
    color:#ccc;
}

/* MOBILE MENU */

.menu-toggle{
    display:none;
    font-size:30px;
    color:#fff;
    cursor:pointer;
}

@media (max-width:768px){

.menu-toggle{
    display:block;
}

nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#000;
    flex-direction:column;
    padding:20px 0;
}

nav.active{
    display:flex;
}

nav a{
    padding:15px;
    text-align:center;
}

}

.info li i{
    width:28px;
    color:#111;
}

/* FLOATING MESSENGER */

.floating-chat{

    position:fixed;

    bottom:25px;

    right:25px;

    width:65px;

    height:65px;

    background:#0084ff;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s;

}

.floating-chat:hover{

    transform:scale(1.1);

    background:#006fe6;

}

@media(max-width:768px){

.floating-chat{

    width:60px;

    height:60px;

    font-size:30px;

    bottom:20px;

    right:20px;

}

}

/* FAQ */

.faq{
    padding:80px 7%;
    background:#f8f8f8;
}

.faq h2{
    text-align:center;
    margin-bottom:40px;
}

.faq-item{
    background:#fff;
    border-left:5px solid #000;
    border-radius:14px;
    margin-bottom:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    overflow:hidden;
}

.faq-question{
    width:100%;
    padding:20px 25px;
    border:none;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.faq-question:hover{
    background:#f5f5f5;
}

.faq-question i{
    transition:.3s;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

.faq-question:hover{
    background:#f3f3f3;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    padding:0 25px;
    transition:max-height .4s ease;
    color:#555;
    line-height:28px;
}

.faq-answer p{
    padding-bottom:20px;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-answer{
    display:block;
}

/* CONTACT CTA */

.contact-cta{

    position:relative;

    padding:90px 7%;

    text-align:center;

    color:#fff;

    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url("Images/hero-bg.jpg");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

}

.contact-cta h2{

    font-size:48px;

    font-weight:800;

    margin-bottom:20px;

    text-shadow:0 4px 12px rgba(0,0,0,.5);

}

.contact-cta p{

    max-width:700px;

    margin:0 auto 45px;

    color:#eee;

    font-size:20px;

    line-height:34px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons a{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-width:220px;

    padding:18px 30px;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.cta-buttons i{

    margin-right:10px;

}

.cta-call{

    background:#fff;

    color:#000;

}

.cta-message{

    background:#0084ff;

    color:#fff;

}

.cta-book{

    background:#d4af37;

    color:#000;

}

.cta-buttons a:hover{

    transform:translateY(-6px) scale(1.03);

    box-shadow:0 15px 35px rgba(0,0,0,.45);

}


/* CUSTOMER REVIEWS */
.reviews{
    padding:90px 7%;
    background:#f8f8f8;
}

.reviews-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 45px;
}

.reviews-eyebrow{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;
    color:#666;
}

.reviews-header h2{
    margin-bottom:12px;
}

.reviews-header p{
    color:#666;
    font-size:18px;
}

.reviews-summary{
    max-width:1100px;
    margin:0 auto 35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
    background:#fff;
    border-radius:18px;
    padding:25px 30px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.reviews-rating{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.reviews-rating strong{
    font-size:38px;
    line-height:1;
    font-weight:800;
}

.reviews-rating span:last-child{
    color:#777;
    font-size:14px;
}

.stars,
.rating-picker button{
    color:#f5b400;
    letter-spacing:2px;
}

.stars{
    font-size:22px;
}

.write-review-btn,
.submit-review-btn{
    border:0;
    background:#000;
    color:#fff;
    border-radius:8px;
    padding:14px 22px;
    font-family:inherit;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
}

.write-review-btn:hover,
.submit-review-btn:hover{
    background:#222;
    transform:translateY(-2px);
}

.review-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.review-card{
    background:#fff;
    border-radius:16px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    border-top:4px solid #000;
}

.review-card-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:15px;
    margin-bottom:15px;
}

.review-name{
    font-weight:700;
    font-size:17px;
}

.review-date{
    display:block;
    color:#999;
    font-size:12px;
    margin-top:3px;
}

.review-card .review-stars{
    color:#f5b400;
    letter-spacing:1px;
    white-space:nowrap;
}

.review-text{
    color:#555;
    line-height:27px;
    font-size:15px;
}

.review-empty{
    grid-column:1/-1;
    text-align:center;
    padding:30px;
    color:#777;
}

.review-form-wrap{
    display:none;
    position:fixed;
    inset:0;
    z-index:10000;
    background:rgba(0,0,0,.72);
    padding:25px;
    overflow-y:auto;
    align-items:center;
    justify-content:center;
}

.review-form-wrap.active{
    display:flex;
}

.review-form-card{
    width:100%;
    max-width:520px;
    background:#fff;
    border-radius:18px;
    padding:32px;
    position:relative;
    box-shadow:0 20px 60px rgba(0,0,0,.3);
}

.review-form-card h3{
    font-size:28px;
    margin:0 0 8px;
}

.review-form-card>p{
    color:#777;
    margin:0 0 25px;
    line-height:24px;
}

.review-form-card label{
    display:block;
    font-weight:600;
    margin:16px 0 8px;
}

.review-form-card input[type="text"],
.review-form-card textarea{
    width:100%;
    box-sizing:border-box;
    border:1px solid #ddd;
    border-radius:8px;
    padding:13px 14px;
    font:inherit;
    outline:none;
}

.review-form-card input[type="text"]:focus,
.review-form-card textarea:focus{
    border-color:#000;
}

.rating-picker{
    display:flex;
    gap:4px;
}

.rating-picker button{
    border:0;
    background:transparent;
    font-size:32px;
    cursor:pointer;
    padding:0 3px;
    opacity:.3;
    transition:.2s;
}

.rating-picker button.selected,
.rating-picker button:hover{
    opacity:1;
}

.submit-review-btn{
    width:100%;
    margin-top:20px;
}

.review-form-close{
    position:absolute;
    top:12px;
    right:18px;
    border:0;
    background:transparent;
    font-size:34px;
    color:#555;
    cursor:pointer;
}

.review-form-message{
    text-align:center;
    margin:14px 0 0 !important;
    min-height:22px;
    color:#555;
}

@media(max-width:992px){
    .review-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .reviews{
        padding:70px 25px;
    }

    .reviews-header p{
        font-size:16px;
    }

    .reviews-summary{
        flex-direction:column;
        text-align:center;
        padding:22px;
    }

    .reviews-rating{
        justify-content:center;
    }

    .review-grid{
        grid-template-columns:1fr;
    }

    .write-review-btn{
        width:100%;
    }

    .review-form-card{
        padding:28px 22px;
    }
}

.review-form-message {
    display: none;
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

.review-form-message.show {
    display: block;
}

.verified-rental {
    display: inline-block;
    margin-top: 3px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #2e8b57;
}

.review-note {
    font-size: 13px;
    opacity: 0.75;
    margin-top: 8px;
}

/* ================================
   VIEW ALL REVIEWS
================================ */

.view-all-reviews-btn{

    display:block;

    margin:35px auto 0;

    padding:14px 32px;

    border:2px solid #000;

    border-radius:8px;

    background:#fff;

    color:#000;

    font-family:inherit;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}


.view-all-reviews-btn:hover{

    background:#000;

    color:#fff;

}


/* ================================
   ALL REVIEWS MODAL
================================ */

.all-reviews-modal{

    display:none;

    position:fixed;

    inset:0;

    z-index:10001;

    background:rgba(0,0,0,.72);

    padding:30px;

    overflow-y:auto;

    align-items:center;

    justify-content:center;

}


.all-reviews-modal-content{

    position:relative;

    width:100%;

    max-width:1100px;

    max-height:90vh;

    overflow-y:auto;

    background:#f8f8f8;

    border-radius:18px;

    padding:35px;

}


.all-reviews-modal-content h3{

    text-align:center;

    font-size:28px;

    margin-bottom:30px;

}


.all-review-grid{

    display:grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:22px;

}


.all-reviews-close{

    position:absolute;

    top:10px;

    right:18px;

    border:0;

    background:transparent;

    font-size:38px;

    cursor:pointer;

    color:#333;

}

/* Hide mobile See More button on desktop */

.see-more-review{

    display:none;

}

/* ================================
   MOBILE REVIEW CAROUSEL
================================ */

@media(max-width:768px){

    .review-grid{

        display:flex;

        overflow-x:auto;

        overflow-y:hidden;

        grid-template-columns:none;

        gap:16px;

        scroll-snap-type:x mandatory;

        scroll-behavior:smooth;

        padding:5px 5px 20px;

        scrollbar-width:none;

    }


    .review-grid::-webkit-scrollbar{

        display:none;

    }


    .review-card{

        min-width:calc(
            100% - 20px
        );

        scroll-snap-align:center;

    }


    /* Hide View All button on mobile */

    .view-all-reviews-btn{

        display:none !important;

    }


    .all-review-grid{

        grid-template-columns:1fr;

    }


    .all-reviews-modal{

        padding:15px;

    }


    .all-reviews-modal-content{

        padding:30px 18px;

    }

}

/* =================================
   DESKTOP: SHOW ONLY FIRST 6 REVIEWS
================================= */

@media(min-width:769px){

    .review-grid .review-card:nth-child(n+7){

        display:none;

    }

}

/* =================================
   MOBILE COMPACT REVIEW CARDS
================================= */

@media(max-width:768px){

    /* Make review cards more compact */

    .review-card{

        min-height:0;

        padding:18px;

    }


    /* Compact review text */

    .review-text{

        line-height:22px;

        margin-bottom:6px;

    }


    /* Initially show only 3 lines */

    .review-text-collapsed{

        display:-webkit-box;

        -webkit-box-orient:vertical;

        -webkit-line-clamp:3;

        overflow:hidden;

    }


    /* Expanded review */

    .review-text-collapsed.expanded{

        display:block;

        overflow:visible;

    }


    /* See more button */

    .see-more-review{

        display:none;

        border:0;

        background:transparent;

        padding:3px 0 8px;

        color:#000;

        font-family:inherit;

        font-size:13px;

        font-weight:700;

        cursor:pointer;

        text-decoration:underline;

    }


    /* Show See more only on cards
       that JavaScript marks as long */

    .review-card.has-long-review
    .see-more-review{

        display:inline-block;

    }

}

/* =================================
   DESKTOP REVIEW TEXT
================================= */

@media(min-width:769px){

    .review-text-collapsed{

        display:block !important;

        overflow:visible !important;

    }

    .see-more-review{

        display:none !important;

    }

}
