:root{
  --primary:#5b35ff;
  --accent:#22c55e;
  --bg:#f4f6fb;
  --card:#ffffff;
  --text:#1f2937;
  --muted:#6b7280;
  --star:#f59e0b;
  --glass:rgba(255,255,255,.75);
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:var(--text);
}

/* ================= CONTAINER ================= */
.tour-container{
  max-width:1200px;
  margin:auto;
}

/* ================= HERO ================= */
.tour-banner{
  position:relative;
  height:420px;
  overflow:hidden;
  border-radius:0 0 30px 30px;
}

.tour-banner .bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.05);
}

.tour-banner::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.65),rgba(0,0,0,.2));
}

.tour-banner .overlay{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:30px;
  color:#fff;
}

.tour-banner h1{
  font-size:2.4rem;
  margin:0;
}

.route{
  font-size:.95rem;
  opacity:.9;
}

.hero-meta{
  display:flex;
  gap:16px;
  align-items:center;
  margin-top:10px;
}

.hero-meta .price{
  background:#795EFF;
  color:#fff;
  padding:6px 14px;
  border-radius:999px;
  font-weight:600;
}

/* ================= DETAILS ================= */
.tour-details{
  padding:30px;
}

.overview{
  background:var(--card);
  padding:20px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  line-height:1.7;
}

/* ================= SECTION ================= */
.section-title{
  margin:40px 0 16px;
  font-size:1.5rem;
  font-weight:600;
  position:relative;
}

.section-title::after{
  content:'';
  width:50px;
  height:3px;
  background:var(--primary);
  display:block;
  margin-top:6px;
  border-radius:99px;
}

/* ================= GALLERY ================= */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
}

.gallery-grid img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:14px;
  cursor:pointer;
  transition:.35s;
}

.gallery-grid img:hover{
  transform:scale(1.05);
  box-shadow:0 15px 30px rgba(0,0,0,.2);
}

/* ================= VEHICLES ================= */

.vehicle-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:30px;
  justify-content:center;
  max-width:1200px;
  margin:0 auto;
}

/* Card */
.vehicle-card{
  background:#fff;
  border-radius:22px;
  padding:20px;
  text-align:center;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

/* ================= TOP ROW ================= */

.vehicle-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}

/* Vehicle Name Pill */
.vehicle-name{
  display:inline-block;
  padding:6px 14px;
  border-radius:20px;
  font-size:15px;
  font-weight:700;
  color:#fff;
  background:linear-gradient(135deg,#6a4cff,#8f7bff);
  box-shadow:0 4px 12px rgba(106,76,255,0.25);
}

/* Days Badge */
.tour-days{
  font-size:.75rem;
  background:#eef2ff;
  color:#4338ca;
  padding:5px 10px;
  border-radius:999px;
  font-weight:600;
}

.tour-days i{
  margin-right:4px;
}

/* ================= IMAGE ================= */

.vehicle-card img{
  width:100%;
  height:150px;
  object-fit:contain;
  margin:10px 0 14px;
}

/* ================= SPECS ================= */

.spec-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin:10px 0 14px;
  flex-wrap:nowrap;
}

.spec-row span{
  display:flex;
  align-items:center;
  gap:5px;
  background:#f9fafb;
  padding:5px 9px;
  border-radius:999px;
  font-size:.75rem;
  font-weight:500;
  color:#374151;
  white-space:nowrap;
}

.spec-row i{
  color:#5b35ff;
  font-size:.75rem;
}

/* ================= PRICE ================= */

.vehicle-price{
  font-size:1.25rem;
  font-weight:700;
  color:#111827;
  margin:10px 0 16px;
}

/* ================= BUTTON ================= */

.vehicle-btn{
  display:inline-block;
  background:linear-gradient(135deg,#5b35ff,#6d28d9);
  color:#fff;
  padding:12px 28px;
  border-radius:999px;
  font-size:.9rem;
  font-weight:600;
  text-decoration:none;
}

/* ================= MOBILE ================= */

@media(max-width:600px){
  .vehicle-card img{
    height:120px;
  }
}

/* ================= ROUTE TEXT ================= */

.route-text{
  max-width:1200px;
  margin:-18px auto 22px; /* pulls route closer to Included/Excluded */
  padding:0 20px;

  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:6px;

  text-align:center;
  font-size:.95rem;
  font-weight:600;
  color:#5b35ff;
}

/* Location icon */
.route-text .route-icon{
  font-size:1.05rem;
  line-height:1;
}

/* Round trip highlight */
.route-text .round-trip{
  color:#16a34a;
  font-weight:700;
  margin-left:4px;
  white-space:nowrap;
}

/* ================= MOBILE ================= */

@media(max-width:600px){
  .route-text{
    font-size:.9rem;
    margin:-5px auto 25px;
    gap:4px;
  }

  .map-container{
    height:300px;
    border-radius:16px;
  }
}
/* ================= MAP SECTION ================= */

.map-container{
  max-width:1200px;
  margin:0 auto 80px;

  height:420px;
  border-radius:22px;
  overflow:hidden;

  background:#fff;
  box-shadow:0 25px 50px rgba(0,0,0,.12);
}

/* REMOVE INTERNAL PADDING */
.map-container iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* ================= MOBILE ================= */

@media(max-width:600px){
  .map-container{
    height:300px;
    border-radius:16px;
    margin-bottom:60px;
  }
}


/* ================= ITINERARY ================= */
.timeline{
  position:relative;
  padding-left:30px;
}

.timeline::before{
  content:'';
  position:absolute;
  left:10px;
  top:0;
  bottom:0;
  width:3px;
  background:var(--primary);
  border-radius:10px;
}

.timeline-item{
  margin-bottom:26px;
}

.circle{
  background:var(--primary);
  color:#fff;
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  font-size:.8rem;
  margin-bottom:6px;
}

.timeline-item .content{
  background:var(--card);
  padding:14px 16px;
  border-radius:14px;
  box-shadow:0 8px 18px rgba(0,0,0,.05);
}

/* ================= INCLUDED / EXCLUDED ================= */

/* Section Title */
.section-title{
  max-width:1200px;
  margin:60px auto 35px;
  padding:0 20px;

  text-align:center;
  font-size:1.7rem;
  font-weight:800;
  color:#5b35ff;
  position:relative;
}

.section-title::after{
  content:"";
  width:60px;
  height:4px;
  background:#5b35ff;
  border-radius:10px;
  display:block;
  margin:12px auto 0;
}

/* Grid */
.include-exclude-grid{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;

  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

/* Card */
.include-exclude-grid .box{
  background:#ffffff;
  border-radius:24px;
  padding:30px 34px;
  box-shadow:0 25px 50px rgba(0,0,0,0.10);
}

/* Headings */
.include-exclude-grid h4{
  font-size:1.25rem;
  font-weight:800;
  margin-bottom:22px;
  display:flex;
  align-items:center;
  gap:10px;
}

/* Included / Excluded Colors */
.included-box h4{
  color:#16a34a;
}

.excluded-box h4{
  color:#dc2626;
}

/* List Reset */
.include-exclude-grid ul{
  list-style:none;
  padding:0;
  margin:0;
}

/* List Items */
.include-exclude-grid li{
  font-size:.95rem;
  color:#374151;
  line-height:1.6;
  padding:10px 0;
  display:flex;
  gap:12px;
}

/* Icons */
.included-box li::before{
  content:"✔";
  color:#16a34a;
  font-weight:800;
  margin-top:2px;
}

.excluded-box li::before{
  content:"✖";
  color:#dc2626;
  font-weight:800;
  margin-top:2px;
}

/* Route Text */
.route-text{
  max-width:1200px;
  margin:20px auto 0;
  padding:0 20px;

  text-align:center;
  font-size:.9rem;
  font-weight:600;
  color:#5b35ff;
}

/* ================= MOBILE ================= */

@media(max-width:768px){
  .include-exclude-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .section-title{
    font-size:1.45rem;
  }

  .include-exclude-grid{
    gap:25px;
  }
}



/* ================= REVIEWS ================= */
.review-card{
  background:var(--card);
  padding:16px;
  border-radius:14px;
  margin-bottom:16px;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.review-card strong{
  font-size:1rem;
}

.stars{
  color:var(--star);
  margin:6px 0;
}

.stars i{
  animation:pop .4s ease;
}

@keyframes pop{
  from{transform:scale(0)}
  to{transform:scale(1)}
}

/* ================= REVIEW + TRUST WRAPPER ================= */

.review-trust-wrapper{
  max-width:1200px;
  margin:60px auto 90px;
  padding:0 20px;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

/* ================= COMMON BOX STYLE ================= */

.trust-box,
.review-box{
  background:#fff;
  border-radius:20px;
  padding:32px 30px;
  box-shadow:0 20px 45px rgba(0,0,0,.08);
}

/* ================= SECTION TITLE ================= */

.section-title{
  text-align:center;
  font-size:1.5rem;
  font-weight:700;
  color:#5b35ff;
  margin-bottom:22px;
  position:relative;
}

.section-title::after{
  content:"";
  display:block;
  width:48px;
  height:3px;
  background:#5b35ff;
  margin:10px auto 0;
  border-radius:3px;
}

/* ================= WHY BOOK WITH US ================= */

.why-subtext{
  font-size:.95rem;
  color:#555;
  line-height:1.6;
  text-align:center;
  margin-bottom:22px;
}

.why-list{
  list-style:none;
  padding:0;
  margin:0;
}

.why-list li{
  padding:12px 0 12px 26px;
  position:relative;
  font-size:.95rem;
  font-weight:600;
  color:#333;
  border-bottom:1px dashed #eaeaea;
}

.why-list li:last-child{
  border-bottom:none;
}

.why-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:11px;
  color:#16a34a;
  font-weight:700;
}

/* Highlight first point */
.why-list li:first-child{
  color:#5b35ff;
  font-weight:700;
}

/* ================= REVIEW FORM ================= */

.review-form input,
.review-form select,
.review-form textarea{
  width:100%;
  padding:12px 14px;
  margin-bottom:14px;
  border-radius:10px;
  border:1px solid #ddd;
  font-size:.9rem;
  font-family:inherit;
}

.review-form textarea{
  min-height:110px;
  resize:vertical;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus{
  outline:none;
  border-color:#5b35ff;
  box-shadow:0 0 0 2px rgba(91,53,255,.1);
}

.review-form button{
  width:100%;
  padding:13px;
  border:none;
  border-radius:12px;
  background:#5b35ff;
  color:#fff;
  font-size:.95rem;
  font-weight:700;
  cursor:pointer;
  transition:.25s ease;
}

.review-form button:hover{
  background:#4a2de0;
  transform:translateY(-1px);
}

/* Form note */
.form-note{
  display:block;
  margin-top:10px;
  text-align:center;
  font-size:.8rem;
  color:#777;
}

/* ================= MOBILE ================= */

@media(max-width:900px){
  .review-trust-wrapper{
    grid-template-columns:1fr;
  }

  .trust-box,
  .review-box{
    padding:26px 22px;
  }
}


/* ================= LIGHTBOX ================= */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  padding: 10px;
}

.lightbox-arrow.left {
  left: 20px;
}

.lightbox-arrow.right {
  right: 20px;
}


/* ================= MOBILE ================= */
@media(max-width:768px){
  .tour-banner{height:320px}
  .tour-banner h1{font-size:1.6rem}
  .tour-details{padding:20px}
  .vehicle-features{
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
  }
}

