/* ============================================================
   TRAVELIO HOLIDAYS — Main Stylesheet
   Stack: Bootstrap 5 + Custom CSS
  Font: Manrope
============================================================ */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --primary:      #e52222;
  --primary-dark: #b71c1c;
  --secondary:    #1a4fa0;
  --secondary-light: #2b69c9;
  --accent:       #f5a623;
  --brand-green:  #27ae60;
  --dark:         #0d1b2a;
  --light-bg:     #f5f7fb;
  --text-muted-custom: #7a8899;
  --card-radius:  16px;
  --transition:   0.35s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

/* ── Container max-width ───────────────────────────────── */
.container,
.container-lg,
.container-xl {
  width: 100%;
  max-width: 1140px !important;
}

body {
  font-family: var(--font-primary, 'Manrope', sans-serif);
  color: #2c3e50;
  background: #fff;
  width: 100%;
  overflow-x: hidden;
}

/* ── Typography helpers ─────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(229,34,34,.1);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-tag.light {
  color: var(--accent);
  background: rgba(245,166,35,.18);
}

.section-title {
  font-family: inherit;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}
.section-title span { color: var(--primary); }

.section-subtitle {
  font-size: .95rem;
  color: var(--text-muted-custom);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-padding { padding: 90px 0; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-rounded { border-radius: 50px !important; padding-inline: 28px !important; }

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229,34,34,.35);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
}
.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ── Top Bar ────────────────────────────────────────────── */
.topbar {
  background: #163a73;
  font-size: .8rem;
  padding: 8px 0;
}
.topbar-link {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 1rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.topbar-link:hover { color: #fff; }
.topbar-link i { font-size: .85rem; color: rgba(255,255,255,.5); }

.topbar-social {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  border-radius: 50%;
  text-decoration: none;
  transition: all var(--transition);
}
.topbar-social:hover { color: #fff; background: rgba(255,255,255,.1); }

/* ── Navbar ─────────────────────────────────────────────── */
.main-nav {
  background: #fff;
  padding: 0;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.main-nav .container { padding-top: 6px; padding-bottom: 6px; }
.main-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

/* Blue accent line at bottom of navbar */
.nav-blue-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--secondary);
}

/* ── Logo ───────────────────────────────────────────────── */
.tc-logo {
  text-decoration: none;
  line-height: 1;
  padding: 4px 0;
}
.site-logo {
  height: 58px;
  width: auto;
  display: block;
}
.tc-logo-text {
  font-size: 1.85rem;
  font-weight: 900;
  font-family: var(--font-secondary, 'Manrope', sans-serif);
  line-height: 1;
  letter-spacing: -1px;
}
.tc-t  { color: #e52222; }
.tc-r  { color: #1a4fa0; }
.tc-a  { color: #f5a623; }
.tc-v  { color: #1a4fa0; }
.tc-e  { color: #e52222; }
.tc-l  { color: var(--brand-green); }
.tc-co { color: #e52222; }

.tc-logo-sub {
  font-family: var(--font-secondary, 'Manrope', sans-serif);
  font-style: italic;
  font-size: .92rem;
  font-weight: 700;
  color: #1a4fa0;
  letter-spacing: 0.5px;
  margin-top: -2px;
  padding-left: 2px;
}

.footer-logo {
  height: 62px;
  width: auto;
  display: block;
}

/* ── Nav Links ──────────────────────────────────────────── */
.main-nav .nav-link {
  color: #2d3748 !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 14px !important;
  transition: color var(--transition);
  white-space: nowrap;
  position: relative;
}
.main-nav .nav-link:hover { color: #1a4fa0 !important; }

/* Active "Home" style — dark red pill like travelco */
.nav-active-item,
.main-nav .nav-link.nav-active-item {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 10px 18px !important;
  margin: 4px 2px;
}
.nav-active-item:hover,
.main-nav .nav-link.nav-active-item:hover { background: var(--primary-dark) !important; color: #fff !important; }

.dropdown-menu-custom {
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px;
  padding: 6px;
  margin-top: 0 !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  min-width: 170px;
}
.dropdown-menu-custom .dropdown-item {
  color: #2d3748;
  font-size: .85rem;
  border-radius: 6px;
  padding: 8px 14px;
  font-weight: 500;
  transition: all var(--transition);
}
.dropdown-menu-custom .dropdown-item:hover {
  background: var(--secondary);
  color: #fff;
}
.dropdown-menu-custom .dropdown-item:hover .dropdown-item-sub {
  color: rgba(255,255,255,.78);
}

.dropdown-item-sub {
  display: block;
  font-size: .75rem;
  font-weight: 400;
  color: #94a3b8;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

/* ── Hero Section ───────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 74vh;
  min-height: 460px;
  max-height: 760px;
  overflow: hidden;
}

.hero-carousel,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}
.hero-carousel .carousel-item {
  position: relative;
}
.hero-slide {
  background-size: cover;
  background-position: center;
  transform: none;
  animation: none;
}

.hero-slide-link {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
}

.hero-slide-mobile {
  display: none;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,.85) 0%,
    rgba(13,27,42,.5) 60%,
    rgba(232,98,26,.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
}

.hero-badge {
  display: inline-block;
  background: rgba(247,201,72,.2);
  border: 1px solid rgba(247,201,72,.4);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-secondary, 'Manrope', sans-serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-title span { color: var(--accent); }

.hero-subtitle {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Hero Search Box */
.hero-search-box {
  background: rgba(255,255,255,.97);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.search-field {
  display: flex;
  align-items: center;
  padding: 6px 16px;
  border-right: 1px solid #e2e8f0;
  position: relative;
}
.field-icon {
  color: var(--primary);
  font-size: 1.1rem;
  margin-right: 10px;
  flex-shrink: 0;
}
.form-select-custom,
.form-control-custom {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  font-size: .88rem;
  font-weight: 500;
  color: #2c3e50;
  padding: 10px 4px;
  flex: 1;
}
.form-select-custom:focus,
.form-control-custom:focus { box-shadow: none !important; border: none !important; }

.btn-hero-search {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  border: none;
  border-radius: 0;
  padding: 20px;
  transition: background var(--transition);
  min-height: 64px;
}
.btn-hero-search:hover { background: var(--primary-dark); color: #fff; }

/* Hero Stats */
.hero-stats { gap: 28px; }
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-stat-divider {
  height: 40px !important;
  background: rgba(255,255,255,.2);
}

/* Hero Arrows */
.hero-arrow {
  width: 48px;
  height: 48px;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15) !important;
  border: 1px solid rgba(255,255,255,.3) !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  transition: all var(--transition);
  z-index: 3;
  backdrop-filter: blur(10px);
}
.hero-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}
.carousel-control-prev.hero-arrow { left: 24px; }
.carousel-control-next.hero-arrow { right: 24px; }

/* ── Destination Cards ──────────────────────────────────── */
.destinations-strip-section {
  background: #f3f4f6;
  padding-top: 56px;
  padding-bottom: 56px;
}

.strip-title {
  font-size: clamp(1.8rem, 2.4vw, 2.9rem);
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 16px;
  line-height: 1.2;
}


.trend-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.trend-slider-viewport {
  width: 100%;
  overflow: hidden;
}

.trend-slider-track {
  --cards-per-view: 5;
  --card-gap: 10px;
  display: flex;
  gap: var(--card-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.trend-slider-track::-webkit-scrollbar {
  display: none;
}

.trend-card {
  position: relative;
  flex: 0 0 calc((100% - (var(--card-gap) * (var(--cards-per-view) - 1))) / var(--cards-per-view));
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 22px;
  scroll-snap-align: start;
  transition: transform var(--transition), box-shadow var(--transition);
}

.trend-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}

.trend-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,.35) 0%, rgba(13,27,42,.05) 55%, rgba(13,27,42,.25) 100%);
}

.trend-name {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .4px;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.trend-slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(26,79,160,.25);
  background: #fff;
  color: #1a4fa0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: all var(--transition);
  display: none;
}

.trend-slider-btn:hover {
  background: #1a4fa0;
  color: #fff;
  border-color: #1a4fa0;
}

.trend-slider-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

/* ── Tour Packages Section ──────────────────────────────── */
.tour-packages-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 45%, #fff4ef 100%);
  padding-top: 56px;
  padding-bottom: 64px;
}

.tour-packages-section::before,
.tour-packages-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.tour-packages-section::before {
  width: 340px;
  height: 340px;
  top: -120px;
  right: -90px;
  background: radial-gradient(circle, rgba(26,79,160,.14) 0%, rgba(26,79,160,0) 70%);
}

.tour-packages-section::after {
  width: 280px;
  height: 280px;
  bottom: -130px;
  left: -80px;
  background: radial-gradient(circle, rgba(229,34,34,.12) 0%, rgba(229,34,34,0) 72%);
}

.tour-packages-section .container {
  position: relative;
  z-index: 1;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.package-card {
  background: rgba(255,255,255,.9);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dbe7f6;
  box-shadow: 0 10px 28px rgba(15,23,42,.09);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: #bfd2eb;
  box-shadow: 0 20px 38px rgba(15,23,42,.16);
}

.package-thumb {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.package-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.48) 0%, rgba(13,27,42,.06) 65%);
}

.package-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: linear-gradient(135deg, var(--primary), #ff6b6b);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.package-body {
  padding: 18px;
}

.package-body h3 {
  font-size: 1.26rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}

.package-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--secondary);
  background: rgba(26,79,160,.08);
  border-radius: 999px;
  padding: 5px 12px;
  margin: 0 0 14px;
}

.package-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #e8edf5;
  padding-top: 12px;
}

.package-meta span {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--secondary);
}

.package-meta a {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
}

.package-meta a:hover {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: #fff;
}

/* ── Review Section (Below Packages) ───────────────────── */
.package-reviews-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border-top: 1px solid #e8edf5;
  border-bottom: 1px solid #e8edf5;
}

.package-review-card {
  background: #fff;
  border: 1px solid #e6ecf4;
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(15,23,42,.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

/* ── Destination Details ──────────────────────────────── */
.destination-details-section {
  background: #ffffff;
}

.destination-details-container {
  max-width: 1240px;
}

.destination-details-title {
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 700;
  color: #111827;
  margin: 0 0 22px;
}

.destination-article {
  margin-bottom: 18px;
}

.destination-article p {
  margin: 0 0 16px;
  color: #111827;
  font-size: .95rem;
  line-height: 1.3;
}

.destination-gallery-carousel {
  position: relative;
}

.destination-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.destination-gallery-item {
  min-width: 0;
}

.destination-gallery-tile {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
}

.destination-gallery-arrow {
  width: 48px;
  height: 48px;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%);
  background: #0f4fa5 !important;
  border: none !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  opacity: 1;
  transition: transform var(--transition), background var(--transition);
}

.destination-gallery-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background: #0d3e83 !important;
}

.carousel-control-prev.destination-gallery-arrow { left: 12px; }
.carousel-control-next.destination-gallery-arrow { right: 12px; }

.destination-gallery-indicators {
  bottom: 8px;
  margin-bottom: 0;
}

.destination-gallery-indicators button {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50%;
  margin: 0 4px !important;
  background: rgba(255,255,255,.75) !important;
  border: none !important;
}

.destination-gallery-indicators button.active {
  background: #ffffff !important;
}

.destination-map-embed-wrap {
  margin-top: 24px;
  border: 1px solid #d9e3f3;
  border-radius: 14px;
  overflow: hidden;
}

.destination-map-embed {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.package-view-hero {
  position: relative;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
}

.package-view-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,15,35,.22) 0%, rgba(6,15,35,.74) 100%);
}

.package-view-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 48px;
}

.package-view-kicker {
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  text-transform: lowercase;
  letter-spacing: .6px;
}

.package-view-title {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0;
}

.package-view-subtitle {
  margin: 10px 0 0;
  color: rgba(255,255,255,.9);
  max-width: 680px;
}

.package-view-section-bg {
  background: linear-gradient(180deg, #f4f7fc 0%, #f8fafc 100%);
}

.package-view-grid {
  display: grid;
  grid-template-columns: 1.5fr .9fr;
  gap: 26px;
  min-width: 0;
}

.package-view-main,
.package-view-card {
  background: #fff;
  border: 1px solid #d9e3f3;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 45, 93, .06);
  min-width: 0;
}

.package-view-content-title {
  font-size: 1.75rem;
  color: #000000;
  margin-bottom: 18px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.package-view-html {
  color: #334155;
  line-height: 1.9;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

.package-view-html p,
.package-view-html li {
  font-size: .95rem;
}

.package-view-gallery-slider {
  position: relative;
  margin: 24px 0 26px;
  border: 1px solid #dbe5f4;
  border-radius: 12px;
  overflow: hidden;
}

.package-view-gallery-slide {
  height: 390px;
  background-size: cover;
  background-position: center;
}

.package-gallery-control {
  width: 48px;
  opacity: 1;
}

.package-gallery-control .carousel-control-prev-icon,
.package-gallery-control .carousel-control-next-icon {
  width: 34px;
  height: 34px;
  background-size: 54%;
  background-color: rgba(0, 0, 0, .55);
  border-radius: 50%;
}

.package-gallery-indicators {
  position: static;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  margin: 12px;
  overflow-x: auto;
}

.package-gallery-indicators [data-bs-target] {
  flex: 0 0 82px;
  width: 82px;
  height: 56px;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  opacity: .68;
}

.package-gallery-indicators .active {
  border-color: var(--primary);
  opacity: 1;
}

.package-view-block-title {
  font-size: 1.9rem;
  color: #0f2f5d;
  margin: 24px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d8e2f1;
}

.package-view-map-wrap {
  border: 1px solid #d8e2f1;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 12px;
}

.package-view-map {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.package-discover-card {
  background: linear-gradient(160deg, var(--secondary) 0%, #163f7d 60%, #122f62 100%);
  color: #fff;
  border-color: rgba(26, 79, 160, .5);
  border-radius: 16px;
}

.package-discover-title {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.9rem;
  letter-spacing: .2px;
}

.package-discover-text {
  margin: 0 0 16px;
  font-size: 1.03rem;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(255,255,255,.97);
}

.package-inquiry-form {
  display: grid;
  gap: 10px;
}

.package-inquiry-intro {
  margin-bottom: 18px;
}

.package-inquiry-intro h3 {
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.package-inquiry-intro p {
  color: rgba(255,255,255,.88);
  font-size: .95rem;
  line-height: 1.65;
  margin: 0;
}

.package-inquiry-form .form-control,
.package-inquiry-form .form-select {
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.26);
  color: #fff;
  min-height: 44px;
  font-size: 1.02rem;
  font-weight: 600;
  padding: 10px 12px;
  min-width: 0;
}

.package-inquiry-form .form-control::placeholder {
  color: rgba(255,255,255,.92);
}

.package-inquiry-form .form-control[readonly] {
  opacity: .85;
  cursor: default;
}

.package-inquiry-form .form-select {
  color: #fff;
}

.package-inquiry-form .form-select option {
  color: #1f2937;
}

.package-inquiry-form textarea.form-control {
  min-height: 116px;
}

.package-inquiry-form .form-control:focus,
.package-inquiry-form .form-select:focus {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.32);
  color: #fff;
  box-shadow: none;
}

.package-phone-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
}

.package-code-input {
  text-align: center;
}

.package-inquiry-form .btn-dark {
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  background: var(--primary);
  border-color: var(--primary);
  min-height: 52px;
  min-width: 220px;
  margin-left: auto;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.package-inquiry-form .btn-dark:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.package-view-card h3 {
  font-weight: 800;
  color: #000000;
}

.package-view-main h2 {
  font-weight: 800;
  color: #000000;
}

.package-view-main p {
  margin: 0 0 10px;
  color: #334155;
  line-height: 1.9;
}

.package-view-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.package-view-meta li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px dashed #d7e2f1;
  padding: 10px 0;
}

.package-view-meta li span {
  color: #64748b;
}

.package-view-meta li strong {
  color: #0f172a;
}

.package-review-card:hover {
  transform: translateY(-4px);
  border-color: #d5dfee;
  box-shadow: 0 16px 32px rgba(15,23,42,.09);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
}

.review-user h6 {
  font-size: 1rem;
  color: #111827;
}

.review-user small {
  color: #64748b;
  font-size: .78rem;
}

.review-stars {
  color: var(--accent);
  font-size: .82rem;
  display: flex;
  gap: 2px;
}

.package-review-card p {
  margin: 0;
  color: #475569;
  line-height: 1.75;
  font-size: .96rem;
}

/* ── Inner Pages (About / Contact) ─────────────────────── */
.page-hero-section {
  padding: 86px 0 78px;
  border-bottom: 1px solid #e8edf5;
}

.about-hero {
  background: linear-gradient(120deg, #eff5ff 0%, #f8fbff 60%, #ffffff 100%);
}

.page-hero-img {
  position: relative;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  border-bottom: none;
  overflow: hidden;
}

.page-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,15,50,0.72) 0%, rgba(10,25,60,0.55) 100%);
  z-index: 0;
}

.page-hero-img .container {
  position: relative;
  z-index: 1;
}

.page-hero-img .page-title,
.page-hero-img .page-subtitle,
.page-hero-img .page-kicker,
.page-hero-img .section-tag {
  color: #fff !important;
}

.page-hero-img .page-kicker,
.page-hero-img .section-tag {
  opacity: 0.9;
  letter-spacing: .15em;
}

.contact-hero {
  background: linear-gradient(120deg, #f5f9ff 0%, #eef3ff 45%, #ffffff 100%);
}

.tours-listing-section {
  background: #f8fafc;
}

.tours-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tours-filter-btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid #d1daf0;
  background: #fff;
  color: #334155;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}

.tours-filter-btn:hover,
.tours-filter-btn.active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}

.package-subtitle-text {
  font-size: .85rem;
  color: #64748b;
  margin: 0 0 6px;
  line-height: 1.4;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  color: #111827;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

.page-subtitle {
  color: #5b6472;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto;
  overflow-wrap: anywhere;
}

.about-main-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26,79,160,.08), rgba(245,166,35,.12));
  box-shadow: 0 16px 38px rgba(15,23,42,.15);
}

.about-main-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: inherit;
  pointer-events: none;
}

.about-main-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-copy {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.75;
}

.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.about-mini-stats div {
  border: 1px solid #e5eaf1;
  border-radius: 10px;
  padding: 12px;
  background: #fff;
  text-align: center;
}

.about-mini-stats strong {
  display: block;
  color: var(--secondary);
  font-size: 1.35rem;
}

.about-mini-stats span {
  font-size: .82rem;
  color: #5b6472;
}

.about-values {
  background: #f8fafc;
}

.about-card {
  background: #fff;
  border: 1px solid #e7edf5;
  border-radius: 12px;
  padding: 22px;
  height: 100%;
  transition: all var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15,23,42,.08);
  border-color: #d5deea;
}

.about-card i {
  font-size: 1.55rem;
  color: var(--secondary);
  margin-bottom: 10px;
  display: inline-block;
}

.about-card h5 {
  font-size: 1.25rem;
  color: #111827;
  margin-bottom: 8px;
}

.about-card p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.65;
  color: #5b6472;
}

.about-cta {
  background: var(--secondary);
  color: #fff;
  padding: 56px 0;
}

.about-cta h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.about-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
}

.contact-mini-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border: 1px solid rgba(26,79,160,.16);
  border-radius: 14px;
  padding: 24px 20px;
  height: 100%;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-mini-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.contact-mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229,34,34,.28);
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
}

.contact-mini-card i {
  width: 46px;
  height: 46px;
  margin: 0 auto;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(229,34,34,.12), rgba(26,79,160,.12));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--secondary);
}

.contact-mini-card h6 {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #111827;
}

.contact-mini-card p {
  margin: 0;
  color: #5b6472;
  line-height: 1.7;
  font-size: .92rem;
}

.contact-page-form,
.contact-map-box {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(229,34,34,.3), rgba(245,166,35,.35), rgba(26,79,160,.3)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
}

.contact-page-form h3,
.contact-map-box h4 {
  color: var(--secondary);
  font-weight: 800;
}

.contact-map-box p {
  color: #5b6472;
  line-height: 1.7;
}

.map-placeholder {
  border-radius: 16px;
  border: 1px dashed rgba(26,79,160,.32);
  background: linear-gradient(135deg, rgba(26,79,160,.06), rgba(245,166,35,.08));
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #6b7280;
}

.map-placeholder i {
  font-size: 2rem;
  color: var(--secondary);
}

.contact-page-form .form-control-custom-2,
.contact-page-form .form-select {
  min-height: 44px;
  background-color: #fbfdff;
  border-color: #d8e2ef;
}

.contact-page-form textarea.form-control-custom-2 {
  min-height: 126px;
}

.contact-page-form .btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
}

.contact-map-box .btn-outline-primary {
  border-color: var(--accent);
  color: #9a6800;
  font-weight: 700;
  background: rgba(245,166,35,.08);
}

.contact-map-box .btn-outline-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #111827;
}

.dest-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  height: 260px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.dest-card-tall { height: 548px; }
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.9) 0%, rgba(13,27,42,.1) 60%);
  transition: background var(--transition);
}
.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(13,27,42,.95) 0%, rgba(13,27,42,.2) 60%);
}
.dest-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
  transform: translateY(8px);
  transition: transform var(--transition);
}
.dest-card:hover .dest-info { transform: translateY(0); }
.dest-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.dest-name {
  font-family: var(--font-secondary, 'Manrope', sans-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}
.dest-card-tall .dest-name { font-size: 2.4rem; }
.dest-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 14px;
  line-height: 1.5;
}
.btn-dest {
  background: var(--primary);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  border: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}
.btn-sm-dest { font-size: .75rem; padding: 6px 14px; }
.dest-card:hover .btn-dest { opacity: 1; transform: translateY(0); }
.btn-dest:hover { background: var(--primary-dark); color: #fff; }

.dest-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(247,201,72,.9);
  color: #0d1b2a;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

/* ── Specials Section ───────────────────────────────────── */
.bg-light-custom { background: var(--light-bg); }

.special-card {
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: all var(--transition);
}
.special-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
}
.special-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.special-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.4), transparent);
}
.special-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.1);
  transition: background var(--transition);
}
.special-card:hover .special-overlay { background: rgba(232,98,26,.15); }

.special-badge-top {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  z-index: 2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.special-body { padding: 20px; }

.special-flag {
  font-size: 1.8rem;
  margin-top: -36px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}
.special-title {
  font-family: var(--font-secondary, 'Manrope', sans-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.special-meta {
  font-size: .75rem;
  color: var(--text-muted-custom);
}
.special-desc {
  font-size: .82rem;
  color: #5a6a7a;
  line-height: 1.6;
  margin-bottom: 0;
}
.special-footer { padding-top: 14px; border-top: 1px solid #f0f0f0; margin-top: 12px; }
.special-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.special-price span {
  font-size: .7rem;
  font-weight: 500;
  color: var(--text-muted-custom);
  display: block;
}
.btn-special {
  background: var(--secondary);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  border: none;
  transition: all var(--transition);
}
.btn-special:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.04);
}

/* ── Why Choose Us ──────────────────────────────────────── */
.travel-story-section {
  background: #f8fafc;
  border-top: 1px solid #e9edf3;
  border-bottom: 1px solid #e9edf3;
}

.story-wrap {
  max-width: 100%;
  margin: 0 auto;
}

.story-video-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 16px 32px rgba(17,24,39,.12);
}

.story-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  border: 0;
  pointer-events: none;
}

.story-video-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  cursor: default;
}

.story-title {
  color: var(--secondary);
  font-size: clamp(2.1rem, 3.2vw, 3.6rem);
  margin-bottom: 10px;
}

.story-lead {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 820px;
  margin: 0 auto 12px;
}

.story-feature-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.story-feature-item {
  background: #fff;
  border: 1px solid rgba(26,79,160,.18);
  padding: 18px 16px;
  text-align: center;
}

.story-feature-item i {
  font-size: 1.25rem;
  color: var(--primary);
}

.story-feature-item h5 {
  margin: 10px 0 8px;
  font-size: 1.7rem;
  color: var(--secondary);
  line-height: 1.2;
}

.story-feature-item p {
  margin: 0;
  font-size: .84rem;
  color: #6b7280;
  line-height: 1.55;
}

.story-tail-text {
  margin: 20px auto 14px;
  max-width: 820px;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.75;
}

.story-btn {
  background: var(--secondary);
  color: #fff;
  border-radius: 4px;
  font-size: .92rem;
  font-weight: 700;
  padding: 10px 20px;
  text-decoration: none;
}

.story-btn:hover {
  background: var(--secondary-light);
  color: #fff;
}

/* ── Blog Cards ─────────────────────────────────────────── */
.bg-dark-custom { background: var(--dark); }

.blog-card {
  background: #1a2a3e;
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.blog-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-body { padding: 22px; }
.blog-meta {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
}
.blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
}
.blog-excerpt {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: 14px;
}
.blog-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap var(--transition);
}
.blog-link:hover { color: var(--primary); }
.blog-link i { margin-left: 4px; transition: transform var(--transition); }
.blog-link:hover i { transform: translateX(4px); }

/* ── Testimonials ───────────────────────────────────────── */
.testi-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 1.5px solid #f0f0f0;
  height: 100%;
  transition: all var(--transition);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: var(--font-secondary, 'Manrope', sans-serif);
  font-size: 5rem;
  color: var(--primary);
  opacity: .12;
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
}
.testi-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  border-color: var(--primary);
  transform: translateY(-4px);
}
.testi-stars { color: var(--accent); font-size: .9rem; margin-bottom: 14px; }
.testi-text {
  font-size: .88rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author h6 { font-size: .9rem; font-weight: 700; color: var(--dark); }
.testi-author small { color: var(--text-muted-custom); }

.testi-indicators {
  position: static !important;
  margin-top: 40px;
}
.testi-indicators [data-bs-target] {
  width: 10px !important; height: 10px !important;
  border-radius: 50% !important;
  background: #ccc !important;
  opacity: 1 !important;
}
.testi-indicators .active { background: var(--primary) !important; width: 30px !important; border-radius: 5px !important; }

/* ── Airline Partners ───────────────────────────────────── */
.partners-section {
  background: var(--light-bg);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.partners-title {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted-custom);
}
.partners-track-wrapper {
  overflow: hidden;
  position: relative;
}
.partners-track-wrapper::before,
.partners-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.partners-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--light-bg), transparent); }
.partners-track-wrapper::after  { right: 0; background: linear-gradient(to left, var(--light-bg), transparent); }

.partners-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scrollPartners 25s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }

@keyframes scrollPartners {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-item {
  background: #fff;
  border-radius: 10px;
  padding: 12px 30px;
  margin: 0 10px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--secondary);
  white-space: nowrap;
  border: 1.5px solid #e2e8f0;
  transition: all var(--transition);
  letter-spacing: 0.5px;
  cursor: default;
}
.partner-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(232,98,26,.15);
}

/* ── Contact Section ────────────────────────────────────── */
.contact-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: var(--primary);
  opacity: .07;
  border-radius: 50%;
  top: -200px; right: -100px;
}

.contact-details { max-width: 400px; }
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: background var(--transition);
}
.contact-detail-item:hover .ci-icon { background: var(--primary); }
.ci-label { font-size: .7rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.5); }
.ci-value { font-size: .88rem; color: rgba(255,255,255,.9); font-weight: 500; }

.contact-form-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.form-title {
  font-family: var(--font-secondary, 'Manrope', sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}
.form-label {
  font-size: .8rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 6px;
}
.form-control-custom-2 {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .88rem;
  color: #2c3e50;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control-custom-2:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(229,34,34,.14);
  outline: none;
}
.btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px;
  border-radius: 12px;
  border: none;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(229,34,34,.35);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(229,34,34,.45);
  color: #fff;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 24%, var(--secondary) 68%, var(--secondary-light) 100%);
  padding: 86px 0 24px;
}

.footer-glow {
  position: absolute;
  inset: -20% auto auto -10%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.24) 0%, rgba(245,166,35,0) 72%);
  pointer-events: none;
}

.footer-centered {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
}

.footer-centered h3 {
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  margin-bottom: 16px;
  color: #fff;
}

.footer-centered p {
  color: rgba(255,255,255,.92);
  font-size: 1.06rem;
  line-height: 1.75;
}

.footer-contact-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.05rem, 1.9vw, 1.75rem);
  color: #fff;
}

.footer-contact-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-row i {
  font-size: .9em;
  color: rgba(255,255,255,.95);
}

.footer-contact-row .divider {
  opacity: .8;
  font-size: .95em;
}

.footer-separator {
  margin: 30px auto 22px;
  height: 1px;
  width: 100%;
  max-width: 860px;
  background: rgba(255,255,255,.55);
}

.footer-social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-social-square {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: rgba(255,255,255,.92);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.footer-social-square:hover {
  transform: translateY(-3px);
  background: #fff;
  color: var(--secondary);
}

.footer-copyright {
  margin-top: 30px;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
}

/* ── Floating Buttons ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  text-decoration: none;
  transition: all var(--transition);
  z-index: 999;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37,211,102,.5);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.15); }
}

.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* ── Animations ─────────────────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .section-padding { padding: 60px 0; }
  .page-hero-section { padding: 68px 0 60px; }
  .trend-slider-track { --cards-per-view: 3; }
  .trend-card { height: 250px; }
  .packages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-mini-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-main-image-wrap {
    max-width: 680px;
    margin: 0 auto;
  }
  .story-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-section {
    height: 62vh;
    min-height: 380px;
  }
  .destination-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .destination-gallery-tile { height: 320px; }
  .package-view-grid { grid-template-columns: 1fr; }
  .package-view-gallery-slide { height: 340px; }
  .hero-search-box .col-md-4,
  .hero-search-box .col-md-3,
  .hero-search-box .col-md-2 { width: 50%; }
  .hero-search-box .col-md-2 { width: 100%; }
  .footer-centered { max-width: 92%; }
  .footer-contact-row { font-size: 1.2rem; }
  .contact-mini-card {
    padding: 22px 16px;
  }
  .contact-page-form,
  .contact-map-box {
    padding: 24px;
  }
  .contact-map-box {
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .container,
  .container-lg,
  .container-xl {
    max-width: 100% !important;
    padding-left: 16px;
    padding-right: 16px;
  }

  .strip-title { font-size: 1.8rem; }
  .page-title { font-size: clamp(1.65rem, 7vw, 2rem); }
  .page-subtitle { font-size: .95rem; }
  .about-mini-stats { grid-template-columns: 1fr; }
  .about-main-image-wrap {
    aspect-ratio: 16 / 11;
  }
  .package-review-card { padding: 18px; }
  .contact-page-form,
  .contact-map-box { padding: 20px; }
  .contact-page-form h3,
  .contact-map-box h4 { font-size: 1.45rem; }
  .contact-mini-card {
    text-align: left;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
  }
  .contact-mini-card i {
    grid-row: 1 / span 2;
  }
  .contact-mini-card h6 {
    margin-top: 0;
    margin-bottom: 4px;
  }
  .contact-mini-card p {
    overflow-wrap: anywhere;
  }
  .map-placeholder {
    min-height: 190px;
  }
  .trend-slider-track { --cards-per-view: 2; }
  .trend-card { height: 220px; }
  .packages-grid { gap: 16px; }
  .package-thumb { height: 210px; }
  .package-body h3 { font-size: 1.15rem; }
  .package-meta span { font-size: 1rem; }
  .site-logo { height: 50px; }
  .footer-logo { height: 54px; }
  .story-title { font-size: 2rem; }
  .story-lead,
  .story-tail-text { font-size: .95rem; }
  .story-feature-grid { grid-template-columns: 1fr; }
  .story-feature-item h5 { font-size: 1.5rem; }
  .dest-card-tall { height: 320px; }
  .testi-card { margin-bottom: 20px; }
  .contact-form-box { padding: 24px; }
  .hero-section {
    height: 62vh;
    min-height: 360px;
    max-height: 520px;
  }
  .destination-details-title { font-size: clamp(1.9rem, 7vw, 2.4rem); }
  .destination-article p { font-size: 1rem; line-height: 1.75; }
  .destination-gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .destination-gallery-tile { height: 260px; }
  .destination-map-embed { height: 320px; }
  .package-view-hero { min-height: 300px; }
  .package-view-main,
  .package-view-card {
    width: 100%;
    max-width: 100%;
    padding: 18px;
  }
  .package-view-content-title { font-size: 1.3rem; }
  .package-view-gallery-slide { height: 240px; }
  .package-gallery-indicators [data-bs-target] {
    flex-basis: 64px;
    width: 64px;
    height: 44px;
  }
  .package-view-map { height: 220px; }
  .package-discover-title { font-size: 1.8rem; }
  .package-phone-row { grid-template-columns: 1fr; }
  .package-inquiry-form .btn-dark {
    width: 100%;
    min-width: 0;
  }
  .destination-gallery-arrow {
    width: 42px;
    height: 42px;
  }
  .hero-slide-desktop {
    display: none;
  }
  .hero-slide-mobile {
    display: block;
  }
  .hero-arrow {
    width: 40px;
    height: 40px;
  }
  .carousel-control-prev.hero-arrow { left: 12px; }
  .carousel-control-next.hero-arrow { right: 12px; }
  .site-footer { padding: 64px 0 20px; }
  .footer-centered h3 { font-size: 2rem; }
  .footer-centered p { font-size: .95rem; }
  .footer-contact-row {
    flex-direction: column;
    gap: 8px;
    font-size: 1.08rem;
  }
  .footer-contact-row .divider { display: none; }
  .footer-separator { margin: 24px auto 18px; }
  .footer-social-square { width: 38px; height: 38px; font-size: 1.05rem; }
}

@media (max-width: 575.98px) {
  .main-nav .container {
    min-width: 0;
  }

  .navbar-brand {
    min-width: 0;
  }

  .site-logo {
    max-width: 160px;
    height: auto;
  }

  .page-hero-content {
    max-width: 100%;
  }

  .page-hero-img .page-title {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
    line-height: 1.18;
  }

  .page-hero-img .page-subtitle {
    font-size: .9rem;
    line-height: 1.65;
  }

  .package-view-section-bg {
    overflow-x: hidden;
  }

  .package-view-grid,
  .package-view-main,
  .package-view-sidebar,
  .package-view-card,
  .package-inquiry-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .package-view-main,
  .package-view-card {
    border-radius: 12px;
    padding: 16px;
  }

  .package-inquiry-form .btn-dark {
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .package-view-meta li {
    align-items: flex-start;
  }

  .package-view-meta li strong {
    text-align: right;
    overflow-wrap: anywhere;
  }

  .package-inquiry-intro h3 {
    font-size: 1.45rem;
  }

  .package-inquiry-intro p {
    font-size: .9rem;
  }

  .contact-hero .page-hero-content {
    text-align: left !important;
    max-width: 100%;
  }

  .contact-hero .page-title {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .contact-hero .page-subtitle {
    font-size: .95rem;
    line-height: 1.65;
  }

  .trend-slider {
    gap: 8px;
  }
  .trend-slider-track {
    --cards-per-view: 2;
  }
  .trend-card { height: 250px; }
  .trend-slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .packages-grid { grid-template-columns: 1fr; }
  .package-thumb { height: 220px; }
  .page-hero-section { padding: 52px 0 48px; }
  .about-cta { padding: 44px 0; }
  .section-title { font-size: 1.6rem; }
  .about-main-image-wrap {
    border-radius: 14px;
    aspect-ratio: 1 / 1;
  }
  .contact-form-box { padding: 20px; }
  .contact-mini-card {
    padding: 18px 14px;
  }
  .contact-mini-card h6 {
    font-size: 1rem;
  }
  .contact-mini-card p {
    font-size: .88rem;
    line-height: 1.6;
  }
  .contact-page-form,
  .contact-map-box {
    border-radius: 14px;
    padding: 16px;
  }
  .contact-page-form h3,
  .contact-map-box h4 {
    font-size: 1.35rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }
  .contact-page-form .row {
    --bs-gutter-y: .85rem;
  }
  .contact-page-form .btn-submit {
    padding: 12px;
  }
  .map-placeholder {
    min-height: 170px;
  }
}
