@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Playball&family=Poppins:wght@500;600;700;800&display=swap');

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --navy:         #0d2137;
  --navy-mid:     #163553;
  --gold:         #e0a630;
  --gold-dark:    #c8921f;
  --white:        #ffffff;
  --off-white:    #f4f7fa;
  --text-dark:    #1e2a35;
  --text-body:    #475a6a;
  --text-light:   #7b8fa0;
  --border:       #dde6ef;

  /* Legacy alias – keeps old pages working */
  --color-navy:       var(--navy);
  --color-teal:       var(--navy-mid);
  --color-gold:       var(--gold);
  --color-gold-hover: var(--gold-dark);
  --color-text:       var(--text-dark);
  --color-muted:      var(--text-body);
  --color-light-bg:   var(--off-white);
  --color-white:      var(--white);
  --turquoise:        var(--navy);
  --deepblue:         var(--navy-mid);
  --warmgold:         var(--gold);

  --navbar-h:     72px;
  --container:    1200px;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-pill:  50px;
  --radius-card:  var(--radius-lg);

  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 14px 40px rgba(0,0,0,0.14);
  --shadow-soft:  var(--shadow-sm);
  --shadow-hover: var(--shadow-md);

  --transition:   all 0.25s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width:100%; height:auto; display:block; }
a  { text-decoration:none; color:inherit; transition:var(--transition); }
ul { list-style:none; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-light { background: var(--off-white); }
.section-dark  { background: var(--navy); }

.section-header {
  text-align: center;
  margin-bottom: 55px;
}
.section-header .eyebrow {
  font-family: 'Playball', cursive;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.section-header h2 {
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-header h2 span { color: var(--gold); }
.section-header p {
  font-size: 15px;
  color: var(--text-body);
  max-width: 580px;
  margin: 0 auto;
}

/* Cursive subtitle (hero use) */
.cursive-subtitle {
  font-family: 'Playball', cursive;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 10px;
}

/* Section title alias */
.section-title        { text-align:center; margin-bottom:50px; }
.section-title h2     { font-size:36px; color:var(--navy); margin-bottom:12px; }
.section-title h2 span{ color:var(--gold); }
.section-title p      { color:var(--text-body); max-width:600px; margin:0 auto; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(224,166,48,0.30);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,166,48,0.40);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Legacy button aliases */
.btn        { display:inline-flex; align-items:center; gap:8px; padding:12px 24px; border-radius:var(--radius-pill); font-weight:700; font-size:14px; transition:var(--transition); }
.btn-whatsapp { background:#25d366; color:var(--white); }
.btn-whatsapp:hover { background:#1ebe5d; transform:translateY(-2px); }
.btn-outline { border:2px solid var(--navy); color:var(--navy); background:transparent; }
.btn-outline:hover { background:var(--navy); color:var(--white); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--navbar-h);
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.20);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.logo > span {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
}
.logo > span > span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links li > a {
  display: block;
  padding: 6px 12px;
  color: rgba(255,255,255,0.82);
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  position: relative;
}
.nav-links li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 1px;
}
.nav-links li > a:hover,
.nav-links li.active > a {
  color: var(--gold);
}
.nav-links li.active > a::after,
.nav-links li > a:hover::after {
  transform: scaleX(1);
}

/* Dropdown Hover Grace Bridge & Wait Delay */
.dropdown { position: relative; }
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 25px;
  background: transparent;
  display: block;
  z-index: 1009;
}
.dropdown-content {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  min-width: 210px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  border-top: 3px solid var(--gold);
  padding: 8px 0;
  z-index: 1010;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  transition-delay: 0.15s;
  pointer-events: none;
}
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
  transition-delay: 0s !important;
  pointer-events: auto !important;
}
.dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark) !important;
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--transition);
}
.dropdown-content a::after { display: none !important; }
.dropdown-content a:hover {
  background: var(--off-white);
  color: var(--gold) !important;
  padding-left: 26px;
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-action-icon {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.nav-action-icon:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.btn-nav-book {
  padding: 9px 20px;
  background: var(--gold);
  color: var(--navy) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(224,166,48,0.28);
  white-space: nowrap;
}
.btn-nav-book::after { display: none !important; }
.btn-nav-book:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,166,48,0.40);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
}

/* =============================================
   HOME HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  padding-top: var(--navbar-h);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,33,55,0.78) 0%,
    rgba(13,33,55,0.55) 60%,
    rgba(13,33,55,0.30) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 0;
  color: var(--white);
}
.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 560px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =============================================
   FEATURES BAR (below hero)
   ============================================= */
.features-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -55px;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--off-white); }
.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(224,166,48,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
}
.feature-text h4 {
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2px;
}
.feature-text p {
  font-size: 11.5px;
  color: var(--text-body);
  line-height: 1.4;
}

/* =============================================
   TOUR CARDS
   ============================================= */
.tours-grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tour-card-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.tour-card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tour-card-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.tour-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card-item:hover .tour-card-img-wrap img { transform: scale(1.08); }
.tour-category-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
}
.tag-islands    { background: #0ea5e9; }
.tag-activities { background: #e63946; }
.tag-safari     { background: #f77f00; }
.tag-boattrips  { background: #4361ee; }
.tag-tours      { background: #7209b7; }
.tag-transfers  { background: #059669; }
.tag-weather    { background: #0891b2; }
.tag-planning   { background: #7c3aed; }
.tag-safety     { background: #dc2626; }
.tag-snorkeling { background: #0369a1; }
.tag-families   { background: #9333ea; }

.tour-card-info {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.tour-card-info h3 {
  font-size: 15.5px;
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 700;
}
.tour-card-info p {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}
.tour-card-action-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 12.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.tour-card-action-link:hover { color: var(--gold); gap: 8px; }

/* =============================================
   TRANSFERS SPLIT SECTION
   ============================================= */
.transfers-split-section {
  background: var(--navy);
  color: var(--white);
  padding: 90px 0;
}
.transfers-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.transfers-image-box img {
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.30);
  width: 100%;
  height: auto;
  object-fit: cover;
}
.transfers-text-box h3 {
  font-size: 30px;
  color: var(--white);
  margin-bottom: 14px;
}
.transfers-text-box p {
  font-size: 15px;
  opacity: 0.88;
  margin-bottom: 24px;
  line-height: 1.7;
}
.transfers-bullet-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.transfers-bullet-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.90;
}
.transfers-bullet-list li i { color: var(--gold); font-size: 15px; }

/* =============================================
   WHY CHOOSE US / SATISFACTION CARDS
   ============================================= */
.satisfaction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.satisfaction-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.satisfaction-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.satisfaction-icon {
  width: 58px;
  height: 58px;
  background: rgba(224,166,48,0.10);
  color: var(--gold);
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.satisfaction-card h3 { font-size: 15.5px; margin-bottom: 8px; }
.satisfaction-card p  { font-size: 13px; color: var(--text-body); line-height: 1.5; }

/* =============================================
   BLOG INDEX HERO
   ============================================= */
.blog-index-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #071c2c 0%, #0d2d47 40%, #163553 65%, #0d2137 100%);
  background-color: var(--navy);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: var(--navbar-h);
}
.blog-index-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,33,55,0.85) 45%,
    rgba(13,33,55,0.55) 100%
  );
  z-index: 1;
}
.blog-index-hero .container {
  position: relative;
  z-index: 2;
}
.blog-index-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px 0;
  flex-wrap: wrap;
}
.blog-index-text { max-width: 580px; }
.blog-index-text .eyebrow {
  font-family: 'Playball', cursive;
  font-size: 20px;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.blog-index-text h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.blog-index-text p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 0;
}
.blog-index-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
}
.blog-index-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.blog-index-cta-btn.gold {
  background: var(--gold);
  color: var(--navy);
}
.blog-index-cta-btn.gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.blog-index-cta-btn.outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
}
.blog-index-cta-btn.outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.80);
  transform: translateY(-2px);
}

/* =============================================
   BLOG INDEX SEARCH & FILTER
   ============================================= */
.blog-search-filter-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.blog-search-box {
  flex: 1;
  min-width: 240px;
  position: relative;
}
.blog-search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 14px;
}
.blog-search-box input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  background: var(--white);
  font-family: 'Open Sans', sans-serif;
}
.blog-search-box input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224,166,48,0.12);
}
.blog-filter-box {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.blog-filter-box label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.blog-filter-box select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  background: var(--white);
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  transition: var(--transition);
}
.blog-filter-box select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224,166,48,0.12);
}

/* =============================================
   BLOG CARDS GRID
   ============================================= */
.blog-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}
.blog-card-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card-item:hover .blog-card-img-wrap img { transform: scale(1.07); }
.blog-card-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
  align-items: center;
}
.blog-card-meta i { color: var(--gold); margin-right: 4px; }
.blog-card-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
  transition: var(--transition);
}
.blog-card-item:hover .blog-card-info h3 { color: var(--gold); }
.blog-card-info p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}
.blog-card-more-btn {
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  align-self: flex-start;
  transition: var(--transition);
}
.blog-card-item:hover .blog-card-more-btn {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  gap: 9px;
}

/* Blog pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
}
.blog-pagination .page-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.blog-pagination .page-btn:hover,
.blog-pagination .page-btn.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.blog-pagination .page-ellipsis {
  color: var(--text-light);
  font-size: 14px;
  padding: 0 4px;
}

/* No results */
.blog-no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
  font-size: 16px;
  display: none;
}

/* =============================================
   BLOG POST HERO
   ============================================= */
.post-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #071c2c 0%, #0d2d47 40%, #163553 65%, #0d2137 100%);
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: var(--navbar-h);
}
.post-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,33,55,0.88) 50%,
    rgba(13,33,55,0.55) 100%
  );
  z-index: 1;
}
.post-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px 0;
  flex-wrap: wrap;
  width: 100%;
}
.post-hero-content {
  flex: 1;
  min-width: 280px;
  max-width: 620px;
}
.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.post-breadcrumb a {
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.post-breadcrumb a:hover { color: var(--gold); }
.post-breadcrumb i {
  font-size: 9px;
  opacity: 0.5;
}
.post-breadcrumb span { color: rgba(255,255,255,0.45); }
.post-category-label {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.post-hero-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--white) !important;
  line-height: 1.2;
  margin-bottom: 22px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  flex-wrap: wrap;
}
.post-hero-meta .sep { color: rgba(255,255,255,0.30); }
.post-hero-meta i { color: var(--gold); margin-right: 5px; }
.post-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 210px;
  max-width: 230px;
}
.post-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.post-cta-btn.gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(224,166,48,0.30);
}
.post-cta-btn.gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.post-cta-btn.outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.40);
  backdrop-filter: blur(6px);
}
.post-cta-btn.outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-2px);
}
.post-cta-btn i {
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

/* =============================================
   BLOG POST ARTICLE
   ============================================= */
.post-body-section {
  background: #eef2f7;
  padding: 60px 0 90px;
}
.post-content-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 30px rgba(0,0,0,0.09);
  overflow: hidden;
}
.post-featured-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.post-content-body {
  padding: 45px 50px;
}

/* Article typography */
.post-content-body p {
  color: #3d4f5e;
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 20px;
}
.post-content-body h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 38px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eef2f7;
  font-weight: 700;
}
.post-content-body h3 {
  font-size: 18px;
  color: var(--navy);
  margin: 26px 0 10px;
  font-weight: 700;
}
.post-content-body ul,
.post-content-body ol {
  margin: 16px 0 22px 24px;
}
.post-content-body li {
  color: #3d4f5e;
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.post-content-body a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.post-content-body a:hover { text-decoration: underline; }
.post-content-body strong { color: var(--navy); }

/* Article tables */
.post-content-body table,
.post-content-body .comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.post-content-body table th,
.post-content-body .comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 13px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
}
.post-content-body table td,
.post-content-body .comparison-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #eef2f7;
  color: #3d4f5e;
}
.post-content-body table tr:last-child td,
.post-content-body .comparison-table tr:last-child td { border-bottom: none; }
.post-content-body table tr:nth-child(even) td,
.post-content-body .comparison-table tr:nth-child(even) td {
  background: #f8fafc;
}

/* Info / tip / warning boxes */
.post-content-body .intro-box,
.post-content-body .info-box {
  background: #f0f7ff;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 26px 0;
}
.post-content-body .tip-box {
  background: #f0fff4;
  border-left: 4px solid #22c55e;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 26px 0;
}
.post-content-body .warning-box {
  background: #fff7f0;
  border-left: 4px solid #f97316;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 26px 0;
}
.post-content-body .cta-inline {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
  border: 1.5px solid #cfe2ff;
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 26px 0;
  text-align: center;
}
.post-content-body .intro-box h3,
.post-content-body .info-box h3,
.post-content-body .tip-box h3,
.post-content-body .warning-box h3,
.post-content-body .cta-inline h3 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 8px;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  margin-top: 0 !important;
}
.post-content-body .cta-inline .cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* FAQ items in articles */
.post-content-body .faq-item {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.post-content-body .faq-item h3 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  margin-top: 0 !important;
}
.post-content-body .faq-item p { margin-bottom: 0; }

/* Summary tables */
.post-content-body .monthly-summary-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 13.5px;
}

/* Post share bar */
.post-share-bar {
  padding: 24px 50px;
  border-top: 1px solid #eef2f7;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.post-share-bar > span {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.share-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}
.share-icon-btn:hover { transform: scale(1.18) rotate(5deg); }
.share-icon-btn.fb { background: #1877f2; }
.share-icon-btn.tw { background: #000000; }
.share-icon-btn.pt { background: #bd081c; }
.share-icon-btn.em { background: #6b7280; }

/* =============================================
   FAQ (accordion style on subpages)
   ============================================= */
details {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
details[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(224,166,48,0.35);
}
summary {
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
details[open] summary::after { transform: rotate(180deg); }
details p {
  margin-top: 14px;
  color: var(--text-body);
  font-size: 14.5px;
  line-height: 1.7;
}

/* =============================================
   PAGE HERO (for /pages/ and /tours/ subpages)
   ============================================= */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: var(--navbar-h);
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13,33,55,0.70), rgba(13,33,55,0.80));
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin: 0 auto;
}

/* =============================================
   OFFER BAR
   ============================================= */
#miniOfferBar {
  background: var(--gold);
  color: var(--navy);
  min-height: 40px;
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
#miniOfferBar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: var(--container);
  margin: 0 auto;
}
#miniOfferBar button {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
#miniOfferBar button:hover { background: var(--navy-mid); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float,
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  z-index: 998;
  transition: var(--transition);
  text-decoration: none;
}
.wa-float:hover,
.whatsapp-float:hover {
  transform: scale(1.12) rotate(8deg);
  background: #1ebe5d;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.68);
  padding: 0;
  border-top: 3px solid var(--gold);
}
/* Blog pages: footer with background image + dark overlay */
.footer--img {
  background-image:
    linear-gradient(rgba(7,28,44,0.90), rgba(7,28,44,0.90)),
    url('/images/hero-red-sea.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Blog cards — text-only layout (no images) */
.blog-cards-text-only .blog-card-item {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid transparent;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(13,33,55,0.06);
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  transition: border-left-color 0.25s, transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.blog-cards-text-only .blog-card-item:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
  box-shadow: 0 8px 28px rgba(13,33,55,0.12);
}
.blog-cards-text-only .blog-card-info {
  padding: 0;
}
.blog-cards-text-only .blog-card-info h3 {
  font-size: 17px;
  line-height: 1.45;
  margin: 8px 0 10px;
  color: var(--navy);
}
.blog-cards-text-only .blog-card-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 14px;
}
.blog-cards-text-only .blog-card-meta {
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}
.blog-cards-text-only .blog-card-more-btn {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  margin-top: auto;
}
.footer-map {
  overflow: hidden;
  line-height: 0;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: none;
  filter: brightness(0.88) saturate(0.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.3fr 1.2fr;
  gap: 40px;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* Brand column */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-decoration: none;
}
.footer-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.footer-logo-text strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}
.footer-logo-text span {
  display: block;
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social-btn,
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social-btn:hover,
.footer-social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* Link lists */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a,
.footer-links-list li a {
  color: var(--gold);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.footer-links li a::before,
.footer-links-list li a::before {
  content: '\203A';
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
  transition: var(--transition);
}
.footer-links li a:hover,
.footer-links-list li a:hover {
  color: var(--white);
  padding-left: 4px;
}

/* Legacy alias */
.footer-links-list { display:flex; flex-direction:column; gap:10px; }
.footer-column { /* alias */ }
.footer-column h3 { font-size:15px; font-weight:700; color:var(--white); margin-bottom:22px; position:relative; padding-bottom:10px; text-transform:uppercase; letter-spacing:0.5px; }
.footer-column h3::after { content:''; position:absolute; bottom:0; left:0; width:32px; height:2px; background:var(--gold); border-radius:1px; }
.footer-desc { font-size:13.5px; line-height:1.7; margin-bottom:22px; max-width:280px; }

/* Contact list */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.footer-contact-item,
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.68);
}
.footer-contact-item i,
.footer-contact-list li i {
  color: var(--gold);
  font-size: 15px;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
  text-align: center;
}
.footer-contact-item a,
.footer-contact-list li a {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  transition: var(--transition);
}
.footer-contact-item a:hover,
.footer-contact-list li a:hover { color: var(--white); }

.footer-wa-btn,
.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13.5px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition);
  margin-top: 8px;
}
.footer-wa-btn:hover,
.footer-whatsapp-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-bottom-links a,
.footer-bottom a {
  color: rgba(255,255,255,0.40);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
}
.footer-bottom-links a:hover,
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links span { color: rgba(255,255,255,0.20); }

/* Blog-hero-banner alias kept for backward compat (no longer used for new posts) */
.blog-hero-banner {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: var(--navbar-h);
}
.blog-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,33,55,0.85) 45%,
    rgba(13,33,55,0.52) 100%
  );
  z-index: 1;
}
.blog-hero-banner .container,
.blog-hero-banner > .container { position:relative; z-index:2; }
.blog-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px 0;
  flex-wrap: wrap;
}
.blog-banner-text { max-width: 580px; }
.blog-banner-text h1 { color: var(--white); font-size: 38px; font-weight: 800; margin-bottom: 14px; }
.blog-banner-text p  { font-size:15.5px; color:rgba(255,255,255,0.85); line-height:1.7; }
.right-banner-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
}

/* =============================================
   MOBILE NAV OPEN STATE
   ============================================= */
.nav-links.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 20px 24px 30px;
  gap: 4px;
  z-index: 997;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-links.active li > a {
  padding: 12px 14px;
  font-size: 15px;
  border-radius: var(--radius-sm);
}
.nav-links.active .dropdown-content {
  position: static;
  transform: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 4px 0 4px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-links.active .dropdown-content a {
  color: rgba(255,255,255,0.75) !important;
  font-size: 14px;
  padding: 8px 14px;
}
.nav-links.active .dropdown-content a:hover { color: var(--gold) !important; }
.nav-links.active .dropdown:hover .dropdown-content { display: flex; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .tours-grid-layout { grid-template-columns: repeat(2,1fr); }
  .satisfaction-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap:32px; }
}
@media (max-width: 992px) {
  .features-bar { grid-template-columns: 1fr 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .feature-item:nth-last-child(-n+2) { border-bottom: none; }
  .blog-grid-layout { grid-template-columns: repeat(2,1fr); }
  .transfers-grid-wrap { grid-template-columns: 1fr; gap:36px; }
  .post-hero-inner { flex-direction: column; align-items: flex-start; }
  .post-hero-ctas { width: 100%; max-width: 100%; flex-direction: row; flex-wrap: wrap; }
  .post-cta-btn { flex: 1; min-width: 180px; justify-content: center; }
  .blog-index-inner { flex-direction: column; }
  .blog-index-ctas { flex-direction: row; flex-wrap: wrap; max-width: 100%; min-width: 0; }
  .blog-index-cta-btn { flex: 1; min-width: 170px; justify-content: center; }
}
@media (max-width: 768px) {
  .hero-content h1 { font-size: 36px; }
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 27px; }
  .post-hero-title { font-size: 27px; }
  .post-featured-img { height: 240px; }
  .post-content-body { padding: 28px 22px; }
  .post-share-bar { padding: 20px 22px; }
  .blog-index-text h1 { font-size: 30px; }
  .features-bar { grid-template-columns: 1fr; margin-top: -30px; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-right-actions .btn-nav-book { display: none; }
  .nav-right-actions { gap: 10px; }
  .blog-search-filter-bar { flex-direction: column; align-items: stretch; }
  .blog-filter-box { justify-content: space-between; }
  .footer-grid { grid-template-columns: 1fr; gap:28px; }
  .footer-bottom,
  .footer-bottom-bar { flex-direction: column; text-align: center; gap: 10px; }
}
@media (max-width: 576px) {
  .tours-grid-layout { grid-template-columns: 1fr; }
  .satisfaction-grid { grid-template-columns: 1fr; }
  .blog-grid-layout { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 30px; }
  .transfers-bullet-list { grid-template-columns: 1fr; }
  .post-hero { min-height: 420px; }
  .post-hero-ctas { flex-direction: column; }
  .post-cta-btn { min-width: 0; }
}

/* ================================================================
   GLOBAL HERO SECTION FIXES
   Ensures full-cover background and white/gold text on every
   hero section type across the entire website.
   ================================================================ */

/* ── Force background-size: cover on ALL hero types ── */
.hero,
.page-hero,
.post-hero,
.blog-index-hero {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* ── All hero headings → white ── */
.hero h1, .hero h2, .hero h3, .hero h4, .hero h5,
.page-hero h1, .page-hero h2, .page-hero h3, .page-hero h4,
.post-hero h1, .post-hero h2, .post-hero h3, .post-hero h4,
.blog-index-hero h1, .blog-index-hero h2, .blog-index-hero h3 {
  color: var(--white);
}

/* ── All hero paragraphs and spans → white ── */
.hero p, .hero span,
.page-hero p, .page-hero span,
.post-hero p, .post-hero span,
.blog-index-hero p, .blog-index-hero span {
  color: rgba(255,255,255,0.90);
}

/* ── Gold accent spans inside headings ── */
.hero h1 span, .hero h2 span,
.page-hero h1 span, .page-hero h2 span,
.blog-index-hero h1 span, .blog-index-hero h2 span,
.post-hero h1 span {
  color: var(--gold) !important;
}

/* ── Breadcrumb links in hero ── */
.page-hero a,
.post-hero .post-breadcrumb a,
.blog-index-hero a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero a:hover,
.post-hero .post-breadcrumb a:hover,
.blog-index-hero a:hover { color: var(--gold); }

/* ── Meta info icons inside heroes → gold ── */
.page-hero i,
.post-hero-meta i,
.blog-index-hero i {
  color: var(--gold);
}

/* ── Eyebrow / category label → gold ── */
.page-hero .eyebrow,
.blog-index-text .eyebrow,
.post-hero .eyebrow {
  color: var(--gold) !important;
}

/* =====================================================
   GLOBAL SPECIAL OFFER MODAL, FLOATING BAR & COOKIE CONSENT
   ===================================================== */
.ht-offer-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(13, 27, 62, 0.82) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.35s ease, visibility 0.35s ease !important;
}
.ht-offer-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.ht-offer-card {
  background: #ffffff !important;
  border-radius: 20px !important;
  max-width: 480px !important;
  width: 100% !important;
  padding: 32px 28px 28px !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4) !important;
  text-align: center !important;
  position: relative !important;
  border: 3px solid #C9961B !important;
  transform: translateY(20px) scale(0.95) !important;
  transition: transform 0.35s ease !important;
}
.ht-offer-overlay.active .ht-offer-card {
  transform: translateY(0) scale(1) !important;
}
.ht-offer-badge {
  display: inline-block !important;
  background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  padding: 6px 16px !important;
  border-radius: 20px !important;
  margin-bottom: 14px !important;
}
.ht-offer-card h3 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #0d1b3e !important;
  margin: 0 0 10px !important;
  line-height: 1.25 !important;
}
.ht-offer-card p {
  font-size: 0.92rem !important;
  color: #555555 !important;
  margin: 0 0 18px !important;
  line-height: 1.55 !important;
}
.ht-offer-discounts {
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
}
.ht-discount-pill {
  background: #fdf8eb !important;
  border: 1.5px solid #C9961B !important;
  border-radius: 12px !important;
  padding: 10px 14px !important;
  flex: 1 !important;
}
.ht-discount-pill strong {
  display: block !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.25rem !important;
  color: #C9961B !important;
  font-weight: 800 !important;
}
.ht-discount-pill span {
  font-size: 0.75rem !important;
  color: #666666 !important;
  font-weight: 600 !important;
}
.ht-offer-timer-box {
  background: #0d1b3e !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  margin-bottom: 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  font-family: 'Poppins', sans-serif !important;
}
.ht-offer-timer-box i { color: #C9961B !important; font-size: 1.2rem !important; }
.ht-offer-timer-box span { font-size: 0.85rem !important; font-weight: 500 !important; }
.ht-timer-display {
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: #C9961B !important;
  letter-spacing: 1px !important;
}
.ht-offer-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
.ht-offer-btn-claim {
  background: linear-gradient(135deg, #25D366, #1ebe5d) !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  padding: 14px 20px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4) !important;
}
.ht-offer-btn-min {
  background: #f0f3f8 !important;
  color: #4a5568 !important;
  border: none !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  padding: 10px 16px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
}

/* Floating Minimized Offer Bar */
.ht-offer-bar {
  position: fixed !important;
  bottom: 25px !important;
  right: 25px !important;
  background: #0d1b3e !important;
  border: 2px solid #C9961B !important;
  border-radius: 50px !important;
  padding: 12px 22px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35) !important;
  z-index: 999998 !important;
  cursor: pointer !important;
  transition: transform 0.3s ease, opacity 0.3s ease !important;
  transform: translateY(100px) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.ht-offer-bar.active {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.ht-offer-bar-text {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
}
.ht-offer-bar-timer {
  background: #C9961B !important;
  color: #0d1b3e !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
}

/* Cookie Consent Banner */
.ht-cookie-banner {
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;
  right: auto !important;
  max-width: 360px !important;
  width: calc(100% - 48px) !important;
  background: #0d1b3e !important;
  color: #ffffff !important;
  padding: 20px 20px 16px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35) !important;
  z-index: 999990 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(201,150,27,0.5) !important;
  border-top: 3px solid #C9961B !important;
  transform: translateY(120%) !important;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.ht-cookie-banner.active { transform: translateY(0) !important; }
.ht-cookie-text {
  font-size: 0.83rem !important;
  line-height: 1.55 !important;
  color: #e2e8f0 !important;
  width: 100% !important;
}
.ht-cookie-text a { color: #C9961B !important; text-decoration: underline !important; }
.ht-cookie-btns {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
}
.ht-cookie-btn {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  padding: 9px 16px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  border: none !important;
  flex: 1 !important;
}
.ht-cookie-btn-accept {
  background: #C9961B !important;
  color: #0d1b3e !important;
}
.ht-cookie-btn-custom {
  background: rgba(255,255,255,0.08) !important;
  color: #ffffff !important;
  flex: 0 0 auto !important;
  padding: 9px 12px !important;
}
@media (max-width: 480px) {
  .ht-cookie-banner { bottom: 16px !important; left: 12px !important; max-width: calc(100vw - 24px) !important; }
}

/* GALLERY SECTION (5 Images Aligned in One Line Horizontal) */
.rd-gallery-section { padding: 15px 0 35px !important; width: 100% !important; }
.rd-gallery-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
}
.rd-gallery-grid img {
  flex: 1 1 0px !important;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 20% !important;
  height: 150px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  display: block !important;
  transition: transform .3s !important;
}
.rd-gallery-grid img:hover { transform: scale(1.04) !important; }

@media (max-width: 768px) {
  .rd-gallery-grid { gap: 5px !important; }
  .rd-gallery-grid img { height: 90px !important; border-radius: 5px !important; }
  .ht-cookie-banner { flex-direction: column !important; text-align: center !important; }
}
@media (max-width: 480px) {
  .rd-gallery-grid { gap: 3px !important; }
  .rd-gallery-grid img { height: 70px !important; border-radius: 4px !important; }
}

