*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#ffffff;
    color:#111111;
    line-height:1.6;
}

body.light-page{
    background:#ffffff;
    color:#111111;
}

.logo,
.hero h1,
.page-hero-simple h1,
.section-title h2,
.light-card-content h3,
.home-why-card h3,
.footer h3,
.footer h4,
.booking-box h2,
.why-stat-card h3,
.why-advantage-card h3,
.why-process-card h3,
.why-cta-banner h2,
.home-contact-text h2{
    font-family:'Cormorant Garamond', serif;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1250px;
    margin:0 auto;
}

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title p{
    color:#c9a14a;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    margin-bottom:10px;
    font-weight:500;
}

.section-title h2{
    font-size:42px;
    color:#ffffff;
    font-weight:700;
    letter-spacing:0.5px;
}

.section-title-dark h2{
    color:#111111;
}

.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:40px;
    font-weight:600;
    letter-spacing:0.5px;
    transition:0.3s ease;
}

.btn-gold{
    background:#c9a14a;
    color:#111111;
}

.btn-gold:hover{
    background:#e5c97b;
}

.btn-dark{
    background:#111111;
    color:#ffffff;
    border:1px solid #c9a14a;
}

.btn-dark:hover{
    background:#c9a14a;
    color:#111111;
}

.btn-outline{
    border:1px solid #c9a14a;
    color:#c9a14a;
    background:transparent;
}

.btn-outline:hover{
    background:#c9a14a;
    color:#111111;
}

.btn-outline-light{
    border:1px solid #ffffff;
    color:#ffffff;
    background:transparent;
}

.btn-outline-light:hover{
    background:#ffffff;
    color:#111111;
}

.center-button{
    text-align:center;
    margin-top:35px;
}

.small-title{
    color:#c9a14a;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    margin-bottom:10px;
    font-weight:500;
}

/* HEADER */
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(10,10,10,0.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid rgba(201,161,74,0.15);
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:16px 0;
}

.logo{
    display:flex;
    align-items:center;
    letter-spacing:1px;
}

.logo img{
    height:80px;
    width:auto;
    display:block;
    object-fit:contain;
}

.nav-links{
    display:flex;
    gap:24px;
    flex-wrap:wrap;
}

.nav-links a{
    color:#ffffff;
    font-size:15px;
    font-weight:500;
    letter-spacing:0.5px;
    transition:0.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color:#c9a14a;
}

/* HERO HOME */
.hero{
    position:relative;
    min-height:100vh;
    background:url('../images/hero/test.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    padding-top:130px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(0,0,0,0.82), rgba(0,0,0,0.40));
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:720px;
}

.hero-subtitle{
    color:#c9a14a;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
    font-weight:500;
}

.hero h1{
    font-size:68px;
    line-height:1.05;
    margin-bottom:20px;
    font-weight:700;
    letter-spacing:1px;
    color:#ffffff;
}

.hero-text{
    font-size:18px;
    color:#ededed;
    margin-bottom:30px;
    max-width:620px;
    font-weight:400;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* SIMPLE PAGE HERO */
.page-hero-simple{
    position:relative;
    min-height:62vh;
    background:linear-gradient(135deg, #0f0f0f, #171717, #202020);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:140px 0 70px;
}

.page-hero-simple-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(0,0,0,0.45), rgba(0,0,0,0.20));
}

.page-hero-simple-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.page-hero-simple h1{
    font-size:62px;
    line-height:1.08;
    font-weight:700;
    color:#ffffff;
}

/* BOOKING */
.booking-box-section{
    margin-top:-70px;
    position:relative;
    z-index:10;
}

.booking-box{
    background:#ffffff;
    color:#111111;
    border-radius:18px;
    padding:35px;
    box-shadow:0 18px 45px rgba(0,0,0,0.25);
}

.booking-box h2{
    margin-bottom:25px;
    font-size:34px;
    font-weight:700;
    color:#111111;
}

.booking-form{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:18px;
    align-items:end;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    margin-bottom:8px;
    font-weight:600;
    color:#333333;
    font-size:14px;
}

.form-group input,
.form-group select{
    padding:13px 14px;
    border:1px solid #d8d8d8;
    border-radius:10px;
    font-size:15px;
    outline:none;
    font-family:'Poppins', sans-serif;
}

.button-group{
    justify-content:end;
}

/* HOME MIXED PAGE */
.home-light-section{
    padding:95px 0;
    background:#ffffff;
}

.home-soft-section{
    padding:95px 0;
    background:#f8f7f4;
}

.home-light-grid{
    display:grid;
    gap:28px;
}

.home-cars-grid-light{
    grid-template-columns:repeat(3, 1fr);
}

.home-cities-grid-light{
    grid-template-columns:repeat(3, 1fr);
}

.light-card{
    background:#ffffff;
    border:1px solid rgba(201,161,74,0.25);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.light-card:hover{
    transform:translateY(-6px);
}

.light-card img{
    height:240px;
    object-fit:cover;
    object-position:center;
}

.light-card-content{
    padding:24px;
}

.light-card-content h3{
    margin-bottom:10px;
    font-size:30px;
    color:#111111;
    font-weight:700;
    line-height:1.1;
}

.light-card-content p{
    color:#555555;
    margin-bottom:18px;
    font-size:14px;
}

.home-why-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.home-why-card{
    background:#ffffff;
    border:1px solid rgba(201,161,74,0.25);
    border-radius:22px;
    padding:30px 24px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.home-why-card:hover{
    transform:translateY(-6px);
}

.home-why-icon{
    width:68px;
    height:68px;
    margin:0 auto 18px;
    border-radius:50%;
    background:linear-gradient(135deg, #c9a14a, #e5c97b);
    color:#111111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    box-shadow:0 10px 20px rgba(201,161,74,0.22);
}

.home-why-card h3{
    color:#111111;
    font-size:30px;
    margin-bottom:10px;
    line-height:1.1;
}

.home-why-card p{
    color:#555555;
    font-size:14px;
}

.home-contact-card{
    background:#ffffff;
    border:1px solid rgba(201,161,74,0.25);
    border-radius:26px;
    box-shadow:0 12px 30px rgba(0,0,0,0.05);
    padding:38px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.home-contact-text{
    max-width:700px;
}

.home-contact-text h2{
    font-size:42px;
    color:#111111;
    margin-bottom:14px;
    line-height:1.1;
}

.home-contact-text p:last-child{
    color:#555555;
}

.home-contact-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* WHY US / CITIES LIGHT SECTIONS */
.why-light-section{
    padding:90px 0;
    background:#ffffff;
}

.why-soft-section{
    padding:90px 0;
    background:#f8f7f4;
}

.why-stats-grid{
    max-width:1000px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:24px;
}

.why-stat-card{
    background:#ffffff;
    border:1px solid rgba(201,161,74,0.25);
    border-radius:22px;
    padding:32px 28px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.why-stat-card:hover{
    transform:translateY(-6px);
}

.why-icon-circle{
    width:72px;
    height:72px;
    margin:0 auto 18px;
    border-radius:50%;
    background:linear-gradient(135deg, #c9a14a, #e5c97b);
    color:#111111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    box-shadow:0 10px 20px rgba(201,161,74,0.25);
}

.why-stat-card h3{
    font-size:30px;
    color:#111111;
    margin-bottom:10px;
    line-height:1.1;
}

.why-stat-card p{
    color:#555555;
    font-size:14px;
}

.why-advantages-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.why-advantage-card{
    background:#ffffff;
    border:1px solid rgba(201,161,74,0.22);
    border-radius:22px;
    padding:30px 26px;
    transition:0.3s ease;
    box-shadow:0 12px 28px rgba(0,0,0,0.04);
}

.why-advantage-card:hover{
    transform:translateY(-6px);
}

.why-advantage-icon{
    width:58px;
    height:58px;
    border-radius:16px;
    background:#111111;
    color:#c9a14a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:18px;
}

.why-advantage-card h3{
    color:#111111;
    font-size:30px;
    margin-bottom:10px;
    line-height:1.1;
}

.why-advantage-card p{
    color:#555555;
    font-size:14px;
}

.why-process-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.why-process-card{
    background:#ffffff;
    border:1px solid rgba(201,161,74,0.22);
    border-radius:22px;
    padding:32px 26px;
    text-align:center;
    box-shadow:0 12px 28px rgba(0,0,0,0.04);
    transition:0.3s ease;
}

.why-process-card:hover{
    transform:translateY(-6px);
}

.why-process-number{
    width:62px;
    height:62px;
    border-radius:50%;
    background:#111111;
    color:#c9a14a;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
    font-weight:700;
    font-size:18px;
}

.why-process-card h3{
    color:#111111;
    font-size:30px;
    margin-bottom:10px;
    line-height:1.1;
}

.why-process-card p{
    color:#555555;
    font-size:14px;
}

.why-cta-banner{
    padding:85px 0;
    background:linear-gradient(to right, #111111, #1b1b1b);
}

.why-cta-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.why-cta-banner h2{
    font-size:42px;
    max-width:720px;
    color:#ffffff;
    line-height:1.1;
}

/* CITIES PAGE */
.cities-page-intro{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.cities-page-intro p{
    color:#555555;
    font-size:16px;
}

.cities-page-grid{
    grid-template-columns:repeat(3, 1fr);
}

.cities-benefits-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
    max-width:1100px;
    margin:0 auto;
}

/* FOOTER */
.footer{
    background:#0a0a0a;
    padding-top:60px;
}

.footer-content{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:30px;
    padding-bottom:35px;
}

.footer h3,
.footer h4{
    color:#ffffff;
    margin-bottom:15px;
    font-weight:700;
}

.footer h3{
    font-size:32px;
}

.footer h4{
    font-size:28px;
}

.footer p,
.footer li{
    color:#c7c7c7;
    margin-bottom:10px;
    font-size:14px;
}

.footer a{
    color:#c7c7c7;
    transition:0.3s;
}

.footer a:hover{
    color:#c9a14a;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    padding:20px 0;
    color:#bdbdbd;
    font-size:14px;
}

/* RESPONSIVE */
@media (max-width: 1150px){
    .booking-form{
        grid-template-columns:repeat(2, 1fr);
    }

    .home-cars-grid-light{
        grid-template-columns:repeat(2, 1fr);
    }

    .home-cities-grid-light,
    .cities-page-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .home-why-grid,
    .why-stats-grid,
    .why-advantages-grid,
    .why-process-grid,
    .cities-benefits-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .footer-content{
        grid-template-columns:1fr 1fr;
    }

    .why-cta-content,
    .home-contact-card{
        flex-direction:column;
        align-items:flex-start;
    }
}


@media (max-width: 768px){
    .container{
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar{
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
    }

    .nav-links{
        width: 100%;
        justify-content: center;
        gap: 12px;
        row-gap: 8px;
    }

    .nav-links a{
        font-size: 14px;
    }

    .logo img{
        height: 58px;
    }

    .hero{
        min-height: auto;
        padding: 150px 0 70px;
    }

    .hero h1,
    .page-hero-simple h1,
    .hero-left h1{
        font-size: 38px;
        line-height: 1.15;
    }

    .hero-text{
        font-size: 15px;
    }

    .booking-box-section{
        margin-top: 0;
        padding-top: 30px;
    }

    .booking-form,
    .home-cars-grid-light,
    .home-cities-grid-light,
    .home-why-grid,
    .why-stats-grid,
    .why-advantages-grid,
    .why-process-grid,
    .cities-page-grid,
    .cities-benefits-grid,
    .home-cars-premium-grid,
    .contact-page-grid,
    .booking-page-grid{
        grid-template-columns: 1fr;
    }

    .why-cta-content,
    .home-contact-card,
    .hero-content,
    .home-car-bottom,
    .car-card-bottom{
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content,
    .footer-content-custom{
        grid-template-columns: 1fr;
    }

    .section-title h2,
    .home-contact-text h2,
    .why-cta-banner h2,
    .cars-results-top h2,
    .cars-filter-header h2,
    .contact-info-header h2,
    .contact-form-header h2,
    .booking-form-head h2,
    .booking-car-main h2{
        font-size: 32px;
    }

    .light-card-content h3,
    .home-why-card h3,
    .footer h4,
    .why-stat-card h3,
    .why-advantage-card h3,
    .why-process-card h3,
    .car-card h3,
    .home-car-premium-content h3{
        font-size: 26px;
    }

    .home-contact-card,
    .contact-form-card,
    .contact-info-card,
    .booking-form-panel,
    .booking-car-panel,
    .cars-filters-box{
        padding: 22px;
    }

    .btn,
    .hero-search-btn,
    .booking-whatsapp-btn,
    .contact-whatsapp-btn,
    .car-book-btn,
    .home-car-book-btn{
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}



/* BOOKING PAGE */
.booking-hero{
    min-height:52vh;
}

.booking-page-section{
    padding:90px 0;
    background:#f8f7f4;
}

.booking-page-grid{
    display:grid;
    grid-template-columns:1.15fr 0.95fr;
    gap:34px;
    align-items:start;
}

.booking-car-panel,
.booking-form-panel{
    background:#ffffff;
    border:1px solid rgba(201,161,74,0.20);
    border-radius:28px;
    box-shadow:0 12px 30px rgba(0,0,0,0.05);
    overflow:hidden;
}

.booking-car-panel{
    padding:22px;
}

.booking-car-image-box{
    background:#f7f7f7;
    border:1px solid rgba(0,0,0,0.05);
    border-radius:24px;
    overflow:hidden;
    margin-bottom:24px;
}

.booking-car-image-box img{
    width:100%;
    height:480px;
    object-fit:contain;
    padding:20px;
}

.booking-car-main{
    margin-bottom:28px;
}

.booking-car-brand{
    color:#c9a14a;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
    margin-bottom:10px;
}

.booking-car-main h2{
    font-family:'Cormorant Garamond', serif;
    font-size:56px;
    line-height:1;
    color:#111111;
    margin-bottom:12px;
}

.booking-car-price{
    font-size:20px;
    font-weight:600;
    color:#111111;
    margin-bottom:14px;
}

.booking-car-price span{
    color:#c9a14a;
    font-size:38px;
    font-weight:700;
}

.booking-car-description{
    color:#555555;
    font-size:15px;
    max-width:820px;
}

.booking-specs-grid{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:16px;
    margin-bottom:28px;
}

.booking-spec-card{
    background:#faf8f5;
    border:1px solid rgba(201,161,74,0.15);
    border-radius:18px;
    padding:18px 14px;
    text-align:center;
}

.booking-spec-card span{
    display:block;
    font-size:13px;
    color:#777777;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:8px;
    font-weight:600;
}

.booking-spec-card strong{
    color:#111111;
    font-size:18px;
}

.booking-features-box h3{
    color:#c9a14a;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:16px;
    margin-bottom:18px;
    font-weight:700;
}

.booking-features-list{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.booking-features-list span{
    padding:12px 18px;
    border:1px solid rgba(201,161,74,0.45);
    border-radius:999px;
    background:#fffdf8;
    color:#c9a14a;
    font-weight:600;
}

.booking-form-panel{
    padding:34px;
}

.booking-form-head{
    margin-bottom:30px;
}

.booking-form-head h2{
    font-size:54px;
    line-height:1;
    margin-bottom:14px;
    color:#111111;
    font-family:'Cormorant Garamond', serif;
}

.booking-form-head p{
    color:#6d7485;
    font-size:16px;
}

.booking-details-form{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.booking-form-block{
    border-top:1px solid rgba(0,0,0,0.08);
    padding-top:24px;
}

.booking-form-block h3{
    color:#c9a14a;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:16px;
    margin-bottom:18px;
    font-weight:700;
}

.booking-form-block h3 i{
    margin-right:10px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.full-width{
    width:100%;
}

.booking-details-form .form-group{
    display:flex;
    flex-direction:column;
}

.booking-details-form label{
    margin-bottom:8px;
    font-weight:600;
    color:#222222;
    font-size:15px;
}

.booking-details-form input,
.booking-details-form select,
.booking-details-form textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #dddddd;
    border-radius:18px;
    font-size:15px;
    outline:none;
    font-family:'Poppins', sans-serif;
    background:#ffffff;
}

.booking-details-form textarea{
    resize:vertical;
}

.booking-details-form .full-width{
    margin-bottom: 18px;
}

.booking-details-form .full-width:last-child{
    margin-bottom: 0;
}

.booking-rule-note{
    margin-top:12px;
    color:#7a6b42;
    background:#fff8e8;
    border:1px solid rgba(201,161,74,0.25);
    border-radius:16px;
    padding:14px 16px;
    font-size:14px;
}

.optional-text{
    color:#888888;
    font-weight:500;
    font-size:14px;
}

.booking-summary-box{
    background:#faf8f5;
    border:1px solid rgba(201,161,74,0.18);
    border-radius:22px;
    padding:22px;
}

.booking-summary-line{
    display:flex;
    justify-content:space-between;
    gap:16px;
    padding:9px 0;
    color:#444444;
}

.booking-summary-line strong{
    color:#111111;
    text-align:right;
}

.booking-total-line{
    margin-top:8px;
    padding-top:16px;
    border-top:1px solid rgba(0,0,0,0.08);
    font-size:18px;
}

.booking-total-line strong{
    color:#1f9d4c;
    font-size:22px;
}

.booking-whatsapp-btn{
    width:100%;
    text-align:center;
    padding:16px 24px;
    font-size:16px;
    border:none;
    cursor:pointer;
    background:#25d366;
    color:#ffffff;
    border-radius:40px;
    font-weight:700;
    transition:0.3s ease;
}

.booking-whatsapp-btn:hover{
    background:#1ebe5a;
}

.booking-whatsapp-btn i{
    margin-right:10px;
    font-size:18px;
}

@media (max-width: 1150px){
    .booking-page-grid{
        grid-template-columns:1fr;
    }

    .booking-specs-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media (max-width: 768px){
    .booking-page-section{
        padding:60px 0;
    }

    .booking-form-panel,
    .booking-car-panel{
        padding:20px;
    }

    .booking-car-image-box img{
        height:280px;
    }

    .booking-car-main h2,
    .booking-form-head h2{
        font-size:38px;
    }

    .booking-specs-grid,
    .form-row{
        grid-template-columns:1fr;
    }

    .booking-spec-card strong{
        font-size:16px;
    }

    .booking-summary-line{
        flex-direction:column;
        align-items:flex-start;
    }

    .booking-summary-line strong{
        text-align:left;
    }
}

/* CARS PAGE */
.cars-hero{
    min-height:52vh;
}

.cars-page-section{
    padding:90px 0;
    background:#f8f7f4;
}

.cars-layout{
    display:flex;
    flex-direction:column;
    gap:36px;
}

.cars-filters-top-wrapper{
    display:flex;
    justify-content:center;
    width:100%;
}

.cars-filters-box{
    width:100%;
    max-width:1240px;
    background:#ffffff;
    border:1px solid rgba(201,161,74,0.20);
    border-radius:24px;
    box-shadow:0 12px 30px rgba(0,0,0,0.05);
    padding:28px;
}

.cars-filters-horizontal{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.cars-filter-header{
    text-align:center;
}

.cars-filter-header p{
    color:#c9a14a;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:8px;
    font-weight:600;
}

.cars-filter-header h2{
    font-family:'Cormorant Garamond', serif;
    font-size:40px;
    line-height:1.1;
    color:#111111;
}

.cars-filters-row{
    display:grid;
    grid-template-columns:repeat(6, minmax(0, 1fr));
    gap:16px;
    align-items:end;
}

.cars-filter-group{
    margin-bottom:0;
    min-width:0;
}

.cars-filter-group label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#222222;
}

.cars-filter-group select,
.cars-filter-group input{
    width:100%;
    padding:14px 16px;
    border:1px solid #dddddd;
    border-radius:16px;
    font-size:15px;
    font-family:'Poppins', sans-serif;
    outline:none;
    background:#ffffff;
}

.cars-filter-actions-horizontal{
    display:flex;
    gap:10px;
    align-items:end;
    min-width:0;
}

.cars-filter-actions-bottom{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:18px;
    flex-wrap:wrap;
}

.cars-filter-actions-bottom .btn{
    min-width:180px;
    text-align:center;
    border:none;
    cursor:pointer;
}

.cars-filter-actions-bottom .btn-outline{
    border:1px solid #c9a14a;
}

.cars-results-section{
    width:100%;
}

.cars-results-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    margin-bottom:24px;
}

.cars-results-top h2{
    font-family:'Cormorant Garamond', serif;
    font-size:42px;
    color:#111111;
    line-height:1.1;
}

.cars-results-count{
    color:#666666;
    font-weight:500;
    font-size:14px;
}

.cars-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:18px;
}

.car-card{
    display:flex;
    flex-direction:column;
    background:linear-gradient(180deg, #232323 0%, #101010 100%);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 14px 30px rgba(0,0,0,0.14);
    min-width:0;
}

.car-card-image{
    background:#1a1a1a;
    padding:14px 14px 0;
}

.car-card-image img{
    width:100%;
    height:170px;
    object-fit:contain;
    border-radius:18px 18px 0 0;
}

.car-card-content{
    padding:16px 14px 16px;
    min-width:0;
}

.car-card-brand{
    color:#d7b253;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    font-weight:600;
    margin-bottom:6px;
}

.car-card h3{
    font-family:'Cormorant Garamond', serif;
    color:#ffffff;
    font-size:26px;
    line-height:1.05;
    margin-bottom:14px;
    word-break:break-word;
}

.car-card-specs,
.car-card-features{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}

.car-card-specs{
    margin-bottom:10px;
}

.car-card-specs span{
    padding:6px 9px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.05);
    color:#cfcfcf;
    font-size:11px;
    line-height:1.2;
}

.car-card-features{
    margin-bottom:16px;
}

.car-card-features span{
    padding:6px 9px;
    border-radius:999px;
    border:1px solid rgba(215,178,83,0.35);
    color:#d7b253;
    background:rgba(215,178,83,0.08);
    font-weight:600;
    font-size:11px;
    line-height:1.2;
}

.car-card-bottom{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:12px;
}

.car-card-price{
    display:flex;
    align-items:end;
    gap:5px;
    flex-wrap:wrap;
    min-width:0;
}

.car-card-price strong{
    color:#d7b253;
    font-size:20px;
    line-height:1;
    font-weight:700;
}

.car-card-price span{
    color:#9b9b9b;
    font-size:13px;
    margin-bottom:1px;
}

.car-book-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:9px 12px;
    border-radius:14px;
    background:#d7b253;
    color:#111111;
    font-weight:700;
    font-size:13px;
    transition:0.3s ease;
    text-align:center;
    line-height:1.3;
    flex-shrink:0;
}

.car-book-btn:hover{
    background:#e7c46b;
}

.no-results-message{
    margin-top:18px;
    background:#ffffff;
    border:1px solid rgba(201,161,74,0.20);
    border-radius:18px;
    padding:18px 20px;
    color:#666666;
}

@media (max-width: 1150px){
    .cars-filters-row{
        grid-template-columns:repeat(3, minmax(0, 1fr));
    }

    .cars-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px){
    .cars-page-section{
        padding:60px 0;
    }

    .cars-filter-header h2,
    .cars-results-top h2{
        font-size:34px;
    }

    .cars-filters-row{
        grid-template-columns:1fr;
    }

    .cars-filter-actions-bottom{
        flex-direction:column;
        align-items:stretch;
    }

    .cars-filter-actions-bottom .btn{
        width:100%;
    }

    .cars-results-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .cars-grid{
        grid-template-columns:1fr;
    }

    .car-card h3{
        font-size:30px;
    }

    .car-card-image img{
        height:200px;
    }

    .car-card-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .car-book-btn{
        width:100%;
    }
}

/* HOME PREMIUM CARS */
.home-cars-premium-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:20px;
}

.home-car-premium-card{
    display:flex;
    flex-direction:column;
    background:linear-gradient(180deg, #232323 0%, #101010 100%);
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 16px 35px rgba(0,0,0,0.14);
    min-width:0;
}

.home-car-premium-image{
    background:#1a1a1a;
    padding:16px 16px 0;
}

.home-car-premium-image img{
    width:100%;
    height:200px;
    object-fit: contain;
    background: #1a1a1a;
    border-radius:22px 22px 0 0;
}

.home-car-premium-content{
    padding:18px 16px 18px;
    min-width:0;
}

.home-car-brand{
    color:#d7b253;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    font-weight:600;
    margin-bottom:8px;
}

.home-car-premium-content h3{
    font-family:'Cormorant Garamond', serif;
    color:#ffffff;
    font-size:28px;
    line-height:1.05;
    margin-bottom:18px;
    word-break:break-word;
}

.home-car-specs,
.home-car-features{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.home-car-specs{
    margin-bottom:12px;
}

.home-car-specs span{
    padding:7px 10px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.05);
    color:#cfcfcf;
    font-size:12px;
    line-height:1.2;
}

.home-car-features{
    margin-bottom:20px;
}

.home-car-features span{
    padding:7px 10px;
    border-radius:999px;
    border:1px solid rgba(215,178,83,0.35);
    color:#d7b253;
    background:rgba(215,178,83,0.08);
    font-weight:600;
    font-size:12px;
    line-height:1.2;
}

.home-car-bottom{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:14px;
}

.home-car-price{
    display:flex;
    align-items:end;
    gap:6px;
    flex-wrap:wrap;
    min-width:0;
}

.home-car-price strong{
    color:#d7b253;
    font-size:20px;
    line-height:1;
    font-weight:700;
}

.home-car-price span{
    color:#9b9b9b;
    font-size:14px;
    margin-bottom:1px;
}

.home-car-book-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:10px 14px;
    border-radius:16px;
    background:#d7b253;
    color:#111111;
    font-weight:700;
    font-size:14px;
    transition:0.3s ease;
    text-align:center;
    line-height:1.3;
    flex-shrink:0;
}

.home-car-book-btn:hover{
    background:#e7c46b;
}

@media (max-width: 1200px){
    .home-cars-premium-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px){
    .home-cars-premium-grid{
        grid-template-columns:1fr;
    }

    .home-car-premium-content h3{
        font-size:32px;
    }

    .home-car-premium-image img{
        height:220px;
    }

    .home-car-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .home-car-book-btn{
        width:100%;
    }
}

/* CONTACT PAGE */
.contact-hero{
    min-height:52vh;
}

.contact-page-section{
    padding:90px 0;
    background:#f8f7f4;
}

.contact-page-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:32px;
    align-items:start;
}

.contact-left-column{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.contact-map-card,
.contact-info-card,
.contact-form-card{
    background:#ffffff;
    border:1px solid rgba(201,161,74,0.20);
    border-radius:28px;
    box-shadow:0 12px 30px rgba(0,0,0,0.05);
    overflow:hidden;
}

.contact-map-card{
    height:420px;
}

.contact-info-card{
    padding:30px;
}

.contact-info-header{
    margin-bottom:24px;
}

.contact-info-header p,
.contact-form-header p{
    color:#c9a14a;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:8px;
    font-weight:600;
}

.contact-info-header h2,
.contact-form-header h2{
    font-family:'Cormorant Garamond', serif;
    font-size:42px;
    line-height:1.1;
    color:#111111;
}

.contact-info-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-info-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:16px 0;
    border-top:1px solid rgba(0,0,0,0.06);
}

.contact-info-item:first-child{
    border-top:none;
    padding-top:0;
}

.contact-info-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background:#111111;
    color:#c9a14a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.contact-info-item h3{
    color:#111111;
    font-size:18px;
    margin-bottom:6px;
    font-weight:700;
}

.contact-info-item p{
    color:#666666;
    font-size:15px;
    line-height:1.6;
}

.contact-form-card{
    padding:32px;
}

.contact-form-header{
    margin-bottom:26px;
}

.contact-form-header span{
    display:block;
    margin-top:12px;
    color:#666666;
    font-size:15px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form .form-group{
    display:flex;
    flex-direction:column;
}

.contact-form label{
    margin-bottom:8px;
    font-weight:600;
    color:#222222;
    font-size:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #dddddd;
    border-radius:18px;
    font-size:15px;
    outline:none;
    font-family:'Poppins', sans-serif;
    background:#ffffff;
}

.contact-form textarea{
    resize:vertical;
}

.contact-whatsapp-btn{
    width:100%;
    text-align:center;
    padding:16px 24px;
    font-size:16px;
    border:none;
    cursor:pointer;
    background:#25d366;
    color:#ffffff;
    border-radius:40px;
    font-weight:700;
    transition:0.3s ease;
}

.contact-whatsapp-btn:hover{
    background:#1ebe5a;
}

.contact-whatsapp-btn i{
    margin-right:10px;
    font-size:18px;
}

@media (max-width: 992px){
    .contact-page-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width: 768px){
    .contact-page-section{
        padding:60px 0;
    }

    .contact-map-card{
        height:320px;
    }

    .contact-info-card,
    .contact-form-card{
        padding:22px;
    }

    .contact-info-header h2,
    .contact-form-header h2{
        font-size:34px;
    }
}

@media (max-width: 640px){
    .hero-booking-box{
        padding:20px;
    }

    .hero-booking-box h3{
        font-size:32px;
    }

    .hero-booking-form{
        grid-template-columns:1fr;
    }

    .hero-search-btn{
        grid-column:span 1;
    }
}

.hero .container{
    max-width: 1400px;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding-top:40px;
}

.hero-left{
    flex:1;
    max-width:500px;
    margin-left:-30px;
}

.hero-right{
    flex:1;
    display:flex;
    justify-content:flex-end;
    padding-right:10px;
    margin-top:-50px;
}
.hero-subtitle{
    margin-bottom:18px;
}

.hero-left h1{
    margin-bottom:18px;
}

.hero-text{
    margin-top:0;
    margin-bottom:28px;
    line-height:1.5;
    max-width:620px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    margin-bottom:34px;
    align-items:center;
}

.btn-whatsapp-hero{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    padding:14px 28px;
    border-radius:999px;
    background:#25d366;
    color:#ffffff;
    font-weight:700;
    border:1px solid #25d366;
    transition:0.3s ease;
}

.btn-whatsapp-hero:hover{
    background:#1ebe5a;
    border-color:#1ebe5a;
    color:#ffffff;
}

.hero-stats{
    display:flex;
    gap:0;
    margin-top:8px;
    align-items:flex-start;
    flex-wrap:wrap;
}

.hero-stat-item{
    min-width:170px;
    padding-right:26px;
    margin-right:26px;
    border-right:1px solid rgba(255,255,255,0.18);
}

.hero-stat-item:last-child{
    border-right:none;
    margin-right:0;
    padding-right:0;
}

.hero-stat-item strong{
    display:block;
    color:#d7b253;
    font-size:52px;
    line-height:0.95;
    font-family:'Cormorant Garamond', serif;
    font-weight:700;
    margin-bottom:10px;
}

.hero-stat-item span{
    display:block;
    color:rgba(255,255,255,0.72);
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:500;
    line-height:1.6;
}

.hero-stat-item{
    min-width:170px;
    padding-right:26px;
    margin-right:26px;
    border-right:1px solid rgba(255,255,255,0.18);
    padding-top:6px;
    padding-bottom:6px;
}

.hero-booking-box{
    width:100%;
    max-width:380px;
    background:rgba(0,0,0,0.78);
    padding:26px;
    border-radius:22px;
    border:1px solid rgba(201,161,74,0.28);
    backdrop-filter:blur(10px);
}

.hero-booking-box h3{
    color:#ffffff;
    font-family:'Cormorant Garamond', serif;
    font-size:34px;
    margin-bottom:20px;
    line-height:1.1;
}

#hero-booking-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.hero-form-group{
    display:flex;
    flex-direction:column;
}

.hero-form-group label{
    color:#c9a14a;
    font-size:12px;
    margin-bottom:7px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
}

.hero-form-group input,
.hero-form-group select{
    padding:14px 16px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.16);
    background:rgba(255,255,255,0.05);
    color:#ffffff;
    font-size:15px;
    outline:none;
}

.hero-form-group option{
    color:#111111;
}

.hero-search-btn{
    margin-top:6px;
    min-height:52px;
    padding:14px;
    background:#c9a14a;
    border:none;
    border-radius:12px;
    font-weight:700;
    font-size:15px;
    cursor:pointer;
    transition:0.3s ease;
}

.hero-search-btn:hover{
    background:#ddb75b;
}

@media (max-width: 1200px){
    .hero-left{
        margin-left:0;
    }

    .hero-content{
        gap:24px;
    }

    .hero-stat-item{
        min-width:150px;
        padding-right:18px;
        margin-right:18px;
    }

    .hero-stat-item strong{
        font-size:42px;
    }
}

@media (max-width: 992px){
    .hero-content{
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    .hero-left,
    .hero-right{
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        padding-right: 0;
    }

    .hero-right{
        justify-content: center;
        margin-top: 0;
    }

    .hero-booking-box{
        max-width: 100%;
    }

    .hero-stats{
        gap: 16px;
    }

    .hero-stat-item{
        border-right: none;
        margin-right: 0;
        padding-right: 0;
        min-width: 130px;
    }
}

@media (max-width: 640px){
    .hero-stat-item{
        min-width: 100%;
    }

    .hero-stat-item strong{
        font-size: 32px;
    }

    .hero-booking-box h3{
        font-size: 28px;
    }

    .hero-buttons{
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-whatsapp-hero{
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: whatsappPulse 1.6s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp i {
    font-size: 34px;
    color: #fff;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.32);
}

.floating-whatsapp::before,
.floating-whatsapp::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.35);
    z-index: -1;
    animation: whatsappRing 1.8s infinite;
}

.floating-whatsapp::after {
    animation-delay: 0.9s;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes whatsappRing {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 60px;
        height: 60px;
        right: 16px;
        bottom: 16px;
    }

    .floating-whatsapp i {
        font-size: 30px;
    }
}

.footer-title-gold {
    color: #c8a96b !important;
}

/* Layout */
.footer-content-custom {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 12px;
    margin: 15px 0;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: #c8a96b;
    color: #000;
}

/* Payment */
.footer-payment {
    margin-top: 15px;
}

.footer-payment-text {
    display: block;
    margin-bottom: 8px;
    color: #c8a96b;
    font-weight: 500;
}

.footer-payment-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    color: #fff;
}

.cashplus {
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
}

/* Bottom center */
.footer-bottom-center {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-content-custom {
        grid-template-columns: 1fr;
    }
}

.home-slider-section {
    padding: 10px 0;
}

.home-slider {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.home-slide {
    display: none;
}

.home-slide.active {
    display: block;
}

.home-slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 25px;
}

/* BADGE */
.home-slider-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #c8a96b;
    padding: 18px 25px;
    border-radius: 18px;
    color: #000;
}

.home-slider-badge strong {
    font-size: 32px;
    display: block;
}

.home-slider-badge span {
    font-size: 13px;
    letter-spacing: 1px;
}

/* BUTTONS */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.5);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.slider-btn:hover {
    background: #c8a96b;
    color: #000;
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .home-slide img {
        height: 300px;
    }

    .home-slider-badge {
        padding: 12px 15px;
    }

    .home-slider-badge strong {
        font-size: 24px;
    }
}

html, body{
    overflow-x: hidden;
}

img{
    max-width: 100%;
    height: auto;
}

.hero-left,
.hero-right,
.home-contact-text,
.light-card,
.home-car-premium-card,
.car-card,
.contact-form-card,
.contact-info-card,
.booking-form-panel,
.booking-car-panel,
.cars-filters-box{
    min-width: 0;
}