/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* Body Styling */
body {
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Full-page snow effect */
.initial-snow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}

.snow {
  position: absolute;
  top: -10vh;
  color: #9cb5d4;
  user-select: none;
  pointer-events: none;
  animation: snowfall linear infinite;
}

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #012c60;
  z-index: 9999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 45px;
}

.desktop-nav {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex: 1;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.desktop-nav a:hover {
  color: #cce5ff;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: white;
  transition: 0.3s;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.badge-trending {
  background: red;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 20px;
  margin-left: 6px;
}

.right-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon {
  width: 20px;
  height: 20px;
}

.profile-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: #012c60;
  padding: 8px 14px;
  border-radius: 25px;
  font-weight: bold;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

#myAccountLink {
  text-decoration: none;
}

.profile-btn:hover {
  background: #f0f0f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.search-box {
  position: absolute;
  top: 75px;
  right: 20px;
  background: white;
  padding: 8px 14px;
  border-radius: 30px;
  display: flex;
  gap: 10px;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.search-box input {
  flex: 1;
  outline: none;
  border: none;
  color: #012c60;
}

.search-box button {
  background: #014f8c;
  border: none;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
}

.mobile-menu {
  background: #012c60;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  color: white;
  padding: 8px 0;
  text-decoration: none;
}

.second-row {
  background: #012c60;
  text-align: center;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.second-row::-webkit-scrollbar {
  display: none;
}

.scroll-x {
  display: flex;
  gap: 20px;
  padding: 6px;
}

.scroll-x a {
  color: white;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.scroll-x a:hover {
  color: #ffdf85;
  text-decoration: underline;
}

.location-row {
  background: linear-gradient(to right, #e2ae3f, #f4c36f);
  padding: 5px 10px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
}

.location-row::-webkit-scrollbar {
  display: none;
}

.location-row .loc-btn {
  display: inline-block;
  background: #fff7dc;
  color: #012c70;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
  flex-shrink: 0;
}

.location-row .loc-btn:hover {
  background: #ffe3a3;
  color: #014f8c;
}

.flip-banner {
  background: linear-gradient(to right, #e2ae3f, #f4c36f);
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#flipText {
  font-size: 13px;
  font-weight: bold;
  color: #012c60;
  white-space: nowrap;
  text-align: center;
  padding: 0 10px;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-only { display: flex; }
  .lbl { display: none; }
  .scroll-x { justify-content: flex-start; }
  .scroll-x a { font-size: 13px; padding: 0 6px; }
  .location-row { justify-content: flex-start; padding: 4px 8px; }
  .location-row .loc-btn { font-size: 11px; padding: 2px 6px; }
}

@media (min-width: 769px) {
  .scroll-x { justify-content: center; }
  .location-row { justify-content: center; flex-wrap: wrap; }
}

.hidden { display: none !important; }

/* =====================================================================
   1. HERO HEADER (BASE DESKTOP/MONITOR VIEW)
   ===================================================================== */
.hero-header {
  position: relative;
  min-height: 100vh; /* Forces it to fill the screen */
  display: flex;
  align-items: center; /* Centers content perfectly in the vertical space */
  justify-content: center;
  overflow: hidden;
  padding-top: 120px; /* Accounts for the top navigation */
  padding-bottom: 40px;
  box-sizing: border-box;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px; 
  text-align: center;
  color: white;
  width: 100%;
}

.hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(60px, 6vw, 100px); /* Massive on monitors, scales down smoothly */
  font-weight: bold;
  margin-bottom: clamp(15px, 2vh, 32px);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  animation: slideUp 1s ease-out;
  line-height: 1.1;
  margin-top: 0;
}

.hero-subtitle {
  display: block;
  font-size: clamp(32px, 3.5vw, 64px);
  font-weight: 500;
  margin-top: 16px;
  opacity: 0.9;
}

.hero-description {
  font-size: clamp(18px, 1.5vw, 28px);
  max-width: 1100px;
  margin: 0 auto clamp(24px, 3vh, 32px);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  animation: slideUp 1s ease-out 0.2s backwards;
}

.hero-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: clamp(32px, 4vh, 48px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  animation: fadeIn 1s ease-in 0.4s backwards;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon { flex-shrink: 0; }
.icon.accent { color: #ffc107; }

.hero-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: slideUp 1s ease-out 0.6s backwards;
  margin-bottom: clamp(32px, 4vh, 48px);
  position: relative;
}

.btn {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
}

.btn-primary {
  display: inline-block;
  text-align: center;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  color: #000;
  position: relative;
  z-index: 1000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* =====================================================================
   THE "VALUE TICKET" (BLACK BOX)
   ===================================================================== */
.hero-price-value-card {
  display: inline-flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.85), rgba(0, 0, 0, 0.95)) !important; 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 16px !important;
  padding: 25px 40px !important;
  margin: 10px auto 30px auto !important;
  text-align: left;
  gap: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
  max-width: 95%;
  position: relative;
  z-index: 20;
}

.price-side {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.price-side:hover { transform: scale(1.05); }

.price-label {
  font-size: 14px;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 1px;
}

.all-inclusive-highlight {
  background-color: #ffc107 !important;
  color: #000 !important;
  padding: 4px 10px !important;
  border-radius: 4px !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.5) !important; 
}

.price-amount {
  font-size: 56px !important;
  font-weight: 900 !important;
  color: #ffc107 !important; 
  line-height: 1 !important;
  margin: 0 !important;
  text-shadow: 0 4px 15px rgba(255, 193, 7, 0.25) !important;
}

.price-per { 
  font-size: 15px; 
  color: #b0b0b0; 
  margin: 5px 0 0 0; 
}

.ticket-divider {
  width: 1px !important;
  height: auto !important;
  align-self: stretch !important;
  min-height: 120px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  margin: 10px 0 !important;
}

.value-grid-box {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important; 
  gap: 12px 24px !important;
  width: 100% !important;
}
  
.value-item {
  font-size: 14px !important; 
  color: white;
  white-space: nowrap !important; 
  align-items: center !important; 
  display: flex;
  gap: 8px;
}
  
.value-item i {
  color: #ffc107 !important; 
  font-size: 14px !important;
}

/* =====================================================================
   STICKY BUTTON (Only activates on scroll)
   ===================================================================== */
.btn-primary.sticky {
  position: fixed !important;
  top: 210px !important;
  right: 30px !important;
  width: auto !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  border-radius: 8px !important;
  z-index: 999999 !important;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4) !important;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%) !important;
  animation: slideInButton 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin: 0 !important;
}

.price-sticker {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #ffc107 0%, #ff7b00 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid white;
  z-index: 10;
  transform: rotate(15deg) scale(0);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary.sticky .price-sticker {
  opacity: 1;
  transform: rotate(15deg) scale(1);
}

.price-sticker .amount { font-size: 16px; font-weight: 900; line-height: 1; margin-bottom: 1px; }
.price-sticker .per { font-size: 6px; font-weight: 700; letter-spacing: 0.5px; }

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  animation: scroll 2s ease-in-out infinite;
}

@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInButton { from { opacity: 0; transform: translateX(-40px) translateY(-20px) scale(0.9); } to { opacity: 1; transform: translateX(0) translateY(0) scale(1); } }
@keyframes scroll { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }


/* =====================================================================
   💻 LAPTOP FIX (Shorter Screens)
   ===================================================================== */
@media (max-height: 900px) and (min-width: 768px) {
  .hero-header { padding-top: 100px; padding-bottom: 20px; }
  .hero-title { font-size: clamp(40px, 5vw, 65px); margin-bottom: 10px; }
  .hero-subtitle { font-size: clamp(24px, 3vw, 40px); margin-top: 8px; }
  .hero-description { font-size: 16px; margin-bottom: 20px; }
  .hero-details { margin-bottom: 20px; gap: 15px; font-size: 14px; }
  .hero-buttons { margin-bottom: 20px; }
  .btn { padding: 12px 28px; font-size: 15px; }
  
  .hero-price-value-card { padding: 15px 30px !important; gap: 30px !important; transform: scale(0.95); }
  .price-amount { font-size: 42px !important; }
  .ticket-divider { min-height: 100px !important; }
  .value-item { font-size: 12px !important; }
  .scroll-indicator { bottom: 20px; }
}

/* =====================================================================
   📱 MOBILE FIXES
   ===================================================================== */
@media (max-width: 768px) {
  .hero-header { padding-top: 130px; }
  .hero-title { font-size: 40px; margin-bottom: 10px; }
  .hero-subtitle { font-size: 24px; margin-top: 5px; }
  .hero-description { font-size: 14px; margin-bottom: 20px; padding: 0 10px; }
  
  .hero-details { flex-direction: column; gap: 10px; margin-bottom: 20px; }
  .hero-buttons { flex-direction: column; width: 100%; gap: 15px; padding: 0 20px; }
  .btn { width: 100%; max-width: 100%; }
  
  .hero-price-value-card {
    flex-direction: column !important; 
    gap: 15px !important;
    padding: 20px !important;
    max-width: 380px !important;
  }
  .ticket-divider { width: 100% !important; min-height: 1px !important; height: 1px !important; margin: 5px 0 !important; }
  .price-amount { font-size: 46px !important; }
  .value-grid-box { gap: 10px 8px !important; }
  .value-item { font-size: 11px !important; white-space: normal !important; line-height: 1.3 !important; align-items: flex-start !important; }
  .value-item i { margin-top: 2px !important; }
}

/* =====================================================================
   WHY MARCH SECTION - COMPLETE & OPTIMIZED
   ===================================================================== */

.why-march-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, rgba(240, 245, 232, 0.75), rgba(240, 245, 232, 0.75)),
    url('../image8.jpg') center/cover no-repeat fixed;
  background-color: #e8ecd8;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ===== SECTION HEADER ===== */
.whysection-header {
  text-align: center;
  margin-bottom: 50px;
}

.badge-luxury {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #000;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.badge-luxury:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.whysection-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 48px;
  font-weight: 700;
  color: #012c60;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.whysection-line {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #e2ae3f 0%, #f4c36f 100%);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== BENEFIT CARD ===== */
.benefit-card {
  background: linear-gradient(135deg, #ffffff 0%, #fffbf7 100%);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 174, 63, 0.15);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease forwards;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e2ae3f 0%, #f4c36f 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover { transform: translateY(-16px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); border-color: rgba(226, 174, 63, 0.3); }

/* ===== BENEFIT ICON ===== */
.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2ae3f 0%, #f4c36f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(226, 174, 63, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .benefit-icon { transform: scale(1.15); box-shadow: 0 12px 32px rgba(226, 174, 63, 0.35); }
.benefit-icon .icon { width: 40px; height: 40px; color: #fff; transition: transform 0.3s ease; }
.benefit-card:hover .benefit-icon .icon { transform: scale(1.2); }

/* ===== BENEFIT TITLE & DESC ===== */
.benefit-title { font-size: 22px; font-weight: 700; color: #012c60; margin-bottom: 12px; transition: color 0.3s ease; letter-spacing: -0.5px; }
.benefit-card:hover .benefit-title { color: #e2ae3f; }
.benefit-description { font-size: 15px; color: #666; line-height: 1.7; transition: color 0.3s ease; margin: 0; }
.benefit-card:hover .benefit-description { color: #555; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* =====================================================================
   RESPONSIVE DESIGN (WHY MARCH)
   ===================================================================== */
@media (max-width: 360px) {
  .why-march-section { padding: 30px 10px; }
  .container { padding: 0 5px; }
  .whysection-header { margin-bottom: 25px; }
  .whysection-title { font-size: 24px; margin-bottom: 8px; }
  .whysection-line { width: 80px; height: 3px; }
  .benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .benefit-card { padding: 15px 8px; width: 100%; max-width: none; border-radius: 12px; min-width: 0; }
  .benefit-icon { width: 40px; height: 40px; margin-bottom: 10px; }
  .benefit-icon .icon { width: 20px; height: 20px; }
  .benefit-title { font-size: 13px; margin-bottom: 6px; line-height: 1.2; }
  .benefit-description { font-size: 10px; line-height: 1.4; }
}

@media (min-width: 360px) and (max-width: 480px) {
  .why-march-section { padding: 35px 12px; }
  .container { padding: 0 10px; }
  .whysection-header { margin-bottom: 30px; }
  .whysection-title { font-size: 26px; margin-bottom: 10px; }
  .whysection-line { width: 90px; }
  .benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .benefit-card { padding: 18px 10px; width: 100%; max-width: none; border-radius: 12px; min-width: 0; }
  .benefit-icon { width: 45px; height: 45px; margin-bottom: 12px; }
  .benefit-icon .icon { width: 22px; height: 22px; }
  .benefit-title { font-size: 14px; margin-bottom: 8px; line-height: 1.2; }
  .benefit-description { font-size: 11px; line-height: 1.4; }
}

@media (min-width: 480px) and (max-width: 640px) {
  .why-march-section { padding: 40px 16px; }
  .container { padding: 0 14px; }
  .whysection-header { margin-bottom: 40px; }
  .whysection-title { font-size: 30px; margin-bottom: 14px; }
  .whysection-line { width: 100px; }
  .benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .benefit-card { padding: 24px 16px; width: 100%; max-width: none; border-radius: 15px; min-width: 0; }
  .benefit-icon { width: 55px; height: 55px; margin-bottom: 16px; }
  .benefit-icon .icon { width: 28px; height: 28px; }
  .benefit-title { font-size: 16px; margin-bottom: 10px; }
  .benefit-description { font-size: 13px; line-height: 1.5; }
}

@media (min-width: 640px) and (max-width: 900px) {
  .why-march-section { padding: 45px 20px; }
  .container { padding: 0 20px; }
  .whysection-header { margin-bottom: 50px; }
  .whysection-title { font-size: 40px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .benefit-card { padding: 32px 24px; }
  .benefit-icon { width: 75px; height: 75px; margin-bottom: 18px; }
  .benefit-title { font-size: 20px; }
  .benefit-description { font-size: 15px; }
}

@media (min-width: 900px) and (max-width: 1200px) {
  .why-march-section { padding: 50px 30px; }
  .container { padding: 0 30px; }
  .whysection-header { margin-bottom: 55px; }
  .whysection-title { font-size: 44px; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .benefit-card { padding: 36px 28px; }
  .benefit-icon { width: 80px; height: 80px; }
  .benefit-title { font-size: 20px; }
  .benefit-description { font-size: 15px; }
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .why-march-section { padding: 55px 40px; }
  .container { padding: 0 40px; }
  .whysection-header { margin-bottom: 60px; }
  .whysection-title { font-size: 48px; }
  .benefits-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .benefit-card { padding: 36px 28px; }
  .benefit-icon { width: 85px; height: 85px; }
  .benefit-title { font-size: 22px; }
  .benefit-description { font-size: 15px; }
}

@media (min-width: 1440px) {
  .why-march-section { padding: 60px 0; }
  .container { max-width: 1400px; padding: 0 60px; }
  .whysection-header { margin-bottom: 80px; }
  .whysection-title { font-size: 56px; margin-bottom: 20px; }
  .whysection-line { width: 140px; height: 5px; margin-top: 24px; }
  .benefits-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; }
  .benefit-card { padding: 48px 36px; border-radius: 20px; }
  .benefit-icon { width: 96px; height: 96px; margin-bottom: 32px; }
  .benefit-icon .icon { width: 48px; height: 48px; }
  .benefit-title { font-size: 24px; margin-bottom: 16px; }
  .benefit-description { font-size: 17px; line-height: 1.8; }
}

@media (min-width: 1920px) {
  .why-march-section { padding: 80px 0; }
  .container { max-width: 1600px; padding: 0 80px; }
  .whysection-title { font-size: 64px; }
  .benefits-grid { gap: 48px; }
  .benefit-card { padding: 56px 44px; }
  .benefit-icon { width: 110px; height: 110px; margin-bottom: 40px; }
  .benefit-icon .icon { width: 56px; height: 56px; }
  .benefit-title { font-size: 28px; margin-bottom: 20px; }
  .benefit-description { font-size: 19px; }
}
/* =====================================================================
   💻 LAPTOP FIX - WHY MARCH SECTION (Forces 1 Frame)
   ===================================================================== */
@media (max-height: 900px) and (min-width: 768px) {
  .why-march-section {
    padding: 20px !important;
    min-height: calc(100vh - 135px) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .why-march-section .container {
    width: 100% !important;
  }

  .whysection-header {
    margin-bottom: 25px !important;
  }
  
  .whysection-title {
    font-size: 32px !important;
    margin-bottom: 5px !important;
  }

  .whysection-line {
    margin-top: 10px !important;
  }

  .benefits-grid {
    gap: 15px !important;
  }

  .benefit-card {
    padding: 20px 15px !important;
  }

  .benefit-icon {
    width: 55px !important;
    height: 55px !important;
    margin-bottom: 15px !important;
  }

  .benefit-icon .icon {
    width: 28px !important;
    height: 28px !important;
  }

  .benefit-title {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }

  .benefit-description {
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
  }
}

/* =====================================================================
   HIGHLIGHTS SECTION - 3D CAROUSEL
   ===================================================================== */

.highlights-section {
  padding: 60px 20px;
  background-color: #505050;
  position: relative;
  overflow: hidden;
  /* Forces the section to be exactly the height of the screen minus header */
  min-height: calc(100vh - 135px); 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.highlights-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.50;
  pointer-events: none;
}

.highlights-section .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section-header { text-align: center; margin-bottom: 60px; animation: fadeInDown 0.8s ease; }
.section-title { font-family: Georgia, 'Times New Roman', serif; font-size: 48px; font-weight: 700; color: #e2ae3f; margin-bottom: 20px; letter-spacing: -1px; }
.section-line { width: 120px; height: 4px; background: linear-gradient(90deg, #e2ae3f 0%, #f4c36f 100%); margin: 0 auto; border-radius: 2px; }

.highlights-carousel-wrapper { position: relative; margin-bottom: 50px; width: 100%; }
.highlights-carousel { position: relative; height: 400px; perspective: 1400px; overflow: visible; width: 100%; }
.highlights-track { position: relative; height: 100%; width: 100%; }

.highlight-card {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  max-width: 500px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.highlight-image-wrapper { position: relative; flex: 1; overflow: hidden; background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%); }
.highlight-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.highlight-card.active .highlight-image { transform: scale(1); }
.highlight-card:not(.active) .highlight-image { transform: scale(1.1); }

.highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 44, 96, 0.95) 0%, rgba(1, 44, 96, 0.7) 40%, rgba(226, 174, 63, 0.15) 70%, transparent 100%);
  transition: all 0.4s ease;
  z-index: 1;
}

.highlight-card.active:hover .highlight-overlay { background: linear-gradient(to top, rgba(1, 44, 96, 0.85) 0%, rgba(1, 44, 96, 0.5) 40%, rgba(226, 174, 63, 0.1) 70%, transparent 100%); }

.highlight-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 2;
}

.highlight-card.active:hover .highlight-hover-effect { left: 100%; }

.highlight-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.highlight-card.active:hover .highlight-content { transform: translateY(-8px); }

.highlight-title { font-size: 26px; font-weight: 700; color: #ffffff; margin: 0; text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8); transition: all 0.3s ease; letter-spacing: -0.5px; line-height: 1.2; }
.highlight-card.active .highlight-title { color: #f4c36f; }
.highlight-description { font-size: 15px; color: rgba(255, 255, 255, 0.95); line-height: 1.6; text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7); opacity: 0.9; transition: all 0.3s ease; margin: 0; font-weight: 500; }
.highlight-card.active:hover .highlight-description { opacity: 1; color: rgba(255, 255, 255, 1); }

/* Card States */
.highlight-card.active { opacity: 1; transform: translateX(0) scale(1) rotateY(0deg); z-index: 50; box-shadow: 0 30px 70px rgba(226, 174, 63, 0.3); border-color: rgba(226, 174, 63, 0.5); }
.highlight-card.active:hover { transform: translateX(0) scale(1.05) rotateY(0deg); box-shadow: 0 40px 90px rgba(226, 174, 63, 0.4); border-color: rgba(226, 174, 63, 0.8); }
.highlight-card.next { opacity: 0.5; transform: translateX(120px) scale(0.85) rotateY(-25deg); z-index: 40; pointer-events: none; }
.highlight-card.prev { opacity: 0.5; transform: translateX(-120px) scale(0.85) rotateY(25deg); z-index: 40; pointer-events: none; }
.highlight-card.next2 { opacity: 0.2; transform: translateX(240px) scale(0.7) rotateY(-40deg); z-index: 30; pointer-events: none; }
.highlight-card.prev2 { opacity: 0.2; transform: translateX(-240px) scale(0.7) rotateY(40deg); z-index: 30; pointer-events: none; }

.highlight-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2ae3f 0%, #f4c36f 100%);
  color: #012c60;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(226, 174, 63, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  font-weight: 700;
}

.highlight-nav-btn:hover { transform: translateY(-50%) scale(1.1); box-shadow: 0 10px 30px rgba(226, 174, 63, 0.4); background: linear-gradient(135deg, #f4c36f 0%, #e2ae3f 100%); }
.highlight-nav-btn:active { transform: translateY(-50%) scale(0.95); }
.highlight-prev { left: -30px; }
.highlight-next { right: -30px; }

.highlight-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.highlight-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(226, 174, 63, 0.3); cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent; }
.highlight-dot:hover { background: rgba(226, 174, 63, 0.6); transform: scale(1.2); }
.highlight-dot.active { background: linear-gradient(135deg, #e2ae3f 0%, #f4c36f 100%); width: 28px; border-radius: 5px; box-shadow: 0 4px 12px rgba(226, 174, 63, 0.3); }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* 💻 LAPTOP HEIGHT FIX (This forces the carousel to shrink and center in one frame) */
@media (max-height: 900px) and (min-width: 768px) {
  .highlights-section {
    padding: 30px 20px;
    min-height: calc(100vh - 135px); 
  }
  .section-header { margin-bottom: 25px; }
  .section-title { font-size: clamp(28px, 4vw, 36px); margin-bottom: 10px; }
  .highlights-carousel-wrapper { margin-bottom: 20px; }
  .highlights-carousel { height: 320px; }
  .highlight-card { height: 300px; max-width: 400px; }
  .highlight-content { padding: 15px; gap: 8px; }
  .highlight-title { font-size: 20px; }
  .highlight-description { font-size: 13px; line-height: 1.4; margin-top: 0;}
  .highlight-dots { margin-top: 15px; }
  .highlight-nav-btn { width: 40px; height: 40px; }
  
  /* Pull the side cards closer together so they don't break horizontal space when scaled down */
  .highlight-card.prev { opacity: 0.6; transform: translateX(-200px) scale(0.8) rotateY(20deg); z-index: 40; }
  .highlight-card.next { opacity: 0.6; transform: translateX(200px) scale(0.8) rotateY(-20deg); z-index: 40; }
  .highlight-card.prev2 { opacity: 0.3; transform: translateX(-320px) scale(0.65) rotateY(35deg); z-index: 30; }
  .highlight-card.next2 { opacity: 0.3; transform: translateX(320px) scale(0.65) rotateY(-35deg); z-index: 30; }
}

@media (min-width: 768px) and (min-height: 901px) {
  .highlights-section { padding: 70px 40px; }
  .highlights-section .container { padding: 0; }
  .section-header { margin-bottom: 70px; }
  .section-title { font-size: 52px; }
  .highlights-carousel { height: 420px; }
  .highlight-card { height: 400px; }
  .highlight-prev { left: -50px; }
  .highlight-next { right: -50px; }
}

@media (min-width: 1024px) and (min-height: 901px) {
  .highlights-section { padding: 80px 60px; }
  .section-title { font-size: 56px; }
  .section-header { margin-bottom: 80px; }
  .highlights-carousel { height: 450px; }
  .highlight-card { height: 430px; border-radius: 24px; max-width: 450px; }
  .highlight-title { font-size: 28px; }
  .highlight-description { font-size: 16px; }
  .highlight-nav-btn { width: 60px; height: 60px; }
  .highlight-prev { left: 10px; }
  .highlight-next { right: 10px; }
  .highlight-card.prev { opacity: 0.6; transform: translateX(-280px) scale(0.75) rotateY(25deg); z-index: 40; pointer-events: auto; }
  .highlight-card.next { opacity: 0.6; transform: translateX(280px) scale(0.75) rotateY(-25deg); z-index: 40; pointer-events: auto; }
  .highlight-card.prev2 { display: none; }
  .highlight-card.next2 { display: none; }
}

@media (min-width: 1440px) and (min-height: 901px) {
  .highlights-section { padding: 100px 80px; }
  .section-title { font-size: 64px; }
  .section-header { margin-bottom: 100px; }
  .highlights-carousel { height: 500px; }
  .highlight-card { height: 480px; max-width: 480px; }
  .highlight-prev { left: 20px; }
  .highlight-next { right: 20px; }
  .highlight-card.prev { opacity: 0.65; transform: translateX(-350px) scale(0.78) rotateY(28deg); }
  .highlight-card.next { opacity: 0.65; transform: translateX(350px) scale(0.78) rotateY(-28deg); }
}

@media (max-width: 768px) {
  .highlights-section { padding: 40px 16px; min-height: auto; }
  .highlights-section .container { padding: 0 8px; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 32px; }
  .section-line { width: 100px; }
  .highlights-carousel { height: 320px; perspective: 1000px; }
  .highlight-card { height: 300px; border-radius: 16px; padding: 16px; }
  .highlight-card.next { transform: translateX(90px) scale(0.8) rotateY(-25deg); }
  .highlight-card.prev { transform: translateX(-90px) scale(0.8) rotateY(25deg); }
  .highlight-card.next2 { transform: translateX(180px) scale(0.65) rotateY(-40deg); }
  .highlight-card.prev2 { transform: translateX(-180px) scale(0.65) rotateY(40deg); }
  .highlight-title { font-size: 20px; }
  .highlight-description { font-size: 13px; }
  .highlight-nav-btn { width: 40px; height: 40px; font-size: 18px; }
  .highlight-prev { left: -20px; }
  .highlight-next { right: -20px; }
  .highlight-dots { gap: 8px; }
  .highlight-dot { width: 8px; height: 8px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 28px; }
  .highlights-carousel { height: 280px; }
  .highlight-card { height: 260px; font-size: 1.2rem; }
  .highlight-card.next { transform: translateX(70px) scale(0.75) rotateY(-20deg); }
  .highlight-card.prev { transform: translateX(-70px) scale(0.75) rotateY(20deg); }
  .highlight-card.next2 { transform: translateX(140px) scale(0.6) rotateY(-35deg); }
  .highlight-card.prev2 { transform: translateX(-140px) scale(0.6) rotateY(35deg); }
  .highlight-nav-btn { display: none; }
}

/* =====================================================================
   ITINERARY SECTION - OPTIMIZED FOR MOBILE UX
   ===================================================================== */

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

.itinerary-section {
  padding: 2rem 0;
  background-image: url('../IV-quotation-form.jpg');
  background-size: cover;
  background-position: center;
}

.itisection-header { text-align: center; margin-bottom: 2rem; }

.badge-luxury {
  display: inline-block;
  background: linear-gradient(45deg, #f0c987, #e27d60);
  color: #fff;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.badge-luxury:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(226, 125, 96, 0.3); }

.itisection-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 48px;
  font-weight: bold;
  color: #012c60;
  margin-bottom: 0.5rem;
  margin-top: -20px;
  letter-spacing: -1px;
}

.itisection-subtitle { color: #666; max-width: 700px; margin: 0 auto; font-size: 1.125rem; line-height: 1.6; }
.itinerary-section-line { width: 5rem; height: 0.25rem; background: linear-gradient(to right, #f0c987, #e27d60); margin: 1rem auto 0; border-radius: 4px; }

/* Accordion Cards */
.iti-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid #f0e8d8;
  transition: box-shadow .25s ease;
}

.iti-card:hover { box-shadow: 0 8px 28px rgba(1, 44, 96, .12); }

.iti-header {
  width: 100%;
  background: #fff;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: background .2s ease;
}

.iti-header:hover { background: #fdf8ee; }

.iti-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f0c987, #e27d60);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  font-family: 'Georgia', serif;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.iti-header:hover .iti-badge { transform: scale(1.1); }

.iti-header-text { flex: 1; }

.iti-header-text h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #012c60;
  margin: 0 0 3px;
  line-height: 1.25;
}

.iti-theme { font-style: italic; color: #e27d60; font-size: .9rem; margin: 0 0 8px; }

.iti-chips { display: flex; gap: 8px; flex-wrap: wrap; }

.iti-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: #555;
  background: #f5f0e8;
  padding: 3px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.iti-chip:hover { background: #e2ae3f; color: #fff; }
.iti-chip .fa { color: #e27d60; font-size: .72rem; }

.iti-chevron { flex-shrink: 0; color: #e2ae3f; transition: transform .28s cubic-bezier(.4, 0, .2, 1); font-size: 1.2rem; }
.iti-header.open .iti-chevron { transform: rotate(180deg); }

.iti-body {
  display: none;
  border-top: 1px solid #f0e8d8;
  background: #fdf8f3;
  padding: 28px 24px 32px;
  gap: 32px;
}

.iti-body.open { display: grid; grid-template-columns: 1fr; }
.iti-narrative p { font-size: .92rem; color: #444; line-height: 1.85; margin: 0 0 14px; }
.iti-narrative p:last-child { margin-bottom: 0; }

.iti-highlight {
  background: #ffe9c3;
  border-left: 4px solid #f0c987;
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: .875rem;
  color: #5a3a00;
  margin-bottom: 20px;
}

/* Timeline */
.iti-timeline { margin-top: 20px; position: relative; padding-left: 26px; }
.iti-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, #e2ae3f, #f0c987, #ecddd0);
  border-radius: 1px;
}

.iti-tl-item { position: relative; padding-bottom: 18px; }
.iti-tl-item::before {
  content: '';
  position: absolute;
  left: -23px;
  top: 5px;
  width: 10px;
  height: 10px;
  background: #e2ae3f;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #f0c987;
  transition: transform 0.3s ease;
}

.iti-tl-item:hover::before { transform: scale(1.3); }
.iti-tl-time { font-size: .7rem; font-weight: 700; color: #e2ae3f; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1px; }
.iti-tl-title { font-size: .88rem; font-weight: 600; color: #012c60; }
.iti-tl-desc { font-size: .79rem; color: #888; margin-top: 1px; }

/* Aside (Right Sidebar) */
.iti-aside { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; padding-top: 24px; border-top: 1px solid #e8e0d0; }

.iti-hotel-card {
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  transition: all 0.3s ease;
}

.iti-hotel-card:hover { box-shadow: 0 6px 16px rgba(0, 0, 0, .12); transform: translateY(-2px); }

.iti-hotel-header { background: #012c60; padding: 12px 16px; display: flex; align-items: center; gap: 8px; color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.iti-hotel-header .fa { color: #e2ae3f; font-size: .9rem; }
.iti-hotel-body { padding: 12px 16px; }
.iti-hotel-sub { font-size: .72rem; color: #999; margin-bottom: 10px; }
.iti-hotel-list { list-style: none; padding: 0; margin: 0; }
.iti-hotel-list li { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; border-bottom: 1px solid #f5f0e8; font-size: .83rem; color: #333; transition: all 0.2s ease; }
.iti-hotel-list li:hover { padding-left: 4px; color: #e2ae3f; }
.iti-hotel-list li:last-child { border-bottom: none; }
.iti-stars { color: #e2ae3f; font-size: .65rem; flex-shrink: 0; margin-top: 2px; line-height: 1.4; }

/* Local Tip Box */
.iti-local-box { background: linear-gradient(135deg, #fffbf0 0%, #fff3d0 100%); border: 2px solid #e2ae3f; border-radius: 12px; padding: 16px; transition: all 0.3s ease; }
.iti-local-box:hover { box-shadow: 0 6px 16px rgba(226, 174, 63, 0.2); transform: translateY(-2px); }
.iti-local-badge { display: inline-block; background: linear-gradient(135deg, #f0c987, #e2ae3f); color: #012c60; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; margin-bottom: 10px; }
.iti-local-box h4 { font-size: 0.95rem; font-weight: 700; color: #012c60; margin: 0 0 8px; }
.iti-local-box p { font-size: 0.82rem; color: #333; line-height: 1.6; margin: 0; }

.iti-tip { background: linear-gradient(135deg, #fffbf0 0%, #fff3d0 100%); border-left: 3px solid #e2ae3f; border-radius: 8px; padding: 12px 14px; }
.iti-tip-label { font-size: .7rem; font-weight: 700; color: #c47a00; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 5px; }
.iti-tip p { font-size: .81rem; color: #555; line-height: 1.6; margin: 0; }

@media (max-width: 360px) {
  .itisection-title { font-size: 1.75rem; }
  .itisection-subtitle { font-size: 0.95rem; }
  .iti-header { padding: 14px 12px; gap: 10px; }
  .iti-badge { width: 36px; height: 36px; font-size: 0.9rem; }
  .iti-header-text h3 { font-size: 1rem; margin-bottom: 2px; }
  .iti-theme { font-size: 0.8rem; margin-bottom: 6px; }
  .iti-chips { gap: 4px; }
  .iti-chip { font-size: 0.68rem; padding: 2px 6px; }
  .iti-body { padding: 16px 12px 20px; }
  .iti-narrative p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 10px; }
  .iti-timeline { padding-left: 20px; margin-top: 16px; }
  .iti-tl-item { padding-bottom: 14px; }
  .iti-tl-item::before { left: -18px; width: 8px; height: 8px; }
  .iti-tl-time { font-size: 0.65rem; }
  .iti-tl-title { font-size: 0.8rem; }
  .iti-tl-desc { font-size: 0.72rem; }
  .iti-aside { margin-top: 16px; padding-top: 16px; gap: 12px; }
  .iti-hotel-header { padding: 10px 12px; font-size: 0.7rem; }
  .iti-hotel-body { padding: 10px 12px; }
  .iti-hotel-sub { font-size: 0.68rem; margin-bottom: 8px; }
  .iti-hotel-list li { font-size: 0.76rem; padding: 4px 0; }
  .iti-local-badge { font-size: 0.65rem; padding: 4px 10px; margin-bottom: 8px; }
  .iti-local-box { padding: 14px; }
  .iti-local-box h4 { font-size: 0.88rem; margin-bottom: 6px; }
  .iti-local-box p { font-size: 0.78rem; }
}

@media (min-width: 360px) and (max-width: 480px) {
  .itisection-title { font-size: 2rem; }
  .itisection-subtitle { font-size: 1rem; }
  .iti-header { padding: 16px 14px; gap: 12px; }
  .iti-badge { width: 38px; height: 38px; font-size: 1rem; }
  .iti-header-text h3 { font-size: 1.1rem; }
  .iti-body { padding: 18px 14px 22px; grid-template-columns: 1fr; }
  .iti-narrative p { font-size: 0.85rem; line-height: 1.75; margin-bottom: 12px; }
  .iti-timeline { padding-left: 22px; margin-top: 18px; }
  .iti-tl-item { padding-bottom: 16px; }
  .iti-tl-item::before { left: -20px; }
  .iti-aside { margin-top: 20px; padding-top: 20px; gap: 13px; }
  .iti-hotel-header { padding: 11px 14px; font-size: 0.72rem; }
  .iti-hotel-body { padding: 11px 14px; }
  .iti-local-box { padding: 15px; }
  .iti-local-box h4 { font-size: 0.92rem; }
  .iti-local-box p { font-size: 0.8rem; }
}

@media (min-width: 480px) and (max-width: 640px) {
  .itisection-title { font-size: 2.1rem; }
  .iti-header { padding: 18px 16px; gap: 13px; }
  .iti-badge { width: 40px; height: 40px; font-size: 1.05rem; }
  .iti-header-text h3 { font-size: 1.15rem; }
  .iti-body { padding: 20px 16px 24px; grid-template-columns: 1fr; }
  .iti-aside { margin-top: 24px; padding-top: 24px; gap: 14px; }
  .iti-narrative p { font-size: 0.87rem; }
  .iti-local-box h4 { font-size: 0.95rem; }
}

@media (min-width: 640px) and (max-width: 900px) {
  .itisection-title { font-size: 2.3rem; }
  .iti-header { padding: 18px 18px; gap: 14px; }
  .iti-badge { width: 42px; height: 42px; font-size: 1.1rem; }
  .iti-header-text h3 { font-size: 1.25rem; }
  .iti-body { padding: 24px 18px 28px; grid-template-columns: 1fr; }
  .iti-aside { flex-direction: row; flex-wrap: wrap; margin-top: 28px; padding-top: 28px; gap: 16px; }
  .iti-hotel-card, .iti-local-box { flex: 1 1 calc(50% - 8px); min-width: 260px; }
}

@media (min-width: 900px) {
  .itisection-title { font-size: 2.4rem; }
  .iti-header { padding: 20px 24px; gap: 16px; }
  .iti-badge { width: 44px; height: 44px; font-size: 1.15rem; }
  .iti-header-text h3 { font-size: 1.35rem; }
  .iti-body.open { grid-template-columns: 1fr 300px; }
  .iti-aside { flex-direction: column; margin-top: 0; padding-top: 0; border-top: none; gap: 14px; }
  .iti-hotel-card, .iti-local-box { flex: none; }
}

@media (min-width: 1024px) {
  .itisection-title { font-size: 48px; }
  .iti-body.open { grid-template-columns: 1fr 280px; }
  .itinerary-section { padding: 3rem 0; }
}

/* Map section */
.tour-map-section {
  padding: 0px 20px;
  background: #f9f9f9;
  text-align: center;
  padding-bottom: 3dvh;
  background-image: url('../IV-quotation-form.jpg');
}

.mapsection-title { font-size: 34px; margin-bottom: 25px; font-weight: 700; color: #012c60; }
#tourMap { width: 100%; height: 500px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }


/* =====================================================================
   💻 LAPTOP FIX - ITINERARY & MAP SECTION (Forces 1 Frame)
   ===================================================================== */
@media (max-height: 900px) and (min-width: 768px) {
  /* 1. THIS FIXES THE NARROW WIDTH ISSUE */
  .itinerary-section .container,
  .tour-map-section .container {
    width: 100% !important;
  }

  /* Itinerary Section Compression */
  .itinerary-section {
    padding: 1.5rem 0 !important;
    min-height: calc(100vh - 60px) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .itisection-header {
    margin-bottom: 1rem !important;
  }
  .itisection-title {
    font-size: 32px !important;
    margin-top: 0 !important;
    margin-bottom: 5px !important;
  }
  .itisection-subtitle {
    font-size: 14px !important;
  }
  .itinerary-section-line {
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
  }

  /* Make the 9 accordion cards incredibly slim to fit */
  .iti-card {
    margin-bottom: 6px !important;
    width: 100% !important;
  }
  .iti-header {
    padding: 8px 16px !important;
    gap: 12px !important;
  }
  .iti-badge {
    width: 32px !important;
    height: 32px !important;
    font-size: 1rem !important;
  }
  .iti-header-text h3 {
    font-size: 1rem !important;
    margin-bottom: 2px !important;
  }
  .iti-theme {
    font-size: 0.75rem !important;
    margin-bottom: 2px !important;
  }
  .iti-chips {
    gap: 6px !important;
  }
  .iti-chip {
    font-size: 0.7rem !important;
    padding: 2px 6px !important;
  }
  .iti-body {
    padding: 15px !important;
  }

  /* Map Section Compression */
  .tour-map-section {
    padding: 20px 20px !important;
    min-height: calc(100vh - 60px) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .mapsection-title {
    font-size: 32px !important;
    margin-bottom: 15px !important;
  }
  #tourMap {
    height: calc(100vh - 180px) !important; 
    max-height: 450px !important; 
    width: 100% !important;
  }
}

/* =====================================================================
   11. HOTELS SECTION (ORIGINAL 3D CAROUSEL)
   ===================================================================== */
.hotel-assist-cta {
  padding: 40px 20px;
  background: radial-gradient(circle at top, rgba(37, 211, 102, 0.08), transparent 60%), linear-gradient(180deg, #f0c987, #ffffff);
}

.hotel-assist-container { max-width: 900px; margin: 0 auto; text-align: center; }
.hotel-assist-title { font-size: 2.2rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; color: #111; }
.hotel-assist-text { max-width: 680px; margin: 0 auto 36px; font-size: 1.05rem; color: #555; line-height: 1.6; }

.district-carousel { max-width: 520px; margin: 0 auto 2rem; perspective: 1400px; padding: 0 10px; }
.district-track { position: relative; height: 230px; }

.district-card {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 250px;
  border-radius: 10px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.65)), var(--img) center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.75);
  transition: all 0.6s ease;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  will-change: transform, opacity;
}

.district-card span { z-index: 2; }
.district-card.active { opacity: 1; transform: translateX(0) scale(1); z-index: 5; }
.district-card.prev, .district-card.next { opacity: 0.6; z-index: 4; }
.district-card.prev { transform: translateX(-110px) scale(0.9) rotateY(12deg); }
.district-card.next { transform: translateX(110px) scale(0.9) rotateY(-12deg); }
.district-card.prev2, .district-card.next2 { opacity: 0.35; z-index: 3; }
.district-card.prev2 { transform: translateX(-190px) scale(0.8) rotateY(18deg); }
.district-card.next2 { transform: translateX(190px) scale(0.8) rotateY(-18deg); }

.district-dots { display: flex; justify-content: center; gap: 12px; margin-top: 30px; margin-bottom: -20px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #bbb; cursor: pointer; transition: 0.3s; }
.dot.active { background: #012c60; transform: scale(1.4); }

.district-hotels { max-width: 1100px; margin: 0 auto; padding: 0 15px; }
.partnered-hotels { font-size: 20px; color: #001a3b; font-weight: 800; text-align: center; text-transform: uppercase; margin-bottom: 20px; font-family: 'Arial', sans-serif; margin-top: 40px; }

.hotels-grid {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(1, 44, 96, 0.4) rgba(0, 0, 0, 0.05);
}

.hotels-grid::-webkit-scrollbar { height: 8px; }
.hotels-grid::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.05); border-radius: 10px; }
.hotels-grid::-webkit-scrollbar-thumb { background: rgba(1, 44, 96, 0.3); border-radius: 10px; }
.hotels-grid::-webkit-scrollbar-thumb:hover { background: rgba(1, 44, 96, 0.7); }

.hotel-card {
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #1a202c;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.hotel-card h5 { margin: 0; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.5px; text-align: center; line-height: 1.3; }
.hotel-card:hover { transform: translateY(-4px); box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); background: #ffffff; border-color: rgba(1, 44, 96, 0.2); }

@media (max-width: 1024px) {
  .district-carousel { max-width: 480px; }
  .hotels-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hotels-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hotels-grid { grid-auto-columns: minmax(180px, 1fr); gap: 12px; }
  .hotel-card { padding: 10px 8px; }
  .hotel-card h5 { font-size: 0.85rem; }
}

@media (max-width: 600px) {
  .hotel-assist-title { font-size: 1.8rem; }
  .district-carousel { max-width: 340px; perspective: 1000px; }
  .district-track { height: 180px; }
  .district-card { height: 200px; font-size: 1.3rem; padding: 0.9rem; }
  .district-card.prev { transform: translateX(-70px) scale(0.85) rotateY(10deg); }
  .district-card.next { transform: translateX(70px) scale(0.85) rotateY(-10deg); }
  .district-card.prev2 { transform: translateX(-130px) scale(0.75) rotateY(15deg); }
  .district-card.next2 { transform: translateX(130px) scale(0.75) rotateY(-15deg); }
  .hotels-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .hotel-card { padding: 0.7rem; }
  .partnered-hotels { font-size: 16px; }
  .district-dots { gap: 10px; margin-top: 25px; }
  .dot { width: 8px; height: 8px; }
}

@media (max-width: 480px) {
  .district-carousel { max-width: 300px; perspective: 900px; }
  .district-track { height: 160px; }
  .district-card { height: 180px; font-size: 1.2rem; padding: 0.8rem; }
  .district-card.prev { transform: translateX(-60px) scale(0.83) rotateY(8deg); }
  .district-card.next { transform: translateX(60px) scale(0.83) rotateY(-8deg); }
  .district-card.prev2 { transform: translateX(-110px) scale(0.73) rotateY(12deg); }
  .district-card.next2 { transform: translateX(110px) scale(0.73) rotateY(-12deg); }
}

@media (max-width: 375px) {
  .district-carousel { max-width: 280px; }
  .district-card { height: 170px; font-size: 1.1rem; }
  .district-card.prev { transform: translateX(-55px) scale(0.82) rotateY(8deg); }
  .district-card.next { transform: translateX(55px) scale(0.82) rotateY(-8deg); }
  .district-card.prev2 { transform: translateX(-100px) scale(0.72) rotateY(12deg); }
  .district-card.next2 { transform: translateX(100px) scale(0.72) rotateY(-12deg); }
  .hotels-grid { gap: 0.6rem; }
  .hotel-card h5 { font-size: 0.9rem; }
  .partnered-hotels { font-size: 14px; }
}

@media (max-width: 320px) {
  .district-carousel { max-width: 260px; }
  .district-card { height: 160px; font-size: 1rem; padding: 0.7rem; }
  .district-card.prev { transform: translateX(-50px) scale(0.8) rotateY(7deg); }
  .district-card.next { transform: translateX(50px) scale(0.8) rotateY(-7deg); }
  .district-card.prev2 { transform: translateX(-90px) scale(0.7) rotateY(10deg); }
  .district-card.next2 { transform: translateX(90px) scale(0.7) rotateY(-10deg); }
}

/*==========pricing=====================================*/
.pricing-section {
  background: linear-gradient(180deg, #ffecc4, #1a4d2ea1);
  padding: 20px 20px;
  color: #1f2933;
}

.pricing-container { max-width: 1200px; margin: auto; }

.pricing-header { text-align: center; margin-bottom: 70px; }

.pricing-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(244, 184, 96, 0.15);
  border: 1px solid rgba(224, 122, 95, 0.4);
  font-weight: 600;
  margin-bottom: 18px;
}

.pricing-header h2 { font-size: clamp(2.2rem, 5vw, 2.8rem); font-weight: 700; }
.pricing-header p { color: #555; max-width: 600px; margin: 10px auto 0; }
.pricing-line { width: 80px; height: 3px; background: linear-gradient(to right, #f4b860, #e07a5f); margin: 30px auto 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
  margin-bottom: 50px;
  margin-top: -45px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
}

.pricing-card:hover { transform: translateY(-8px) scale(1.05); }

.pricing-card.popular {
  background: linear-gradient(135deg, #f4b860, #e07a5f);
  color: #1a1a1a;
  box-shadow: 0 30px 80px rgba(224, 122, 95, 0.35);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.card-header { display: flex; align-items: center; gap: 10px; }
.card-header svg { width: 22px; fill: currentColor; }
.room { margin: 16px 0; opacity: 0.75; }
.price span { font-size: 42px; font-weight: 700; }
.price small { opacity: 0.7; }

.btn-outline, .btn-gold, .btn-hero {
  display: block;
  margin-top: 22px;
  padding: 14px;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
}

.btn-outline { border: 1.5px solid #1f2933; color: #1f2933; }
.btn-gold { background: #111; color: #fff; }
.btn-hero { background: linear-gradient(135deg, #f4b860, #e07a5f); color: #1a1a1a; }
.btn-outline:hover { background-color: #1f2933; color: #fff; transition: all 0.3s ease; }
.btn-gold:hover { background-color: #333; color: #f4b860; transition: all 0.3s ease; }
.btn-hero:hover { background-position: right center; filter: brightness(1.1); transition: all 0.3s ease; }

.included { padding: 0px 20px; margin-top: -20px; }
.included h3 { text-align: center; font-size: 2.3rem; font-weight: 700; margin-bottom: 30px; color: #1a1a1a; }

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.included-item {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  padding: 15px 18px 15px 42px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.included-item::before { content: '✔'; position: absolute; left: 16px; top: 15px; color: #ffc107; font-size: 16px; font-weight: 700; }
.included-item:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12); background: rgba(255, 255, 255, 0.9); }

@media (max-width: 768px) {
  .included { padding: 0 10px; }
  .included h3 { font-size: 2rem; }
  
  .included-grid {
    display: grid !important;
    grid-template-rows: repeat(3, 1fr) !important;
    grid-auto-flow: column !important;
    grid-auto-columns: 75vw !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    margin: 0 -10px;
    padding: 0 10px 20px 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  
  .included-grid::-webkit-scrollbar { display: none; }
  .included-item { scroll-snap-align: center; font-size: 14.5px; padding: 14px 16px 14px 42px; display: flex; align-items: center; white-space: normal; height: 100%; }
  .included-item::before { top: 50%; transform: translateY(-50%); }

  .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; margin-top: -20px; }
  .pricing-card { padding: 16px 10px; border-radius: 14px; min-width: 0; }
  .pricing-card:hover, .pricing-card.popular:hover { transform: translateY(-4px) scale(1) !important; }
  .card-header { flex-direction: column; gap: 4px; text-align: center; }
  .card-header svg { width: 18px; }
  .card-header h3 { font-size: 1rem; margin: 0; }
  .room { font-size: 0.75rem; text-align: center; margin: 8px 0; white-space: normal; }
  .price { text-align: center; }
  .price span { font-size: 1.6rem; }
  .price small { display: block; font-size: 0.7rem; margin-top: 2px; }
  .btn-outline, .btn-gold, .btn-hero { padding: 10px; font-size: 0.75rem; margin-top: 12px; }
  .popular-badge { font-size: 0.65rem; padding: 3px 8px; top: -10px; white-space: nowrap; }
}

@media (max-width: 480px) {
  .included h3 { font-size: 1.8rem; }
  .included-grid { grid-auto-columns: 85vw !important; }
  .included-item { font-size: 14px; padding: 12px 15px 12px 38px; }
  .pricing-grid { gap: 8px !important; }
  .pricing-card { padding: 12px 6px; }
  .card-header h3 { font-size: 0.9rem; }
  .room { font-size: 0.7rem; line-height: 1.2; }
  .price span { font-size: 1.35rem; }
  .btn-outline, .btn-gold, .btn-hero { padding: 8px; font-size: 0.7rem; }
}

@media (max-width: 375px) {
  .pricing-card { padding: 10px 4px; border-radius: 10px; }
  .price span { font-size: 1.15rem; }
  .price small { font-size: 0.6rem; }
  .popular-badge { font-size: 0.55rem; padding: 2px 6px; top: -8px; }
}

/*==========driver section=================*/
.driver-section {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-top: 1px;
}

.driver-section h2 { font-size: 2.2rem; color: #000; margin-bottom: 24px; margin-top: -20px; }

.carousel-container { position: relative; overflow: hidden; max-width: 100%; margin: 0 auto; }

.carousel-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 80px 10px;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

.driver-card {
  flex: 0 0 280px;
  background: #fff url(https://dxk1acp76n912.cloudfront.net/images/homepage/watermarkwhite.png) no-repeat center center;
  background-size: cover;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 16px 20px;
  position: relative;
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 370px;
  overflow: visible;
}

.driver-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }

.driver-image-wrapper {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background: white;
}

.driver-image-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-line { height: 4px; background: #ffa500; margin: 16px 0; border-radius: 2px; overflow: visible; }
.driver-heading { font-size: 1.2rem; font-weight: bold; color: #012c60; margin-top: 15px; margin-bottom: 12px; }
.card-details { font-size: 0.9rem; color: #333; line-height: 1.6; margin-bottom: 16px; margin-top: -10px; }
.card-details .rating { color: #f0a500; font-size: 1.1rem; font-weight: bold; margin-bottom: 8px; }
.card-details strong { display: inline-block; color: #012c60; font-weight: bold; margin: 4px 0; }

.btn1 {
  display: inline-block;
  margin-top: auto;
  padding: 10px 20px;
  background: #012c60;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn1:hover { background-color: #e2ae3f; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(188, 185, 185, 0.6);
  color: rgb(0, 0, 0);
  border: none;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* Review Section Styles */
.reviews { padding: 40px 20px; background: #f7f7f7; font-family: 'Arial', sans-serif; margin-top: -20px; }
.reviewsection-title { text-align: center; font-size: 32px; margin-bottom: 30px; color: #012c60; margin-top: -100px; font-family: Georgia, 'Times New Roman', serif; }
.inquiry-container { width: 95%; max-width: 1200px; padding: 40px 30px; margin: 0 auto; background: #fff; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); border-radius: 8px; }
.reviews .subtitle { text-align: center; margin-top: -20px; font-family: sans-serif; color: #000000; font-size: 1.3rem; line-height: 1.2; }
.reviews .subtitle #last-updated { display: block; margin-bottom: 1px; color: #333; }

.reviews .subtitle .view-all {
  display: inline-block;
  text-decoration: none;
  color: #1a416f;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 119, 204, 0.2);
  margin-bottom: 20px;
  font-size: 15px;
  margin-top: -30px;
}

.reviews .subtitle .view-all:hover, .reviews .subtitle .view-all:focus { background-color: #e2ae3f; color: #fff; box-shadow: 0 6px 12px rgba(0, 119, 204, 0.4); }
.carousel-wrapper { position: relative; overflow: hidden; max-width: 100%; }
.review-carousel { display: flex; transition: transform 0.4s ease-in-out; gap: 20px; }
.review-card { background: #fff; border-radius: 12px; display: flex; min-width: 300px; max-width: 700px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); flex-shrink: 0; }
.review-content { padding: 20px; flex: 1; width: 500px; }
.tripadvisor-logo { width: 100px; margin-bottom: 10px; }
.review-stars { color: #ffd700; font-size: 18px; margin-bottom: 10px; margin-top: -30px; }
.review-header { font-size: 20px; font-weight: bold; margin: 10px 0; color: #00796b; }
.review-text { font-size: 15px; color: #555; margin-bottom: 15px; line-height: 1.5; }
.review-text-wrapper { position: relative; }
.review-text { max-height: 90px; overflow: hidden; position: relative; transition: max-height 0.3s ease; }
.review-text.expanded { max-height: 1000px; }
.toggle-more { display: inline-block; margin-top: 12px; color: #012c60; cursor: pointer; font-weight: bold; margin-bottom: 20px; }
.review-author { font-size: 14px; color: #333; }
.review-link { color: #007f5f; text-decoration: none; font-weight: bold; font-size: 1rem; }
.review-link:hover { text-decoration: underline; }
.review-date { display: block; color: #888; font-size: 13px; margin-top: 3px; }
.review-image { width: 30px; background-size: cover; background-position: center; }

.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  padding: 4px 10px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.carousel-btn.left { left: 10px; }
.carousel-btn.right { right: 10px; }

@media (max-width: 768px) {
  .review-carousel { gap: 18px; }
  .review-card { width: 100%; max-width: 90%; }
}

/* ============CTA Section================== */
.cta-section {
  padding: 2rem 1rem 2rem;
  background: linear-gradient(135deg, #56ab2f30 0%, #a8e063ab 100%);
  text-align: center;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease forwards;
}

.cta-container { max-width: 800px; margin: 0 auto; }
.cta-title { font-size: 2.5rem; font-weight: bold; margin-bottom: 1rem; color: #1f2937; }
.cta-subtitle { font-size: 1.125rem; color: rgba(31, 41, 55, 0.7); margin-bottom: 2rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }

.cta-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-filled { background: linear-gradient(90deg, #25d366, #128c7e); color: #fff; border: none; }
.cta-btn-filled:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35); }
.cta-btn-outline { background: transparent; color: #128c7e; border: 2px solid #128c7e; }
.cta-btn-outline:hover { background: #128c7e; color: #fff; transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 20px rgba(18, 140, 126, 0.35); }
.cta-btn i { font-size: 1.25rem; }

@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
@media (max-width: 480px) { .cta-title { font-size: 2rem; } .cta-subtitle { font-size: 1rem; } }
@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(40px); } 100% { opacity: 1; transform: translateY(0); } }

/* footer */
footer {
  background: url('https://dxk1acp76n912.cloudfront.net/images/homepage/waterma.png') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  margin-top: 0px;
}

.footer-logo {
  position: relative;
  padding: 10px;
  width: 140px;
  height: auto;
  margin: 0 auto;
  font-weight: bold;
  margin-top: 40px;
}

.footer-logo img { width: 240%; height: auto; margin-top: -300px !important; margin-left: -80px; }
.footer-social { display: flex; justify-content: center; align-items: center; gap: 20px; font-size: 1.4rem; text-align: center; margin-top: -5px !important; }
.footer-social a { color: white; }
.footer-content { max-width: 1200px; margin: auto; font-size: 18px; line-height: 1.6; margin-top: 10px; gap: 5; text-align: center; }

@media (max-width: 768px) {
  .yala-benefits { padding: 40px 10px; }
  .benefits-container { justify-content: space-around; }
  .benefit-card { width: 90%; margin-bottom: 20px; padding: 15px; }
  .benefits-title { font-size: 1.8rem; }
  .footer { padding: 20px 10px; height: auto; font-size: 14px; flex-direction: column; }
  .footer-logo { position: relative; padding: 10px; width: 140px; height: auto; margin: 0 auto; margin-top: 40px; }
  .footer-logo img { width: 240%; height: auto; margin-top: -300px !important; margin-left: -80px; }
  .footer-social { display: flex; justify-content: center; align-items: center; gap: 20px; font-size: 1.2rem; text-align: center; }
  .footer-social a { color: white; }
  .footer-content { font-size: 14px; margin-top: 20px; line-height: 1.5; }
}

.footer p a { color: #ffffff; text-decoration: none; }
.footer p a:hover { text-decoration: none; }
.footer p a:active { color: #f0a500; }

.payment-box {
  background-color: white;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 1px 0;
  text-align: center;
  box-sizing: border-box;
  height: 60px;
}

.inline-payment-icons { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 15px; align-items: center; opacity: 1; }
.inline-payment-icons img { height: 58px; width: auto; filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1)); transition: transform 0.3s ease, filter 0.3s ease; }
.inline-payment-icons img:hover { transform: scale(1.1); filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2)); }

/* =====================================================================
   HIGHLIGHT PARAGRAPH SECTION - REDESIGNED WITH CONSISTENCY
   ===================================================================== */

.highlight-paragraph-section {
  background: #ffffff;
  padding: 60px 20px;
  margin: 30px 0 0 0;
  border-top: 3px solid #e2ae3f;
  border-bottom: 1px solid #f0e8d8;
}

.highlight-paragraph-section .highlight-container {
  background-image: url('../IV-quotation-form.jpg');
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 8px 32px rgba(1, 44, 96, 0.08);
  position: relative;
  border: 1px solid rgba(226, 174, 63, 0.15);
}

.highlight-paragraph-section .quote-icon-open,
.highlight-paragraph-section .quote-icon-close {
  font-size: 56px;
  color: #e2ae3f;
  font-weight: 700;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.6;
}

.highlight-paragraph-section .quote-icon-open { display: block; margin-bottom: 20px; text-align: left; }
.highlight-paragraph-section .quote-icon-close { display: block; margin-top: 20px; margin-bottom: 30px; text-align: right; }

.highlight-paragraph-section .highlight-main-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  color: #012c60;
  text-align: center;
  margin: 0;
  letter-spacing: 0.3px;
}

.highlight-paragraph-section .para-highlights-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 2px solid #f0e8d8;
  border-bottom: 2px solid #f0e8d8;
}

.highlight-paragraph-section .para-highlight-tag {
  display: inline-block;
  background: linear-gradient(135deg, #fdf8f3 0%, #f5f1e8 100%);
  color: #012c60;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 25px;
  border: 1.5px solid #e2ae3f;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: default;
}

.highlight-paragraph-section .para-highlight-tag:hover {
  background: linear-gradient(135deg, #e2ae3f 0%, #f4c36f 100%);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(226, 174, 63, 0.25);
  border-color: #f4c36f;
}

.highlight-paragraph-section .para-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 36px 0;
  padding: 32px 0;
}

.highlight-paragraph-section .para-info-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(135deg, #fdf8f3 0%, #fffbf7 100%);
  border-radius: 12px;
  border-left: 4px solid #e2ae3f;
  transition: all 0.3s ease;
}

.highlight-paragraph-section .para-info-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(226, 174, 63, 0.15); }
.highlight-paragraph-section .para-info-item label { font-size: 11px; font-weight: 700; color: #e2ae3f; text-transform: uppercase; letter-spacing: 1.2px; margin: 0; }
.highlight-paragraph-section .para-info-item span { font-size: 18px; font-weight: 700; color: #012c60; line-height: 1.4; }

.highlight-paragraph-section .highlight-cta-btn {
  display: block;
  margin: 28px auto 0;
  padding: 12px 40px;
  background: linear-gradient(135deg, #e2ae3f 0%, #f4c36f 100%);
  color: #012c60;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(226, 174, 63, 0.25);
  text-decoration: none;
  width: fit-content;
}

.highlight-paragraph-section .highlight-cta-btn:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(226, 174, 63, 0.35); background: linear-gradient(135deg, #f4c36f 0%, #e2ae3f 100%); }
.highlight-paragraph-section .highlight-cta-btn:active { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(226, 174, 63, 0.25); }

@media (max-width: 1024px) {
  .highlight-paragraph-section { padding: 50px 20px; }
  .highlight-paragraph-section .highlight-container { padding: 40px 30px; border-radius: 16px; }
  .highlight-paragraph-section .highlight-main-text { font-size: 18px; line-height: 1.7; }
  .highlight-paragraph-section .para-info-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 24px 0; }
  .highlight-paragraph-section .para-highlight-tag { font-size: 12px; padding: 9px 16px; }
}

@media (max-width: 768px) {
  .highlight-paragraph-section { padding: 40px 16px; margin: 20px 0 0 0; }
  .highlight-paragraph-section .highlight-container { padding: 32px 24px; border-radius: 14px; }
  .highlight-paragraph-section .quote-icon-open, .highlight-paragraph-section .quote-icon-close { font-size: 42px; }
  .highlight-paragraph-section .highlight-main-text { font-size: 16px; line-height: 1.65; }
  .highlight-paragraph-section .para-highlights-grid { gap: 10px; margin: 28px 0; padding: 20px 0; }
  .highlight-paragraph-section .para-highlight-tag { font-size: 11px; padding: 8px 14px; }
  .highlight-paragraph-section .para-info-grid { grid-template-columns: 1fr; gap: 16px; margin: 28px 0; padding: 20px 0; }
  .highlight-paragraph-section .para-info-item { padding: 16px; border-left: 3px solid #e2ae3f; }
  .highlight-paragraph-section .para-info-item span { font-size: 16px; }
  .highlight-paragraph-section .highlight-cta-btn { padding: 13px 40px; font-size: 13px; letter-spacing: 1px; margin-top: 16px; }
}

@media (max-width: 600px) {
  .highlight-paragraph-section { padding: 30px 12px; margin: 20px 0 0 0; }
  .highlight-paragraph-section .highlight-container { padding: 24px 18px; border-radius: 12px; box-shadow: 0 4px 16px rgba(1, 44, 96, 0.06); }
  .highlight-paragraph-section .quote-icon-open, .highlight-paragraph-section .quote-icon-close { font-size: 36px; margin-bottom: 12px; margin-top: 12px; }
  .highlight-paragraph-section .highlight-main-text { font-size: 15px; line-height: 1.6; letter-spacing: 0.2px; }
  .highlight-paragraph-section .para-highlights-grid { gap: 8px; margin: 20px 0; padding: 16px 0; }
  .highlight-paragraph-section .para-highlight-tag { font-size: 10px; padding: 7px 12px; border-radius: 20px; }
  .highlight-paragraph-section .para-info-grid { grid-template-columns: 1fr; gap: 12px; margin: 20px 0; padding: 16px 0; }
  .highlight-paragraph-section .para-info-item { padding: 14px; gap: 6px; }
  .highlight-paragraph-section .para-info-item label { font-size: 10px; letter-spacing: 1px; }
  .highlight-paragraph-section .para-info-item span { font-size: 14px; }
  .highlight-paragraph-section .highlight-cta-btn { padding: 12px 32px; font-size: 12px; letter-spacing: 0.8px; margin-top: 14px; border-radius: 6px; }
}

@media (max-width: 380px) {
  .highlight-paragraph-section .highlight-container { padding: 18px 14px; }
  .highlight-paragraph-section .highlight-main-text { font-size: 14px; }
  .highlight-paragraph-section .para-info-item span { font-size: 13px; }
  .highlight-paragraph-section .highlight-cta-btn { padding: 10px 24px; font-size: 11px; }
}

/* ===================== BACK TO TOP BUTTON ===================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  color: #012c60;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(255, 193, 7, 0.5); background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%); }

@media (max-width: 768px) {
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 16px; }
}

.btn-primary.sticky+.btn-secondary { margin-left: 245px; transition: margin 0s; }

/* Global Fix to kill any side-scrolling */
html, body { max-width: 100%; overflow-x: hidden; position: relative; }