/* ================= GLOBAL ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #435c66ff, #457686ff, #40535cff);
  color: #fff;
}

/*.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 16px;
}

/* ================= HEADER ================= */
.header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  color: #fff;
}

.header h1 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
}

.meta {
  font-size: 14px;
  opacity: 0.9;
}

.last-meta {
  text-align: end;
}

/* ================= SLIDER ================= */
.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  padding: 8px;
}

.grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, minmax(160px, 1fr));
  gap: 12px;
}

.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.grid .large {
  grid-row: span 2;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  border: none;
  color: #fff;
  font-size: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.nav-btn:hover {
  background: rgba(0,0,0,0.75);
}

.prev { left: 8px; }
.next { right: 8px; }

/* ================= FOOTER BADGE STRIP ================= */
.bfooter {
  display: grid;
  background: #f9fafb;
  color:#000;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  text-align: center;
  margin-top: 22px;
  font-size: 14px;
  opacity: 0.85;
}

/* ================= ITINERARY ================= */
.itinerary-section {
  font-family: Segoe UI, Arial, sans-serif;
  background: #f4f7fb;
  padding: 40px 20px;
  color: #000;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #0b3c91;
  margin-bottom: 6px;
}

.section-subtitle {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}

.itinerary {
  max-width: 900px;
  margin: auto;
}

.day {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  overflow: hidden;
}

.day-header {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
}

.day-number {
  background: #0b3c91;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  padding: 8px 0;
}

.day-title { font-weight: 600; }

.day-meta {
  font-size: 13px;
  color: #555;
}

.toggle {
  font-size: 22px;
  color: #0b3c91;
}

.day-content {
  display: none;
  padding: 16px;
  border-top: 1px solid #eee;
}

.day-content.active {
  display: block;
}

.images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.images img.large {
  grid-row: span 2;
}

/* ================= MAP SECTION ================= */
.map-section {
  background: #f6f8fc;
  padding: 0px 20px 50px;
  color: #000;
}

.map-box {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.map-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 20px;
}

.map-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.map-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.map-frame iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

.location-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #444;
}

.location-icon {
  color: #1d4ed8;
  font-size: 16px;
}

/* ================= BOOKING FORM ================= */
.booking-section {
  background: linear-gradient(135deg,#0b3c91,#1e5fd9);
  padding: 60px 20px;
}

.booking-box {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,.2);
}

.booking-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #0b3c91;
  margin-bottom: 6px;
}

.booking-subtitle {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.form-group textarea {
  resize: none;
  height: 90px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0b3c91;
}

.full {
  grid-column: 1 / -1;
}

.form-btn {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 10px;
}

.form-btn button {
  background: #0b3c91;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

.form-btn button:hover {
  background: #072e70;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 900px) {
  .booking-form {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 768px) {

  .container {
    margin: 20px auto;
    overflow-x: hidden;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .slider-wrapper {
    overflow: hidden;
  }

  .slide { padding: 0; }

  .grid {
    grid-template-columns: 1fr;
    grid-template-rows: 220px;
    justify-items: center;
  }

  .grid img {
    display: none;
  }

  .grid img.large {
    display: block;
    width: 100%;
    height: 220px;
  }

  .itinerary .images {
    grid-template-columns: 1fr;
  }

  .itinerary .images img {
    display: none;
  }

  .itinerary .images img.large {
    display: block;
    height: 200px;
  }

  .map-content {
    grid-template-columns: 1fr;
  }

  .map-frame iframe {
    height: 260px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .grid img.large { height: 200px; }
  .meta { font-size: 13px; }
}
/* ===== PRICE SIDEBAR ===== */
.price-sidebar{
  position:sticky;
  top:0px;
  background:#fff;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
  overflow:hidden;
}

.price-header{
  background:#2f4b7c;
  color:#fff;
  padding:14px;
  font-size:18px;
  font-weight:600;
  text-align:center;
}

.price-body{
  background:linear-gradient(135deg,#4f7de3,#3b6bdc);
  color:#fff;
  padding:10px;
  text-align:center;
}

.old-price{
  text-decoration:line-through;
  opacity:.8;
  font-size:14px;
}

.new-price{
  font-size:30px;
  font-weight:700;
}

.new-price span{
  font-size:14px;
  font-weight:400;
}

.sidebar-form{
  padding:20px;padding: 10px 20px;
}

.sidebar-form label{
  font-size:13px;
  font-weight:600;
  margin-top:10px;
  display:block;
}

.sidebar-form input,
.sidebar-form textarea{
  width:100%;
  padding:5px;
  border:1px solid #ddd;
  border-radius:6px;
  margin-top:6px;
}

.sidebar-form textarea{
  height:60px;
  resize:none;
}

.sidebar-form .agree{
  font-size:12px;
  margin:12px 0;
}

.sidebar-form button{
  width:100%;
  background:#3b6bdc;
  color:#fff;
  border:none;
  padding:14px;
  border-radius:6px;
  font-weight:600;
  cursor:pointer;
}

.sidebar-form button:hover{
  background:#2f58c8;
}

/* ===== MOBILE ===== */
@media(max-width:991px){
  .price-sidebar{
    position:relative;
    top:auto;
    margin-top:30px;
  }
}
/* ===== PACKAGE TITLE ===== */
.package-title {
  font-size: 34px;
  font-weight: 700;
  color: #fbc902;
  margin-bottom: 10px;
}

/* ===== META ROW ===== */
.package-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

/* META ITEM */
.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #fff;
}

/* ICON */
.meta-item i {
  color: #f39c12;
  font-size: 18px;
}

/* DOT */
.meta-divider {
  font-size: 22px;
  color: #bbb;
}

/* PRICE BOX */
.price-box {
  background: linear-gradient(135deg,#4f7df1,#5b8dff);
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* OLD PRICE */
.price-box .old-price {
  text-decoration: line-through;
  opacity: .8;
  font-size: 14px;
}

/* NEW PRICE */
.price-box .new-price {
  font-size: 18px;
  font-weight: 700;
}

/* PER TEXT */
.price-box .per-text {
  font-size: 12px;
  opacity: .9;
}
/* ===== PRICE GLOW ===== */
@keyframes priceGlow {
  0% { box-shadow: 0 0 0 rgba(255,255,255,0.4); }
  50% { box-shadow: 0 0 18px rgba(255,255,255,0.9); }
  100% { box-shadow: 0 0 0 rgba(255,255,255,0.4); }
}

.price-box {
  animation: priceGlow 2.5s infinite;
}
.offer-badge {
  background: #ff3d00;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  animation: blink 1.4s infinite;
}

@keyframes blink {
  50% { opacity: 0.6; }
}

.mobile-cta {
  display: none;
}


#booking {
  scroll-margin-top: 120px;
}
@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

.booking-box.shake {
  animation: shake 0.6s ease;
}

/* ===== Vertical Book Now (Right Side) ===== */
.booknow-vertical{
  position:fixed;
  right:-52px;          /* pulls button to edge */
  top:50%;
  transform:translateY(-50%);
  z-index:9998;
  
}

/* Desktop only */
@media (min-width: 992px){
  .booknow-vertical{
    display:block;
  }
}

.booknow-vertical-btn{
  background:#eb3933;
  color:#fff;
  padding:14px 22px;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  border-radius:0 0 30px 30px;
  display:inline-block;
  margin-right: 10px;

  /* 🔥 ROTATION */
  transform:rotate(90deg);

  /* Flash / pulse */
  animation:bookPulse 1.8s infinite;
  box-shadow:0 8px 22px rgba(0,0,0,.25);
}

.booknow-vertical-btn:hover{
  background:#092e6e;
  color:#fff;
}

/* Pulse animation */
@keyframes bookPulse{
  0%{
    box-shadow:0 0 0 0 rgba(11,60,145,.6);
  }
  70%{
    box-shadow:0 0 0 18px rgba(11,60,145,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(11,60,145,0);
  }
}


@media (max-width: 768px) {
  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: center; /* 🔥 center group */
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    z-index: 9999;
  }

  .cta-price {
    font-size: 18px;
    font-weight: 700;
    color: #0b3c91;
  }

  .cta-price small {
    font-size: 12px;
    font-weight: 400;
  }

  .cta-btn {
    background: linear-gradient(135deg,#4f7df1,#5b8dff);
    color: #fff;
    padding: 10px 10px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    min-width: 120px;
    text-align: center;
  }
}
.sidebar-packages{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.sidebar-pkg{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 12px;
  border-radius:6px;
  background:#f7f9fc;
  text-decoration:none;
  color:#111;
  transition:.25s;
}

.sidebar-pkg:hover{
  background:#e9efff;
}

.sidebar-pkg-title{
  font-size:14px;
  font-weight:600;
}

.sidebar-pkg-price{
  text-align:right;
  font-size:13px;
}

.sidebar-pkg-price .old{
  display:block;
  font-size:12px;
  color:#888;
  text-decoration:line-through;
}
