﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700;800;900&display=swap');

/* ===== RESET ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter', sans-serif;
    font-weight:600;
    background:#fff;
    color:#111;
}

/* ===== HEADER ===== */

header{
    position:absolute;
    top:0;
    left:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 60px;
    z-index:100;
}

.logo h1{
    color:white;
    font-size:32px;
    font-weight:700;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:0.3s;
}

nav a:hover{
    color:#ff8a00;
}

.nav-btn{
    background:#ff8a00;
    color:white;

    border:none;
    border-radius:50px;

    padding:15px 30px;

    font-size:16px;
    font-weight:600;

    cursor:pointer;
    transition:0.3s;
}

.nav-btn:hover{
    background:#f07700;
}

/* ===== HERO ===== */

.hero{
    height:85vh;

    background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("https://images.unsplash.com/photo-1511895426328-dc8714191300?q=80&w=2070");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero-content{
    color:white;
}

.hero-content h2{
    font-size:85px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:26px;
}

/* ===== FEATURES ===== */

.features{
    display:flex;
    justify-content:center;
    gap:50px;

    margin-top:-160px;

    position:relative;
    z-index:10;

    color:white;
    font-weight:600;
}

/* ===== TOURS SECTION ===== */

.tours{
    padding:100px 120px;
    background:white;
}

.tours-header{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:50px;
}

.tours-header h2{
    font-size:55px;
    font-weight:800;
}

.tours-header p{
    color:#ff8a00;
    font-weight:600;
    letter-spacing:2px;
    margin-top:10px;
}

.tours-header a{
    text-decoration:none;
    color:black;
    font-weight:700;

    border-bottom:2px solid #ff8a00;
    padding-bottom:5px;
}

/* ===== GRID ===== */

.tour-grid{
    display:flex;
    gap:30px;
    justify-content:center;
}

/* ===== CARD ===== */

.card{
    width:380px;

    background:white;

    border-radius:35px;
    overflow:hidden;

    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    padding-bottom:20px;
     padding-bottom:0;
     overflow:hidden;
}

/* ===== IMAGE ===== */

.card-image{
    position:relative;
}

.card-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.badge{
    position:absolute;
    top:20px;
    left:20px;

    background:#ff8a00;
    color:white;

    padding:10px 18px;

    border-radius:30px;

    font-size:13px;
    font-weight:700;
}

.heart{
    position:absolute;
    top:20px;
    right:20px;

    width:60px;
    height:60px;

    border-radius:50%;
    background:white;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:24px;
}

/* ===== CONTENT ===== */

.card-content{
    padding:30px;
    background:#f5f1ea;
}

.tour-info{
    color:#ff8a00;
    font-size:14px;
    font-weight:600;

    margin-bottom:20px;
}

.card-content h3{
    font-size:20px;
    line-height:1.5;

    margin-bottom:25px;
}

/* ===== DETAILS ===== */

.details{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    margin-bottom:30px;
}

.rating{
    font-size:18px;
    font-weight:700;

    white-space:nowrap;
}

.card-features{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.card-features p{
    margin:0;

    color:#555;

    font-size:14px;
    font-weight:600;
}

/* ===== PRICE ===== */

.price{
    border-top:1px solid #eee;

    padding-top:20px;

    display:flex;
    justify-content:space-between;
    align-items:flex-end;
}

.price span{
    color:#999;

    font-size:12px;
    font-weight:700;

    letter-spacing:3px;
}

.price h2{
    font-size:22px;
}

.price p{
    color:#999;
    font-size:12px;

    text-align:right;
    margin-top:5px;
}
.card-content h3{
    font-size:18px;
    line-height:1.5;
    margin-bottom:20px;
}

.details{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.rating{
    font-size:18px;
}

.card-features{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.card-features p{
    font-size:14px;
    color:#f0c712;
    margin:0;
}
.card-content h3{
    color:#ff8a00;
}

.rating-section{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.rating{
    display:flex;
    align-items:center;
    gap:10px;

    font-size:22px;
    color:#ff8a00;
}

.rating span{
    color:#111;
    font-size:18px;
    font-weight:700;
}

.card-features{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.card-features p{
    margin:0;
    color:#555;
    font-size:14px;
    font-weight:600;
}
.check-btn{
    background:#eea507;
    color:white;

    border:none;
    border-radius:40px;

    padding:16px 28px;

    font-size:16px;
    font-weight:700;

    cursor:pointer;

    transition:0.3s;
    white-space:nowrap;
}

.check-btn:hover{
    background:#614804;
    transform:translateY(-2px);
}
.tour-grid{
    display:flex;
    justify-content:center;
    gap:30px;
}

html{
    scroll-behavior:smooth;
}
/* ===== ABOUT HERO ===== */

.about-hero{
    height:60vh;

    background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("https://images.unsplash.com/photo-1548013146-72479768bada?q=80&w=1200");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;
}

.about-content{
    color:white;
    z-index:2;
}

.about-content p{
    letter-spacing:3px;
    font-weight:600;
    margin-bottom:20px;
}

.about-content h1{
    font-size:70px;
    font-weight:800;
}

/* ===== ABOUT SECTION ===== */

.about-section{
    padding:100px 120px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:80px;
}

.about-text{
    flex:1;
}

.mini-title{
    color:#ff8a00;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.about-text h2{
    font-size:55px;
    line-height:1.2;
    margin-bottom:25px;
}

.about-description{
    color:#666;
    font-size:18px;
    line-height:1.8;
    margin-bottom:40px;
}

/* FEATURES */

.about-features{
    display:flex;
    gap:25px;
}

.feature-box{
    background:#f5f1ea;

    padding:30px;

    border-radius:25px;

    width:180px;

    text-align:center;
}

.feature-box h3{
    font-size:38px;
    color:#ff8a00;
    margin-bottom:10px;
}

.feature-box p{
    color:#555;
    font-weight:600;
}

/* IMAGE */

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:35px;
    object-fit:cover;
}
/* ===== FOOTER ===== */

.footer{
    background:#1a0903;
    color:white;
    margin-top:100px;
}

.footer-top{
    background:#ff8a00;

    display:flex;
    justify-content:center;
    gap:80px;

    padding:18px;

    font-size:14px;
    font-weight:700;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    gap:60px;

    padding:80px 120px;
}

.footer-box{
    flex:1;
}

.footer-box h2{
    font-size:34px;
    margin-bottom:15px;
}

.footer-box h3{
    margin-bottom:25px;
    color:#ff8a00;
    letter-spacing:2px;
}

.footer-box a{
    display:block;

    color:white;
    text-decoration:none;

    margin-bottom:15px;

    transition:0.3s;
}

.footer-box a:hover{
    color:#ff8a00;
}

.footer-description{
    color:#bbb;
    line-height:1.8;
    margin-top:20px;
}

.footer-box p{
    color:#ccc;
    margin-bottom:15px;
    line-height:1.7;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);

    text-align:center;

    padding:25px;
    
    color:#999;
}

/* HEADER */

.review-header{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;
}

.review-header img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;
}

/* NAME */

.review-name h3{

    font-size:28px;

    margin-bottom:5px;
}

.review-name span{

    color:#999;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;
}

/* VERIFIED */

.verified{

    margin-top:30px;

    color:#ff8a00;

    font-weight:800;

    font-size:15px;
}
/* REVIEWS SECTION */

.reviews{
    margin-top:120px;

    background:#f5f1ec;

    padding:120px 0;

    overflow:hidden;
}

/* TOP */

.reviews-top{

    width:85%;

    margin:auto;

    margin-bottom:70px;
}

.reviews-top h2{

    font-size:70px;

    font-weight:900;

    color:#111;

    margin-bottom:25px;
}

/* RATING */

.rating{

    display:flex;

    align-items:center;

    gap:15px;

    color:#ff8a00;

    font-size:26px;

    font-weight:700;
}

.rating span{

    color:#111;

    font-size:24px;

    font-weight:800;
}

/* WRAPPER */

.reviews-wrapper{

    width:100%;

    overflow:hidden;
}

/* TRACK */

.reviews-track{
    padding-left:0;

    display:flex;

    gap:25px;
    margin-top:60px;

    width:max-content;

    animation:scrollReviews 30s linear infinite;
}

/* CARD */

.review-card{
    width:270px;

    background:white;

    border-radius:35px;

    padding:30px;

    flex-shrink:0;

    box-shadow:0 5px 25px rgba(0,0,0,0.05);

    height:auto;
}

/* HEADER */

.review-header{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:30px;
}

.review-header img{

    width:75px;

    height:75px;

    border-radius:50%;

    object-fit:cover;
}

/* NAME */

.review-name h3{

    font-size:32px;

    font-weight:800;

    color:#111;

    margin-bottom:5px;
}

.review-name span{

    color:#999;

    font-size:15px;

    font-weight:700;

    letter-spacing:1px;
}

/* TEXT */

.review-card p{

    font-size:16px;

    line-height:1.8;

    color:#666;

    margin-bottom:35px;
}

/* VERIFIED */

.verified{

    color:#ff8a00;

    font-size:18px;

    font-weight:800;
}

/* ANIMATION */

@keyframes scrollReviews{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}
/* Ø±ÙØ¹ cards */

.reviews-track{

    margin-top:50px;
}

/* title */

.reviews-top{

    margin-bottom:40px;
}

/* shadow */

.review-card{

    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}
/* GOOGLE REVIEWS SECTION */

.reviews{

    background:#f5f1ec;

   padding: 100px 7%;
}
/* ELFSIGHT GOOGLE REVIEWS */

.elfsight-app-3c9379ef-d7b4-4ec3-825a-a1e11aed2ac9{

    background:#f5f1ec !important;

    padding:80px 0 !important;
}
/* CARDS */

[class*="ReviewCard"]{

    background:white !important;

    border-radius:30px !important;
}
[class*="ReviewCard"]{
    background:white !important;

    border-radius:30px !important;

    height:auto !important;
}
/* GOOGLE REVIEWS */

.reviews{
    background:#f5f1ec;
    padding:40px 0 !important;
}
/* ELFSIGHT CONTAINER */

.elfsight-app-3c9379ef-d7b4-4ec3-825a-a1e11aed2ac9{
    width:85%;
    margin:auto;
}

/* CARDS */

[class*="ReviewCard"]{
    background:white !important;
    border-radius:30px !important;
    box-shadow:0 5px 20px rgba(0,0,0,0.05) !important;
}

/* TEXT */

[class*="ReviewCard"] *{
    font-family:'Poppins', sans-serif !important;
}

.reviews{
    background: #f5f1ec;
    padding: 20px 7%;
}

.reviews-top{
    margin-bottom: 60px;
}

.reviews-top h2{
    font-size: 64px;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
}

.rating{
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 22px;
    color: #f4b400;
    font-weight: 700;
}

.rating span{
    color: #111;
    font-size: 22px;
}

.reviews-text{
    margin-top: 25px;
    font-size: 18px;
    color: #666;
    max-width: 650px;
    line-height: 1.7;
}
.footer{
    background: #1b0700;
    color: white;
}

.footer-top{
    background: #ff8a00;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 18px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-content{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 60px;
    padding: 90px 7%;
}

.footer-box h2{
    font-size: 38px;
    margin-bottom: 25px;
}

.footer-box h3{
    color: #ff8a00;
    margin-bottom: 25px;
    font-size: 15px;
    letter-spacing: 2px;
}

.footer-desc{
    color: #cfcfcf;
    line-height: 1.8;
    max-width: 300px;
}

.footer-box a,
.footer-box p{
    display: block;
    color: #d9d9d9;
    text-decoration: none;
    margin-bottom: 18px;
    transition: 0.3s;
}

.footer-box a:hover{
    color: #ff8a00;
}

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 30px;
    color: #aaa;
    font-size: 14px;
}
/* PERFECT TOUR CARDS */

.card{
    width:380px;
    display:flex;
    flex-direction:column;
}

.card-content{
    background:#f5f1ea;
    padding:30px;

    display:flex;
    flex-direction:column;

    height:100%;
}

.card-content h3{
    color:#ff8a00;

    font-size:20px;
    line-height:1.5;

    min-height:95px;
}

.rating-section{
    min-height:120px;
}

.price{
    margin-top:auto;

    border-top:1px solid #eee;

    padding-top:20px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}
/* FIX PRICE ALIGNMENT */

.card-content{
    display:flex;
    flex-direction:column;
}

.price{
    margin-top:auto;
}

.card h3{
    min-height:72px;
}

/* PRODUCT PAGE */

.product-page{
    display:flex;
    gap:50px;

    max-width:1400px;

    margin:auto;

    padding:60px 5%;
}

/* LEFT */

.product-left{
    flex:2;
}

/* RIGHT */

.product-right{
    flex:1;
}

/* TITLE */

.product-header h1{

    font-size:48px;

    line-height:1.2;

    font-weight:800;

    color:#111;

    max-width:850px;

    margin:18px 0 25px;
}
.product-badge{
    background:#ff8a00;

    color:white;

    padding:10px 20px;

    border-radius:50px;

    font-weight:700;

    font-size:14px;
}

/* REVIEWS */

.product-reviews{
    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:40px;
}

.product-reviews .stars{
    color:#ff8a00;

    font-size:20px;
}

.product-reviews span{
    font-size:22px;

    font-weight:700;
}

/* GALLERY */

.product-gallery{
    display:flex;

    gap:15px;

    margin-bottom:50px;
}

.gallery-main{
    flex:2;
}

.gallery-main img{
    width:100%;

    height:500px;

    object-fit:cover;

    border-radius:25px;
}

.gallery-grid{
    flex:1;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;
}

.gallery-grid img{
    width:100%;

    height:242px;

    object-fit:cover;

    border-radius:20px;
}

/* ABOUT */

.product-about h2{
    font-size:38px;

    margin-bottom:30px;
}

.about-list{
    display:flex;

    flex-direction:column;

    gap:30px;
}

.about-item{
    display:flex;

    gap:20px;
}

.about-item span{
    font-size:30px;
}

/* BOOKING BOX */

.booking-box{
    background:#f5f1ea;

    padding:35px;

    border-radius:25px;

    position:sticky;

    top:120px;
}

.price-box h2{
    font-size:55px;

    color:#ff8a00;
}

.price-box span{
    color:#777;
}

/* OPTIONS */

.booking-options{
    display:flex;

    flex-direction:column;

    gap:15px;

    margin:30px 0;
}

.option-box{
    background:white;

    padding:18px 20px;

    border-radius:15px;

    border:1px solid #ddd;

    font-weight:600;
}

/* BUTTON */

.book-btn{
    width:100%;

    padding:18px;

    border:none;

    border-radius:15px;

    background:#ff8a00;

    color:white;

    font-size:18px;

    font-weight:700;

    cursor:pointer;
}

/* INFO */

.booking-info{
    margin-top:30px;

    display:flex;

    flex-direction:column;

    gap:15px;
}

.info-item{
    font-weight:600;
}
/* PRODUCT NAVBAR */

.product-navbar{

    max-width:1400px;

    margin:40px auto;

    padding:20px 35px;

    background:white;

    border-radius:30px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* LOGO */

.product-logo h2{

    font-size:32px;

    font-weight:800;

    color:#111;
}

/* MENU */

.product-menu{

    display:flex;

    gap:40px;

    list-style:none;
}

.product-menu a{

    text-decoration:none;

    color:#111;

    font-weight:600;

    transition:0.3s;
}

.product-menu a:hover{

    color:#ff8a00;
}

/* BUTTON */

.whatsapp-btn{

    background:#ff8a00;

    color:white;

    padding:16px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:0.3s;
}

.whatsapp-btn:hover{

    background:#ff8a00;
}

/* ===== MODERN PRODUCT DETAIL PAGE ===== */

.product-body{
    background:#fff;
    color:#061433;
    font-family:'Inter', sans-serif;
    font-weight:600;
}

.product-body .product-navbar{
    position:sticky;
    top:18px;
    left:auto;
    width:calc(100% - 32px);
    max-width:1160px;
    margin:28px auto 58px;
    padding:12px 16px 12px 28px;
    z-index:50;
    border:1px solid #dce5f1;
    border-radius:18px;
    background:rgba(255,255,255,0.96);
    box-shadow:0 22px 50px rgba(25,53,93,0.08);
}

.product-body .product-logo{
    display:inline-flex;
    align-items:center;
    color:#050505;
    text-decoration:none;
    font-size:22px;
    line-height:1;
    font-weight:800;
    letter-spacing:0;
    white-space:nowrap;
}

.product-body .product-menu{
    display:flex;
    align-items:center;
    gap:34px;
    list-style:none;
}

.product-body .product-menu a{
    color:#0d2a4d;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
}

.product-body .product-menu a:hover{
    color:#1764d8;
}

.product-body .whatsapp-btn{
    background:#ff8a00;
    color:#fff;
    padding:14px 24px;
    border-radius:999px;
    font-size:14px;
    font-weight:800;
    text-decoration:none;
    box-shadow:none;
}

.product-body .whatsapp-btn:hover{
    background:#f07700;
}

.product-body .product-page{
    display:block;
    max-width:1116px;
    margin:0 auto;
    padding:0 16px 80px;
}

.product-body .product-left,
.product-body .product-right{
    flex:initial;
}

.product-title-row{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:start;
    gap:34px;
    margin-bottom:24px;
}

.product-title-row h1{
    max-width:920px;
    margin:0 0 18px;
    color:#07163a;
    font-size:39px;
    line-height:1.02;
    font-weight:900;
    letter-spacing:0;
}

.product-title-row h1 span{
    display:block;
    white-space:nowrap;
}

.product-body .product-reviews{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    margin:0;
    color:#48617e;
    font-size:14px;
}

.product-body .product-badge{
    background:#ff8a00;
    color:#fff;
    padding:5px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    text-transform:none;
}

.product-body .stars{
    color:#ff8a00;
    font-size:14px;
    letter-spacing:0;
}

.product-body .product-reviews strong{
    color:#061433;
    font-size:14px;
}

.share-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:92px;
    height:46px;
    border:1px solid #dce5f1;
    border-radius:999px;
    background:#fff;
    color:#061433;
    font-weight:800;
    cursor:pointer;
}

.product-content-grid{
    display:grid;
    grid-template-columns:minmax(0,740px) 336px;
    gap:24px;
    align-items:start;
}

.product-body .product-gallery{
    display:grid;
    grid-template-columns:minmax(0,1.08fr) minmax(260px,1fr);
    gap:8px;
    margin:0 0 18px;
}

.product-body .gallery-main,
.product-body .gallery-grid{
    min-width:0;
}

.product-body .gallery-main img,
.product-body .gallery-grid img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    cursor:pointer;
}

.product-body .gallery-main img{
    min-height:356px;
    border-radius:12px;
}

.product-body .gallery-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
}

.product-body .gallery-grid img,
.gallery-more{
    min-height:174px;
    border-radius:12px;
    overflow:hidden;
}

.gallery-more{
    position:relative;
}

.gallery-more button{
    position:absolute;
    right:12px;
    bottom:12px;
    border:0;
    border-radius:999px;
    background:#fff;
    color:#061433;
    padding:12px 18px;
    font-weight:800;
    cursor:pointer;
    box-shadow:0 12px 30px rgba(0,0,0,0.16);
}

.gallery-extra-photos{
    display:none;
}

body.is-gallery-open{
    overflow:hidden;
}

.gallery-lightbox{
    position:fixed;
    inset:0;
    z-index:200;
    display:none;
    align-items:center;
    justify-content:center;
    padding:28px;
    background:rgba(6,20,51,0.82);
    backdrop-filter:blur(10px);
}

.gallery-lightbox.is-open{
    display:flex;
}

.gallery-lightbox-panel{
    position:relative;
    width:min(980px,100%);
    height:min(82vh,760px);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:visible;
    border:0;
    border-radius:22px;
    background:transparent;
    box-shadow:none;
}

.gallery-lightbox-close,
.gallery-lightbox-nav{
    position:absolute;
    z-index:2;
    width:46px;
    height:46px;
    border:0;
    border-radius:999px;
    background:#fff;
    color:#061433;
    font-size:30px;
    line-height:1;
    font-weight:800;
    cursor:pointer;
    box-shadow:0 18px 40px rgba(0,0,0,0.22);
}

.gallery-lightbox-close{
    top:8px;
    right:-54px;
}

.gallery-lightbox-prev{
    left:-64px;
}

.gallery-lightbox-next{
    right:-64px;
}

.gallery-lightbox-image{
    max-width:100%;
    max-height:100%;
    display:block;
    object-fit:contain;
    border-radius:18px;
    background:#fff;
    box-shadow:0 26px 80px rgba(0,0,0,0.34);
}

.gallery-lightbox-count{
    position:absolute;
    left:50%;
    bottom:-46px;
    transform:translateX(-50%);
    min-width:58px;
    padding:10px 14px;
    border-radius:999px;
    background:#061433;
    color:#fff;
    text-align:center;
    font-size:15px;
    font-weight:900;
}

@media (max-width:720px){
    .gallery-lightbox{
        padding:14px;
    }

    .gallery-lightbox-panel{
        height:74vh;
    }

    .gallery-lightbox-close{
        top:-54px;
        right:0;
    }

    .gallery-lightbox-prev{
        left:10px;
    }

    .gallery-lightbox-next{
        right:10px;
    }
}

.product-summary{
    max-width:730px;
    color:#14294c;
    font-size:15px;
    line-height:1.7;
    margin:0 0 38px;
}

.product-body .product-about h2{
    margin:0 0 20px;
    color:#061433;
    font-size:22px;
    line-height:1.2;
    font-weight:900;
}

.product-body .about-list{
    gap:18px;
}

.product-body .about-item{
    display:grid;
    grid-template-columns:20px minmax(0,1fr);
    gap:12px;
    align-items:start;
}

.product-body .about-item span{
    color:#252a32;
    font-size:20px;
    line-height:1.2;
    font-weight:800;
}

.product-body .about-item h3{
    color:#061433;
    font-size:16px;
    line-height:1.25;
    margin:0 0 8px;
}

.product-body .about-item p{
    color:#566c88;
    font-size:14px;
    line-height:1.6;
    margin:0;
}

.product-body .booking-box{
    position:sticky;
    top:116px;
    padding:16px 14px 18px;
    background:#fff;
    border:1px solid #dce5f1;
    border-radius:14px;
    box-shadow:none;
}

.product-body .price-box{
    margin-bottom:16px;
}

.product-body .price-box p{
    margin:0 0 2px;
    color:#425977;
    font-size:13px;
}

.product-body .price-box div{
    display:flex;
    align-items:flex-end;
    gap:8px;
}

.product-body .price-box strong{
    color:#e71958;
    font-size:42px;
    line-height:1;
    font-weight:900;
}

.product-body .price-box span{
    color:#061433;
    font-size:13px;
    font-weight:700;
    padding-bottom:5px;
}

.product-body .booking-options{
    gap:8px;
    margin:0 0 14px;
}

.product-body .option-box{
    width:100%;
    min-height:52px;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:10px;
    padding:10px 14px;
    border:1px solid #dce1e8;
    border-radius:11px;
    background:#f2f4f7;
    color:#061433;
    text-align:left;
    font-family:inherit;
    cursor:pointer;
}

.product-body .option-box small{
    grid-column:1;
    color:#6b7f99;
    font-size:11px;
    font-weight:700;
}

.product-body .option-box span{
    grid-column:1;
    font-size:14px;
    font-weight:800;
}

.product-body .option-box b{
    grid-column:2;
    grid-row:1 / span 2;
    color:#17385d;
    font-size:14px;
}

.product-body .book-btn{
    width:100%;
    min-height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:0;
    border-radius:10px;
    background:#ff8a00;
    color:#fff;
    text-decoration:none;
    font-family:inherit;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
}

.product-body .book-btn:hover{
    background:#f07700;
}

.product-body .booking-info{
    margin-top:18px;
    padding-top:16px;
    border-top:1px solid #edf1f6;
    gap:14px;
}

.product-body .info-item{
    display:grid;
    grid-template-columns:22px minmax(0,1fr);
    gap:10px;
}

.product-body .info-item span{
    width:22px;
    height:22px;
    display:grid;
    place-items:center;
    border:2px solid #1bb65d;
    border-radius:50%;
    color:#1bb65d;
    font-size:13px;
    font-weight:900;
}

.product-body .info-item h3{
    margin:0 0 5px;
    color:#061433;
    font-size:14px;
    line-height:1.25;
}

.product-body .info-item p{
    margin:0;
    color:#566c88;
    font-size:12px;
    line-height:1.45;
    font-weight:500;
}

@media (max-width:980px){
    .product-body .product-navbar{
        position:relative;
        top:auto;
        flex-wrap:wrap;
        gap:14px;
        margin:16px auto 34px;
    }

    .product-body .product-menu{
        order:3;
        width:100%;
        justify-content:center;
        gap:20px;
    }

    .product-title-row,
    .product-content-grid{
        grid-template-columns:1fr;
    }

    .share-btn{
        justify-self:start;
    }

    .product-body .booking-box{
        position:static;
    }
}

@media (max-width:700px){
    .product-body .product-navbar{
        width:calc(100% - 20px);
        padding:12px;
        border-radius:14px;
    }

    .product-body .product-logo{
        font-size:19px;
        letter-spacing:0;
    }

    .product-body .whatsapp-btn{
        padding:12px 16px;
        font-size:13px;
    }

    .product-body .product-menu{
        overflow-x:auto;
        justify-content:flex-start;
        padding-bottom:2px;
    }

    .product-title-row h1{
        font-size:31px;
        line-height:1.08;
    }

    .product-title-row h1 span{
        white-space:normal;
    }

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

    .product-body .gallery-main img{
        min-height:260px;
    }

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

    .product-body .gallery-grid img,
    .gallery-more{
        min-height:132px;
    }
}

/* ===== PRODUCT PAGE REFRESH ===== */

.product-body{
    min-height:100vh;
    background:
        linear-gradient(180deg, #fff7ec 0, #ffffff 240px),
        #ffffff;
}

.product-body .product-navbar{
    top:20px;
    max-width:1180px;
    padding:14px 18px 14px 24px;
    border:1px solid rgba(255,138,0,0.22);
    border-radius:24px;
    background:rgba(255,255,255,0.9);
    box-shadow:0 20px 55px rgba(119,72,0,0.10);
    backdrop-filter:blur(14px);
}

.product-body .product-logo{
    color:#101828;
    font-size:23px;
    font-weight:900;
}

.product-body .product-menu{
    gap:8px;
    padding:6px;
    border-radius:999px;
    background:#fff4e3;
}

.product-body .product-menu a{
    padding:10px 16px;
    border-radius:999px;
    color:#26364d;
    font-size:13px;
}

.product-body .product-menu a:hover{
    background:#ffffff;
    color:#f07700;
    box-shadow:0 8px 20px rgba(255,153,0,0.10);
}

.product-body .whatsapp-btn{
    background:#ff8a00;
    box-shadow:0 12px 24px rgba(255,138,0,0.24);
}

.product-body .whatsapp-btn:hover{
    background:#f07700;
}

.product-body .product-page{
    max-width:1180px;
    padding-bottom:96px;
}

.product-title-row{
    align-items:end;
    margin-bottom:30px;
}

.product-title-row h1{
    max-width:940px;
    color:#101828;
    font-size:40px;
    line-height:1.05;
}

.product-body .product-reviews{
    gap:10px;
}

.product-body .product-badge{
    background:#ff8a00;
    box-shadow:0 8px 18px rgba(255,138,0,0.22);
}

.product-body .stars{
    color:#ff8a00;
}

.share-btn{
    border-color:#ffe0b4;
    background:#fff9f0;
    color:#9a5300;
}

.share-btn:hover{
    background:#ff8a00;
    color:#fff;
}

.product-content-grid{
    grid-template-columns:minmax(0,760px) 360px;
    gap:34px;
}

.product-body .product-gallery{
    gap:12px;
}

.product-body .gallery-main img,
.product-body .gallery-grid img,
.gallery-more{
    border-radius:22px;
}

.product-body .gallery-main img{
    min-height:430px;
    box-shadow:0 22px 50px rgba(16,24,40,0.14);
}

.product-body .gallery-grid{
    gap:12px;
}

.product-body .gallery-grid img,
.gallery-more{
    min-height:209px;
}

.gallery-more button{
    background:#ff8a00;
    color:#fff;
    box-shadow:0 14px 30px rgba(255,138,0,0.26);
}

.product-summary{
    margin-top:24px;
    padding:22px 24px;
    border-left:5px solid #ff8a00;
    border-radius:18px;
    background:#fff7ec;
    color:#344054;
}

.product-body .product-about{
    margin-top:34px;
}

.product-body .product-about h2{
    font-size:26px;
}

.product-body .about-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.product-body .about-item{
    padding:18px;
    border:1px solid #f1e4d3;
    border-radius:18px;
    background:#fff;
    box-shadow:0 12px 32px rgba(16,24,40,0.05);
}

.product-body .about-item span{
    width:28px;
    height:28px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#fff4e3;
    color:#ff8a00;
    font-size:16px;
}

.product-body .activity-strip{
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:26px;
    margin-top:22px;
    padding:8px 0 4px;
}

.product-body .activity-item{
    grid-template-columns:62px minmax(0,1fr);
    align-items:center;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
}

.product-body .activity-item span{
    width:62px;
    height:62px;
    border-radius:16px;
    background:#fff;
    color:#ff8a00;
    font-size:22px;
    font-weight:900;
    box-shadow:0 8px 18px rgba(16,24,40,0.12);
}

.product-body .activity-item p{
    margin:0 0 4px;
    color:#8b9ab3;
    font-size:10px;
    line-height:1;
    font-weight:900;
    letter-spacing:2.4px;
}

.product-body .activity-item h3{
    margin:0;
    color:#050b18;
    font-size:13px;
    line-height:1.25;
    font-weight:900;
}

.itinerary-section{
    margin-top:46px;
    max-width:520px;
}

.itinerary-section h2{
    margin:0 0 18px;
    color:#061433;
    font-size:22px;
    line-height:1.2;
    font-weight:900;
}

.itinerary-timeline{
    position:relative;
    display:grid;
    gap:18px;
    padding-left:44px;
}

.itinerary-timeline::before{
    content:"";
    position:absolute;
    top:20px;
    bottom:22px;
    left:16px;
    width:11px;
    border-radius:999px;
    background:#ff8a00;
}

.itinerary-step{
    position:relative;
    min-height:50px;
    display:grid;
    grid-template-columns:32px minmax(0,1fr);
    gap:12px;
    align-items:start;
}

.itinerary-icon{
    position:absolute;
    left:-44px;
    top:0;
    width:34px;
    height:34px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#fff;
    color:#08305f;
    border:4px solid #fff;
    box-shadow:0 8px 18px rgba(16,24,40,0.14);
    font-size:16px;
    font-weight:900;
    z-index:2;
}

.itinerary-step.pickup .itinerary-icon{
    background:#ff8a00;
    color:#fff;
}

.itinerary-step.place .itinerary-icon{
    background:#123c75;
    color:#fff;
}

.itinerary-step.return .itinerary-icon{
    background:#ff8a00;
}

.itinerary-step.drive::before,
.itinerary-step.drive::after{
    content:none;
    position:absolute;
    left:-32px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ff8a00;
    z-index:2;
}

.itinerary-step.drive::before{
    top:38px;
}

.itinerary-step.drive::after{
    top:54px;
}

.itinerary-step h3{
    margin:0 0 4px;
    color:#061433;
    font-size:16px;
    line-height:1.25;
    font-weight:900;
}

.itinerary-step p{
    margin:0;
    color:#061433;
    font-size:14px;
    line-height:1.45;
    font-weight:700;
}

.details-section{
    margin-top:44px;
    border-top:1px solid #e7edf5;
}

.details-row{
    display:grid;
    grid-template-columns:170px minmax(0,1fr);
    gap:30px;
    padding:24px 0;
    border-bottom:1px solid #e7edf5;
}

.details-row h2{
    margin:0;
    color:#061433;
    font-size:20px;
    line-height:1.25;
    font-weight:900;
}

.details-row ul{
    margin:0;
    padding-left:18px;
    color:#061433;
}

.details-row li{
    margin-bottom:6px;
    font-size:15px;
    line-height:1.38;
    font-weight:700;
}

.details-row p{
    margin:0;
    color:#061433;
    font-size:15px;
    line-height:1.45;
    font-weight:700;
}

.details-row a{
    display:inline-block;
    margin-top:4px;
    color:#061433;
    font-size:15px;
    font-weight:900;
    text-decoration:underline;
    text-underline-offset:4px;
}

.included-list{
    padding-left:0 !important;
    list-style:none;
}

.included-list li{
    position:relative;
    padding-left:24px;
}

.included-list li::before{
    position:absolute;
    left:0;
    top:0;
    font-weight:900;
}

.included-list .yes::before{
    content:"\2713";
    color:#008a4c;
}

.included-list .no::before{
    content:"\00d7";
    color:#ff3b30;
    font-size:18px;
    line-height:1;
}

.product-review-section{
    margin-top:46px;
    padding:30px;
    border:1px solid #ffe0b4;
    border-radius:24px;
    background:#fff7ec;
}

.product-review-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:24px;
    margin-bottom:24px;
}

.product-review-head p{
    margin:0 0 8px;
    color:#ff8a00;
    font-size:12px;
    font-weight:900;
    letter-spacing:2px;
}

.product-review-head h2{
    margin:0;
    color:#061433;
    font-size:26px;
    line-height:1.15;
    font-weight:900;
}

.product-review-score{
    min-width:130px;
    text-align:right;
}

.product-review-score strong{
    display:block;
    color:#061433;
    font-size:34px;
    line-height:1;
    font-weight:900;
}

.product-review-score span{
    display:block;
    margin:5px 0 3px;
    color:#ff8a00;
    font-size:13px;
    letter-spacing:1px;
}

.product-review-score small{
    color:#667085;
    font-size:12px;
    font-weight:800;
}

.product-review-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:14px;
}

.product-review-card{
    padding:18px;
    border:1px solid #f5dfbd;
    border-radius:18px;
    background:#fff;
    box-shadow:0 12px 30px rgba(119,72,0,0.06);
}

.product-review-user{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
}

.product-review-user div{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#ff8a00;
    color:#fff;
    font-size:13px;
    font-weight:900;
}

.product-review-user span{
    display:grid;
    gap:3px;
    color:#667085;
    font-size:12px;
    line-height:1.2;
    font-weight:800;
}

.product-review-user strong{
    color:#061433;
    font-size:14px;
    font-weight:900;
}

.product-review-stars{
    margin-bottom:12px;
    color:#ff8a00;
    font-size:13px;
    letter-spacing:1px;
}

.product-review-card p{
    margin:0;
    color:#344054;
    font-size:13px;
    line-height:1.65;
    font-weight:700;
}

.product-google-reviews{
    margin-top:12px;
    overflow:hidden;
}

.product-google-reviews .elfsight-app-3c9379ef-d7b4-4ec3-825a-a1e11aed2ac9{
    width:100%;
    margin:0;
    padding:0 !important;
    background:transparent !important;
}

.product-google-reviews [class*="ReviewCard"]:nth-of-type(n+4),
.product-google-reviews [class*="review-card"]:nth-of-type(n+4){
    display:none !important;
}

.product-google-reviews [class*="ReviewCard"],
.product-google-reviews [class*="review-card"]{
    max-width:calc((100% - 28px) / 3) !important;
}

.product-review-section.google-reviews{
    margin-top:46px;
    padding:0;
    border:0;
    border-radius:0;
    background:#f4efe8;
    overflow:hidden;
}

.google-review-track{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:248px;
    gap:32px;
    overflow-x:auto;
    padding:42px 0 28px;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
}

.google-review-track::-webkit-scrollbar{
    display:none;
}

.google-review-card{
    min-height:198px;
    padding:24px;
    border:1px solid #dddfe5;
    border-radius:22px;
    background:#fff;
    scroll-snap-align:start;
}

.google-review-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.google-avatar{
    width:40px;
    height:40px;
    display:grid;
    place-items:center;
    flex:0 0 auto;
    border-radius:50%;
    color:#fff;
    font-size:20px;
    font-weight:800;
}

.photo-avatar{
    background:linear-gradient(135deg, #b8afa4, #62584f);
}

.orange-avatar{
    background:#c84b1c;
}

.sunset-avatar{
    background:linear-gradient(135deg, #ef2f1d, #ff8a00);
}

.teal-avatar{
    background:#009688;
}

.blue-avatar{
    background:#1186d8;
}

.google-review-header h3{
    display:flex;
    align-items:center;
    gap:5px;
    margin:0 0 4px;
    color:#202124;
    font-size:15px;
    line-height:1.2;
    font-weight:800;
}

.google-review-header h3 span{
    width:14px;
    height:14px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#1a73e8;
    color:#fff;
    font-size:9px;
    line-height:1;
}

.google-review-header p{
    margin:0;
    color:#777;
    font-size:12px;
    line-height:1.2;
    font-weight:700;
}

.google-review-header p b{
    display:inline-grid;
    place-items:center;
    width:18px;
    height:18px;
    margin-right:4px;
    border-radius:50%;
    background:#fff;
    color:#4285f4;
    font-size:18px;
    line-height:1;
    font-weight:900;
}

.google-stars{
    margin-bottom:10px;
    color:#fbbc04;
    font-size:18px;
    letter-spacing:1px;
}

.google-review-card > p{
    margin:0;
    color:#151515;
    font-size:15px;
    line-height:1.45;
    font-weight:800;
}

.google-review-dots{
    display:flex;
    justify-content:center;
    gap:8px;
    padding-bottom:20px;
}

.google-review-dots span{
    width:4px;
    height:4px;
    border-radius:50%;
    background:#a5a5a5;
}

.google-review-dots .active{
    width:6px;
    height:6px;
    background:#202124;
}

.google-widget-label{
    width:max-content;
    margin:0 auto 8px;
    padding:7px 12px;
    border-radius:999px;
    background:#fff;
    color:#6b7280;
    font-size:12px;
    font-weight:800;
}

@media (max-width:760px){
    .google-review-track{
        grid-auto-columns:82%;
        gap:16px;
        padding-top:28px;
    }
}


.product-body .booking-box{
    z-index:5;
    padding:22px;
    border:1px solid #ffe0b4;
    border-radius:24px;
    background:#fff;
    box-shadow:0 24px 60px rgba(119,72,0,0.12);
    overflow:hidden;
}

.product-body .product-right{
    position:sticky;
    top:104px;
    z-index:5;
    align-self:start;
}

.product-body .product-right .booking-box{
    position:relative;
    top:auto;
}

.product-body .booking-box::before{
    content:"";
    display:block;
    height:7px;
    margin:-22px -22px 20px;
    background:linear-gradient(90deg, #ff8a00, #ffc04d);
}

.product-body .price-box strong{
    color:#ff8a00;
}

.product-body .option-box{
    min-height:56px;
    border-color:#f3dfc0;
    background:#fff7ec;
    border-radius:16px;
}

.product-body .option-box:hover{
    border-color:#ffbd68;
    background:#fff4e3;
}

.guest-picker{
    position:relative;
}

.guest-toggle b{
    transition:transform 0.2s ease;
}

.guest-picker.is-open .guest-toggle b{
    transform:rotate(180deg);
}

.guest-panel{
    display:none;
    margin-top:8px;
    overflow:hidden;
    padding:12px;
    border:1px solid #f3dfc0;
    border-radius:18px;
    background:#fffaf4;
    box-shadow:0 18px 45px rgba(119,72,0,0.12);
}

.guest-picker.is-open .guest-panel{
    display:block;
}

.guest-row{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:14px;
    padding:16px;
    border-radius:14px;
    background:#fff;
}

.guest-row + .guest-row{
    margin-top:8px;
    border-top:0;
}

.guest-row h4{
    margin:0 0 4px;
    color:#061433;
    font-size:15px;
    font-weight:900;
}

.guest-row p{
    margin:0;
    color:#637083;
    font-size:13px;
    font-weight:800;
}

.guest-controls{
    display:flex;
    align-items:center;
    gap:12px;
}

.guest-controls button{
    width:26px;
    height:26px;
    display:grid;
    place-items:center;
    border:2px solid #ff8a00;
    border-radius:50%;
    background:#fff;
    color:#ff8a00;
    font-size:18px;
    line-height:1;
    font-weight:900;
    cursor:pointer;
}

.guest-controls button:disabled{
    border-color:#d8c9b8;
    color:#d8c9b8;
    cursor:not-allowed;
}

.guest-controls span{
    min-width:34px;
    height:34px;
    display:grid;
    place-items:center;
    border:1px solid #f0d7b5;
    border-radius:8px;
    background:#fffaf4;
    color:#061433;
    font-size:15px;
    font-weight:800;
}

.guest-continue{
    width:100%;
    margin:12px 0 0;
    min-height:46px;
    border:0;
    border-radius:999px;
    background:#ff8a00;
    color:#fff;
    font-family:inherit;
    font-size:15px;
    font-weight:900;
    cursor:pointer;
}

.guest-continue:hover{
    background:#f07700;
}

.date-picker{
    position:relative;
}

.date-picker.needs-date .date-toggle{
    border-color:#ff3b30;
    box-shadow:0 0 0 3px rgba(255,59,48,0.10);
}

.date-error{
    display:none;
    margin:8px 4px 0;
    color:#ff3b30;
    font-size:12px;
    font-weight:900;
}

.date-picker.needs-date .date-error{
    display:block;
}

.date-toggle b{
    transition:transform 0.2s ease;
}

.date-picker.is-open .date-toggle b{
    transform:rotate(180deg);
}

.luxe-date-panel{
    display:none;
    margin-top:10px;
    padding:18px;
    border-radius:24px;
    background:#1b0700;
    color:#fff;
    box-shadow:0 22px 48px rgba(27,7,0,0.28);
}

.date-picker.is-open .luxe-date-panel{
    display:block;
}

.luxe-date-head{
    display:grid;
    grid-template-columns:42px minmax(0,1fr) 42px;
    align-items:center;
    gap:12px;
    padding-bottom:16px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.luxe-date-head button{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border:0;
    border-radius:12px;
    background:rgba(255,255,255,0.10);
    color:#fff;
    font-size:28px;
    line-height:1;
    cursor:pointer;
}

.luxe-date-head p{
    margin:0 0 4px;
    color:#b99786;
    text-align:center;
    font-size:11px;
    font-weight:900;
    letter-spacing:2px;
    text-transform:uppercase;
}

.luxe-date-head h4{
    margin:0;
    color:#fff;
    text-align:center;
    font-size:18px;
    font-weight:900;
}

.luxe-weekdays,
.luxe-days{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:7px;
}

.luxe-weekdays{
    margin:18px 0 10px;
}

.luxe-weekdays span{
    color:#8a7469;
    text-align:center;
    font-size:10px;
    font-weight:900;
    text-transform:uppercase;
}

.luxe-days button{
    aspect-ratio:1;
    border:0;
    border-radius:11px;
    background:#3a241a;
    color:#fff;
    font-family:inherit;
    font-size:12px;
    font-weight:900;
    cursor:pointer;
}

.luxe-days .is-empty{
    aspect-ratio:1;
}

.luxe-days button:disabled{
    opacity:0.38;
    cursor:not-allowed;
}

.luxe-days button:hover{
    background:#543326;
}

.luxe-days button:disabled:hover{
    background:#3a241a;
}

.luxe-days button.is-selected{
    outline:2px solid #ff8a00;
    background:#3a241a;
}

.luxe-date-actions{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-top:18px;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,0.08);
}

.luxe-date-actions button{
    border:0;
    font-family:inherit;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    cursor:pointer;
}

.date-clear{
    background:transparent;
    color:#b99786;
}

.date-today{
    min-width:84px;
    min-height:38px;
    border-radius:13px !important;
    background:#ff8a00;
    color:#fff;
}

.language-picker{
    position:relative;
}

.language-toggle b{
    transition:transform 0.2s ease;
}

.language-picker.is-open .language-toggle b{
    transform:rotate(180deg);
}

.language-panel{
    display:none;
    margin-top:8px;
    overflow:hidden;
    border:1px solid #f3dfc0;
    border-radius:18px;
    background:#fffaf4;
    box-shadow:0 18px 45px rgba(119,72,0,0.12);
}

.language-picker.is-open .language-panel{
    display:block;
}

.language-panel button{
    width:100%;
    min-height:58px;
    display:flex;
    align-items:center;
    gap:12px;
    border:0;
    background:#fffaf4;
    color:#061433;
    padding:0 18px;
    font-family:inherit;
    font-size:16px;
    font-weight:900;
    text-align:left;
    cursor:pointer;
}

.language-panel button + button{
    border-top:1px solid #f4e7d7;
}

.language-panel button:hover{
    background:#fff4e3;
}

.language-panel button span{
    width:24px;
    height:24px;
    border:2px solid #d8c9b8;
    border-radius:50%;
}

.language-panel button.is-selected span{
    border-color:#ff8a00;
    box-shadow:inset 0 0 0 5px #fff;
    background:#ff8a00;
}

.product-body .book-btn{
    min-height:52px;
    border-radius:16px;
    background:#ff8a00;
    box-shadow:0 16px 28px rgba(255,138,0,0.24);
}

.product-body .book-btn:hover{
    background:#f07700;
}

.product-body .info-item span{
    border-color:#ff8a00;
    color:#ff8a00;
}

@media (max-width:980px){
    .product-body .product-menu{
        order:initial;
        width:auto;
    }

    .product-content-grid{
        grid-template-columns:1fr;
    }

    .product-body .about-list{
        grid-template-columns:1fr 1fr;
    }

    .product-body .activity-strip{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width:760px){
    .product-body .product-navbar{
        border-radius:18px;
    }

    .product-body .product-menu{
        order:3;
        width:100%;
        overflow-x:auto;
    }

    .product-title-row h1{
        font-size:30px;
    }

    .product-body .gallery-main img{
        min-height:300px;
    }

    .product-body .gallery-grid img,
    .gallery-more{
        min-height:145px;
    }

    .product-body .about-list{
        grid-template-columns:1fr;
    }

    .product-body .activity-strip{
        grid-template-columns:1fr;
        gap:18px;
    }

    .itinerary-section{
        max-width:none;
    }

    .details-row{
        grid-template-columns:1fr;
        gap:12px;
    }

    .product-review-grid{
        grid-template-columns:1fr;
    }

    .product-review-head{
        flex-direction:column;
    }

    .product-review-score{
        text-align:left;
    }

}

@media (max-width:980px){
    .product-body .product-right{
        position:static;
    }
}

/* ===== ITINERARY LAYOUT FIX ===== */

.itinerary-section{
    max-width:560px;
    padding:6px 0 4px;
}

.itinerary-timeline{
    gap:0;
    padding-left:76px;
}

.itinerary-timeline::before{
    top:18px;
    bottom:22px;
    left:31px;
    width:11px;
}

.itinerary-step{
    display:block;
    min-height:76px;
    padding:0 0 18px;
}

.itinerary-step:last-child{
    min-height:0;
    padding-bottom:0;
}

.itinerary-icon{
    left:-61px;
    top:-2px;
    width:38px;
    height:38px;
    border-width:5px;
}

.itinerary-step h3,
.itinerary-step p{
    max-width:430px;
}

.itinerary-step.drive{
    min-height:72px;
}

.itinerary-step.drive::before,
.itinerary-step.drive::after{
    left:-49px;
    width:8px;
    height:8px;
}

.itinerary-step.drive::before{
    top:43px;
}

.itinerary-step.drive::after{
    top:60px;
}

.itinerary-step.place{
    min-height:96px;
}

.itinerary-step.return .itinerary-icon{
    top:0;
    width:36px;
    height:36px;
}

@media (max-width:760px){
    .itinerary-timeline{
        padding-left:62px;
    }

    .itinerary-timeline::before{
        left:24px;
    }

    .itinerary-icon{
        left:-54px;
    }

    .itinerary-step.drive::before,
    .itinerary-step.drive::after{
        left:-42px;
    }

    .itinerary-step h3{
        font-size:15px;
    }

    .itinerary-step p{
        font-size:13px;
    }
}

/* ===== CREATIVE HOME PAGE REDESIGN ===== */

.home-body{
    background:#fffaf4;
    color:#101828;
    font-family:'Inter', sans-serif;
    font-weight:700;
}

.home-body .home-nav{
    position:absolute;
    top:24px;
    left:50%;
    width:calc(100% - 40px);
    max-width:1180px;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:12px 14px 12px 22px;
    border:1px solid rgba(255,255,255,0.22);
    border-radius:24px;
    background:rgba(255,255,255,0.08);
    box-shadow:none;
    backdrop-filter:blur(14px);
    z-index:1000;
}

.home-logo{
    color:#fff;
    text-decoration:none;
    font-size:22px;
    font-weight:900;
    white-space:nowrap;
}

.home-menu{
    display:flex;
    gap:6px;
    padding:6px;
    border-radius:999px;
    background:rgba(255,255,255,0.12);
}

.home-menu a{
    padding:10px 15px;
    border-radius:999px;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:900;
}

.home-menu a:hover{
    background:rgba(255,255,255,0.18);
    color:#fff;
}

.home-whatsapp{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 22px;
    border-radius:999px;
    background:#ff8a00;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:900;
    box-shadow:0 14px 28px rgba(255,138,0,0.24);
}

.home-whatsapp:hover{
    background:#f07700;
}

.home-hero{
    position:relative;
    min-height:760px;
    display:grid;
    align-items:end;
    padding:140px 7% 70px;
    overflow:hidden;
}

.home-hero-media{
    position:absolute;
    inset:0;
    z-index:0;
    background:#111923 url("images/home-hero-camel.jpg?v=img8008") center/cover no-repeat;
}

.home-hero-media::before{
    content:"";
    position:absolute;
    inset:-24px;
    background:inherit;
    filter:blur(22px);
    transform:scale(1.04);
    opacity:.72;
}

.home-hero-media::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(9,14,25,0.82), rgba(9,14,25,0.34) 48%, rgba(9,14,25,0.64)),
        linear-gradient(180deg, rgba(9,14,25,0.18), rgba(9,14,25,0.76));
    z-index:2;
}

.home-hero-media img{
    position:relative;
    z-index:1;
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center top;
    display:block;
    -webkit-mask-image:linear-gradient(90deg, transparent 0%, #000 13%, #000 87%, transparent 100%);
    mask-image:linear-gradient(90deg, transparent 0%, #000 13%, #000 87%, transparent 100%);
}

.home-body .home-hero-media img{
    content:url("images/home-hero-camel.jpg?v=img8008");
}

.home-hero-content{
    position:relative;
    z-index:1;
    max-width:1180px;
    width:100%;
    margin:0 auto;
    color:#fff;
}

.home-kicker,
.section-heading p,
.review-panel > div > p{
    margin:0 0 12px;
    color:#ffb15c;
    font-size:13px;
    font-weight:900;
    letter-spacing:2px;
    text-transform:uppercase;
}

.home-hero h1{
    max-width:780px;
    margin:0;
    font-size:72px;
    line-height:0.98;
    font-weight:900;
    letter-spacing:0;
}

.home-hero-text{
    max-width:650px;
    margin:24px 0 0;
    color:#f5f7fb;
    font-size:19px;
    line-height:1.65;
}

.home-search{
    max-width:1040px;
    margin-top:36px;
    display:grid;
    grid-template-columns:1.1fr 1.2fr 1.1fr auto;
    gap:10px;
    padding:10px;
    border:1px solid rgba(255,255,255,0.28);
    border-radius:24px;
    background:rgba(255,255,255,0.96);
    box-shadow:0 24px 60px rgba(0,0,0,0.18);
}

.home-search label{
    display:grid;
    gap:6px;
    padding:12px 16px;
    border-radius:16px;
    background:#fff7ec;
    color:#101828;
}

.home-search span{
    color:#667085;
    font-size:11px;
    font-weight:900;
    letter-spacing:1px;
    text-transform:uppercase;
}

.home-search input,
.home-search select{
    width:100%;
    border:0;
    outline:0;
    background:transparent;
    color:#101828;
    font:inherit;
    font-size:15px;
}

.home-search button{
    min-width:160px;
    border:0;
    border-radius:18px;
    background:#ff8a00;
    color:#fff;
    font:inherit;
    font-weight:900;
    cursor:pointer;
}

.home-search button:hover{
    background:#f07700;
}

.home-trust-row{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:22px;
}

.home-trust-row span{
    padding:10px 14px;
    border:1px solid rgba(255,255,255,0.22);
    border-radius:999px;
    background:rgba(255,255,255,0.12);
    color:#fff;
    font-size:13px;
}

.home-stats{
    max-width:1180px;
    margin:-40px auto 0;
    position:relative;
    z-index:4;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
    overflow:hidden;
    border:1px solid #ffe0b4;
    border-radius:24px;
    background:#ffe0b4;
    box-shadow:0 24px 60px rgba(119,72,0,0.10);
}

.home-stats article{
    padding:28px;
    background:#fff;
}

.home-stats strong{
    display:block;
    color:#ff8a00;
    font-size:34px;
    line-height:1;
    font-weight:900;
}

.home-stats span{
    display:block;
    margin-top:8px;
    color:#667085;
    font-size:13px;
}

.home-categories,
.home-tours,
.home-how,
.home-reviews{
    max-width:1180px;
    margin:0 auto;
    padding:96px 0 0;
}

.section-heading{
    max-width:720px;
    margin-bottom:32px;
}

.section-heading h2,
.review-panel h2{
    margin:0;
    color:#101828;
    font-size:44px;
    line-height:1.08;
    font-weight:900;
}

.wide-heading{
    max-width:none;
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:24px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.category-grid article{
    position:relative;
    min-height:220px;
    overflow:hidden;
    border-radius:22px;
    background:#101828;
    cursor:pointer;
    transition:transform .2s ease, box-shadow .2s ease;
}

.category-grid img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    opacity:0.86;
    transition:transform 0.35s ease;
}

.category-grid article:hover img{
    transform:scale(1.06);
}

.category-grid article.is-active{
    box-shadow:0 0 0 4px rgba(255,138,0,0.35), 0 22px 50px rgba(255,138,0,0.22);
    transform:translateY(-4px);
}

.category-grid span{
    position:absolute;
    left:18px;
    bottom:18px;
    padding:10px 14px;
    border-radius:999px;
    background:#fff;
    color:#101828;
    font-size:14px;
    font-weight:900;
}

.tour-tabs{
    display:flex;
    gap:8px;
    padding:6px;
    border-radius:999px;
    background:#fff4e3;
}

.tour-tabs button{
    border:0;
    border-radius:999px;
    background:#fff;
    color:#344054;
    padding:11px 15px;
    font:inherit;
    font-size:13px;
    cursor:pointer;
}

.tour-tabs button:first-child{
    background:#ff8a00;
    color:#fff;
}

.tour-tabs button.is-active{
    background:#061433;
    color:#fff;
}

.home-tour-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:20px;
}

.home-tour-card{
    display:flex;
    flex-direction:column;
    overflow:hidden;
    border:1px solid #f3dfc0;
    border-radius:24px;
    background:#fff;
    box-shadow:0 18px 45px rgba(119,72,0,0.08);
}

.home-tour-card.is-filtered-out{
    display:none;
}

.tour-image{
    position:relative;
    display:block;
    height:250px;
    color:inherit;
    overflow:hidden;
}

.featured-tour .tour-image{
    height:250px;
}

.tour-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform 0.35s ease;
}

.home-tour-card:hover .tour-image img{
    transform:scale(1.05);
}

.tour-image span{
    position:absolute;
    left:16px;
    top:16px;
    padding:9px 12px;
    border-radius:999px;
    background:#ff8a00;
    color:#fff;
    font-size:12px;
    font-weight:900;
}

.tour-card-body{
    flex:1;
    display:flex;
    flex-direction:column;
    padding:22px;
}

.tour-meta{
    margin:0 0 10px;
    color:#ff8a00;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}

.tour-card-body h3{
    min-height:86px;
    margin:0 0 14px;
    color:#101828;
    font-size:20px;
    line-height:1.35;
    font-weight:900;
}

.featured-tour .tour-card-body h3{
    font-size:20px;
}

.tour-rating{
    display:flex;
    align-items:center;
    gap:8px;
    color:#667085;
    font-size:13px;
}

.tour-rating span{
    color:#ffb000;
    letter-spacing:1px;
}

.tour-rating strong{
    color:#101828;
}

.tour-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-top:auto;
    padding-top:18px;
    border-top:1px solid #edf1f6;
}

.tour-footer div span{
    display:block;
    color:#667085;
    font-size:12px;
}

.tour-footer div strong{
    display:block;
    color:#101828;
    font-size:28px;
    font-weight:900;
}

.tour-footer a{
    flex:0 0 auto;
    padding:13px 16px;
    border-radius:999px;
    background:#101828;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:900;
}

.tour-footer a:hover{
    background:#ff8a00;
}

.home-how{
    padding-bottom:0;
}

.how-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.how-grid article{
    padding:28px;
    border:1px solid #ffe0b4;
    border-radius:24px;
    background:#fff;
}

.how-grid span{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#ff8a00;
    color:#fff;
    font-size:16px;
    font-weight:900;
}

.how-grid h3{
    margin:20px 0 10px;
    color:#101828;
    font-size:20px;
    font-weight:900;
}

.how-grid p{
    margin:0;
    color:#667085;
    font-size:15px;
    line-height:1.65;
}

.review-panel{
    display:grid;
    grid-template-columns:0.8fr 1.2fr;
    gap:24px;
    padding:34px;
    border-radius:28px;
    background:#101828;
    color:#fff;
}

.review-panel h2{
    color:#fff;
}

.review-score{
    margin-top:26px;
}

.review-score strong{
    display:block;
    font-size:54px;
    line-height:1;
}

.review-score span{
    display:block;
    margin:8px 0;
    color:#ffb000;
    letter-spacing:1px;
}

.review-score small{
    color:#cbd5e1;
}

.review-quotes{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.review-quotes article{
    padding:24px;
    border:1px solid rgba(255,255,255,0.14);
    border-radius:22px;
    background:rgba(255,255,255,0.08);
}

.review-quotes p{
    margin:0 0 18px;
    color:#fff;
    font-size:17px;
    line-height:1.65;
}

.review-quotes span{
    color:#ffb15c;
    font-size:13px;
}

.google-home-reviews{
    display:block;
    min-width:0;
}

.google-home-reviews .elfsight-app-3c9379ef-d7b4-4ec3-825a-a1e11aed2ac9{
    width:100%;
    margin:0;
    padding:0 !important;
    background:transparent !important;
}

.google-home-reviews [class*="ReviewCard"]{
    background:#202938 !important;
    border:1px solid rgba(255,255,255,0.12) !important;
    border-radius:20px !important;
}

.home-footer{
    position:relative;
    margin:96px auto 0;
    padding-top:38px;
    border-radius:42px 42px 0 0;
    background:
        radial-gradient(circle at top left, rgba(255,138,0,0.18), transparent 34%),
        #160904;
    color:#fff;
    overflow:hidden;
}

.footer-cta-card{
    position:relative;
    top:auto;
    left:auto;
    width:calc(100% - 40px);
    max-width:1180px;
    margin:0 auto 34px;
    transform:none;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:28px 30px;
    border:1px solid rgba(255,138,0,0.26);
    border-radius:28px;
    background:
        linear-gradient(90deg, rgba(16,24,40,0.94), rgba(49,22,7,0.94)),
        url("https://images.unsplash.com/photo-1518684079-3c830dcef090?q=80&w=1400&auto=format&fit=crop");
    background-size:cover;
    background-position:center;
    box-shadow:0 26px 70px rgba(24,8,0,0.24);
}

.footer-cta-card p{
    margin:0 0 8px;
    color:#ffb15c;
    font-size:12px;
    font-weight:900;
    letter-spacing:2px;
    text-transform:uppercase;
}

.footer-cta-card h2{
    margin:0;
    color:#fff;
    font-size:30px;
    line-height:1.15;
    font-weight:900;
}

.footer-cta-card a{
    flex:0 0 auto;
    padding:16px 24px;
    border-radius:999px;
    background:#ff8a00;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:900;
    box-shadow:0 16px 30px rgba(255,138,0,0.26);
}

.footer-feature-bar{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    padding:0 0 64px;
    background:transparent;
}

.footer-feature-bar,
.footer-main,
.footer-bottom-line{
    position:relative;
    z-index:1;
}

.footer-feature-bar span{
    padding:14px 16px;
    border:1px solid rgba(255,255,255,0.10);
    border-radius:999px;
    background:rgba(255,255,255,0.06);
    color:#f8efe8;
    font-size:13px;
    font-weight:900;
    letter-spacing:1.4px;
    text-transform:uppercase;
    text-align:center;
}

.footer-main{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.35fr 0.8fr 1fr 1fr;
    gap:58px;
    padding:0 0 72px;
}

.footer-brand h2{
    display:flex;
    align-items:center;
    gap:12px;
    margin:0 0 14px;
    color:#fff;
    font-size:26px;
    font-weight:900;
}

.footer-brand h2 span{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:linear-gradient(135deg, #ff8a00, #ffc04d);
    color:#fff;
    font-size:18px;
}

.footer-label{
    margin:0 0 32px !important;
    color:#b99786 !important;
    font-size:11px;
    font-weight:900;
    letter-spacing:5px;
    text-transform:uppercase;
}

.footer-brand p{
    margin:0;
    color:#d2c0b5;
    font-size:15px;
    line-height:1.7;
}

.footer-column h3{
    margin:0 0 30px;
    color:#ffb15c;
    font-size:12px;
    font-weight:900;
    letter-spacing:5px;
    text-transform:uppercase;
}

.footer-column a,
.footer-column p{
    display:block;
    margin:0 0 18px;
    color:#d2c0b5;
    text-decoration:none;
    font-size:15px;
    line-height:1.5;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
}

.footer-contact p{
    text-transform:none;
    letter-spacing:0;
}

.footer-column a:hover{
    color:#ff8a00;
}

.footer-bottom-line{
    max-width:1180px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    gap:24px;
    padding:34px 0 56px;
    border-top:1px solid rgba(255,255,255,0.10);
}

.footer-bottom-line span,
.footer-bottom-line a{
    color:#6f5a51;
    text-decoration:none;
    font-size:12px;
    font-weight:900;
}

.footer-bottom-line a:hover{
    color:#ff8a00;
}

.back-to-top{
    position:fixed;
    right:24px;
    bottom:24px;
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#ff8a00;
    color:#fff;
    text-decoration:none;
    font-size:24px;
    font-weight:900;
    box-shadow:0 16px 30px rgba(255,138,0,0.28);
    z-index:1000;
}

.back-to-top:hover{
    background:#f07700;
    transform:translateY(-2px);
}

/* ===== CHECKOUT PAGE ===== */

.checkout-body{
    min-height:100vh;
    background:#fbfaf6;
    color:#101828;
    font-family:'Inter', sans-serif;
    font-weight:700;
}

.checkout-page{
    max-width:1180px;
    margin:0 auto;
    padding:44px 20px 78px;
}

.checkout-back-top{
    display:block;
    width:max-content;
    margin:0 auto 18px;
    color:#6b5d55;
    text-decoration:none;
    font-size:13px;
    font-weight:900;
    letter-spacing:1.8px;
    text-transform:uppercase;
}

.checkout-header{
    position:static;
    top:auto;
    left:auto;
    width:auto;
    display:block;
    padding:0;
    z-index:auto;
    text-align:center;
}

.checkout-header h1{
    margin:0;
    color:#080808;
    font-size:48px;
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
}

.checkout-steps{
    position:relative;
    width:450px;
    max-width:100%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin:42px auto 66px;
}

.checkout-steps::before{
    content:"";
    position:absolute;
    top:22px;
    left:55px;
    right:55px;
    height:3px;
    background:#e7eaf0;
}

.checkout-steps div{
    position:relative;
    z-index:1;
    display:grid;
    justify-items:center;
    gap:8px;
}

.checkout-steps span{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border:3px solid #d8dee8;
    border-radius:50%;
    background:#fff;
    color:#8a96a8;
    font-size:16px;
    font-weight:900;
}

.checkout-steps .is-active span{
    border-color:#f5dfbd;
    background:#251006;
    color:#fff;
}

.checkout-steps .is-done span{
    border-color:#ff8a00;
    background:#ff8a00;
    color:#fff;
}

.checkout-steps p{
    margin:0;
    color:#9aa3b2;
    font-size:11px;
    font-weight:900;
    letter-spacing:1px;
    text-transform:uppercase;
}

.checkout-steps .is-active p{
    color:#251006;
}

.checkout-steps .is-done p{
    color:#9aa3b2;
}

.checkout-step-panel{
    display:none;
}

.checkout-step-panel.is-active{
    display:block;
}

.checkout-layout{
    display:grid;
    grid-template-columns:minmax(0,760px) 360px;
    gap:40px;
    align-items:start;
}

.checkout-config-card,
.checkout-summary-card,
.booking-success-card{
    border:1px solid #e9edf3;
    border-radius:34px;
    background:#fff;
    box-shadow:0 16px 35px rgba(16,24,40,0.06);
}

.checkout-config-card{
    padding:48px 40px 40px;
}

.checkout-summary-card{
    position:sticky;
    top:30px;
    padding:34px;
}

.booking-success-card{
    display:none;
    grid-column:1 / -1;
    max-width:820px;
    margin:0 auto;
    padding:46px 48px 50px;
    text-align:center;
}

.checkout-layout.is-success{
    display:block;
}

.checkout-layout.is-success .checkout-config-card,
.checkout-layout.is-success .checkout-summary-card{
    display:none;
}

.checkout-layout.is-success .booking-success-card{
    display:block;
}

.checkout-header.is-success .checkout-steps{
    display:none;
}

.checkout-header.is-success .checkout-back,
.checkout-header.is-success h1{
    display:none;
}

.success-mark{
    width:96px;
    height:96px;
    display:grid;
    place-items:center;
    margin:0 auto 46px;
    border-radius:50%;
    background:#fff0d8;
    color:#ff6f00;
    font-size:42px;
    box-shadow:inset 0 0 0 2px #ffe2b4;
}

.booking-success-card h2{
    margin:0;
    color:#251006;
    font-size:36px;
    line-height:1.1;
    font-weight:900;
    text-transform:uppercase;
}

.confirmation-body .booking-success-card{
    display:block;
}

.confirmation-page{
    align-items:center;
    min-height:100vh;
}

.confirmation-card h1{
    margin:0;
    color:#251006;
    font-size:36px;
    line-height:1.1;
    font-weight:900;
    text-transform:uppercase;
}

.success-subtitle{
    margin:16px 0 34px;
    color:#ff4b00;
    font-size:14px;
    font-weight:900;
    letter-spacing:1.8px;
    text-transform:uppercase;
}

.success-summary{
    padding:32px;
    border:1px solid #f3dfc0;
    border-radius:24px;
    background:#fffaf2;
    text-align:left;
}

.success-summary h3{
    margin:0 0 18px;
    padding-bottom:14px;
    border-bottom:1px solid #f3dfc0;
    color:#251006;
    font-size:13px;
    font-weight:900;
    letter-spacing:5px;
    text-transform:uppercase;
}

.success-summary div{
    display:flex;
    justify-content:space-between;
    gap:24px;
    margin:16px 0;
}

.success-summary span{
    color:#667085;
    font-size:15px;
    font-weight:900;
}

.success-summary strong{
    max-width:330px;
    color:#251006;
    text-align:right;
    font-size:15px;
    font-weight:900;
    text-transform:uppercase;
}

.success-summary .success-total{
    margin-top:18px;
    padding-top:18px;
    border-top:1px dashed #e5dfd7;
}

.success-total strong{
    color:#ff6f00;
    font-size:22px;
}

.success-note{
    margin:34px auto 24px;
    max-width:680px;
    color:#344054;
    font-size:15px;
    line-height:1.6;
    font-weight:800;
}

.success-note strong{
    color:#ff8a00;
}

.booking-success-card a{
    min-width:280px;
    min-height:58px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:#251006;
    color:#fff;
    font-size:12px;
    font-weight:900;
    letter-spacing:4px;
    text-decoration:none;
    text-transform:uppercase;
    box-shadow:0 18px 32px rgba(37,16,6,0.22);
}

.checkout-kicker{
    margin:0 0 12px;
    color:#ff8a00;
    font-size:12px;
    font-weight:900;
    letter-spacing:4px;
    text-transform:uppercase;
}

.checkout-config-card h2{
    margin:0;
    color:#060a12;
    font-size:30px;
    line-height:1.1;
    font-weight:900;
    text-transform:uppercase;
}

.checkout-muted{
    margin:10px 0 34px;
    color:#677184;
    font-size:15px;
}

.selected-date-box{
    display:grid;
    grid-template-columns:52px minmax(0,1fr) auto;
    align-items:center;
    gap:14px;
    padding:16px;
    border:1px solid #f3dfc0;
    border-radius:16px;
    background:#fff8ee;
}

.selected-date-box > span{
    width:40px;
    height:40px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:#ff8a00;
    color:#fff;
}

.selected-date-box p{
    margin:0 0 4px;
    color:#8a96a8;
    font-size:12px;
    font-weight:900;
    letter-spacing:1px;
    text-transform:uppercase;
}

.selected-date-box strong{
    color:#050b18;
    font-size:15px;
    font-weight:900;
    text-transform:uppercase;
}

.selected-date-box button{
    min-height:40px;
    padding:0 18px;
    border:1px solid #f3dfc0;
    border-radius:12px;
    background:#fff;
    color:#ff8a00;
    font-family:inherit;
    font-size:12px;
    font-weight:900;
    letter-spacing:1.5px;
    text-transform:uppercase;
    cursor:pointer;
}

.checkout-date-panel{
    display:none;
    margin-top:12px;
    max-width:430px;
    padding:14px;
    border-radius:22px;
    background:#1b0700;
    color:#fff;
    box-shadow:0 18px 42px rgba(27,7,0,0.18);
}

.checkout-config-card.is-date-open .checkout-date-panel{
    display:block;
}

.checkout-date-panel{
    width:100%;
}

.checkout-date-head{
    display:grid;
    grid-template-columns:38px minmax(0,1fr) 38px;
    align-items:center;
    gap:10px;
    padding-bottom:12px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.checkout-date-head button{
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border:0;
    border-radius:12px;
    background:rgba(255,255,255,0.10);
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.checkout-date-head h3{
    margin:0;
    color:#fff;
    text-align:center;
    font-size:17px;
    font-weight:900;
}

.checkout-weekdays,
.checkout-days{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:6px;
}

.checkout-weekdays{
    margin:14px 0 8px;
}

.checkout-weekdays span{
    color:#9b8275;
    text-align:center;
    font-size:10px;
    font-weight:900;
    text-transform:uppercase;
}

.checkout-days button,
.checkout-days .is-empty{
    aspect-ratio:1;
}

.checkout-days button{
    border:0;
    border-radius:9px;
    background:#3a241a;
    color:#fff;
    font-family:inherit;
    font-size:12px;
    font-weight:900;
    cursor:pointer;
}

.checkout-days button:hover{
    background:#543326;
}

.checkout-days button.is-selected{
    outline:2px solid #ff8a00;
}

.checkout-date-foot{
    display:flex;
    justify-content:space-between;
    margin-top:14px;
    padding-top:14px;
    border-top:1px solid rgba(255,255,255,0.08);
}

.checkout-date-foot button{
    border:0;
    font-family:inherit;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    cursor:pointer;
}

.checkout-date-foot button:first-child{
    background:transparent;
    color:#b99786;
}

.checkout-date-foot button:last-child{
    min-width:84px;
    min-height:38px;
    border-radius:13px;
    background:#ff8a00;
    color:#fff;
}

.checkout-section-label{
    margin:32px 0 18px;
    color:#050b18;
    font-size:13px;
    font-weight:900;
    letter-spacing:5px;
    text-transform:uppercase;
}

.time-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.time-grid button{
    min-height:72px;
    border:1px solid #e8edf3;
    border-radius:12px;
    background:#fff;
    color:#061433;
    font-family:inherit;
    font-size:14px;
    font-weight:900;
    box-shadow:0 8px 16px rgba(16,24,40,0.03);
    cursor:pointer;
}

.time-grid button::before{
    content:"◷";
    display:block;
    margin-bottom:8px;
    color:#c8d0dc;
}

.time-grid .is-selected{
    border-color:#ff8a00;
    background:#fff8ee;
}

.tour-option{
    display:grid;
    grid-template-columns:28px minmax(0,1fr) auto;
    gap:18px;
    padding:34px;
    border:2px solid #eef1f5;
    border-radius:28px;
    background:#fff;
    cursor:pointer;
    text-align:left;
}

.tour-option + .tour-option{
    margin-top:18px;
}

.tour-option.is-selected{
    border-color:#ff8a00;
    box-shadow:0 16px 30px rgba(255,138,0,0.10);
}

.option-radio{
    width:22px;
    height:22px;
    margin-top:4px;
    border:2px solid #cbd5e1;
    border-radius:50%;
}

.tour-option.is-selected .option-radio{
    border:7px solid #ff8a00;
}

.tour-option h3{
    margin:0 0 14px;
    color:#050b18;
    font-size:20px;
    line-height:1.2;
    font-weight:900;
    text-transform:uppercase;
}

.tour-option p{
    margin:0;
    color:#344054;
    font-size:14px;
    line-height:1.7;
}

.tour-option > strong{
    color:#475569;
    font-size:16px;
    white-space:nowrap;
}

.tour-option small{
    color:#94a3b8;
    font-size:12px;
}

.option-tags{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-top:22px;
}

.option-tags span{
    color:#8a96a8;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
}

.option-tags span::before{
    content:"✦";
    color:#ff8a00;
    margin-right:8px;
}

.checkout-summary-card h2{
    margin:0 0 10px;
    color:#20120c;
    font-size:22px;
    line-height:1.35;
    font-weight:900;
    text-transform:uppercase;
}

.summary-category{
    display:block;
    color:#8a817a;
    font-size:12px;
    font-weight:900;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.summary-category::before{
    content:"◆";
    color:#ff8a00;
    margin-right:6px;
}

.summary-lines,
.summary-price-line{
    margin-top:28px;
    padding-top:24px;
    border-top:1px solid #edf1f6;
}

.summary-lines div,
.summary-price-line{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-bottom:18px;
}

.summary-lines span,
.summary-price-line span{
    color:#64748b;
    font-size:13px;
    font-weight:900;
}

.summary-lines strong,
.summary-price-line strong{
    color:#20120c;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
}

.summary-lines [data-summary-addon]{
    color:#13a538;
}

.summary-total{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-top:24px;
}

.summary-total > span{
    color:#20120c;
    font-size:16px;
    font-weight:900;
    line-height:1.2;
    text-transform:uppercase;
}

.summary-total div{
    text-align:right;
}

.summary-total strong{
    display:block;
    color:#ff6f00;
    font-size:28px;
    line-height:1;
    font-weight:900;
}

.summary-total small{
    display:block;
    max-width:140px;
    margin-top:8px;
    color:#9aa3b2;
    font-size:9px;
    font-weight:900;
    letter-spacing:1px;
    text-transform:uppercase;
}


.checkout-actions{
    width:min(760px, 100%);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
    margin-top:36px;
}

.checkout-actions a,
.checkout-actions button{
    min-width:178px;
    min-height:48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    font-family:inherit;
    font-size:12px;
    font-weight:900;
    letter-spacing:1.8px;
    text-decoration:none;
    text-transform:uppercase;
}

.checkout-actions a,
.checkout-actions .checkout-secondary{
    border:1px solid #d8dee8;
    color:#050b18;
    background:#fff;
}

.checkout-actions button:not(.checkout-secondary){
    border:0;
    background:#ff8a00;
    color:#fff;
    box-shadow:0 16px 30px rgba(255,138,0,0.22);
}

.checkout-actions button{
    cursor:pointer;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.checkout-actions button:hover{
    transform:translateY(-2px);
}

.checkout-actions .checkout-secondary:hover{
    border-color:#ff8a00;
    color:#ff8a00;
}

.checkout-actions button:not(.checkout-secondary):hover{
    box-shadow:0 20px 36px rgba(255,138,0,0.28);
}

.checkout-actions .checkout-secondary.is-hidden,
.is-hidden{
    display:none;
}

.addon-card{
    display:grid;
    grid-template-columns:128px minmax(0,1fr) 150px;
    gap:20px;
    align-items:center;
    margin-top:34px;
    padding:22px;
    border:2px solid #eef1f5;
    border-radius:22px;
    background:#fff;
}

.addon-card.is-added{
    border-color:#ff8a00;
    box-shadow:0 16px 30px rgba(255,138,0,0.10);
}

.addon-card img{
    width:128px;
    height:96px;
    object-fit:cover;
    border-radius:14px;
}

.addon-main h3{
    margin:0 0 8px;
    color:#050b18;
    font-size:20px;
    line-height:1.18;
    font-weight:900;
    text-transform:uppercase;
}

.addon-main p{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin:0 0 8px;
    color:#64748b;
    font-size:13px;
    font-weight:900;
    letter-spacing:1px;
    text-transform:uppercase;
}

.addon-main p span::before{
    content:"◆";
    margin-right:7px;
    color:#ff8a00;
}

.addon-main small{
    display:block;
    color:#64748b;
    font-size:12px;
    line-height:1.4;
}

.addon-price{
    display:grid;
    gap:10px;
    justify-items:end;
}

.addon-price > span{
    color:#9aa3b2;
    font-size:10px;
    font-weight:900;
    letter-spacing:1.3px;
    text-transform:uppercase;
}

.addon-price strong{
    color:#251006;
    font-size:20px;
    font-weight:900;
}

.addon-price small{
    color:#9aa3b2;
    font-size:12px;
}

.addon-price button{
    min-height:42px;
    padding:0 24px;
    border:0;
    border-radius:12px;
    background:#251006;
    color:#fff;
    font-family:inherit;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    cursor:pointer;
}

.addon-card.is-added .addon-price button{
    background:#ff8a00;
}

.addon-guests{
    display:none;
    grid-column:1 / -1;
    width:100%;
    margin:4px 0 0;
    padding:10px;
    border:1px solid #f3dfc0;
    border-radius:14px;
    background:#fff8ee;
}

.addon-card.is-added .addon-guests{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.addon-guest-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:12px 14px;
    border-radius:10px;
    background:#fff;
}

.addon-guest-row strong,
.addon-guest-row span{
    display:block;
}

.addon-guest-row strong{
    color:#101828;
    font-size:14px;
    font-weight:900;
}

.addon-guest-row span{
    margin-top:2px;
    color:#667085;
    font-size:11px;
    font-weight:800;
}

.addon-guest-controls{
    display:flex;
    align-items:center;
    gap:8px;
}

.addon-guest-controls button{
    width:28px;
    height:28px;
    display:grid;
    place-items:center;
    border:2px solid #ff8a00;
    border-radius:50%;
    background:#fff;
    color:#ff8a00;
    font-family:inherit;
    font-size:17px;
    font-weight:900;
    line-height:1;
    cursor:pointer;
}

.addon-guest-controls button:disabled{
    border-color:#d5c4ad;
    color:#d5c4ad;
    cursor:not-allowed;
}

.addon-guest-controls [data-addon-value]{
    width:38px;
    height:32px;
    display:grid;
    place-items:center;
    margin:0;
    border:1px solid #f3dfc0;
    border-radius:8px;
    color:#061433;
    font-size:14px;
    font-weight:900;
}

.traveler-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px 28px;
    margin-top:36px;
}

.traveler-form label{
    display:grid;
    gap:10px;
}

.traveler-form .is-wide{
    grid-column:1 / -1;
}

.traveler-form label > span{
    color:#050b18;
    font-size:12px;
    font-weight:900;
    letter-spacing:1.4px;
    text-transform:uppercase;
}

.traveler-form label > span::after{
    color:#ff4b24;
}

.traveler-form input,
.traveler-form select,
.traveler-form textarea{
    width:100%;
    border:1px solid #dbe4f0;
    border-radius:14px;
    background:#f8fafc;
    color:#061433;
    font-family:inherit;
    font-size:15px;
    font-weight:800;
    outline:none;
    transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.traveler-form input,
.traveler-form select{
    min-height:54px;
    padding:0 18px;
}

.traveler-form select{
    appearance:auto;
    cursor:pointer;
}

.whatsapp-number-row{
    display:grid;
    grid-template-columns:minmax(190px, .42fr) 1fr;
    gap:12px;
}

.traveler-form textarea{
    min-height:120px;
    padding:18px;
    resize:vertical;
}

.traveler-form input::placeholder,
.traveler-form textarea::placeholder{
    color:#c3cad6;
}

.traveler-form input:focus,
.traveler-form select:focus,
.traveler-form textarea:focus{
    border-color:#ff8a00;
    background:#fff;
    box-shadow:0 0 0 4px rgba(255,138,0,0.10);
}

.traveler-form input.is-invalid,
.traveler-form select.is-invalid,
.traveler-form textarea.is-invalid{
    border-color:#ff4b24;
    background:#fff8f4;
    box-shadow:0 0 0 4px rgba(255,75,36,0.10);
}

.traveler-form small{
    color:#8a96a8;
    font-size:11px;
    font-weight:900;
    letter-spacing:.4px;
    text-transform:uppercase;
}

.traveler-form small::before{
    content:"!";
    width:14px;
    height:14px;
    display:inline-grid;
    place-items:center;
    margin-right:8px;
    border-radius:50%;
    background:#ff8a00;
    color:#fff;
    font-size:10px;
}

.pickup-choice{
    display:grid;
    gap:0;
    padding:22px;
    border:1px solid #f3dfc0;
    border-radius:22px;
    background:linear-gradient(180deg,#fffaf2 0%,#fff 100%);
    box-shadow:0 14px 28px rgba(255,138,0,0.08);
}

.pickup-choice.is-invalid{
    border-color:#ff4b24;
    box-shadow:0 0 0 4px rgba(255,75,36,0.10), 0 14px 28px rgba(255,138,0,0.08);
}

.pickup-choice h3{
    margin:0 0 12px;
    color:#101828;
    font-size:18px;
    font-weight:900;
    text-transform:uppercase;
}

.pickup-choice > p{
    margin:0 0 16px;
    color:#667085;
    font-size:14px;
    line-height:1.5;
    font-weight:800;
}

.pickup-option{
    position:relative;
    display:flex;
    align-items:center;
    gap:16px;
    min-height:64px;
    padding:0 18px 0 54px;
    border:1px solid #f3dfc0;
    border-radius:16px;
    background:#fffaf2;
    cursor:pointer;
    transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.pickup-option:first-of-type{
    border-radius:16px;
}

.pickup-option:last-of-type{
    margin-top:10px;
    border-radius:16px;
}

.pickup-option.is-selected{
    border-color:#ff8a00;
    background:#fff4e4;
    box-shadow:0 14px 26px rgba(255,138,0,0.10);
    transform:translateY(-1px);
}

.pickup-option input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.pickup-option::before{
    content:"";
    position:absolute;
    left:20px;
    width:18px;
    height:18px;
    border:2px solid #d5c4ad;
    border-radius:50%;
    background:#fff;
}

.pickup-option.is-selected::before{
    border-color:#ff8a00;
    box-shadow:inset 0 0 0 4px #fff;
    background:#ff8a00;
}

.pickup-option span{
    display:block;
    color:#101828;
    font-size:15px;
    font-weight:900;
}

.pickup-option span small{
    display:block;
    margin-top:6px;
    color:#667085;
    font-size:13px;
    line-height:1.35;
    font-weight:700;
    text-transform:none;
}

.pickup-option:hover{
    border-color:#ff8a00;
}

.pickup-location{
    display:none;
    margin:10px 0 12px 38px;
}

.pickup-location.is-visible{
    display:block;
}

.pickup-location label{
    position:relative;
    display:block;
}

.pickup-location input{
    width:100%;
    min-height:54px;
    padding:0 54px 0 18px;
    border:2px solid #ff8a00;
    border-radius:14px 14px 0 0;
    border-bottom:0;
    background:#fffaf2;
    color:#101828;
    font-family:inherit;
    font-size:15px;
    font-weight:900;
    outline:none;
    box-shadow:0 10px 24px rgba(255,138,0,0.08);
}

.pickup-location input::placeholder{
    color:#667085;
    font-weight:800;
}

.pickup-location b{
    position:absolute;
    top:50%;
    right:18px;
    transform:translateY(-50%);
    color:#ff8a00;
    font-size:22px;
    line-height:1;
    cursor:pointer;
    user-select:none;
}

.pickup-location b.is-clear{
    color:#101828;
    font-size:30px;
    font-weight:500;
}

.pickup-location small{
    display:block;
    margin-top:8px;
    color:#ef4444;
    font-size:13px;
    font-weight:700;
}

.pickup-location small.is-hidden{
    display:none;
}

.pickup-place-list{
    max-height:420px;
    overflow-y:auto;
    border:2px solid #ff8a00;
    border-top:0;
    border-radius:0 0 14px 14px;
    background:#fff;
}

.pickup-place-list button{
    width:100%;
    display:grid;
    grid-template-columns:28px minmax(0,1fr);
    gap:14px;
    padding:13px 16px;
    border:0;
    background:#fff;
    text-align:left;
    cursor:pointer;
}

.pickup-place-list button.is-filtered-out{
    display:none;
}

.pickup-place-list button:hover{
    background:#fff8ee;
}

.pickup-place-list i{
    position:relative;
    width:24px;
    height:24px;
    display:block;
    border-radius:8px;
    background:#fff1df;
    font-style:normal;
}

.pickup-place-list i::before,
.pickup-place-list i::after{
    content:"";
    position:absolute;
    box-sizing:border-box;
}

.pickup-place-list i[data-place-icon="hotel"]::before{
    left:6px;
    top:5px;
    width:12px;
    height:15px;
    border:2px solid #ff8a00;
    border-radius:2px;
}

.pickup-place-list i[data-place-icon="hotel"]::after{
    left:10px;
    bottom:4px;
    width:4px;
    height:5px;
    background:#ff8a00;
    box-shadow:-5px -7px 0 -1px #ff8a00, 5px -7px 0 -1px #ff8a00;
}

.pickup-place-list i[data-place-icon="port"]::before{
    left:5px;
    top:5px;
    width:14px;
    height:14px;
    border-left:2px solid #009879;
    border-right:2px solid #009879;
    border-bottom:2px solid #009879;
    border-radius:0 0 8px 8px;
}

.pickup-place-list i[data-place-icon="port"]::after{
    left:11px;
    top:3px;
    width:2px;
    height:16px;
    background:#009879;
    box-shadow:-5px 5px 0 -1px #009879, 5px 5px 0 -1px #009879;
}

.pickup-place-list i[data-place-icon="beach"]::before{
    left:4px;
    top:6px;
    width:16px;
    height:8px;
    border:2px solid #009879;
    border-bottom:0;
    border-radius:16px 16px 0 0;
    transform:rotate(-8deg);
}

.pickup-place-list i[data-place-icon="beach"]::after{
    left:11px;
    top:12px;
    width:2px;
    height:9px;
    background:#009879;
}

.pickup-place-list i[data-place-icon="center"]::before{
    left:6px;
    top:6px;
    width:12px;
    height:12px;
    border:2px solid #ff8a00;
    border-radius:50%;
}

.pickup-place-list i[data-place-icon="center"]::after{
    left:10px;
    top:10px;
    width:4px;
    height:4px;
    border-radius:50%;
    background:#ff8a00;
}

.pickup-place-list span,
.pickup-place-list strong,
.pickup-place-list button small{
    display:block;
}

.pickup-place-list strong{
    color:#101828;
    font-size:14px;
    font-weight:900;
}

.pickup-place-list button small{
    margin-top:5px;
    color:#101828;
    font-size:13px;
    line-height:1.35;
    font-weight:700;
}

.pickup-place-list button small::before{
    content:none;
}

.pickup-place-list > p{
    position:sticky;
    bottom:0;
    margin:0;
    padding:7px 12px;
    background:linear-gradient(90deg, rgba(255,255,255,.78), #fff);
    color:#667085;
    text-align:right;
    font-size:13px;
    font-weight:700;
}

.pickup-place-list > p strong{
    display:inline;
    color:#4285f4;
    font-size:16px;
    font-weight:900;
}


.secure-note{
    margin-top:36px;
    padding:22px 24px;
    border:1px solid #b8f3d0;
    border-radius:18px;
    background:#eafff2;
    color:#007a3d;
}

.secure-note strong{
    display:block;
    margin-bottom:8px;
    color:#007a3d;
    font-size:14px;
    font-weight:900;
    letter-spacing:.6px;
    text-transform:uppercase;
}

.secure-note strong::before{
    content:"▣";
    margin-right:10px;
    color:#00a651;
}

.secure-note p{
    margin:0;
    color:#008c47;
    font-size:14px;
    line-height:1.6;
    font-weight:800;
}

@media (max-width:980px){
    .checkout-layout{
        grid-template-columns:1fr;
    }

    .checkout-summary-card{
        position:static;
    }

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

    .addon-card{
        grid-template-columns:110px minmax(0,1fr);
    }

    .addon-price{
        grid-column:1 / -1;
        justify-items:start;
    }

    .addon-guests{
        margin-left:0;
        grid-template-columns:1fr;
    }

    .traveler-form{
        grid-template-columns:1fr;
    }

    .whatsapp-number-row{
        grid-template-columns:1fr;
    }
}

@media (max-width:680px){
    .checkout-page{
        padding:30px 16px 56px;
    }

    .checkout-header h1{
        font-size:36px;
    }

    .checkout-config-card,
    .checkout-summary-card,
    .booking-success-card{
        padding:26px 20px;
        border-radius:24px;
    }

    .booking-success-card h2{
        font-size:30px;
    }

    .success-summary div{
        display:grid;
        gap:6px;
    }

    .success-summary strong{
        max-width:none;
        text-align:left;
    }

    .selected-date-box,
    .tour-option{
        grid-template-columns:1fr;
    }

    .addon-card{
        grid-template-columns:1fr;
    }

    .addon-card img{
        width:100%;
        height:180px;
    }

    .addon-guests{
        width:100%;
    }

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

    .checkout-actions{
        flex-direction:column;
    }

    .checkout-actions a,
    .checkout-actions button{
        width:100%;
    }
}

@media (max-width:980px){
    .home-body .home-nav{
        flex-wrap:wrap;
    }

    .home-menu{
        order:3;
        width:100%;
        overflow-x:auto;
    }

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

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

    .home-search button{
        min-height:54px;
        grid-column:1 / -1;
    }

    .home-stats,
    .category-grid,
    .home-tour-grid,
    .how-grid,
    .review-panel{
        grid-template-columns:1fr 1fr;
    }

    .footer-main{
        width:calc(100% - 40px);
        grid-template-columns:1fr 1fr;
        gap:42px;
    }

    .footer-bottom-line{
        width:calc(100% - 40px);
    }

    .footer-feature-bar{
        width:calc(100% - 40px);
        grid-template-columns:1fr 1fr;
    }

    .featured-tour{
        grid-column:1 / -1;
    }
}

@media (max-width:700px){
    .home-body .home-nav{
        width:calc(100% - 20px);
        top:12px;
        border-radius:18px;
    }

    .home-logo{
        font-size:19px;
    }

    .home-whatsapp{
        min-height:42px;
        padding:0 14px;
        font-size:12px;
    }

    .home-hero{
        min-height:820px;
        padding:150px 20px 48px;
    }

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

    .home-hero-text{
        font-size:16px;
    }

    .home-search,
    .home-stats,
    .category-grid,
    .home-tour-grid,
    .how-grid,
    .review-panel,
    .review-quotes{
        grid-template-columns:1fr;
    }

    .home-categories,
    .home-tours,
    .home-how,
    .home-reviews{
        width:calc(100% - 40px);
        padding-top:70px;
    }

    .home-stats{
        width:calc(100% - 40px);
    }

    .wide-heading{
        align-items:flex-start;
        flex-direction:column;
    }

    .section-heading h2,
    .review-panel h2{
        font-size:32px;
    }

    .tour-tabs{
        width:100%;
        overflow-x:auto;
    }

    .tour-card-body h3,
    .featured-tour .tour-card-body h3{
        min-height:0;
        font-size:20px;
    }

    .home-footer{
        margin-top:70px;
    }

    .footer-feature-bar,
    .footer-main{
        grid-template-columns:1fr;
    }

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

    .footer-cta-card h2{
        font-size:24px;
    }

    .home-footer{
        margin-top:80px;
        padding-top:24px;
        border-radius:28px 28px 0 0;
    }

    .footer-feature-bar span{
        text-align:left;
    }

    .footer-main{
        width:calc(100% - 40px);
        padding:56px 0 44px;
        gap:36px;
    }

    .footer-bottom-line{
        width:calc(100% - 40px);
        flex-direction:column;
        padding-bottom:40px;
    }

    .back-to-top{
        right:16px;
        bottom:16px;
        width:46px;
        height:46px;
    }
}




