:root{
    --red:#e10613;
    --dark:#07080b;
    --dark-2:#11141a;
    --gray:#aeb3bc;
    --line:rgba(255,255,255,.13);
    --white:#fff;
    --yellow:#f5c400;
}

/* Reset / base */
*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
    margin:0;
    font-family:Montserrat,Arial,sans-serif;
    background:var(--dark);
    color:var(--white);
    overflow-x:hidden;
    top:0!important;
}

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

img{
    max-width:100%;
    display:block;
}

/* Header */
.site-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:50;
    height:82px;
    display:flex;
    align-items:center;
    gap:28px;
    padding:14px 5vw;
    background:linear-gradient(180deg,rgba(0,0,0,.84),rgba(0,0,0,.25));
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.brand img{
    width:220px;
}

.main-nav{
    display:flex;
    gap:24px;
    margin-left:auto;
}

.main-nav a{
    font-weight:800;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:#dfe3ea;
}

.main-nav a.active,
.main-nav a:hover{
    color:var(--red);
}

.nav-toggle{
    display:none;
    background:transparent;
    border:0;
    color:white;
    font-size:32px;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

/* Buttons */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    padding:13px 22px;
    font-weight:900;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:.04em;
    border:1px solid transparent;
}

.btn-red{
    background:var(--red);
    color:#fff;
    box-shadow:0 18px 40px rgba(225,6,19,.28);
}

.btn-outline{
    border-color:rgba(255,255,255,.32);
    color:#fff;
}


/* Language switcher - CroBuggy */
.translate-wrap{
    position:relative;
    display:flex;
    align-items:center;
    z-index:120;
}

.translate-current{
    height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:1px solid rgba(255,255,255,.16);
    background:rgba(255,255,255,.07);
    color:#fff;
    border-radius:999px;
    padding:0 16px;
    font-family:inherit;
    font-size:13px;
    font-weight:900;
    letter-spacing:.02em;
    cursor:pointer;
    line-height:1;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
    transition:.2s ease;
}

.translate-current:hover,
.translate-wrap.open .translate-current{
    background:rgba(255,255,255,.12);
    border-color:rgba(255,255,255,.26);
}

.translate-menu{
    position:absolute;
    top:58px;
    right:0;
    min-width:138px;
    display:flex;
    flex-direction:column;
    gap:0;
    padding:8px;
    background:#0d1017;
    border:1px solid rgba(255,255,255,.1);
    border-radius:16px;
    box-shadow:0 22px 45px rgba(0,0,0,.38);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.2s ease;
    z-index:9999;
}

.translate-wrap.open .translate-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.translate-menu button{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    border:0;
    border-radius:10px;
    background:transparent;
    color:#fff;
    padding:11px 12px;
    font-family:inherit;
    font-size:13px;
    font-weight:800;
    text-align:left;
    cursor:pointer;
    transition:.18s ease;
}

.translate-menu button:hover{
    background:var(--red);
    color:#fff;
}

/* Hide Google Translate UI, keep it available for JS */
#google_translate_element{
    position:absolute!important;
    width:1px!important;
    height:1px!important;
    overflow:hidden!important;
    opacity:0!important;
    pointer-events:none!important;
    left:-9999px!important;
    top:auto!important;
}

#google_translate_element select,
.goog-te-combo{
    position:absolute!important;
    width:1px!important;
    height:1px!important;
    opacity:0!important;
    pointer-events:none!important;
    left:-9999px!important;
}

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
#goog-gt-tt,
.goog-te-spinner-pos,
.goog-te-spinner,
.goog-te-gadget-icon,
.goog-logo-link,
iframe.skiptranslate{
    display:none!important;
    visibility:hidden!important;
}

.goog-te-gadget{
    height:0!important;
    overflow:hidden!important;
    color:transparent!important;
    font-size:0!important;
}

body{
    top:0!important;
}

.translate-wrap,
.translate-wrap *{
    translate:no;
}

/* Hero */
.hero{
    min-height:100vh;
    display:flex;
    align-items:flex-end;
    position:relative;
    background:
        linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.46),rgba(0,0,0,.12)),
        url('../img/hero-tour.jpg') center/cover no-repeat;
    padding:150px 5vw 80px;
}

.hero:after{
    content:"";
    position:absolute;
    inset:auto 0 0;
    height:180px;
    background:linear-gradient(0deg,#07080b,transparent);
}

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

.eyebrow{
    display:inline-flex;
    gap:8px;
    align-items:center;
    color:#fff;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.16em;
    font-size:12px;
}

.eyebrow:before{
    content:"";
    width:48px;
    height:4px;
    background:var(--red);
    display:inline-block;
}

.hero h1{
    font-size:clamp(66px,7vw,64px);
    line-height:.9;
    margin:20px 0 22px;
    text-transform:uppercase;
    letter-spacing:-.05em;
}

.hero p{
    font-size:20px;
    line-height:1.65;
    color:#e7ebf2;
    max-width:720px;
}

.hero-cta{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:30px;
}

/* Stats */
.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    max-width:1180px;
    margin:-45px auto 80px;
    padding:0 24px;
    position:relative;
    z-index:3;
}

.stat{
    background:linear-gradient(145deg,#11151d,#090b10);
    border:1px solid var(--line);
    padding:24px;
    border-radius:22px;
}

.stat strong{
    font-size:30px;
    color:#fff;
}

.stat span{
    display:block;
    color:var(--gray);
    font-weight:700;
    margin-top:5px;
}

/* Sections */
.section{
    padding:35px 5vw;
}

.section-light{
    background:#f4f5f7;
    color:#111;
}

.section-title{
    max-width:880px;
    margin:0 auto 44px;
    text-align:center;
}

.section-title h2{
    font-size:clamp(34px,4vw,58px);
    line-height:1;
    margin:12px 0;
    text-transform:uppercase;
    letter-spacing:-.04em;
}

.section-title p{
    color:#b8bec8;
    line-height:1.7;
}

.section-light .section-title p{
    color:#58606d;
}

/* Cards */
.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    max-width:1180px;
    margin:auto;
}

.card{
    background:linear-gradient(160deg,#151922,#0d1016);
    border:1px solid var(--line);
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 22px 70px rgba(0,0,0,.28);
}

.card-body{
    padding:26px;
}

.card h3{
    font-size:24px;
    margin:0 0 12px;
}

.card p,
.card li{
    color:#b9c0ca;
    line-height:1.65;
}

/* Vehicles */
.vehicle-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    max-width:1180px;
    margin:auto;
}

.vehicle-card .image{
    height:330px;
    background:#111;
    overflow:hidden;
}

.vehicle-card .image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.specs{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    margin:20px 0;
}

.spec{
    border:1px solid rgba(255,255,255,.1);
    border-radius:14px;
    padding:12px;
    background:rgba(255,255,255,.04);
}

.spec b{
    display:block;
    color:#fff;
}

.spec span{
    font-size:13px;
    color:var(--gray);
}

/* Split layout */
.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:44px;
    align-items:center;
    max-width:1180px;
    margin:auto;
}

.panel{
    background:#10141c;
    border:1px solid var(--line);
    border-radius:28px;
    padding:36px;
}

.panel h2{
    font-size:42px;
    line-height:1;
    margin:0 0 18px;
    text-transform:uppercase;
}

.panel p{
    color:#c3c9d2;
    line-height:1.8;
}

/* Gallery */
.gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    max-width:1180px;
    margin:auto;
}

.gallery a{
    height:260px;
    border-radius:20px;
    overflow:hidden;
    background:#151515;
}

.gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.gallery a:hover img{
    transform:scale(1.07);
}

/* Lightbox */
.cb-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    z-index:9999;
    display:grid;
    place-items:center;
    padding:20px;
    cursor:zoom-out;
}

.cb-lightbox img{
    max-width:96vw;
    max-height:92vh;
    border-radius:18px;
}

/* Contact */
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    max-width:1180px;
    margin:auto;
}

.contact-box{
    background:#fff;
    color:#111;
    border-radius:26px;
    padding:30px;
}

.contact-box p{
    color:#555;
    line-height:1.7;
}

.map-img{
    border-radius:26px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,.1);
}

/* Forms */
.form input,
.form textarea,
.form select{
    width:100%;
    border:1px solid #d8dce3;
    border-radius:14px;
    padding:14px 15px;
    margin-bottom:12px;
    font:inherit;
}

.form textarea{
    min-height:130px;
}

/* Instagram */
.instagram-row{
    max-width:1180px;
    margin:20px auto 0;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.insta-card{
    background:#11141a;
    border:1px solid var(--line);
    border-radius:22px;
    padding:22px;
    color:#dfe3ea;
}

/* Footer */
.site-footer{
    background:#030406;
    border-top:1px solid rgba(255,255,255,.08);
    padding:60px 5vw 24px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:34px;
    max-width:1180px;
    margin:auto;
}

.footer-logo{
    width:260px;
    margin-bottom:20px;
}

.footer-grid p{
    color:var(--gray);
    line-height:1.7;
}

.footer-grid h4{
    margin-top:0;
}

.footer-bottom{
    max-width:1180px;
    margin:36px auto 0;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#7f8794;
    font-size:13px;
}

/* Admin */
.admin-layout{
    display:grid;
    grid-template-columns:260px 1fr;
    min-height:100vh;
    background:#f5f6f8;
    color:#111;
}

.admin-sidebar{
    background:#080a0f;
    color:#fff;
    padding:24px;
}

.admin-sidebar img{
    width:190px;
    margin-bottom:28px;
}

.admin-sidebar a{
    display:block;
    padding:13px 14px;
    border-radius:12px;
    color:#d5d9e0;
    font-weight:800;
}

.admin-sidebar a:hover{
    background:#171b24;
}

.admin-main{
    padding:34px;
}

.admin-card{
    background:#fff;
    border-radius:22px;
    padding:24px;
    box-shadow:0 12px 35px rgba(20,25,35,.08);
    margin-bottom:20px;
}

.table{
    width:100%;
    border-collapse:collapse;
}

.table th,
.table td{
    padding:12px;
    border-bottom:1px solid #edf0f4;
    text-align:left;
}

.login-wrap{
    min-height:100vh;
    display:grid;
    place-items:center;
    background:#07080b;
    padding:24px;
}

.login-card{
    width:min(420px,100%);
    background:#fff;
    color:#111;
    border-radius:26px;
    padding:34px;
}

.login-card img{
    width:220px;
    margin:auto auto 25px;
}

/* Alerts */
.alert{
    padding:14px 16px;
    border-radius:14px;
    margin-bottom:16px;
}

.alert-ok{
    background:#e8fff2;
    color:#075d2e;
}

.alert-error{
    background:#ffecec;
    color:#a40b16;
}

/* Responsive */
@media(max-width:900px){
    .site-header{
        height:auto;
        min-height:76px;
    }

    .brand img{
        width:170px;
    }

    .nav-toggle{
        display:block;
        margin-left:auto;
    }

    .main-nav{
        display:none;
        position:absolute;
        top:76px;
        left:0;
        right:0;
        background:#080a0f;
        padding:18px 5vw;
        flex-direction:column;
    }

    .main-nav.open{
        display:flex;
    }

    .header-actions{
        display:none;
    }

    .hero{
        padding-top:130px;
    }

    .stats,
    .cards,
    .vehicle-grid,
    .split,
    .contact-grid,
    .footer-grid,
    .instagram-row{
        grid-template-columns:1fr;
    }

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

    .admin-layout{
        grid-template-columns:1fr;
    }

    .admin-sidebar{
        position:relative;
    }

    .admin-sidebar a{
        display:inline-block;
    }

    .hero h1{
        font-size:36px;
    }
}

@media(max-width:560px){
    .gallery{
        grid-template-columns:1fr;
    }

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

    .section{
        padding:64px 22px;
    }

    .stats{
        margin-top:-25px;
    }

    .vehicle-card .image{
        height:240px;
    }
}

/* Subpage hero */
.hero-subpage{
    min-height:70vh;
}

.hero-rent{
    background:
        linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.42)),
        url('../img/hero/rent-a-buggy.jpg') center/cover no-repeat;
}

/* Rent a buggy */
.rent-section .section-title .dark{
    color:#111;
}

.rent-section .section-title .dark:before{
    background:var(--red);
}

.vehicle-card{
    display:flex;
    flex-direction:column;
    height:100%;
    background:#fff;
    color:#111;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 22px 70px rgba(18,24,35,.12);
}

.vehicle-image-wrap{
    height:340px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:34px;
    background:
        radial-gradient(circle at center,rgba(225,6,19,.18),transparent 42%),
        linear-gradient(145deg,#151922,#050608);
    overflow:hidden;
}

.vehicle-image-wrap img{
    width:100%;
    height:100%;
    object-fit:contain;
    filter:drop-shadow(0 28px 35px rgba(0,0,0,.55));
    transition:.35s ease;
}

.vehicle-card:hover .vehicle-image-wrap img{
    transform:scale(1.04);
}

.vehicle-body{
    display:flex;
    flex-direction:column;
    flex:1;
}

.vehicle-body h3{
    color:#111;
    font-size:26px;
    line-height:1.12;
    min-height:58px;
}

.vehicle-description{
    color:#58606d!important;
    line-height:1.7;
    min-height:118px;
}

.vehicle-card .specs{
    margin-top:auto;
}

.vehicle-card .spec{
    background:#f5f6f8;
    border:1px solid #e2e5eb;
}

.vehicle-card .spec b{
    color:#111;
}

.vehicle-card .spec span{
    color:#69717d;
}

.vehicle-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:22px;
}

.btn-dark-outline{
    color:#111;
    border-color:#cfd4dc;
    background:#fff;
}

.btn-dark-outline:hover{
    border-color:var(--red);
    color:var(--red);
}

@media(max-width:900px){
    .vehicle-image-wrap{
        height:300px;
    }

    .vehicle-body h3,
    .vehicle-description{
        min-height:auto;
    }
}

@media(max-width:560px){
    .vehicle-image-wrap{
        height:250px;
        padding:24px;
    }
}

/* Rent benefits */
.rent-benefits-section{
    background:
        radial-gradient(circle at top left,rgba(225,6,19,.18),transparent 34%),
        linear-gradient(180deg,#080a0f,#050609);
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    max-width:1180px;
    margin:0 auto;
}

.benefit-card{
    text-align:center;
    background:linear-gradient(160deg,#151922,#0d1016);
    border:1px solid var(--line);
    border-radius:26px;
    padding:34px 28px;
    box-shadow:0 22px 70px rgba(0,0,0,.22);
}

.benefit-icon{
    width:72px;
    height:72px;
    border-radius:50%;
    display:grid;
    place-items:center;
    margin:0 auto 22px;
    background:
        radial-gradient(circle at 30% 25%,rgba(255,255,255,.2),transparent 36%),
        var(--red);
    color:#fff;
    font-size:30px;
    font-weight:900;
    box-shadow:0 18px 40px rgba(225,6,19,.32);
}

.benefit-card h3{
    font-size:22px;
    margin:0 0 12px;
}

.benefit-card p{
    color:#b9c0ca;
    line-height:1.7;
    margin:0;
}

.center-cta{
    display:flex;
    justify-content:center;
    margin-top:34px;
}

@media(max-width:900px){
    .benefit-grid{
        grid-template-columns:1fr;
    }
}


/* Footer modern */
.footer-grid-modern{
    grid-template-columns:2fr 1fr 1fr;
    align-items:start;
}

.footer-brand-col{
    max-width:520px;
}

.footer-social{
    display:flex;
    gap:14px;
    margin-top:24px;
}

.footer-social a{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

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

    color:#fff;

    font-size:22px;

    transition:.25s ease;
}

.footer-social a:hover{
    background:var(--red);
    border-color:var(--red);

    color:#fff;

    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(225,6,19,.35);
}

.footer-social i{
    line-height:1;
}

.site-footer a{
    transition:.2s ease;
}

.site-footer a:hover{
    /*color:var(--red);*/
}

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
}

.footer-credit a{
    color:#fff;
    font-weight:800;
}

.footer-credit a:hover{
    color:var(--red);
}

/* Back to top */
#backToTop{
    position:fixed;
    right:24px;
    bottom:24px;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:var(--red);
    color:#fff;
    font-size:24px;
    font-weight:900;
    line-height:1;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.25s ease;
    z-index:999;
    box-shadow:0 12px 30px rgba(225,6,19,.35);
}

#backToTop.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

#backToTop:hover{
    transform:translateY(-4px);
}

@media(max-width:900px){
    .footer-grid-modern{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        align-items:flex-start;
        flex-direction:column;
    }

    #backToTop{
        right:18px;
        bottom:18px;
        width:48px;
        height:48px;
    }
}


/* Admin dashboard polish */
.admin-page-head{
    margin-bottom:22px;
}

.admin-page-head h1{
    font-size:26px;
    line-height:1.1;
    margin:0;
}

.admin-dashboard{
    max-width:none;
}

.admin-stat-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
    margin-bottom:28px;
}

.admin-stat-card{
    background:#fff;
    border-radius:22px;
    padding:28px 26px;
    box-shadow:0 12px 35px rgba(20,25,35,.08);
    min-height:128px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    border:1px solid rgba(15,23,42,.04);
}

.admin-stat-card span{
    display:block;
    font-size:34px;
    line-height:1;
    font-weight:900;
    color:#07080b;
    margin-bottom:12px;
}

.admin-stat-card strong{
    font-size:15px;
    color:#111827;
}

.admin-stat-card.is-highlight{
    border-color:rgba(225,6,19,.22);
    box-shadow:0 18px 45px rgba(225,6,19,.13);
}

.admin-feature-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.admin-feature-card h2{
    margin-top:0;
}

.admin-feature-card p{
    margin-bottom:0;
    max-width:900px;
    line-height:1.7;
}

@media(max-width:1200px){
    .admin-stat-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:700px){
    .admin-stat-grid{
        grid-template-columns:1fr;
    }

    .admin-feature-card{
        align-items:flex-start;
        flex-direction:column;
    }
}

.mobile-nav-actions{
    display:none;
}

@media(max-width:900px){
    .header-actions{
        display:none;
    }

    .mobile-nav-actions{
        display:block;
        padding-top:16px;
        margin-top:12px;
        border-top:1px solid rgba(255,255,255,.08);
    }

    .mobile-whatsapp{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:10px;
        width:100%;
        border-radius:999px;
        background:var(--red);
        color:#fff!important;
        padding:14px 18px;
        font-weight:900;
        text-transform:uppercase;
        letter-spacing:.04em;
        margin-bottom:14px;
        box-shadow:0 14px 30px rgba(225,6,19,.25);
    }

    .mobile-whatsapp i{
        font-size:20px;
    }

    .mobile-lang{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:8px;
    }

    .mobile-lang button{
        border:1px solid rgba(255,255,255,.12);
        background:rgba(255,255,255,.05);
        color:#fff;
        border-radius:999px;
        padding:10px 8px;
        font-weight:800;
        cursor:pointer;
    }

    .mobile-lang button:hover{
        background:var(--red);
        border-color:var(--red);
    }
}

.form select {
    color: #fff;
    background: #151922;
}

.form select option {
    color: #111;
    background: #fff;
}
/* =========================================================
   Homepage premium redesign
   ========================================================= */
.home-hero{
    min-height:100vh;
    display:flex;
    align-items:flex-end;
    position:relative;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    padding:150px 5vw 95px;
    overflow:hidden;
}

.home-hero:after{
    content:"";
    position:absolute;
    inset:auto 0 0;
    height:190px;
    background:linear-gradient(0deg,#07080b,transparent);
    pointer-events:none;
}

.home-hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.home-hero h1{
    font-size:clamp(44px,7vw,88px);
    line-height:.92;
    margin:20px 0 22px;
    text-transform:uppercase;
    letter-spacing:-.055em;
}

.home-hero p{
    font-size:20px;
    line-height:1.7;
    color:#e7ebf2;
    max-width:720px;
}

.tour-stats-wrap{
    position:relative;
    z-index:4;
    margin-top:-52px;
    padding:0 5vw 65px;
}

.tour-stats{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
}

.tour-stat-card{
    display:block;
    background:linear-gradient(145deg,#11151d,#080a0f);
    border:1px solid rgba(255,255,255,.13);
    border-radius:24px;
    padding:26px 24px;
    box-shadow:0 26px 80px rgba(0,0,0,.28);
    transition:.28s ease;
}

.tour-stat-card:hover{
    transform:translateY(-6px);
    border-color:rgba(225,6,19,.55);
    box-shadow:0 28px 80px rgba(225,6,19,.16);
}

.tour-stat-card strong{
    display:block;
    color:#fff;
    font-size:clamp(26px,3vw,38px);
    line-height:1;
    font-weight:900;
    letter-spacing:-.04em;
}

.tour-stat-card span{
    display:block;
    color:#aeb3bc;
    margin-top:9px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:12px;
}

.home-adventure{
    padding:86px 5vw;
}

.home-adventure-inner{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:46px;
    align-items:center;
}

.home-adventure-text h2{
    font-size:clamp(36px,4vw,62px);
    line-height:.98;
    margin:16px 0 20px;
    text-transform:uppercase;
    letter-spacing:-.05em;
    color:#080a0f;
}

.home-adventure-text p{
    color:#4f5867;
    line-height:1.85;
    font-size:16px;
}

.eyebrow.dark{
    color:#111;
}

.eyebrow.dark:before{
    background:var(--red);
}

.adventure-checks{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    margin:28px 0 30px;
}

.adventure-checks span{
    display:flex;
    align-items:center;
    gap:10px;
    padding:13px 14px;
    border-radius:16px;
    background:#fff;
    border:1px solid #e5e7eb;
    color:#111827;
    font-weight:800;
    box-shadow:0 12px 30px rgba(15,23,42,.06);
}

.adventure-checks i{
    color:var(--red);
}

.home-adventure-map{
    background:#fff;
    border-radius:32px;
    padding:12px;
    box-shadow:0 26px 80px rgba(15,23,42,.15);
}

.home-adventure-map img{
    width:100%;
    max-height:660px;
    object-fit:cover;
    border-radius:24px;
}

.home-experience{
    background:
        radial-gradient(circle at top left,rgba(225,6,19,.16),transparent 34%),
        linear-gradient(180deg,#07080b,#090c13);
}

.experience-grid{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.experience-card{
    background:linear-gradient(160deg,#151922,#0d1016);
    border:1px solid rgba(255,255,255,.12);
    border-radius:28px;
    padding:34px 30px;
    box-shadow:0 26px 80px rgba(0,0,0,.24);
}

.experience-icon{
    width:72px;
    height:72px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--red);
    color:#fff;
    font-size:28px;
    margin-bottom:24px;
    box-shadow:0 18px 40px rgba(225,6,19,.32);
}

.experience-card h3{
    margin:0 0 12px;
    font-size:24px;
}

.experience-card p{
    color:#b9c0ca;
    line-height:1.75;
    margin:0;
}

.home-video-section{
    padding:88px 5vw;
    background:linear-gradient(180deg,#090c13,#07080b);
}

.home-video-inner{
    max-width:1180px;
    margin:0 auto;
}

.video-cover{
    position:relative;
    width:100%;
    min-height:560px;
    border:0;
    border-radius:34px;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 30px 90px rgba(0,0,0,.42);
    display:grid;
    place-items:center;
}

.video-cover:before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center,rgba(225,6,19,.22),transparent 34%);
}

.video-play{
    position:relative;
    z-index:2;
    width:104px;
    height:104px;
    border-radius:50%;
    background:var(--red);
    color:#fff;
    display:grid;
    place-items:center;
    font-size:36px;
    box-shadow:0 0 0 0 rgba(225,6,19,.58);
    animation:playPulse 1.8s infinite;
}

.video-play i{
    margin-left:6px;
}

.video-label{
    position:absolute;
    left:34px;
    bottom:30px;
    z-index:2;
    color:#fff;
    font-size:14px;
    font-weight:900;
    letter-spacing:.14em;
    text-transform:uppercase;
}

@keyframes playPulse{
    0%{box-shadow:0 0 0 0 rgba(225,6,19,.58)}
    70%{box-shadow:0 0 0 26px rgba(225,6,19,0)}
    100%{box-shadow:0 0 0 0 rgba(225,6,19,0)}
}

.video-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.88);
    z-index:9999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
}

.video-modal.open{
    display:flex;
}

.video-modal-box{
    width:min(1100px,96vw);
    aspect-ratio:16/9;
    background:#000;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 30px 90px rgba(0,0,0,.55);
}

.video-modal-box iframe{
    width:100%;
    height:100%;
    border:0;
}

.video-modal-close{
    position:absolute;
    top:22px;
    right:28px;
    width:52px;
    height:52px;
    border:0;
    border-radius:50%;
    background:var(--red);
    color:#fff;
    font-size:32px;
    line-height:1;
    cursor:pointer;
}

.home-vehicles-section{
    padding-top:86px;
    padding-bottom:86px;
}

.home-vehicle-grid{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:30px;
}

.home-vehicle-card{
    background:#fff;
    color:#111;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 28px 80px rgba(15,23,42,.13);
    border:1px solid rgba(15,23,42,.06);
}

.home-vehicle-image{
    height:330px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px 30px 0;
    background:
        radial-gradient(circle at center,rgba(225,6,19,.24),transparent 48%),
        linear-gradient(145deg,#151922,#050608);
    overflow:visible;
    
}

.home-vehicle-image img{
    width:auto;
    max-width:106%;
    max-height:370px;
    object-fit:contain;
    filter:drop-shadow(0 34px 38px rgba(0,0,0,.60));
    transform:translateY(58px) scale(1.08);
    transition:.35s ease;
    z-index: 1000;
}

.home-vehicle-card:hover .home-vehicle-image img{
    transform:translateY(48px) scale(1.12);
}

.home-vehicle-body{
    position:relative;
    z-index:2;
    padding:125px 30px 34px;
    background:#fff;
}

.home-vehicle-body h3{
    margin:0 0 14px;
    font-size:30px;
    line-height:1.08;
    color:#080a0f;
}

.home-vehicle-body p{
    color:#4f5867;
    line-height:1.75;
    min-height:86px;
}

.home-vehicle-tags{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin:20px 0 24px;
}

.home-vehicle-tags span{
    display:inline-flex;
    align-items:center;
    border-radius:999px;
    padding:11px 15px;
    background:#f4f6f9;
    border:1px solid #e2e7ef;
    font-weight:900;
    font-size:13px;
    color:#080a0f;
}

.home-gallery-section{
    background:
        radial-gradient(circle at top right,rgba(225,6,19,.18),transparent 32%),
        linear-gradient(180deg,#07080b,#090b10);
}

.home-gallery-grid{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:16px;
}

.home-gallery-item,
.home-gallery-item:first-child,
.home-gallery-item:nth-child(6){
    display:block;
    grid-column:span 1;
    height:205px;
    border-radius:20px;
    overflow:hidden;
    background:#111;
    border:1px solid rgba(255,255,255,.08);
}

.home-gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s ease;
}

.home-gallery-item:hover img{
    transform:scale(1.07);
}

.home-social-section{
    padding-top:84px;
    padding-bottom:84px;
}

.home-social-grid,
.home-instagram-grid{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
    align-items:start;
}

.home-instagram-embed{
    background:#fff;
    color:#111;
    border-radius:26px;
    padding:14px;
    box-shadow:0 22px 70px rgba(15,23,42,.11);
    border:1px solid rgba(15,23,42,.06);
    min-height:360px;
    overflow:hidden;
}

.home-instagram-embed blockquote.instagram-media{
    min-width:0!important;
    width:100%!important;
    max-width:100%!important;
    margin:0!important;
}

.home-social-card,
.home-social-empty{
    background:#fff;
    color:#111;
    border-radius:26px;
    padding:30px;
    box-shadow:0 22px 70px rgba(15,23,42,.11);
    border:1px solid rgba(15,23,42,.06);
}

.home-social-card strong,
.home-social-empty h3{
    display:block;
    font-size:24px;
    margin:0 0 12px;
    color:#080a0f;
}

.home-social-card p,
.home-social-empty p{
    color:#4f5867;
    line-height:1.75;
}

.home-social-card span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--red);
    font-weight:900;
    margin-top:12px;
}

.home-social-empty{
    max-width:720px;
    margin:0 auto;
    text-align:center;
}

.form textarea[name="embed_code"]{
    min-height:190px;
    font-family:Consolas,Monaco,monospace;
    font-size:13px;
    line-height:1.45;
}

.home-final-cta{
    position:relative;
    min-height:520px;
    padding:100px 5vw;
    background-position:center;
    background-size:cover;
    display:flex;
    align-items:center;
}

.home-final-cta > div{
    max-width:720px;
    position:relative;
    z-index:2;
}

.home-final-cta h2{
    font-size:clamp(38px,5vw,72px);
    line-height:.95;
    margin:16px 0 20px;
    text-transform:uppercase;
    letter-spacing:-.05em;
}

.home-final-cta p{
    color:#e7ebf2;
    line-height:1.75;
    font-size:19px;
    max-width:640px;
}

@media(max-width:1050px){
    .tour-stats,
    .home-gallery-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .home-adventure-inner,
    .home-vehicle-grid{
        grid-template-columns:1fr;
    }

    .experience-grid,
    .home-social-grid,
    .home-instagram-grid{
        grid-template-columns:1fr;
    }

    .home-gallery-item:first-child,
    .home-gallery-item:nth-child(6){
        grid-column:span 1;
    }
}

@media(max-width:640px){
    .home-hero{
        min-height:88vh;
        padding:130px 22px 70px;
    }

    .home-hero h1{
        font-size:42px;
    }

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

    .tour-stats{
        grid-template-columns:1fr;
    }

    .home-adventure,
    .home-video-section,
    .home-vehicles-section,
    .home-social-section{
        padding:64px 22px;
    }

    .adventure-checks,
    .home-gallery-grid{
        grid-template-columns:1fr;
    }

    .video-cover{
        min-height:320px;
        border-radius:24px;
    }

    .video-play{
        width:82px;
        height:82px;
        font-size:28px;
    }

    .home-vehicle-image{
        height:260px;
    }

    .home-vehicle-image img{
        max-height:215px;
    }

    .home-gallery-item{
        height:230px;
    }
}

/* Final homepage responsive adjustments */
@media(max-width:1050px){
    .home-gallery-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .home-gallery-item,
    .home-gallery-item:first-child,
    .home-gallery-item:nth-child(6){
        grid-column:span 1;
        height:230px;
    }

    .home-instagram-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:900px){
    .home-vehicle-image{
        height:270px;
        padding:24px;
        overflow:hidden;
    }

    .home-vehicle-image img{
        max-height:230px;
        max-width:96%;
        transform:none;
    }

    .home-vehicle-card:hover .home-vehicle-image img{
        transform:scale(1.04);
    }

    .home-vehicle-body{
        padding:30px;
    }
}

@media(max-width:560px){
    .home-gallery-grid{
        grid-template-columns:1fr;
    }
}

/* =========================================================
   Buggy Adventure premium page
   ========================================================= */
.adventure-hero{
    min-height:88vh;
    display:flex;
    align-items:flex-end;
    position:relative;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    padding:150px 5vw 95px;
    overflow:hidden;
}

.adventure-hero:after{
    content:"";
    position:absolute;
    inset:auto 0 0;
    height:190px;
    background:linear-gradient(0deg,#07080b,transparent);
    pointer-events:none;
}

.adventure-hero-content{
    position:relative;
    z-index:2;
    max-width:920px;
}

.adventure-hero h1{
    font-size:clamp(42px,7vw,86px);
    line-height:.92;
    margin:20px 0 22px;
    text-transform:uppercase;
    letter-spacing:-.055em;
}

.adventure-hero p{
    font-size:20px;
    line-height:1.7;
    color:#e7ebf2;
    max-width:760px;
}

.adventure-stats-wrap{
    padding-bottom:72px;
}

.adventure-intro{
    padding-top:88px;
    padding-bottom:88px;
}

.adventure-split{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:46px;
    align-items:center;
}

.adventure-copy h2,
.included-card h2{
    font-size:clamp(34px,4vw,58px);
    line-height:1;
    margin:16px 0 20px;
    text-transform:uppercase;
    letter-spacing:-.045em;
    color:#080a0f;
}

.adventure-copy p,
.included-card p{
    color:#4f5867;
    line-height:1.85;
    font-size:16px;
}

.adventure-route-card{
    position:relative;
    background:#fff;
    border-radius:32px;
    padding:12px;
    box-shadow:0 26px 80px rgba(15,23,42,.16);
    overflow:hidden;
}

.adventure-route-card img{
    width:100%;
    height:640px;
    object-fit:cover;
    border-radius:24px;
}

.route-card-badge{
    position:absolute;
    left:28px;
    right:28px;
    bottom:28px;
    padding:18px 20px;
    border-radius:20px;
    background:rgba(7,8,11,.82);
    color:#fff;
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.13);
}

.route-card-badge strong,
.route-card-badge span{
    display:block;
}

.route-card-badge strong{
    font-size:18px;
    line-height:1.25;
}

.route-card-badge span{
    color:#b9c0ca;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:12px;
    margin-top:5px;
}

.adventure-timeline-section{
    background:
        radial-gradient(circle at top left,rgba(225,6,19,.18),transparent 34%),
        linear-gradient(180deg,#07080b,#090c13);
}

.adventure-timeline{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
}

.timeline-item{
    position:relative;
    background:linear-gradient(160deg,#151922,#0d1016);
    border:1px solid rgba(255,255,255,.12);
    border-radius:26px;
    padding:30px 26px;
    box-shadow:0 26px 80px rgba(0,0,0,.24);
    overflow:hidden;
}

.timeline-item:before{
    content:"";
    position:absolute;
    top:-40px;
    right:-40px;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(225,6,19,.18);
}

.timeline-item span{
    position:relative;
    z-index:2;
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--red);
    color:#fff;
    font-weight:900;
    box-shadow:0 16px 36px rgba(225,6,19,.28);
    margin-bottom:22px;
}

.timeline-item h3{
    position:relative;
    z-index:2;
    margin:0 0 12px;
    font-size:21px;
}

.timeline-item p{
    position:relative;
    z-index:2;
    color:#b9c0ca;
    line-height:1.72;
    margin:0;
}

.adventure-included-section{
    padding-top:88px;
    padding-bottom:88px;
}

.adventure-included-grid{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:26px;
}

.included-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.06);
    border-radius:30px;
    padding:36px;
    box-shadow:0 24px 70px rgba(15,23,42,.10);
}

.included-card ul{
    list-style:none;
    padding:0;
    margin:28px 0 0;
    display:grid;
    gap:12px;
}

.included-card li{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    border-radius:16px;
    background:#f4f6f9;
    border:1px solid #e2e7ef;
    color:#111827;
    font-weight:850;
}

.included-card li i{
    color:var(--red);
}

.included-note{
    background:
        radial-gradient(circle at top right,rgba(225,6,19,.15),transparent 35%),
        #fff;
}

.adventure-gallery-section{
    background:
        radial-gradient(circle at top right,rgba(225,6,19,.18),transparent 32%),
        linear-gradient(180deg,#07080b,#090b10);
}

.adventure-gallery-grid{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
}

.adventure-gallery-item{
    display:block;
    height:265px;
    border-radius:22px;
    overflow:hidden;
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 22px 65px rgba(0,0,0,.26);
}

.adventure-gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s ease;
}

.adventure-gallery-item:hover img{
    transform:scale(1.07);
}

.adventure-benefits-section{
    background:
        radial-gradient(circle at top left,rgba(225,6,19,.16),transparent 34%),
        linear-gradient(180deg,#090b10,#07080b);
}

.adventure-faq-section{
    padding-top:88px;
    padding-bottom:88px;
}

.adventure-faq-grid{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.faq-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:24px;
    padding:28px 30px;
    box-shadow:0 18px 50px rgba(15,23,42,.08);
}

.faq-card h3{
    margin:0 0 10px;
    color:#080a0f;
    font-size:21px;
}

.faq-card p{
    margin:0;
    color:#4f5867;
    line-height:1.72;
}

@media(max-width:1050px){
    .adventure-split,
    .adventure-included-grid{
        grid-template-columns:1fr;
    }

    .adventure-timeline,
    .adventure-gallery-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:640px){
    .adventure-hero{
        min-height:86vh;
        padding:130px 22px 70px;
    }

    .adventure-hero h1{
        font-size:40px;
    }

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

    .adventure-intro,
    .adventure-included-section,
    .adventure-faq-section{
        padding:64px 22px;
    }

    .adventure-copy h2,
    .included-card h2{
        font-size:34px;
    }

    .adventure-route-card img{
        height:520px;
    }

    .route-card-badge{
        left:20px;
        right:20px;
        bottom:20px;
    }

    .adventure-timeline,
    .adventure-gallery-grid,
    .adventure-faq-grid{
        grid-template-columns:1fr;
    }

    .included-card{
        padding:28px 24px;
    }

    .adventure-gallery-item{
        height:240px;
    }
}


/* =========================================================
   Legal pages + GDPR cookie consent
   ========================================================= */
.legal-hero{
    min-height:54vh;
    background:
        linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.42)),
        url('../img/hero/home-hero.jpg') center/cover no-repeat;
}

.legal-section{
    padding-top:82px;
    padding-bottom:82px;
}

.legal-wrap{
    max-width:980px;
    margin:0 auto;
    background:#fff;
    color:#111;
    border-radius:30px;
    padding:46px;
    box-shadow:0 24px 80px rgba(15,23,42,.12);
    border:1px solid rgba(15,23,42,.06);
}

.legal-wrap h2{
    margin:34px 0 12px;
    font-size:26px;
    line-height:1.18;
    color:#080a0f;
}

.legal-wrap h2:first-of-type{
    margin-top:0;
}

.legal-wrap p,
.legal-wrap li{
    color:#4f5867;
    line-height:1.85;
    font-size:16px;
}

.legal-wrap a{
    color:var(--red);
    font-weight:800;
}

.legal-updated{
    display:inline-flex;
    padding:10px 14px;
    border-radius:999px;
    background:#f4f6f9;
    border:1px solid #e2e7ef;
    color:#4f5867;
    font-weight:800;
    font-size:13px;
    margin-bottom:26px;
}

.legal-info-box{
    background:linear-gradient(145deg,#11151d,#080a0f);
    color:#fff;
    border-radius:22px;
    padding:24px;
    line-height:1.8;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.legal-info-box a{
    color:#fff;
}

.legal-cookie-table{
    display:grid;
    gap:12px;
    margin:22px 0;
}

.legal-cookie-table div{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:18px;
    padding:18px;
    background:#f5f6f8;
    border:1px solid #e2e5eb;
    border-radius:18px;
}

.legal-cookie-table strong{
    color:#111;
}

.legal-cookie-table span{
    color:#4f5867;
    line-height:1.65;
}

.footer-cookie-settings{
    appearance:none;
    border:0;
    background:transparent;
    color:#fff;
    padding:0;
    font:inherit;
    font-weight:800;
    cursor:pointer;
    text-align:left;
}

.footer-cookie-settings:hover{
    color:var(--red);
}

.cookie-consent{
    position:fixed;
    inset:0;
    z-index:10000;
    display:none;
    align-items:flex-end;
    justify-content:center;
    padding:22px;
    background:rgba(0,0,0,.38);
    backdrop-filter:blur(6px);
}

.cookie-consent.open{
    display:flex;
}

.cookie-consent-panel{
    width:min(820px,100%);
    position:relative;
    background:linear-gradient(160deg,#151922,#0d1016);
    border:1px solid rgba(255,255,255,.14);
    color:#fff;
    border-radius:30px;
    padding:30px;
    box-shadow:0 30px 90px rgba(0,0,0,.55);
}

.cookie-close{
    position:absolute;
    top:14px;
    right:14px;
    width:38px;
    height:38px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:25px;
    cursor:pointer;
}

.cookie-intro{
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding-right:34px;
}

.cookie-icon{
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    flex:0 0 58px;
    border-radius:18px;
    background:var(--red);
    box-shadow:0 16px 36px rgba(225,6,19,.34);
    font-size:27px;
}

.cookie-intro h3{
    margin:0 0 8px;
    font-size:25px;
    line-height:1.1;
}

.cookie-intro p{
    margin:0;
    color:#c5cbd5;
    line-height:1.7;
}

.cookie-options{
    display:grid;
    gap:10px;
    margin:22px 0 0;
}

.cookie-option{
    display:flex;
    gap:13px;
    align-items:flex-start;
    padding:15px;
    border-radius:18px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.09);
    cursor:pointer;
}

.cookie-option.is-disabled{
    opacity:.85;
    cursor:default;
}

.cookie-option input{
    margin-top:3px;
    accent-color:var(--red);
    width:18px;
    height:18px;
}

.cookie-option strong{
    display:block;
    margin-bottom:4px;
}

.cookie-option small{
    display:block;
    color:#aeb3bc;
    line-height:1.55;
}

.cookie-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:24px;
}

.cookie-actions .btn-outline{
    background:transparent;
}

.cookie-links{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin:20px 0 0;
    font-size:13px;
}

.cookie-links a{
    color:#fff;
    font-weight:800;
    text-decoration:underline;
    text-underline-offset:4px;
}

.cookie-links a:hover{
    color:var(--red);
}

@media(max-width:700px){
    .legal-wrap{
        padding:28px 22px;
        border-radius:24px;
    }

    .legal-cookie-table div{
        grid-template-columns:1fr;
        gap:8px;
    }

    .cookie-consent{
        padding:12px;
    }

    .cookie-consent-panel{
        border-radius:24px;
        padding:24px 18px;
    }

    .cookie-intro{
        flex-direction:column;
        padding-right:30px;
    }

    .cookie-actions .btn{
        width:100%;
    }
}


/* Basic anti-copy protection */
body{
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

input,
textarea,
select,
button,
.contact-field,
.form *{
    -webkit-user-select:text;
    -moz-user-select:text;
    -ms-user-select:text;
    user-select:text;
}