/* ============================================================
   CHOOSE TRAVEL - Main Stylesheet
   Version: 1.0
   ============================================================ */

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --primary: #0056D2;
  --primary-dark: #003DA1;
  --primary-light: #E8F0FE;
  --accent: #F5A623;
  --accent-dark: #D4891A;
  --success: #27AE60;
  --danger: #E74C3C;
  --dark: #0D1B2A;
  --dark-2: #1A2D45;
  --gray-900: #1C2B3A;
  --gray-700: #4A5568;
  --gray-500: #718096;
  --gray-300: #CBD5E0;
  --gray-100: #F7FAFC;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.18);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --header-h: 70px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

p,
.about-desc,
.test-text,
.itinerary-day-desc,
.faq-answer,
.blog-excerpt,
.blog-content,
.guide-excerpt,
.guide-body {
  text-align: justify;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--dark);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  color: var(--gray-500);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header.left {
  text-align: left;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-py {
  padding: 80px 0;
}

.section-py-sm {
  padding: 50px 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 86, 210, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 86, 210, 0.4);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 7px 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--accent);
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar-item i {
  color: var(--accent);
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: white;
}

/* ---- Header / Navbar ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

.logo:hover .brand-logo-img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .brand-logo-img {
    height: 40px !important;
  }
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  font-weight: 900;
  font-style: italic;
  box-shadow: 0 4px 12px rgba(0, 86, 210, 0.3);
}

.logo-text {
  line-height: 1.1;
}

.logo-text .brand-main {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  display: block;
}

.logo-text .brand-sub {
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-link i {
  font-size: 0.7rem;
  transition: var(--transition);
}

/* Clean, Compact Navigation Dropdowns */
.nav-item.has-dropdown {
  position: relative;
}

.dropdown-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-item.has-dropdown .dropdown-arrow {
  font-size: 0.68rem;
  margin-left: 4px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav-item.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  max-width: 280px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 27, 75, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid #E2E8F0;
  padding: 8px 0;
  margin-top: 6px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 1050;
  text-align: left;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  display: block;
}

.nav-item.has-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu li {
  margin: 0;
  list-style: none;
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1E293B;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-item:hover {
  background: #F1F5F9;
  color: #0056D2;
}

.dest-item-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748B;
  background: #F8FAFC;
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid #E2E8F0;
}

.pkg-item-price {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0056D2;
}

.dropdown-divider {
  height: 1px;
  background: #E2E8F0;
  margin: 6px 0;
}

.dropdown-footer-link {
  color: #0056D2;
  font-weight: 700;
  font-size: 0.84rem;
  background: #F8FAFC;
}

.dropdown-footer-link:hover {
  background: #EFF6FF;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.dropdown-item i {
  width: 18px;
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hero-overlap-container {
  margin-top: -100px;
  position: relative;
  z-index: 20;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0D1B2A 0%, #1A3A5C 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/uploads/downloads/img_fb750301e6c63a887e2c05bb44375b2d.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 86, 210, 0.75) 0%,
      rgba(13, 27, 42, 0.85) 60%,
      rgba(13, 27, 42, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 680px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
  font-family: var(--font-display);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
}

.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* Trust Badges inside Hero */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.trust-badge i {
  color: var(--accent);
}

/* ---- Search Box (Hero) ---- */
.search-box-wrap {
  position: relative;
  z-index: 10;
  margin-top: -2px;
}

.search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
  border: 1px solid var(--border);
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-field label i {
  margin-right: 4px;
  color: var(--primary);
}

.search-field input,
.search-field select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  transition: var(--transition);
  background: var(--gray-100);
  width: 100%;
}

.search-field input:focus,
.search-field select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 86, 210, 0.1);
}

/* ---- Feature Badges Strip ---- */
.features-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
}

.features-strip .container {
  display: flex;
  justify-content: center;
  gap: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  border-right: 1px solid var(--border);
  flex: 1;
  max-width: 260px;
}

.feature-item:last-child {
  border-right: none;
}

.feature-icon {
  width: 46px;
  height: 46px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
}

.feature-text span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ---- Section: Popular Destinations ---- */
.section-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.section-link:hover {
  gap: 10px;
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

/* Destination Cards */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.dest-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.dest-card:hover .dest-img {
  transform: scale(1.08);
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.9) 0%, rgba(13, 27, 42, 0.1) 55%, transparent 100%);
}

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  color: white;
}

.dest-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.dest-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.dest-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 86, 210, 0.8);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ---- Package Cards ---- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.pkg-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: block;
}

.pkg-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.5s ease;
}

.pkg-card:hover .pkg-img {
  transform: scale(1.06);
}

.pkg-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-popular {
  background: var(--accent);
  color: white;
}

.badge-bestseller {
  background: var(--success);
  color: white;
}

.badge-trending {
  background: #9B59B6;
  color: white;
}

.badge-toprated {
  background: var(--danger);
  color: white;
}

.badge-new {
  background: var(--primary);
  color: white;
}

.pkg-rating {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.pkg-rating i {
  color: var(--accent);
}

.pkg-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.pkg-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.pkg-meta-item i {
  color: var(--primary);
}

.pkg-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pkg-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.pkg-tag {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.73rem;
  font-weight: 500;
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.pkg-price-wrap {
  display: flex;
  flex-direction: column;
}

.pkg-price-label {
  font-size: 0.72rem;
  color: var(--gray-500);
}

.pkg-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}

.pkg-price-old {
  font-size: 0.82rem;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-right: 4px;
}

.pkg-per {
  font-size: 0.72rem;
  color: var(--gray-500);
}

/* ---- Why Choose Us ---- */
.why-section {
  background: var(--primary-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 86, 210, 0.08);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 62px;
  height: 62px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: white;
}

.why-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ---- Testimonials ---- */
.testimonials-section {
  background: var(--dark);
}

.testimonials-section .section-title {
  color: white;
}

.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 30px;
  min-width: 360px;
  flex: 0 0 360px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 14px;
  font-size: 1rem;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: white;
}

.author-tour {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
}

.slider-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

/* ---- Blog Section ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.blog-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.06);
}

.blog-date {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: white;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.blog-date span {
  display: block;
  font-size: 1rem;
}

.blog-cat {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--accent);
  color: white;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
}

.blog-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.35;
  transition: var(--transition);
}

.blog-card:hover .blog-title {
  color: var(--primary);
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.blog-read-more {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.blog-read-more:hover {
  gap: 9px;
}

.blog-views {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---- Newsletter ---- */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.newsletter-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.newsletter-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 0.95rem;
  outline: none;
  min-width: 300px;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 14px 0 20px;
}

.footer-logo .logo-text .brand-main {
  color: white;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.87rem;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 2px;
  width: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: white;
}

/* ---- Floating Buttons ---- */
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.12);
}

.whatsapp-btn {
  background: #25D366;
}

/* ---- WhatsApp CTA Button Styles ---- */
a.btn[href*="wa.me"],
a.btn[href*="whatsapp.com"],
a.float-btn[href*="wa.me"],
a.float-btn[href*="whatsapp.com"] {
  background: #25D366 !important;
  color: white !important;
  border-color: #25D366 !important;
}

a.btn[href*="wa.me"]:hover,
a.btn[href*="whatsapp.com"]:hover,
a.float-btn[href*="wa.me"]:hover,
a.float-btn[href*="whatsapp.com"]:hover {
  background: #128C7E !important;
  border-color: #128C7E !important;
}

a.btn[href*="wa.me"] *,
a.btn[href*="whatsapp.com"] * {
  color: white !important;
}

.back-top-btn {
  background: var(--primary);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.back-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ---- WhatsApp Enquiry Strip ---- */
.enquiry-strip {
  position: fixed;
  right: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  z-index: 990;
}

.enquiry-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 8px 8px 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: -3px 0 15px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
}

.enquiry-strip-btn i {
  width: 26px;
  height: 26px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  transform: rotate(90deg);
}

.enquiry-strip-btn:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-4px);
}

/* ---- Mobile Bottom CTA Bar & Drawer CTAs (Hidden on Desktop) ---- */
.mobile-bottom-cta-bar {
  display: none;
}

.mobile-drawer-cta {
  display: none;
}

/* ---- Page Banner ---- */
.page-banner {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 27, 75, 0.45) 0%, rgba(0, 21, 59, 0.3) 100%);
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.page-banner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.breadcrumb {
  display: none !important;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Destinations Page ---- */
.filters-bar {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.filters-bar .container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-input {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.filter-input i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  font-size: 0.85rem;
}

.filter-input input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.filter-input input:focus {
  border-color: var(--primary);
}

.filter-select {
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

.filter-select:focus {
  border-color: var(--primary);
}

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

/* ---- Tour Package Details ---- */
.pkg-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.pkg-detail-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  overflow-x: auto;
}

.tab-btn {
  padding: 11px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-btn:hover {
  color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.itinerary-day {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.itinerary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  background: var(--gray-100);
  transition: var(--transition);
}

.itinerary-header:hover {
  background: var(--primary-light);
}

.itinerary-header.open {
  background: var(--primary);
  color: white;
}

.itinerary-header.open .day-num {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.day-num {
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.itinerary-body {
  padding: 18px;
  display: none;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.itinerary-body.open {
  display: block;
}

/* Sticky Enquiry Card */
.enquiry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  border: 1px solid var(--border);
}

.enquiry-card-header {
  background: var(--primary);
  color: white;
  padding: 20px;
}

.enquiry-card-header h3 {
  color: white;
  font-size: 1.1rem;
}

.enquiry-card-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}

.enquiry-form-body {
  padding: 20px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
  color: var(--dark);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 86, 210, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.gallery-item:nth-child(3n+1) {
  grid-row: span 2;
  aspect-ratio: auto;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 86, 210, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: white;
  font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.contact-info-card h2 {
  color: white;
  margin-bottom: 8px;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-detail-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3px;
}

.contact-detail-val {
  font-weight: 600;
  color: white;
  font-size: 0.95rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact-form-card h2 {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
  gap: 12px;
}

.faq-question:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.faq-question.open {
  background: var(--primary);
  color: white;
}

.faq-icon {
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-question.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.faq-answer.open {
  max-height: 500px;
  padding: 16px 22px 20px;
}

/* ---- Inclusion / Exclusion ---- */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.inc-exc-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 20px;
}

.inc-exc-card h4 {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inc-exc-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.inc-exc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.inc-exc-item i {
  margin-top: 2px;
  flex-shrink: 0;
}

.inc-exc-item .fa-check {
  color: var(--success);
}

.inc-exc-item .fa-times {
  color: var(--danger);
}

/* ---- Stat Counters ---- */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  color: white;
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-height: 85vh;
  max-width: 90vw;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--danger);
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ---- Utility ---- */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mb-3 {
  margin-bottom: 24px;
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--gray-500);
}

.bg-light {
  background: var(--gray-100);
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-primary {
  background: var(--primary-light);
  color: var(--primary);
}

/* ---- Loading Skeleton ---- */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* ---- Pagination ---- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
  cursor: pointer;
}

.page-btn:hover,
.page-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ---- Comprehensive Mobile & Tablet Optimization ---- */
/* Prevent horizontal overflow across all touch devices */
html,
body {
  overflow-x: clip;
  max-width: 100vw;
  -webkit-tap-highlight-color: transparent;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
li,
div {
  overflow-wrap: break-word;
}

/* Ensure accessible touch target sizing across touch screens */
@media (max-width: 1024px) {

  button,
  .btn,
  .nav-link,
  input,
  select,
  textarea {
    min-height: 44px;
  }

  /* Tablet / iPad Landscape Layouts */
  .dest-grid,
  .packages-grid,
  .why-grid,
  .destinations-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .search-box {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px;
  }

  .search-box .btn-search {
    grid-column: span 2;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .pkg-detail-layout,
  .dest-detail-layout {
    grid-template-columns: 1fr;
  }

  .enquiry-card,
  .dest-info-card {
    position: static;
    margin-top: 32px;
  }

  .hero-stats {
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
  }
}

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .newsletter-input {
    min-width: 100%;
  }
}

/* Tablet & iPad Landscape (< 1024px) - Audited Navigation Drawer Breakpoint */
@media (max-width: 1024px) {

  /* Header & Navigation Mobile Drawer */
  .top-bar {
    display: none !important;
  }

  .cta-text {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  /* ── Mobile Nav Drawer ── */
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .nav-menu.open {
    display: block;
  }

  /* Each nav row */
  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-link {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    gap: 8px;
  }

  .nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
  }

  /* Arrow toggle button */
  .dropdown-toggle-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    margin: -8px -12px -8px 0;
    cursor: pointer;
    flex-shrink: 0;
  }

  /* Sub-menu: hidden by default, shown when parent gets dropdown-open */
  .nav-dropdown-menu {
    display: none !important;
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    background: #f8f9fc !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-top: 1px solid var(--border) !important;
    width: 100% !important;
  }

  .nav-item.dropdown-open>.nav-dropdown-menu {
    display: block !important;
  }

  .nav-item.dropdown-open .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary);
  }

  /* Sub-menu items */
  .nav-dropdown-menu .dropdown-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 24px !important;
    font-size: 0.92rem !important;
    color: var(--gray-700) !important;
    border-bottom: 1px solid var(--border) !important;
    text-decoration: none;
  }

  .nav-dropdown-menu .dropdown-item:last-child {
    border-bottom: none !important;
  }

  .nav-dropdown-menu .dropdown-footer-link {
    color: var(--primary) !important;
    font-weight: 600 !important;
  }

  .dropdown-item {
    padding: 14px 24px !important;
    font-size: 0.92rem !important;
  }

  /* Enable Mobile Drawer CTA inside open hamburger menu */
  .mobile-drawer-cta {
    display: block !important;
    width: 100%;
  }
}

.mobile-policy-links {
  display: none !important;
}

/* Mobile & Tablet Portrait (< 768px) */
@media (max-width: 768px) {

  /* Prevent iOS Safari form input auto-zoom */
  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  /* Hero & Banners */
  .hero {
    padding: 50px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    margin-bottom: 24px;
  }

  .home-hero {
    min-height: 480px !important;
    padding: 60px 0 100px !important;
    text-align: center !important;
  }

  .home-hero h1 {
    font-size: 2rem !important;
    text-align: center !important;
  }

  .home-hero p {
    font-size: 0.98rem !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-hero div[style*="display:flex;gap:14px"] {
    justify-content: center !important;
  }

  .page-banner {
    padding: 50px 0 36px;
  }

  .page-banner h1 {
    font-size: 1.8rem;
  }

  /* Search Box Mobile Stack */
  .search-box {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .search-box .btn-search {
    grid-column: span 1;
  }

  /* Features Strip Stack */
  .features-strip .container {
    flex-direction: column;
    gap: 20px;
  }

  .feature-item {
    flex: 1 1 100%;
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 16px;
  }

  .feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* 1-Column Grids for Mobile Screens */
  .dest-grid,
  .packages-grid,
  .why-grid,
  .blog-grid,
  .destinations-grid,
  .form-row,
  .inc-exc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item:nth-child(3n+1) {
    grid-row: auto;
  }

  /* Testimonials Slider Mobile */
  .testimonials-track {
    gap: 16px;
  }

  .testimonial-card {
    min-width: 280px;
    flex: 0 0 280px;
    padding: 24px;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-py {
    padding: 50px 0;
  }

  .float-btns {
    bottom: 24px !important;
    right: 24px !important;
    transform: scale(0.92);
  }

  .hero-overlap-container {
    margin-top: 20px !important;
    margin-bottom: 30px !important;
  }

  #heroSearchForm {
    row-gap: 20px !important;
  }

  /* Hide desktop side rotated strip when bottom mobile CTA bar is active */
  .enquiry-strip {
    display: none !important;
  }



  /* Enable Sticky Bottom Mobile CTA Bar */
  .mobile-bottom-cta-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1.3fr;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.18);
    z-index: 99999;
  }

  .mobile-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--dark);
    border-right: 1px solid var(--border);
    transition: background 0.2s;
  }

  .mobile-bar-btn i {
    font-size: 1.15rem;
    margin-bottom: 3px;
  }

  .call-btn i {
    color: var(--primary);
  }

  .whatsapp-btn-bar {
    color: #25D366;
  }

  .whatsapp-btn-bar i {
    color: #25D366;
  }

  .enquire-btn-bar {
    background: var(--primary);
    color: white !important;
    border-right: none;
  }

  .enquire-btn-bar i {
    color: white !important;
  }

  /* Ensure page content is never hidden behind bottom sticky CTA bar */
  .footer {
    padding-bottom: 20px !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .footer-bottom-links {
    display: none !important;
  }
  .quick-nav-wrapper {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 40px !important;
  }
  .mobile-policy-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
}

/* Small Mobile Phones (< 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-cta {
    gap: 6px !important;
  }

  .nav-cta .btn {
    width: auto !important;
    padding: 8px 10px !important;
    font-size: 0.88rem !important;
    min-height: auto !important;
  }

  .logo-text .brand-main {
    font-size: 1.05rem !important;
  }

  .logo-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.05rem !important;
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .stat-item {
    text-align: center;
  }

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .btn:not(.btn-sm):not(.btn-xs) {
    width: 100%;
    justify-content: center;
  }

  .search-box {
    padding: 16px;
  }
}

/* Lock body scroll when mobile navigation drawer is active */
body.menu-open {
  overflow: hidden !important;
  height: 100vh !important;
}

padding: 16px;
}
}

/* Lock body scroll when mobile navigation drawer is active */
body.menu-open {
  overflow: hidden !important;
  height: 100vh !important;
}

/* --- Rich Text Content Styling --- */
.rich-text-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--gray-700);
}
.rich-text-content h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark);
  margin: 28px 0 12px;
}
.rich-text-content ul {
  list-style: disc !important;
  padding-left: 24px;
  margin-bottom: 20px;
  line-height: 1.65;
  color: var(--gray-700);
}
.rich-text-content ol {
  list-style: decimal !important;
  padding-left: 24px;
  margin-bottom: 20px;
  line-height: 1.65;
  color: var(--gray-700);
}
.rich-text-content li {
  margin-bottom: 8px;
}
.rich-text-content a {
  color: var(--primary);
  text-decoration: underline;
}
.rich-text-content a:hover {
  color: var(--primary-dark);
}

/* --- Responsive Legal Layout --- */
.legal-layout {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 40px;
  align-items: start;
  min-width: 0; /* Critical: prevents grid from overflowing */
}

.legal-layout > * {
  min-width: 0; /* Each grid child must also not overflow */
}

.legal-content-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;       /* Clip any leaked content */
  max-width: 100%;
  box-sizing: border-box;
}

/* Rich text body: prevent long text from overflowing */
.rich-text-content {
  overflow-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
}

/* Legal pages hero responsive title */
.legal-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

/* Tablet: collapse to single column */
@media (max-width: 1024px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .legal-layout > div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .legal-layout > div:last-child > div {
    margin-bottom: 0 !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .legal-content-card {
    padding: 20px !important;
    border-radius: 16px !important;
  }
  .legal-layout > div:last-child {
    grid-template-columns: 1fr;
  }
  .legal-hero-title {
    font-size: 1.75rem;
  }
  /* Tables scroll horizontally on mobile */
  .rich-text-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
  .rich-text-content td,
  .rich-text-content th {
    white-space: normal;
    min-width: 100px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .legal-content-card {
    padding: 16px !important;
    border-radius: 12px !important;
  }
  .legal-hero-title {
    font-size: 1.5rem;
  }
}