/* ==========================================================
   Luxury Car Theme - Part 1
   Astra Compatible
========================================================== */

:root{

    --primary:#C8A15A;
    --primary-dark:#b68d42;

    --dark:#0f0f10;
    --dark-card:#181818;
    --dark-light:#222;

    --border:rgba(255,255,255,.08);

    --white:#ffffff;
    --text:#bfbfbf;

    --radius:18px;

    --transition:.35s ease;

}

/*==========================
General
==========================*/

body.single-car{

    background:var(--dark);
    color:var(--white);

}

.single-car-page{

    background:var(--dark);

}

.container{

    max-width:1320px;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

img{

    max-width:100%;

    display:block;

}

.section-title{

    font-size:42px;

    font-weight:700;

    color:#fff;

    margin-bottom:15px;

}

.section-subtitle{

    color:var(--primary);

    font-size:14px;

    text-transform:uppercase;

    letter-spacing:3px;

    display:block;

    margin-bottom:10px;

}

.section-desc{

    color:var(--text);

    font-size:16px;

    line-height:1.8;

}

/*==========================
Buttons
==========================*/

.btn{

    border-radius:50px;

    padding:14px 28px;

    font-weight:600;

}

.btn-warning{

    background:var(--primary);

    border-color:var(--primary);

    color:#111;

}

.btn-warning:hover{

    background:var(--primary-dark);

    border-color:var(--primary-dark);

}

.btn-outline-light{

    border:1px solid rgba(255,255,255,.2);

}

.btn-outline-light:hover{

    background:#fff;

    color:#111;

}

/*==========================
Breadcrumb
==========================*/

.breadcrumb{

    margin-bottom:40px;

    background:none;

}

.breadcrumb-item{

    color:#888;

}

.breadcrumb-item a{

    color:#999;

}

.breadcrumb-item a:hover{

    color:var(--primary);

}

.breadcrumb-item.active{

    color:#fff;

}

.breadcrumb-item+.breadcrumb-item::before{

    color:#666;

}

/*==========================
Hero
==========================*/

.car-hero{

    padding:70px 0;

}

.car-info{

    position:sticky;

    top:100px;

}

.car-title{

    font-size:54px;

    font-weight:700;

    color:#fff;

    margin-top:20px;

    margin-bottom:25px;

    line-height:1.1;

}

.brand-logo{

    max-width:160px;

    height:auto;

    margin-bottom:30px;

}

.car-type{

    display:inline-flex;

    align-items:center;

    padding:8px 18px;

    border-radius:40px;

    background:rgba(200,161,90,.15);

    color:var(--primary);

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:1px;

    font-weight:600;

}

/*==========================
Hero Slider
==========================*/

.carGallery{

    border-radius:var(--radius);

    overflow:hidden;

}

.carGallery img{

    width:100%;

    height:650px;

    object-fit:cover;

}

.carGallery .swiper-button-next,
.carGallery .swiper-button-prev{

    width:52px;

    height:52px;

    border-radius:50%;

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

    backdrop-filter:blur(10px);

}

.carGallery .swiper-button-next::after,
.carGallery .swiper-button-prev::after{

    font-size:18px;

    color:#fff;

}

/*==========================
Thumb Slider
==========================*/

.carThumb{

    margin-top:20px;

}

.carThumb .swiper-slide{

    opacity:.45;

    cursor:pointer;

}

.carThumb .swiper-slide-thumb-active{

    opacity:1;

}

.carThumb img{

    height:90px;

    width:100%;

    object-fit:cover;

    border-radius:12px;

    transition:.3s;

}

.carThumb img:hover{

    transform:scale(1.04);

}

/*==========================
Meta
==========================*/

.car-meta{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.meta-box{

    background:var(--dark-card);

    border:1px solid var(--border);

    border-radius:16px;

    padding:22px;

    transition:.35s;

}

.meta-box:hover{

    border-color:var(--primary);

    transform:translateY(-5px);

}

.meta-box span{

    display:block;

    color:#888;

    font-size:13px;

    margin-bottom:10px;

}

.meta-box strong{

    font-size:22px;

    color:#fff;

}

/*==========================
Tags
==========================*/

.car-tags{

    margin-top:35px;

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.car-tags span{

    background:#222;

    border:1px solid var(--border);

    color:#fff;

    padding:10px 18px;

    border-radius:40px;

    font-size:13px;

    transition:.35s;

}

.car-tags span:hover{

    background:var(--primary);

    color:#111;

}

/*==========================
Responsive
==========================*/

@media(max-width:1200px){

.carGallery img{

height:500px;

}

.car-title{

font-size:44px;

}

}

@media(max-width:992px){

.car-info{

position:relative;

top:0;

margin-top:40px;

}

.carGallery img{

height:450px;

}

}

@media(max-width:768px){

.car-title{

font-size:34px;

}

.carGallery img{

height:280px;

}

.car-meta{

grid-template-columns:1fr;

}

.section-title{

font-size:32px;

}

}

/*=========================================================
SPECIFICATION SECTION
=========================================================*/

.car-specifications{

    padding:90px 0;

    background:#111111;

}

.spec-card{

    background:#1b1b1b;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:28px;

    height:100%;

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.spec-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:#C8A15A;

    transform:scaleY(0);

    transition:.35s;

}

.spec-card:hover{

    transform:translateY(-8px);

    border-color:#C8A15A;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.spec-card:hover::before{

    transform:scaleY(1);

}

.spec-card span{

    display:block;

    color:#888;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:12px;

}

.spec-card strong{

    display:block;

    color:#fff;

    font-size:24px;

    font-weight:700;

}


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

.price-card{

    position:sticky;

    top:110px;

    background:#181818;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.08);

    padding:35px;

    overflow:hidden;

}

.price-card::before{

    content:"";

    position:absolute;

    left:0;

    right:0;

    top:0;

    height:4px;

    background:#C8A15A;

}

.price-card h3{

    color:#fff;

    font-size:32px;

    margin-bottom:30px;

    font-weight:700;

}


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

.price-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.price-row:last-child{

    border-bottom:none;

}

.price-row span{

    color:#9b9b9b;

    font-size:15px;

}

.price-row strong{

    color:#fff;

    font-size:18px;

    font-weight:700;

}


/*=========================================================
BOOK BUTTON
=========================================================*/

.price-card .btn-warning{

    margin-top:25px;

    width:100%;

    padding:18px;

    font-size:17px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.price-card .btn-warning:hover{

    transform:translateY(-3px);

}


/*=========================================================
WHATSAPP
=========================================================*/

.price-card .btn-success{

    margin-top:15px;

    width:100%;

    padding:18px;

    border-radius:50px;

    background:#25D366;

    border:none;

    font-size:17px;

    font-weight:700;

}

.price-card .btn-success:hover{

    background:#1ebe5d;

    transform:translateY(-3px);

}


/*=========================================================
BOOKING INFO
=========================================================*/

.booking-info{

    margin-top:30px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

}

.booking-info ul{

    margin:0;

    padding:0;

    list-style:none;

}

.booking-info li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#d5d5d5;

    margin-bottom:14px;

    font-size:15px;

}

.booking-info li i{

    color:#C8A15A;

    margin-right:10px;

}


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

.daily-price{

    text-align:center;

    margin-bottom:35px;

}

.daily-price h2{

    color:#C8A15A;

    font-size:58px;

    margin:0;

    font-weight:700;

}

.daily-price span{

    color:#999;

    font-size:15px;

    letter-spacing:2px;

    text-transform:uppercase;

}


/*=========================================================
CARD ANIMATION
=========================================================*/

.price-card,
.spec-card{

    transition:all .35s ease;

}

.price-card:hover{

    transform:translateY(-8px);

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

}


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

@media(max-width:992px){

.price-card{

position:relative;

top:0;

margin-top:50px;

}

}

@media(max-width:768px){

.spec-card{

padding:22px;

}

.spec-card strong{

font-size:20px;

}

.price-card{

padding:25px;

}

.daily-price h2{

font-size:42px;

}

.price-card h3{

font-size:28px;

}

}

/*=========================================================
PART 3 - ABOUT & FEATURES
=========================================================*/

/*==========================
ABOUT SECTION
==========================*/

.car-about{
    padding:90px 0;
    background:#0f0f10;
}

.about-card,
.info-card{

    background:#181818;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:40px;

    transition:.35s;

}

.about-card:hover,
.info-card:hover{

    border-color:#C8A15A;

    transform:translateY(-5px);

    box-shadow:0 20px 50px rgba(0,0,0,.30);

}

.about-card+.about-card{
    margin-top:35px;
}

.info-card+.info-card{
    margin-top:30px;
}

/*==========================
HEADINGS
==========================*/

.about-card h2,
.about-card h3,
.info-card h4{

    color:#fff;

    font-weight:700;

    margin-bottom:25px;

}

.about-card h2{
    font-size:38px;
}

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

.info-card h4{
    font-size:22px;
}

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

.content-area{

    color:#cfcfcf;

    line-height:1.9;

    font-size:16px;

}

.content-area p{

    margin-bottom:22px;

}

.content-area strong{

    color:#fff;

}

.content-area a{

    color:#C8A15A;

}

.content-area a:hover{

    color:#fff;

}

.content-area ul{

    padding-left:22px;

    margin:20px 0;

}

.content-area li{

    margin-bottom:12px;

}

/*==========================
FEATURE SECTION
==========================*/

.car-features{

    padding:90px 0;

    background:#111111;

}

.feature-wrapper{

    background:#181818;

    border-radius:24px;

    padding:50px;

    border:1px solid rgba(255,255,255,.08);

}

.feature-card{

    background:#202020;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:25px;

    display:flex;

    align-items:center;

    gap:18px;

    height:100%;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-8px);

    border-color:#C8A15A;

    box-shadow:0 18px 45px rgba(0,0,0,.30);

}

/*==========================
ICON
==========================*/

.feature-icon{

    width:60px;

    height:60px;

    min-width:60px;

    border-radius:50%;

    background:rgba(200,161,90,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#C8A15A;

    transition:.35s;

}

.feature-card:hover .feature-icon{

    background:#C8A15A;

    color:#111;

    transform:rotate(360deg);

}

/*==========================
FEATURE CONTENT
==========================*/

.feature-content h5{

    margin:0;

    color:#fff;

    font-size:18px;

    font-weight:600;

}

.feature-content p{

    margin-top:6px;

    color:#9a9a9a;

    font-size:14px;

}

/*==========================
SECTION HEADING
==========================*/

.section-heading{

    margin-bottom:45px;

}

.section-heading .section-title{

    margin-bottom:12px;

}

.section-heading .section-desc{

    max-width:720px;

}

/*==========================
READ MORE BUTTON
==========================*/

.read-more{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:20px;

    color:#C8A15A;

    font-weight:600;

    transition:.3s;

}

.read-more:hover{

    color:#fff;

}

.read-more i{

    transition:.3s;

}

.read-more:hover i{

    transform:translateX(6px);

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:992px){

.about-card,
.info-card{

    padding:30px;

}

.feature-wrapper{

    padding:35px;

}

}

@media(max-width:768px){

.car-about,
.car-features{

    padding:70px 0;

}

.about-card h2{

    font-size:30px;

}

.about-card h3{

    font-size:24px;

}

.feature-wrapper{

    padding:25px;

}

.feature-card{

    padding:20px;

}

.feature-icon{

    width:50px;

    height:50px;

    min-width:50px;

}

.feature-content h5{

    font-size:16px;

}

}

/*=========================================================
PART 4
Related Cars
FAQ
CTA
Utilities
=========================================================*/

/*==========================
RELATED CARS
==========================*/

.related-cars{
    padding:100px 0;
    background:#0f0f10;
}

.related-cars .swiper{
    padding-bottom:60px;
}

.car-card{

    background:#181818;

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    height:100%;

}

.car-card:hover{

    transform:translateY(-12px);

    border-color:#C8A15A;

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

}

.car-image{

    position:relative;

    overflow:hidden;

}

.car-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.car-card:hover .car-image img{

    transform:scale(1.08);

}

.car-content{

    padding:28px;

}

.brand-logo-sm{

    height:36px;

    width:auto;

    margin-bottom:18px;

}

.car-content h3{

    color:#fff;

    font-size:24px;

    margin-bottom:18px;

}

.car-content .car-meta{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:20px;

}

.car-content .car-meta span{

    color:#bdbdbd;

    font-size:14px;

}

.price{

    color:#C8A15A;

    font-size:34px;

    font-weight:700;

    margin-bottom:25px;

}

.price span{

    color:#8b8b8b;

    font-size:15px;

}

/*==========================
SWIPER
==========================*/

.swiper-pagination-bullet{

    width:10px;

    height:10px;

    background:#555;

    opacity:1;

}

.swiper-pagination-bullet-active{

    width:26px;

    border-radius:20px;

    background:#C8A15A;

}

.swiper-button-next,
.swiper-button-prev{

    color:#fff;

}

/*==========================
FAQ
==========================*/

.car-faq{

    padding:100px 0;

    background:#111;

}

.custom-accordion .accordion-item{

    background:#181818;

    border:1px solid rgba(255,255,255,.08);

    margin-bottom:20px;

    border-radius:18px;

    overflow:hidden;

}

.custom-accordion .accordion-button{

    background:#181818;

    color:#fff;

    padding:26px;

    font-size:18px;

    font-weight:600;

    box-shadow:none;

}

.custom-accordion .accordion-button:not(.collapsed){

    background:#202020;

    color:#C8A15A;

}

.custom-accordion .accordion-button:focus{

    box-shadow:none;

}

.custom-accordion .accordion-body{

    padding:28px;

    color:#cfcfcf;

    line-height:1.9;

    background:#181818;

}

.accordion-button::after{

    filter:invert(1);

}

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

.car-cta{

    position:relative;

    padding:140px 0;

    background-size:cover;

    background-position:center;

    overflow:hidden;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
    rgba(0,0,0,.80),
    rgba(0,0,0,.65));

}

.car-cta .container{

    position:relative;

    z-index:2;

}

.car-cta h2{

    color:#fff;

    font-size:58px;

    font-weight:700;

    margin-bottom:20px;

}

.car-cta p{

    color:#d6d6d6;

    max-width:700px;

    margin:auto;

    margin-bottom:40px;

    line-height:1.8;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*==========================
Utilities
==========================*/

.rounded-xl{

    border-radius:22px;

}

.shadow-xl{

    box-shadow:0 30px 70px rgba(0,0,0,.30);

}

.bg-dark-card{

    background:#181818;

}

.text-gold{

    color:#C8A15A;

}

.border-gold{

    border-color:#C8A15A;

}

/*==========================
ASTRA FIX
==========================*/

.ast-container{

    max-width:1320px !important;

}

.site-content{

    background:#0f0f10;

}

.entry-content{

    margin:0;

}

.single-car-page{

    overflow:hidden;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:1200px){

.car-title{

font-size:44px;

}

.car-cta h2{

font-size:46px;

}

}

@media(max-width:992px){

.related-cars,
.car-faq,
.car-cta{

padding:80px 0;

}

.car-image img{

height:220px;

}

.car-cta h2{

font-size:38px;

}

}

@media(max-width:768px){

.car-content{

padding:20px;

}

.car-content h3{

font-size:20px;

}

.price{

font-size:28px;

}

.custom-accordion .accordion-button{

padding:20px;

font-size:16px;

}

.custom-accordion .accordion-body{

padding:20px;

}

.car-cta{

padding:90px 0;

}

.car-cta h2{

font-size:30px;

}

.car-cta p{

font-size:15px;

}

.cta-buttons{

flex-direction:column;

}

.cta-buttons .btn{

width:100%;

}

}


.spec-card{
    display:flex;
    align-items:center;
    gap:18px;
    background:#181818;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:25px;
    transition:.35s;
}

.spec-card:hover{
    border-color:#C8A15A;
    transform:translateY(-6px);
}

.spec-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(200,161,90,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#C8A15A;
    font-size:26px;
    flex-shrink:0;
    transition:.35s;
}

.spec-card:hover .spec-icon{
    background:#C8A15A;
    color:#111;
    transform:rotate(360deg);
}

.spec-content span{
    display:block;
    color:#9f9f9f;
    font-size:13px;
    margin-bottom:6px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.spec-content strong{
    display:block;
    color:#fff;
    font-size:20px;
    font-weight:700;
}

.car-meta{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.meta-box{

    display:flex;

    align-items:center;

    gap:18px;

    background:#181818;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:22px;

    transition:.35s;

}

.meta-box:hover{

    transform:translateY(-6px);

    border-color:#C8A15A;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

}

.meta-icon{

    width:55px;

    height:55px;

    min-width:55px;

    border-radius:50%;

    background:rgba(200,161,90,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#C8A15A;

    font-size:24px;

    transition:.35s;

}

.meta-box:hover .meta-icon{

    background:#C8A15A;

    color:#111;

    transform:rotate(360deg);

}

.meta-content span{

    display:block;

    color:#999;

    font-size:13px;

    margin-bottom:6px;

    text-transform:uppercase;

    letter-spacing:1px;

}

.meta-content strong{

    color:#fff;

    font-size:20px;

    font-weight:700;

}

.rent-card{

    position:sticky;

    top:120px;

    background:linear-gradient(180deg,#1d1d1f,#151515);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:35px;

    overflow:hidden;

}

.rent-price{

    margin-bottom:35px;

}

.currency{

    color:#C8A15A;

    font-size:24px;

    font-weight:600;

}

.amount{

    color:#C8A15A;

    font-size:60px;

    font-weight:700;

    line-height:1;

}

.per-day{

    color:#888;

    letter-spacing:2px;

    font-size:14px;

    text-transform:uppercase;

}

.rent-table{

    margin-bottom:35px;

}

.rent-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.rent-row:last-child{

    border:none;

}

.rent-row span{

    color:#8e8e8e;

    text-transform:uppercase;

    font-size:13px;

    letter-spacing:2px;

}

.rent-row strong{

    color:#fff;

    font-size:18px;

    font-weight:600;

}

.rent-btn{

    width:100%;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    background:#fff;

    color:#111;

    border-radius:40px;

    font-weight:700;

    text-decoration:none;

    margin-bottom:15px;

    transition:.35s;

}

.rent-btn:hover{

    background:#C8A15A;

    color:#111;

    transform:translateY(-2px);

}

.whatsapp-btn{

    width:100%;

    height:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    background:#25D366;

    color:#fff;

    border-radius:40px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.whatsapp-btn:hover{

    background:#1ebe5d;

    color:#fff;

    transform:translateY(-2px);

}

.crypto-note{

    margin-top:22px;

    text-align:center;

    color:#8d8d8d;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:12px;

}

.crypto-note i{

    margin-right:6px;

    color:#C8A15A;

}

@media(max-width:992px){

.rent-card{

position:relative;

top:0;

margin-top:40px;

}

}

.rent-card a.whatsapp-btn, .rent-card a.rent-btn {
    color: #343434;
}


.about-card{
    background:#1a1a1a;
    border-radius:18px;
    padding:40px;
    border:1px solid rgba(255,255,255,.08);
}

.info-card{
    background:#1a1a1a;
    border-radius:18px;
    padding:30px;
    border:1px solid rgba(255,255,255,.08);
}

.section-title{
    color:#fff;
    font-size:32px;
    margin-bottom:25px;
}

.content-area{
    color:#cfcfcf;
    line-height:1.9;
}

.car-faq{
    background:#111;
}

.custom-accordion .accordion-item{
    background:#1b1b1b;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    margin-bottom:18px;
    overflow:hidden;
}

.custom-accordion .accordion-button{
    background:#1b1b1b;
    color:#fff;
    font-size:18px;
    font-weight:600;
    padding:24px;
    box-shadow:none;
}

.custom-accordion .accordion-button:not(.collapsed){
    background:#202020;
    color:#C8A15A;
}

.custom-accordion .accordion-body{
    color:#cfcfcf;
    line-height:1.8;
    padding:25px;
}

.custom-accordion .accordion-button:focus{
    box-shadow:none;
}

.car-cta{

position:relative;

padding:120px 0;

background-size:cover;

background-position:center;

border-radius:30px;

overflow:hidden;

margin:80px 0;

}

.cta-overlay{

position:absolute;

left:0;

right:0;

top:0;

bottom:0;

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

}

.car-cta .container{

position:relative;

z-index:2;

}

.car-cta h2{

color:#fff;

font-size:54px;

font-weight:700;

margin-bottom:20px;

}

.car-cta p{

color:#d8d8d8;

font-size:18px;

max-width:650px;

margin:auto;

margin-bottom:40px;

}

.cta-buttons{

display:flex;

gap:20px;

justify-content:center;

flex-wrap:wrap;

}

.cta-subtitle{

color:#C8A15A;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:15px;

display:block;

}