﻿:root {
  --sky: #31b7ff;
  --royal: #2468ff;
  --turquoise: #15c8c4;
  --orange: #ff8a2a;
  --yellow: #ffd84d;
  --coral: #ff5f6d;
  --green: #21b978;
  --ink: #173052;
  --muted: #60718f;
  --paper: #ffffff;
  --soft: #f5fbff;
  --line: rgba(36, 104, 255, 0.14);
  --shadow: 0 22px 60px rgba(36, 104, 255, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f6fcff 0%, #ffffff 35%, #fff9ef 100%);
  overflow-x: hidden;
}
main { overflow-x: hidden; }

img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  color: var(--royal);
  background: linear-gradient(135deg, #ffffff, #dff8ff 45%, #fff3bd);
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-route {
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.loader-route::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  border-top: 2px dashed rgba(36, 104, 255, .28);
}
.loader-route span {
  position: relative;
  width: 12px;
  height: 12px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--royal);
  box-shadow: 0 4px 12px rgba(36, 104, 255, .25);
  animation: routeHop 1.2s ease-in-out infinite;
}
.loader-route span:nth-child(2) { background: var(--turquoise); animation-delay: .16s; }
.loader-route span:nth-child(3) { background: var(--orange); animation-delay: .32s; }
.loader-mark {
  width: 82px;
  height: 82px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  font-size: 30px;
  background: linear-gradient(135deg, var(--royal), var(--turquoise), var(--orange));
  box-shadow: var(--shadow);
  animation: pulse 1.4s infinite alternate;
}
.logo-loader { overflow: hidden; background: white; padding: 8px; }
.logo-loader img, .brand-logo img, .summary-logo, .contact-logo, .footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.loader p {
  margin: 0;
  font-weight: 800;
}
.loader-progress {
  width: 180px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(36, 104, 255, .12);
}
.loader-progress span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--royal), var(--turquoise), var(--orange));
  animation: loaderProgress 1.1s ease-in-out infinite;
}

.travel-cursor {
  --cursor-x: -100px;
  --cursor-y: -100px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2000;
  width: 34px;
  height: 34px;
  display: none;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0) translate(-50%, -50%);
  transition: opacity .18s ease;
}
.cursor-enabled .travel-cursor { display: block; }
.cursor-ring,
.cursor-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(36, 104, 255, .72);
  transition: width .2s ease, height .2s ease, border-color .2s ease, background .2s ease;
}
.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .8);
  transition: transform .2s ease, background .2s ease;
}
.cursor-label {
  position: absolute;
  left: 42px;
  top: 50%;
  padding: 5px 8px;
  border-radius: 999px;
  color: white;
  background: var(--royal);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  transform: translateY(-50%);
  transition: opacity .2s ease, transform .2s ease;
}
.cursor-enabled .travel-cursor.is-visible { opacity: 1; }
.cursor-enabled .travel-cursor.is-hovering .cursor-ring {
  width: 42px;
  height: 42px;
  border-color: var(--orange);
  background: rgba(255, 138, 42, .12);
}
.cursor-enabled .travel-cursor.is-hovering .cursor-dot {
  background: var(--royal);
  transform: translate(-50%, -50%) scale(.75);
}
.cursor-enabled:not(.is-loading) .cursor-label {
  opacity: 0;
  transform: translate(5px, -50%);
}
.cursor-enabled.is-loading .cursor-ring {
  border-color: rgba(36, 104, 255, .2);
  border-top-color: var(--royal);
  border-right-color: var(--turquoise);
  animation: cursorSpin .7s linear infinite;
}

@media (hover: hover) and (pointer: fine) {
  body.cursor-enabled,
  body.cursor-enabled a,
  body.cursor-enabled button,
  body.cursor-enabled input,
  body.cursor-enabled select,
  body.cursor-enabled textarea,
  body.cursor-enabled label,
  body.cursor-enabled summary {
    cursor: none;
  }
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(23, 48, 82, .12);
}
.site-header.scrolled { top: 8px; background: rgba(255,255,255,.94); }
.brand {
  display: grid;
  grid-template-columns: 44px auto;
  column-gap: 10px;
  align-items: center;
}
.brand span {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--royal), var(--orange));
}
.brand .brand-logo {
  background: white;
  padding: 4px;
  box-shadow: 0 10px 22px rgba(36, 104, 255, .14);
}
.brand strong { line-height: 1; font-size: 16px; }
.brand small { color: var(--muted); font-size: 11px; }
.main-nav { display: flex; gap: 4px; align-items: center; }
.mobile-menu-logo { display: none; }
.main-nav a, .nav-dropdown > a {
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  color: #31506f;
  font-size: 13px;
  transition: .25s ease;
}
.main-nav a:hover, .main-nav a.active, .nav-dropdown:hover > a {
  color: white;
  background: linear-gradient(135deg, var(--royal), var(--turquoise));
}
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 230px;
  display: none;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { display: grid; gap: 4px; }
.dropdown-menu a { display: block; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--royal);
  padding: 12px;
}
.nav-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 999px; background: white; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 130px max(24px, calc((100vw - 1180px) / 2)) 44px;
  color: white;
  overflow: hidden;
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=82") center / cover no-repeat;
}
.hero-video, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  background:
    linear-gradient(110deg, rgba(20, 82, 170, .72), rgba(21, 200, 196, .32), rgba(255, 138, 42, .42)),
    linear-gradient(0deg, rgba(255,255,255,.16), transparent 42%);
}
.hero-content {
  position: relative;
  max-width: 850px;
  padding-bottom: 170px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}
.hero .eyebrow { color: var(--yellow); }
h1, h2, h3 { margin: 0; line-height: 1.04; }
h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 7vw, 92px);
  max-width: 980px;
  animation: riseIn .9s ease both;
}
.hero-copy {
  max-width: 680px;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.65;
  margin: 22px 0 28px;
}
.hero-extra {
  margin-top: -12px;
  margin-bottom: 18px;
  font-weight: 900;
}
.hero-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 900;
  background: linear-gradient(135deg, var(--yellow), white);
  box-shadow: 0 14px 30px rgba(23,48,82,.16);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
.btn, .hero-search button, .newsletter button {
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn:hover, .hero-search button:hover, .newsletter button:hover { transform: translateY(-3px); filter: saturate(1.1); }
.primary { color: white; background: linear-gradient(135deg, var(--royal), var(--turquoise)); box-shadow: 0 14px 30px rgba(36, 104, 255, .26); }
.secondary { color: var(--royal); background: white; }
.coral { color: white; background: linear-gradient(135deg, var(--coral), var(--orange)); }
.whatsapp { color: white; background: linear-gradient(135deg, #13b86a, #63d471); }
.glass {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255,255,255,.75);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.hero-search {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 12px;
  padding: 14px;
  border-radius: 28px;
}
.hero-search.reveal { transform: translate(-50%, 34px); }
.hero-search.reveal.visible { transform: translate(-50%, 0); }
label { color: var(--muted); font-size: 12px; font-weight: 900; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  outline: none;
}
textarea { min-height: 120px; resize: vertical; }
.hero-search button { align-self: end; color: white; background: linear-gradient(135deg, var(--orange), var(--coral)); }
.hero-float {
  position: absolute;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  color: var(--ink);
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 35px rgba(23,48,82,.15);
  animation: floaty 4s ease-in-out infinite;
}
.float-one { right: 9%; top: 22%; }
.float-two { right: 22%; bottom: 34%; animation-delay: .7s; }
.float-three { left: 8%; bottom: 28%; animation-delay: 1.2s; }

.section {
  padding: 92px max(22px, calc((100vw - 1180px) / 2));
  position: relative;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading h2 {
  font-family: "Playfair Display", serif;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 58px);
}
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.quick-pages { padding: 22px max(22px, calc((100vw - 1180px) / 2)); background: white; }
.quick-strip { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; }
.quick-strip a {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--royal);
  font-weight: 900;
  background: #f8fcff;
}

.about { background: linear-gradient(180deg, #ffffff, #eefbff); }
.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
}
.about-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.about-card img { height: 560px; object-fit: cover; }
.about-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(320px, calc(100% - 44px));
  padding: 18px;
  border-radius: 22px;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, var(--royal), var(--turquoise));
}
.feature-list, .service-grid, .stats, .destination-grid, .package-grid, .offer-grid, .blog-grid, .weather-grid {
  display: grid;
  gap: 18px;
}
.feature-list { grid-template-columns: repeat(2, 1fr); }
.feature-pill, .service-card, .stat, .weather-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 34px rgba(36,104,255,.08);
}
.feature-pill strong, .service-card strong { display: block; margin-bottom: 7px; }
.feature-pill span, .service-card span, .weather-card span { color: var(--muted); line-height: 1.55; }
.stats { grid-template-columns: repeat(5, 1fr); margin-top: 28px; }
.stat { text-align: center; background: linear-gradient(180deg, white, #f6fbff); }
.stat strong { display: block; color: var(--royal); font-size: 36px; }

.services { background: linear-gradient(135deg, #fff8df, #e7fbff 48%, #fff4f2); }
.service-grid { grid-template-columns: repeat(4, 1fr); }
.service-card {
  min-height: 150px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 14px;
  color: white;
  background: linear-gradient(135deg, var(--royal), var(--orange));
}

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.filter-bar button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--royal);
  font-weight: 900;
  background: white;
  cursor: pointer;
}
.filter-bar button.active { color: white; background: linear-gradient(135deg, var(--royal), var(--turquoise)); }
.package-search { margin-bottom: 22px; }
.package-search input { max-width: 560px; }
.package-grid { grid-template-columns: repeat(3, 1fr); }
.package-card, .destination-card, .offer-card, .blog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: 0 14px 36px rgba(36, 104, 255, .1);
  transition: transform .25s ease, box-shadow .25s ease;
}
.package-card:hover, .destination-card:hover, .offer-card:hover, .blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.package-card img, .destination-card img, .blog-card img { height: 225px; object-fit: cover; transition: transform .5s ease; }
.package-card:hover img, .destination-card:hover img, .blog-card:hover img { transform: scale(1.08); }
.card-body { padding: 20px; }
.package-card,
.destination-card,
.offer-card,
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.package-card > .card-body,
.destination-card > .card-body,
.blog-card > .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.badge-row { position: absolute; top: 14px; left: 14px; display: flex; flex-wrap: wrap; gap: 8px; z-index: 2; }
/* .badge {
  border-radius: 999px;
  padding: 7px 10px;
  color: white;
  font-weight: 900;
  font-size: 11px;
  background: linear-gradient(135deg, var(--coral), var(--orange));
} */
 .badge {
  display: inline-flex;
  align-items: center;

  border-radius: 999px;
  padding: 7px 10px;
  margin-bottom: 12px;

  color: white;
  font-weight: 900;
  font-size: 11px;
  background: linear-gradient(135deg, var(--coral), var(--orange));
}
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; color: var(--muted); font-size: 13px; }
.price { color: var(--green); font-size: 24px; font-weight: 900; }
.itinerary {
  margin: 14px 0;
  padding: 14px;
  border-radius: 18px;
  background: #f4fbff;
  color: #45607d;
  line-height: 1.55;
}
.package-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 14px 0;
}
.package-highlights div {
  min-width: 0;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fcff;
}
.package-highlights strong,
.package-highlights span {
  display: block;
}
.package-highlights strong {
  margin-bottom: 4px;
  color: var(--royal);
  font-size: 11px;
  text-transform: uppercase;
}
.package-highlights span {
  color: #45607d;
  font-size: 12px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.package-details {
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f7fbff;
  overflow: hidden;
}
.package-details summary {
  position: relative;
  padding: 13px 42px 13px 14px;
  color: var(--royal);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
.package-details summary::-webkit-details-marker { display: none; }
.package-details summary:focus-visible {
  outline: 3px solid rgba(36, 104, 255, .28);
  outline-offset: -3px;
}
.package-details summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--royal);
  transform: translateY(-50%);
}
.package-details[open] summary::after { content: "-"; }
.package-details[open] summary { border-bottom: 1px solid var(--line); }
.package-details-content {
  max-height: 360px;
  padding: 4px 14px 14px;
  overflow-y: auto;
  color: #45607d;
  font-size: 13px;
  line-height: 1.55;
  scrollbar-width: thin;
  scrollbar-color: var(--royal) transparent;
}
.package-details-content p { margin: 11px 0 0; }
.detail-block {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: white;
}
.detail-block p { margin: 6px 0 0; }
.card-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.card-actions .btn { padding: 10px 13px; font-size: 13px; }
.package-card .card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
  padding-top: 10px;
}
.package-card .card-actions .btn {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  text-align: center;
  line-height: 1.2;
}
.package-card .card-actions .whatsapp,
.package-card .card-actions .coral {
  grid-column: span 1;
}
.destination-card .card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: auto;
  padding-top: 14px;
}
.destination-card .card-actions .btn {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  text-align: center;
  line-height: 1.2;
}

.offers { background: linear-gradient(135deg, #eafdff, #fff8da); }
.offer-grid { grid-template-columns: repeat(4, 1fr); }
.offer-card {
  min-height: 220px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(232,251,255,.96));
}
.offer-card h3 { min-height: 54px; }
.offer-card p { flex: 1; color: var(--muted); line-height: 1.55; }
.countdown { display: flex; gap: 8px; margin-top: 18px; }
.countdown span { flex: 1; text-align: center; padding: 9px 5px; border-radius: 14px; color: white; background: linear-gradient(135deg, var(--royal), var(--coral)); font-weight: 900; }

.destination-grid { grid-template-columns: repeat(4, 1fr); }
.destination-card .rating { color: #f5a400; font-weight: 900; }

.tour-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--royal), var(--turquoise), var(--green));
}
.tour-band a { color: white; padding: 12px 16px; border-radius: 999px; background: rgba(255,255,255,.18); font-weight: 900; }
.visa-note {
  margin: 22px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 138, 42, .28);
  border-radius: 22px;
  color: #7a4a15;
  font-weight: 800;
  background: #fff8df;
}

.gallery { background: linear-gradient(180deg, #ffffff, #fff9ed); }
.masonry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  align-items: stretch;
}
.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 24px;
  cursor: zoom-in;
  box-shadow: 0 14px 36px rgba(23,48,82,.1);
}
.gallery-item img, .gallery-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 11px;
  border-radius: 999px;
  color: white;
  font-weight: 900;
  background: rgba(36,104,255,.78);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  place-items: center;
  background: rgba(23,48,82,.42);
  padding: 24px;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(100%, 980px); max-height: 82vh; object-fit: contain; border-radius: 24px; }
.lightbox button {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  background: var(--coral);
  font-size: 30px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(23,48,82,.52);
}
.modal.open { display: flex; }
.modal-open { overflow: hidden; }
.modal-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}
.modal-close {
  position: sticky;
  top: 14px;
  left: calc(100% - 58px);
  z-index: 2;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  background: var(--coral);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}
.modal-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  padding: 26px 26px 10px;
  align-items: center;
}
.modal-header img {
  height: 210px;
  border-radius: 22px;
  object-fit: cover;
}
.modal-header h2 { font-family: "Playfair Display", serif; font-size: clamp(30px, 4vw, 48px); }
.modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px 26px;
}
.modal-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fcff;
}
.modal-grid strong,
.modal-grid span {
  display: block;
}
.modal-grid strong {
  margin-bottom: 5px;
  color: var(--royal);
}
.modal-copy {
  padding: 8px 26px 26px;
  color: #45607d;
  line-height: 1.7;
}
.modal-copy h3 { color: var(--ink); margin-top: 18px; }
.modal-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 26px 26px;
}
.modal-actions .btn,
.modal-form .btn,
.blog-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.modal-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.form-grid, .booking-form, .contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
}
.form-grid { grid-template-columns: repeat(4, 1fr); }
.form-grid textarea, .form-grid button { grid-column: span 4; }
.form-message { color: var(--green); font-weight: 900; }

.review-shell {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 16px;
  align-items: center;
}
.slider-btn {
  border: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--royal), var(--turquoise));
  font-size: 34px;
  cursor: pointer;
}
.review-card {
  min-height: 290px;
  padding: 28px;
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  align-items: center;
}
.review-card img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; }
.review-empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff, #f2fbff);
  box-shadow: var(--shadow);
}
.review-empty > div { max-width: 720px; }
.review-empty h3 { margin: 12px 0 10px; font-family: "Playfair Display", serif; font-size: clamp(28px, 3.4vw, 44px); color: var(--ink); }
.review-empty p { margin: 0; color: var(--muted); line-height: 1.65; }
.review-empty .btn { flex: 0 0 auto; text-align: center; }
.stars, .google-rating span { color: #f5a400; letter-spacing: 2px; }
.google-rating {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: #f4fbff;
}

.blog-grid { grid-template-columns: repeat(3, 1fr); }
.weather-grid { grid-template-columns: repeat(4, 1fr); }
.weather-card strong { display: block; font-size: 24px; color: var(--royal); }
.weather-card small {
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-weight: 900;
}

.booking { background: linear-gradient(135deg, #f2fcff, #fff9e8); }
.booking-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px; align-items: start; }
.booking-summary {
  position: sticky;
  top: 110px;
  padding: 28px;
  border-radius: 30px;
  color: white;
  background: linear-gradient(135deg, var(--royal), var(--turquoise), var(--green));
  box-shadow: var(--shadow);
}
.booking-summary strong { display: block; font-size: 44px; margin: 12px 0; }
.booking-summary small { display: block; line-height: 1.6; margin-bottom: 20px; }
.summary-logo {
  width: 72px;
  height: 72px;
  padding: 7px;
  border-radius: 22px;
  background: white;
  box-shadow: 0 14px 30px rgba(23,48,82,.12);
  margin-bottom: 14px;
}
.check { display: flex; gap: 10px; align-items: center; color: var(--ink); font-size: 14px; }
.check input { width: auto; margin: 0; }

.faq-list { display: grid; gap: 12px; max-width: 900px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  border: 0;
  padding: 18px 20px;
  text-align: left;
  background: white;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}
.faq-item p { display: none; margin: 0; padding: 0 20px 18px; color: var(--muted); line-height: 1.65; }
.faq-item.open p { display: block; }

.contact-layout { display: grid; grid-template-columns: .9fr .8fr 1fr; gap: 20px; align-items: stretch; }
.contact-card, .contact-actions, .map {
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
}
.contact-card, .contact-actions { padding: 26px; }
.contact-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(145deg, #ffffff, #f3fbff);
}
.contact-actions h3 { font-family: "Playfair Display", serif; font-size: clamp(28px, 3vw, 40px); color: var(--ink); }
.contact-actions p:not(.eyebrow) { color: var(--muted); line-height: 1.65; }
.contact-actions .btn { width: 100%; text-align: center; }
.contact-logo {
  width: min(260px, 100%);
  height: 110px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
}
.contact-card p { color: var(--muted); line-height: 1.5; }
.socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.socials a { padding: 10px 12px; border-radius: 999px; color: white; background: linear-gradient(135deg, var(--royal), var(--coral)); font-weight: 900; }
.map { width: 100%; border: 0; }

.newsletter {
  padding: 34px max(22px, calc((100vw - 1180px) / 2)) 92px;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 32px;
  border-radius: 34px;
  color: white;
  background: linear-gradient(135deg, var(--royal), var(--turquoise), var(--orange));
  box-shadow: var(--shadow);
}
.newsletter form { display: flex; gap: 10px; }
.newsletter input { width: min(360px, 52vw); margin: 0; }
.newsletter button { background: white; color: var(--royal); }
.newsletter .eyebrow { color: #fff5a7; margin-bottom: 8px; }
.newsletter .btn { white-space: nowrap; box-shadow: 0 12px 26px rgba(0,0,0,.12); }

.floating-whatsapp, .to-top {
  position: fixed;
  z-index: 90;
  border: 0;
  box-shadow: 0 14px 30px rgba(23,48,82,.18);
}
.floating-whatsapp {
  right: 18px;
  bottom: 86px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-weight: 900;
  background: #18ba68;
}
.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: white;
  display: block;
}
.to-top {
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  background: var(--royal);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.site-footer {
  padding: 26px max(18px, calc((100vw - 1240px) / 2)) 22px;
  color: white;
  background:
    radial-gradient(circle at 8% 12%, rgba(36,104,255,.22), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(21,200,196,.18), transparent 28%),
    linear-gradient(145deg, #071426 0%, #0c1f3b 54%, #102c4a 100%);
}
.footer-shell {
  width: min(1240px, 100%);
  margin: auto;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr .8fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(30px, 4vw, 50px) clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 34px 34px 0 0;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.footer-brand,
.footer-links,
.footer-connect {
  min-width: 0;
}
.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}
.footer-logo {
  width: min(250px, 100%);
  height: 82px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.2));
}
.footer-brand > p {
  max-width: 480px;
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  font-size: 15px;
}
.footer-contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.footer-contact-chips a {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #dfeaff;
  background: rgba(255,255,255,.055);
  font-size: 13px;
  font-weight: 800;
  transition: .25s ease;
}
.footer-contact-chips a:hover {
  transform: translateY(-2px);
  border-color: rgba(58,177,255,.55);
  background: rgba(36,104,255,.16);
}
.footer-title {
  margin: 4px 0 18px;
  color: white;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  align-content: start;
  gap: 11px;
}
.footer-links a {
  width: fit-content;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 800;
  transition: color .2s ease, transform .2s ease;
}
.footer-links a:hover {
  color: #6ee8e3;
  transform: translateX(4px);
}
.footer-connect-copy {
  margin: 0 0 18px;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
  font-size: 14px;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-social {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  color: white;
  background: rgba(255,255,255,.065);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.footer-social:hover {
  transform: translateY(-4px);
  border-color: rgba(101,232,227,.5);
  background: linear-gradient(135deg, rgba(36,104,255,.6), rgba(21,200,196,.5));
}
.footer-social.whatsapp-social:hover {
  background: linear-gradient(135deg, #0ea85b, #4ed17f);
}
.footer-social svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}
.footer-whatsapp-cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #0fb968, #53d783);
  box-shadow: 0 12px 26px rgba(20,185,104,.18);
  font-size: 13px;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease;
}
.footer-whatsapp-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(20,185,104,.24);
}
.footer-whatsapp-cta span {
  font-size: 18px;
  line-height: 1;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  border: 1px solid rgba(255,255,255,.1);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  background: rgba(4,12,25,.66);
}
.footer-bottom > p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}
.sati-credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px 8px 13px;
  border: 1px solid rgba(97,209,255,.22);
  border-radius: 999px;
  color: rgba(255,255,255,.66);
  background: rgba(36,104,255,.09);
  font-size: 12px;
  transition: .25s ease;
}
.sati-credit strong {
  color: white;
  font-size: 13px;
}
.sati-credit svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #67e0ff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sati-credit:hover {
  transform: translateY(-2px);
  border-color: rgba(97,209,255,.5);
  background: rgba(36,104,255,.18);
}

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse { to { transform: scale(1.08) rotate(3deg); } }
@keyframes riseIn { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floaty { 50% { transform: translateY(-18px); } }
@keyframes routeHop { 50% { transform: translateY(-5px); } }
@keyframes loaderProgress {
  from { transform: translateX(-110%); }
  to { transform: translateX(245%); }
}
@keyframes cursorSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .loader-route span,
  .loader-mark,
  .loader-progress span,
  .cursor-enabled.is-loading .cursor-ring,
  h1 {
    animation: none;
  }
  .loader,
  .travel-cursor,
  .cursor-ring,
  .cursor-dot,
  .cursor-label,
  .reveal {
    transition-duration: .01ms;
  }
  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    padding: 14px;
    gap: 2px;
    max-height: min(78dvh, calc(100dvh - 92px));
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 24px;
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow);
    scrollbar-width: thin;
    scrollbar-color: var(--royal) transparent;
  }
  .main-nav.open { display: flex; }
  .mobile-menu-logo {
    display: block;
    width: min(220px, 78%);
    height: 76px;
    object-fit: contain;
    margin: 0 auto 8px;
  }
  .main-nav a { width: 100%; text-align: center; padding: 9px 12px; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown > a { display: block; width: 100%; text-align: center; }
  .dropdown-menu {
    position: static;
    display: grid;
    width: 100%;
    margin-top: 6px;
    padding: 8px;
    gap: 2px;
    border-radius: 18px;
    box-shadow: none;
    background: #f8fcff;
  }
  .nav-toggle { display: block; }
  .main-nav::-webkit-scrollbar { width: 6px; }
  .main-nav::-webkit-scrollbar-thumb { border-radius: 999px; background: rgba(36, 104, 255, .35); }
  .hero-search { grid-template-columns: repeat(2, 1fr); position: relative; bottom: auto; left: auto; transform: none; margin-top: -130px; color: var(--ink); }
  .hero-search.reveal, .hero-search.reveal.visible { transform: none; }
  .hero-content { padding-bottom: 140px; }
  .hero-search button { grid-column: span 2; }
  .service-grid, .destination-grid, .offer-grid, .weather-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .booking-layout, .contact-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid textarea, .form-grid button { grid-column: span 2; }
  .masonry { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .modal-header { grid-template-columns: 1fr; }
  .modal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .site-header {
    left: 14px !important;
    right: 14px;
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px);
    transform: none !important;
    border-radius: 24px;
    padding-right: 64px;
  }
  .brand strong { font-size: 14px; }
  .nav-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    flex: 0 0 44px;
  }
  .main-nav {
    top: 74px;
    left: 14px;
    right: 14px;
    padding: 12px;
    max-height: calc(100dvh - 92px);
    border-radius: 22px;
  }
  .mobile-menu-logo {
    width: min(154px, 62%);
    height: 46px;
    margin-bottom: 2px;
  }
  .main-nav a,
  .nav-dropdown > a {
    padding: 7px 10px;
    font-size: 12px;
  }
  .dropdown-menu { padding: 6px; }
  .dropdown-menu a { padding: 7px 10px; }
  .hero {
    padding-top: 110px;
    min-height: auto;
    background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1000&q=76") center / cover no-repeat;
  }
  .hero-content { max-width: min(100%, 360px); }
  .hero h1 { font-size: clamp(34px, 10vw, 38px); max-width: 320px; }
  .hero-copy { max-width: 320px; font-size: 16px; }
  .hero-actions { max-width: 360px; }
  .hero-actions .btn { flex: 1 1 100%; max-width: 100%; }
  .hero-content { padding-bottom: 32px; }
  .hero-search { margin-top: 20px; grid-template-columns: 1fr; border-radius: 24px; }
  .hero-search button { grid-column: span 1; }
  .hero-float { display: none; }
  .section { padding-top: 66px; padding-bottom: 66px; }
  .feature-list, .service-grid, .destination-grid, .package-grid, .offer-grid, .blog-grid, .weather-grid, .stats, .form-grid { grid-template-columns: 1fr; }
  .form-grid textarea, .form-grid button { grid-column: span 1; }
  .review-shell { grid-template-columns: 1fr; }
  .slider-btn { justify-self: center; }
  .review-card { grid-template-columns: 1fr; text-align: center; }
  .review-card img { margin: auto; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .newsletter form { flex-direction: column; }
  .newsletter input { width: 100%; }
  .modal { padding: 12px; }
  .modal-panel { max-height: 92vh; border-radius: 22px; }
  .modal-header, .modal-grid, .modal-copy, .modal-actions { padding-left: 18px; padding-right: 18px; }
  .modal-grid, .modal-actions { grid-template-columns: 1fr; }
  .modal-header img { height: 190px; }
}

@media (max-width: 520px) {
  .masonry { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .package-card .card-actions { grid-template-columns: 1fr; }
}


.lightbox button svg,
.modal-close svg,
.to-top svg,
.slider-btn svg {
  width: 24px;
  height: 24px;
  display: block;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lightbox button,
.modal-close,
.to-top,
.slider-btn {
  display: grid;
  place-items: center;
  line-height: 1;
}
.to-top {
  background: linear-gradient(135deg, var(--royal), #174bd6);
  color: white;
}
.to-top:hover,
.lightbox button:hover,
.modal-close:hover,
.slider-btn:hover {
  transform: translateY(-3px);
}
.star-icons {
  display: inline-flex;
  gap: 2px;
  vertical-align: -2px;
  color: #f5a400;
}
.star-icons svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke: none;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}




/* Accessibility and interaction hardening */
:focus-visible {
  outline: 3px solid rgba(36, 104, 255, .42);
  outline-offset: 3px;
}
a, button, input, select, textarea, summary {
  -webkit-tap-highlight-color: transparent;
}
.compact-planner {
  max-width: 1100px;
}
@media (max-width: 680px) {
  .newsletter .btn { width: 100%; white-space: normal; text-align: center; }
  .review-empty { flex-direction: column; align-items: stretch; padding: 24px; }
  .review-empty .btn { width: 100%; }
  .contact-card, .contact-actions, .map { min-height: auto; }
  .map { min-height: 320px; }
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding-left: 12px;
    padding-right: 12px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px 20px;
    border-radius: 28px 28px 0 0;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-logo {
    height: 70px;
    max-width: 220px;
  }
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }
  .footer-links .footer-title {
    grid-column: 1 / -1;
  }
  .footer-social {
    width: 44px;
    height: 44px;
  }
  .footer-whatsapp-cta {
    width: 100%;
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 20px;
    border-radius: 0 0 24px 24px;
  }
  .sati-credit {
    width: 100%;
    justify-content: center;
  }
}
