/* ==========================================
        CARLO RENTAL V2
        PREMIUM CSS
========================================== */

:root{

    --primary:#F4B400;
    --primary-dark:#d79c00;

    --dark:#0f0f10;
    --card:#1a1a1c;
    --card2:#222224;

    --text:#ffffff;
    --grey:#bdbdbd;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;

}

body{

    background:var(--dark);
    color:var(--text);
    overflow-x:hidden;

}

section{

    padding:90px 0;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

.container{

    max-width:1200px;

}

/* ===========================
        NAVBAR
=========================== */

.navbar{

    background:rgba(15,15,15,.92);

    backdrop-filter:blur(15px);

    padding:15px 0;

    transition:.35s;

}

.navbar-brand{

    font-size:30px;

    font-weight:800;

    color:#fff;

}

.navbar-brand span{

    color:var(--primary);

}

.nav-link{

    color:#fff !important;

    margin-left:18px;

    font-weight:500;

    transition:.3s;

}

.nav-link:hover{

    color:var(--primary)!important;

}

.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/* ===========================
        BUTTONS
=========================== */

.btn-warning{

    background:linear-gradient(135deg,#FFD95A,#F4B400);

    color:#111;

    border:none;

    font-weight:700;

    border-radius:12px;

    padding:12px 26px;

    transition:.35s;

    box-shadow:0 12px 30px rgba(244,180,0,.30);

}

.btn-warning:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(244,180,0,.45);

}

.btn-outline-light{

    border-radius:12px;

    font-weight:600;

}

/* ===========================
        HERO
=========================== */

.hero{

    padding-top:170px;

}

.hero-tag{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;

}

.hero h1{

    font-size:58px;

    font-weight:800;

    line-height:1.15;

}

.hero p{

    color:#d5d5d5;

    font-size:18px;

    margin:25px 0;

    line-height:30px;

}

.hero-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    margin-top:30px;

}

.hero-info{

    display:flex;

    gap:40px;

    margin-top:55px;

    flex-wrap:wrap;

}

.hero-info h3{

    color:var(--primary);

    font-size:32px;

    font-weight:700;

}

.hero-info p{

    margin:0;

    font-size:14px;

    color:#bbb;

}

.hero-car{

    width:85%;

    max-width:560px;

    height:360px;

    object-fit:cover;

    border-radius:22px;

    margin:auto;

    animation:floatCar 4s ease-in-out infinite;

    box-shadow:0 20px 50px rgba(0,0,0,.45);

}

@keyframes floatCar{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/* ===========================
        SECTION TITLE
=========================== */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    font-weight:700;

}

.section-title p{

    color:#bdbdbd;

    margin-top:10px;

}
/* ==========================================
            OUR FLEET
========================================== */

.fleet{
    background:#111;
}

.car-card{

    background:linear-gradient(180deg,#1d1d1d,#131313);

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

    height:100%;

    border:1px solid rgba(255,255,255,.06);

}

.car-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 25px 45px rgba(0,0,0,.45);

}

.car-card img{

    width:100%;

    height:230px;

    object-fit:cover;

    transition:.5s;

}

.car-card:hover img{

    transform:scale(1.08);

}

.car-content{

    padding:24px;

}

.car-content h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.car-content p{

    color:#cfcfcf;

    line-height:30px;

    margin-bottom:20px;

}

.car-content h5{

    color:var(--primary);

    font-size:28px;

    font-weight:700;

    margin-bottom:20px;

}

.book-btn{

    width:100%;

    border-radius:12px;

    font-weight:700;

}

/* ==========================================
            WHY CHOOSE US
========================================== */

.why{

    background:#0f0f10;

}

.feature-box{

    background:linear-gradient(180deg,#1d1d1d,#151515);

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.feature-box:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 18px 35px rgba(0,0,0,.35);

}

.feature-box i{

    font-size:46px;

    color:var(--primary);

    margin-bottom:18px;

}

.feature-box h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:12px;

}

.feature-box p{

    color:#c8c8c8;

    font-size:15px;

    line-height:28px;

}
/* ==========================================
            BOOKING SECTION
========================================== */

.booking-section{

    background:#111;

}

.booking-card{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:25px;

    background:#171717;

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    padding:28px;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.booking-left{

    background:#1d1d1d;

    border-radius:18px;

    padding:25px;

}

.booking-right{

    background:linear-gradient(180deg,#242424,#171717);

    border-radius:18px;

    padding:20px;

    position:sticky;

    top:95px;

    height:fit-content;

}

/* ===========================
        FORM
=========================== */

.booking-left label{

    display:block;

    margin-bottom:7px;

    font-size:14px;

    font-weight:600;

    color:#fff;

}

.form-control{

    width:100%;

    background:#101010 !important;

    color:#fff !important;

    border:1px solid #2d2d2d !important;

    border-radius:12px;

    padding:13px 15px;

    transition:.3s;

}

.form-control::placeholder{

    color:#8d8d8d;

}

.form-control:focus{

    background:#101010 !important;

    color:#fff !important;

    border-color:var(--primary) !important;

    box-shadow:0 0 0 4px rgba(244,180,0,.12) !important;

}

textarea.form-control{

    resize:none;

}

/* ===========================
        RENTAL POLICY
=========================== */

.booking-note{

    margin-top:22px;

    padding:18px;

    background:#101010;

    border-left:4px solid var(--primary);

    border-radius:12px;

    color:#d4d4d4;

    font-size:14px;

    line-height:26px;

}

.booking-note b{

    color:#fff;

}

/* ===========================
        SUMMARY IMAGE
=========================== */

.summary-image{

    width:100%;

    height:170px;

    object-fit:cover;

    border-radius:14px;

    margin-bottom:18px;

}

.booking-right h4{

    font-size:24px;

    font-weight:700;

}

#priceDay{

    color:var(--primary);

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}
/* ==========================================
            BOOKING SUMMARY
========================================== */

.booking-right hr{

    border-color:rgba(255,255,255,.08);

    margin:16px 0;

}

.summary-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:8px 0;

    font-size:15px;

}

.summary-row span{

    color:#cfcfcf;

}

.summary-row strong{

    color:#fff;

    font-size:16px;

    font-weight:600;

}

.total-row{

    padding:14px 0;

}

.total-row span{

    font-size:18px;

    font-weight:700;

    color:#fff;

}

#summaryPrice{

    color:var(--primary);

    font-size:28px;

    font-weight:800;

}

/* ==========================================
            PAYMENT BOX
========================================== */

.payment-box-small{

    margin-top:18px;

}

.payment-box-small h6{

    font-size:17px;

    font-weight:700;

    margin-bottom:12px;

    color:#fff;

}

.payment-option{

    display:flex;

    align-items:flex-start;

    gap:12px;

    background:#101010;

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    padding:12px;

    margin-bottom:10px;

    cursor:pointer;

    transition:.30s;

}

.payment-option:hover{

    border-color:var(--primary);

    background:#191919;

}

.payment-option input{

    margin-top:5px;

    accent-color:var(--primary);

}

.payment-option strong{

    display:block;

    font-size:15px;

    color:#fff;

    margin-bottom:2px;

}

.payment-option small{

    display:block;

    font-size:13px;

    color:#bdbdbd;

    line-height:20px;

}

/* ==========================================
            PAYMENT BUTTON
========================================== */

#bookBtn{

    margin-top:18px;

    padding:14px;

    border-radius:12px;

    font-size:16px;

    font-weight:700;

    letter-spacing:.4px;

}

#bookBtn i{

    margin-right:8px;

}

.secure-note{

    margin-top:10px;

    text-align:center;

    font-size:12px;

    color:#9e9e9e;

}
/* ==========================================
            DOCUMENTS
========================================== */

.documents{
    background:#0f0f10;
}

.doc-card{
    background:linear-gradient(180deg,#1d1d1d,#151515);
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    height:100%;
    transition:.35s;
}

.doc-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
}

.doc-card i{
    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;
}

.doc-card h5{
    font-size:18px;
    font-weight:600;
    margin:0;
}

/* ==========================================
            PAYMENT INFO
========================================== */

.payment{
    background:#111;
}

.payment-box{
    max-width:700px;
    margin:auto;
    background:#1b1b1d;
    padding:35px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.06);
    text-align:center;
}

.payment-box h4{
    color:var(--primary);
    margin-bottom:18px;
}

.payment-box p{
    color:#d0d0d0;
    line-height:28px;
}

/* ==========================================
            FAQ
========================================== */

.faq-section{
    background:#0f0f10;
}

.accordion-item{
    background:#1c1c1c;
    border:none;
    margin-bottom:12px;
    border-radius:12px;
    overflow:hidden;
}

.accordion-button{
    background:#1c1c1c;
    color:#fff;
    font-weight:600;
    box-shadow:none!important;
}

.accordion-button:not(.collapsed){
    background:var(--primary);
    color:#111;
}

.accordion-body{
    background:#242424;
    color:#ddd;
    line-height:28px;
}

/* ==========================================
            REVIEWS
========================================== */

.reviews{
    background:#111;
}

.review-card{
    background:#1c1c1c;
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
    padding:28px;
    height:100%;
    transition:.35s;
}

.review-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
}

.stars{
    color:#FFD700;
    font-size:22px;
    margin-bottom:15px;
}

.review-card p{
    color:#d5d5d5;
    line-height:28px;
}

.review-card h5{
    margin-top:20px;
    font-weight:700;
}

/* ==========================================
            CONTACT
========================================== */

.contact{
    background:#0f0f10;
}

.contact h2{
    font-size:42px;
    font-weight:700;
}

.contact p{
    color:#d0d0d0;
    line-height:30px;
}

.contact iframe{
    border-radius:18px;
}

/* ==========================================
            FOOTER
========================================== */

footer{
    background:#090909;
    border-top:1px solid rgba(255,255,255,.06);
    padding:40px 0;
    text-align:center;
}

footer h3{
    font-size:30px;
    font-weight:800;
}

footer span{
    color:var(--primary);
}

footer p{
    color:#a9a9a9;
    margin:8px 0;
}

/* ==========================================
            WHATSAPP
========================================== */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
    z-index:999;
    transition:.35s;
}

.whatsapp:hover{
    transform:scale(1.1);
    color:#fff;
}

/* ==========================================
            SCROLLBAR
========================================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

/* ==========================================
            MOBILE
========================================== */

@media(max-width:991px){

.hero{
    text-align:center;
}

.hero h1{
    font-size:42px;
}

.hero-info{
    justify-content:center;
}

.booking-card{
    grid-template-columns:1fr;
}

.booking-right{
    position:static;
    margin-top:20px;
}

.section-title h2{
    font-size:34px;
}

.contact{
    text-align:center;
}

.contact iframe{
    margin-top:30px;
}

}

@media(max-width:576px){

.hero{
    padding-top:140px;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

.hero-info{
    gap:25px;
}

.hero-car{
    height:240px;
}

.summary-image{
    height:150px;
}

.booking-left,
.booking-right{
    padding:18px;
}

.payment-box{
    padding:25px;
}

}
/* ===========================
   PAYMENT MODAL
=========================== */

.payment-modal{
    background:#1b1b1b;
    color:#fff;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
}

.payment-modal .modal-header{
    border-bottom:1px solid rgba(255,255,255,.08);
}

.payment-modal .modal-title{
    font-weight:700;
    color:#ffc107;
}

.payment-modal .btn-close{
    filter:invert(1);
}

.payment-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.payment-row span{
    color:#cfcfcf;
}

.payment-row strong{
    color:#fff;
    font-weight:700;
}

.total-payment{
    margin-top:10px;
    font-size:22px;
}

.total-payment strong{
    color:#ffc107;
    font-size:26px;
}

.payment-safe{
    margin-top:20px;
    background:#111;
    border-left:4px solid #ffc107;
    padding:15px;
    border-radius:10px;
    color:#ddd;
    line-height:2;
}

#payNowBtn{
    margin-top:20px;
    font-size:17px;
    font-weight:700;
    padding:14px;
}
.booking-request-note{
    background:#1f1f26;
    border:1px solid rgba(255,193,7,.25);
    border-radius:12px;
    padding:18px;
    margin:20px 0;
    text-align:center;
}

.booking-request-note i{
    color:#ffc107;
    font-size:22px;
    display:block;
    margin-bottom:10px;
}

.booking-request-note p{
    color:#d8d8d8;
    font-size:14px;
    line-height:1.7;
    margin:0;
}