/* =========================================================
   SOUTH INDIA HOLIDAYS TRIP— Premium Light Theme
   TOURS & TRAVELS UI Redesign
   ========================================================= */

:root {
  /* Navy / Black / White / Sky-blue system — no off-palette accents */
  --primary: #1B3A6B;
  --primary-dark: #0B1D3A;
  --secondary: #0B1D3A;
  --accent: #0EA5E9;
  --highlight: #38BDF8;
  --luxury: #C69A2E;
  --gold-deep: #9C7418;
  --gold-light: #E8CA7A;
  --gold-soft: #FAF3DF;
  --bg: #FFFFFF;
  --bg-section: #F2F6FB;
  --card-bg: rgba(255, 255, 255, 0.97);
  --text: #0A0E17;
  --text-soft: #3C4657;
  --border: rgba(11, 29, 58, 0.12);
  --hover-glow: rgba(14, 165, 233, 0.24);
  --gold-glow: rgba(198, 154, 46, 0.35);
  --glass: rgba(255, 255, 255, 0.84);
  --glass-border: rgba(255, 255, 255, 0.5);

  --display: "Poppins", "Segoe UI", sans-serif;
  --body: "Inter", "Segoe UI", sans-serif;

  --radius: 20px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --shadow: 0 24px 60px -22px rgba(11, 29, 58, 0.24);
  --shadow-soft: 0 8px 30px -12px rgba(11, 29, 58, 0.16);
  --shadow-glow: 0 0 40px var(--hover-glow);
  --shadow-gold: 0 14px 34px -12px var(--gold-glow);

  --container: 1200px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body.custom-cursor {
  cursor: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 0.5em;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1em;
  color: var(--text-soft);
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: var(--body);
  cursor: pointer;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.logo-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 6px 18px -8px var(--hover-glow);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.brand:hover .logo-container {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 10px 24px -8px var(--hover-glow);
}


/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 900;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--luxury));
  box-shadow: 0 0 12px var(--hover-glow);
  transition: width 0.1s ease-out;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  min-height: 48px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  z-index: 1;
  pointer-events: none;
}

.btn:hover::before {
  left: 130%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--hover-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--luxury) 55%, var(--gold-deep));
  color: var(--primary-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -10px var(--gold-glow);
}

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

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

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn .arrow {
  transition: transform 0.3s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--luxury));
  border-radius: 2px;
}

.eyebrow.center::after {
  content: "";
  width: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--luxury), var(--gold-deep));
  border-radius: 2px;
}

.eyebrow.center {
  justify-content: center;
  display: flex;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 500;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header::before {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--luxury) 50%, var(--primary-dark) 100%);
}

.site-header.transparent {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.site-header.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
  min-height: var(--nav-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  z-index: 620;
}

.brand img {
  height: 56px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  transition: height 0.3s ease, filter 0.3s ease;
}

.site-header.scrolled .brand img {
  height: 48px;
}

.brand .mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.brand:hover .mark {
  transform: rotate(-6deg) scale(1.08);
}

.brand small {
  display: block;
  font-family: var(--body);
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 18px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-soft);
  border-radius: var(--radius-pill);
  transition: color 0.25s;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-pill);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(0);
}

/* Transparent header now uses same white glass as scrolled — no color overrides needed */

.nav-cta {
  margin-left: 8px;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--border);
  background: var(--bg);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-toggle:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 14px -4px var(--hover-glow);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2.5px;
  border-radius: 50px;
  background: var(--primary-dark);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(7px);
}

.nav-toggle.open {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.nav-toggle.open span {
  background: transparent;
}

.nav-toggle.open span::before {
  transform: rotate(45deg);
  background: #fff;
}

.nav-toggle.open span::after {
  transform: rotate(-45deg);
  background: #fff;
}

.nav-backdrop {
  display: none;
}

/* ---------- Hero (Home - Full Width) ---------- */
.hero-full {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 -4px 0 0 var(--luxury);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken-burns 12s ease-in-out infinite alternate;
}

@keyframes ken-burns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(11, 29, 58, 0.5) 50%, rgba(10, 10, 10, 0.55) 100%);
  z-index: 1;
}

.hero-clouds {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  filter: blur(20px);
  animation: cloud-drift linear infinite;
}

.cloud-1 {
  width: 200px;
  height: 60px;
  top: 15%;
  left: -10%;
  animation-duration: 35s;
}

.cloud-2 {
  width: 280px;
  height: 80px;
  top: 25%;
  left: -15%;
  animation-duration: 45s;
  animation-delay: -10s;
}

.cloud-3 {
  width: 160px;
  height: 50px;
  top: 8%;
  left: -5%;
  animation-duration: 30s;
  animation-delay: -20s;
}

@keyframes cloud-drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(100% + 300px));
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 820px;
  padding: 60px 24px 80px;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 20px;
}

.hero-content h1 .accent {
  background: linear-gradient(135deg, var(--gold-light), var(--luxury) 60%, var(--gold-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--luxury);
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

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

.hero-stats div {
  text-align: center;
}

.hero-stats strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  display: block;
  color: var(--luxury);
}

.hero-stats span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
}

.hero-float-icons {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: float-icon 4s ease-in-out infinite;
}

.float-icon:nth-child(1) {
  top: 20%;
  left: 8%;
  animation-delay: 0s;
}

.float-icon:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-delay: -1s;
}

.float-icon:nth-child(3) {
  bottom: 25%;
  left: 12%;
  animation-delay: -2s;
}

.float-icon:nth-child(4) {
  top: 35%;
  right: 18%;
  animation-delay: -0.5s;
}

@keyframes float-icon {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.hero-dots button.active {
  background: var(--luxury);
  border-color: var(--luxury);
  transform: scale(1.2);
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 80px;
}

/* ---------- Sections ---------- */
section {
  padding: 90px 0;
  position: relative;
}

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

.section-muted {
  background: var(--bg-section);
}

.section-gradient {
  background: linear-gradient(135deg, #0A0A0A 0%, var(--primary-dark) 50%, var(--primary) 100%);
  color: #fff;
}

.section-gradient h2,
.section-gradient h3 {
  color: #ffffff;
}

.section-gradient p {
  color: rgba(255, 255, 255, 0.9);
}

.section-gradient .glass-card h3 {
  color: var(--text);
}

.section-gradient .glass-card p {
  color: var(--text-soft);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}

/* ---------- Glass Cards ---------- */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--luxury));
  opacity: 0;
  transition: opacity 0.3s;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(11, 29, 58, 0.3);
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card .icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(27, 58, 107, 0.10), rgba(14, 165, 233, 0.08));
  border: 1px solid rgba(198, 154, 46, 0.25);
  border-radius: 16px;
  font-size: 1.8rem;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover .icon-wrap {
  transform: translateY(-4px) scale(1.1);
  border-color: var(--luxury);
  box-shadow: 0 8px 20px -8px var(--gold-glow);
}

.glass-card h3 {
  margin-bottom: 10px;
  text-align: center;
}

.glass-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  text-align: center;
}

/* ---------- Destination Cards ---------- */
.place-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.place-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

/* Destination card link wrapper */
.place-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  transition: transform 0.35s ease;
}

.place-card-link:hover .place-card {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.place-card .art {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.place-card .art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.place-card .art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.3), transparent);
  pointer-events: none;
}

.place-card .art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s ease;
}

.place-card:hover .art img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

.place-card .body {
  padding: 24px;
}

.place-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(11, 29, 58, 0.1);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  transition: background 0.3s, color 0.3s;
}

.place-card:hover .tag {
  background: var(--primary-dark);
  color: #ffffff;
}

/* ---------- Package Tier Cards ---------- */
.tier-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.tier-card[data-tilt] {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.tier-card:hover {
  box-shadow: var(--shadow-glow);
}

.tier-card .art {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.tier-card .art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.tier-card:hover .art img {
  transform: scale(1.1);
}

.tier-card .art::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.tier-card:hover .art::after {
  transform: translateX(100%);
}

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--luxury));
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  animation: badge-float 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes badge-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.tier-card .card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tier-label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.tier-card h3 {
  margin-bottom: 10px;
}

.tier-card p {
  font-size: 0.93rem;
  margin-bottom: 16px;
}

.tier-card ul {
  margin: 0 0 20px;
  flex: 1;
}

.tier-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-soft);
  border-top: 1px dashed var(--border);
}

.tier-card ul li:first-child {
  border-top: none;
}

.tier-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.tier-card.featured {
  border: 2px solid var(--luxury);
  animation: featured-pulse 3s ease-in-out infinite;
}

@keyframes featured-pulse {

  0%,
  100% {
    box-shadow: var(--shadow);
  }

  50% {
    box-shadow: var(--shadow), 0 0 0 4px rgba(14, 165, 233, 0.15);
  }
}

.tier-card .card-actions {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.tier-card .card-actions .btn {
  width: 100%;
}

/* ---------- Grids ---------- */
.grid {
  display: grid;
  gap: 28px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  box-shadow: inset 0 -4px 0 0 var(--luxury);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.65), rgba(11, 29, 58, 0.5));
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 12px;
}

.page-hero .crumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.page-hero .crumb a {
  color: var(--luxury);
}

/* ---------- Testimonials ---------- */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-inner {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-inner .quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.3;
  font-family: Georgia, serif;
  animation: quote-pulse 3s ease-in-out infinite;
}

@keyframes quote-pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

.testimonial-inner p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  margin: 16px 0 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  transition: transform 0.3s ease;
}

.testimonial-inner:hover .testimonial-author img {
  transform: scale(1.1);
}

.testimonial-author strong {
  display: block;
  color: var(--text);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.stars {
  color: var(--luxury);
  letter-spacing: 3px;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.stars span {
  display: inline-block;
  animation: star-pop 0.5s ease backwards;
}

.stars span:nth-child(1) {
  animation-delay: 0.1s;
}

.stars span:nth-child(2) {
  animation-delay: 0.2s;
}

.stars span:nth-child(3) {
  animation-delay: 0.3s;
}

.stars span:nth-child(4) {
  animation-delay: 0.4s;
}

.stars span:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes star-pop {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.testimonial-dots button.active {
  background: var(--primary-dark);
  transform: scale(1.3);
}

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

.accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
  box-shadow: var(--shadow-soft);
}

.accordion-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  gap: 16px;
}

.accordion-item .plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(11, 29, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-dark);
  transition: transform 0.35s ease, background 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.open .plus {
  transform: rotate(45deg);
  background: var(--primary-dark);
  color: #fff;
}

.accordion-item .panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item .panel p {
  padding: 0 24px 22px;
  margin: 0;
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.field.full {
  grid-column: 1 / -1;
}

.field.floating label {
  position: absolute;
  left: 16px;
  top: 29px;
  transform: translateY(-50%);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  pointer-events: none;
  transition: all 0.25s ease;
  background: transparent;
  padding: 0 4px;
}

.field.floating textarea+label,
.field.floating input:focus+label,
.field.floating input:not(:placeholder-shown)+label,
.field.floating select:focus+label,
.field.floating select:valid+label {
  top: 0;
  font-size: 0.75rem;
  color: var(--primary-dark);
  font-weight: 600;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

input,
select,
textarea {
  font-family: var(--body);
  font-size: 0.96rem;
  padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--hover-glow);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---------- Booking Multi-Step ---------- */
.booking-wizard {
  max-width: 760px;
  margin: 0 auto;
}

.booking-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.booking-progress::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--border);
  z-index: 0;
}

.booking-progress .progress-fill {
  position: absolute;
  top: 20px;
  left: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  z-index: 1;
  transition: width 0.5s ease;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.progress-step .step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-section);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: all 0.4s ease;
}

.progress-step.active .step-num,
.progress-step.done .step-num {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.progress-step span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
}

.progress-step.active span {
  color: var(--primary-dark);
}

.booking-step {
  display: none;
  animation: step-in 0.5s ease;
}

.booking-step.active {
  display: block;
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.booking-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  gap: 16px;
}

.confirmation-card {
  text-align: center;
  padding: 48px 36px;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.confirmation-card .check-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--accent), #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  animation: check-pop 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes check-pop {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* ---------- Package Detail Page ---------- */
.pkg-detail-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
}

.pkg-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-detail-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 40px 24px;
}

.pkg-detail-hero .overlay .container {
  width: 100%;
}

.pkg-detail-hero h1 {
  color: #fff;
  margin-bottom: 8px;
}

.pkg-detail-hero .meta {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.pkg-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.pkg-detail-main {
  padding-top: 20px;
}

.sticky-summary {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.sticky-summary .price {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.sticky-summary .price-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.itinerary-timeline {
  position: relative;
  padding-left: 32px;
}

.itinerary-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 3px;
}

.itinerary-day {
  position: relative;
  margin-bottom: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.itinerary-day::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 22px;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border: 3px solid var(--bg);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--hover-glow);
}

.itinerary-day button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
}

.itinerary-day .day-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.itinerary-day.open .day-panel {
  max-height: 300px;
}

.itinerary-day .day-panel p {
  padding: 0 24px 20px;
  margin: 0;
}

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

.gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
  border-color: var(--primary);
}

.pkg-nav-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  position: sticky;
  top: var(--nav-h);
  background: var(--bg);
  padding: 16px 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
}

.pkg-nav-tabs a {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-soft);
  transition: all 0.3s ease;
}

.pkg-nav-tabs a:hover,
.pkg-nav-tabs a.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-embed iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  color: var(--text-soft);
  padding: 80px 0 28px;
  overflow: hidden;
  background: var(--gold-soft);
  border-top: 3px solid var(--luxury);
}

.footer-bg {
  display: none;
}

.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-overlay {
  display: none;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-grid h4 {
  color: var(--primary-dark);
  font-size: 1rem;
  margin-bottom: 18px;
}

.footer-grid a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: color 0.25s, padding-left 0.25s;
}

.footer-grid a:hover {
  color: var(--luxury);
  padding-left: 8px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.footer-brand p {
  color: var(--text-soft);
  font-size: 0.9rem;
  max-width: 300px;
}

.trust-badges {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-deep);
  border: 1px solid rgba(198, 154, 46, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(11, 29, 58, 0.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(11, 29, 58, 0.55);
}

/* ---------- Floating Buttons ---------- */
.wa-float,
.call-float {
  position: fixed;
  z-index: 400;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease;
}

.wa-float {
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
}

.call-float {
  bottom: 24px;
  right: 94px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.wa-float:hover,
.call-float:hover {
  transform: scale(1.1);
}

.wa-float svg,
.call-float svg {
  width: 28px;
  height: 28px;
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ---------- Back to Top ---------- */
.to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 400;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.to-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.to-top:hover {
  transform: translateY(-4px);
}

.to-top svg {
  width: 22px;
  height: 22px;
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 0.84, 0.44, 1),
    transform 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
  transition-delay: calc(var(--reveal-i, 0) * 80ms);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

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

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge-row .pkg-filter {
  min-width: auto;
}

.filter-animate {
  animation: filter-in 0.4s ease;
}

@keyframes filter-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.img-glow {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.img-glow:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

.drawer-shortcuts {
  display: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .sticky-summary {
    position: static;
  }

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

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    gap: 20px;
  }

  .hero-content {
    padding: calc(var(--nav-h) + 20px) 16px 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  section {
    padding: 50px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  }

  .map-embed iframe {
    height: 280px;
  }

  .glass-card {
    padding: 24px 16px;
  }

  .nav-wrap {
    padding: 12px 16px;
  }

  .brand img {
    height: 44px;
    max-width: 200px;
  }

  .container {
    padding: 0 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Fix mobile image display — full viewable images */
  .place-card .art {
    height: 200px;
  }

  .place-card .art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .tier-card .art {
    height: 200px;
  }

  .tier-card .art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Remove extra spacing from hero stats on mobile */
  .hero-stats strong {
    font-size: 1.5rem;
  }

  .hero-stats span {
    font-size: 0.75rem;
  }

  /* Fix hero full-width for mobile */
  .hero-full {
    min-height: 100vh;
    min-height: 100dvh;
  }

  /* Eliminate extra side space on mobile */
  body {
    overflow-x: hidden;
  }

  /* Fix place-card-link on mobile grid */
  .place-card-link {
    display: block;
  }

  /* Fix glass-card icon-wrap with images on mobile */
  .glass-card .icon-wrap {
    width: 100%;
    height: 180px;
    margin-bottom: 16px;
  }

  .glass-card .icon-wrap img {
    border-radius: 12px;
  }

  /* Tighten footer on mobile */
  .site-footer {
    padding: 50px 0 20px;
  }

  /* Fix floating buttons spacing on mobile */
  .wa-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .call-float {
    bottom: 16px;
    right: 78px;
    width: 52px;
    height: 52px;
  }

  .to-top {
    bottom: 16px;
    left: 16px;
    width: 46px;
    height: 46px;
  }

  /* Tighter badge row on mobile */
  .badge-row {
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .badge-row .btn {
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 10px 18px;
    flex-shrink: 0;
  }
}


/* ===============================
   Premium Mobile Navigation
=================================*/

@media (max-width:992px) {

  .site-header {
    background: var(--glass);
    box-shadow: var(--shadow-soft);
    z-index: 1600;
  }

  .nav-wrap {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    gap: 12px;
  }

  .brand {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }

  .brand img {
    height: 44px;
    max-width: min(200px, 55vw);
    width: auto;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
    z-index: 1500;
  }

  .nav-toggle span::before,
  .nav-toggle span::after {
    left: 0;
  }

  /* Drawer */

  .nav-links {

    position: fixed;

    top: 0;
    right: 0;

    width: min(280px, 85vw);

    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    align-items: stretch;

    gap: 4px;

    padding: calc(var(--nav-h) + 12px) 20px 20px;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(25px);

    -webkit-backdrop-filter: blur(25px);

    border-left: 1px solid var(--border);

    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);

    transform: translateX(100%);

    transition: transform .45s cubic-bezier(.22, .61, .36, 1);

    z-index: 1400;

    overflow: hidden;

    pointer-events: none;
    visibility: hidden;
  }

  .nav-links.open {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }

  .nav-links a {

    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;

    padding: 12px 16px;

    border-radius: 12px;

    font-size: 15px;

    font-weight: 600;

    color: var(--text);

    display: flex;

    align-items: center;

    /* Stagger slide-up animation starting state */
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s cubic-bezier(.22, .61, .36, 1), transform 0.4s cubic-bezier(.22, .61, .36, 1), background 0.3s, color 0.3s;
  }

  /* Stagger slide-up active states */
  .nav-links.open a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open a:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.open a:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.open a:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-links.open a:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-links.open a:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-links.open a:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
  }

  .nav-links a.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
  }

  /* Drawer Contact Shortcuts */
  .drawer-shortcuts {
    display: block;
    width: 100%;
    margin-top: auto;
    flex-shrink: 0;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s cubic-bezier(.22, .61, .36, 1) 0.4s, transform 0.4s cubic-bezier(.22, .61, .36, 1) 0.4s;
  }

  .nav-links.open .drawer-shortcuts {
    opacity: 1;
    transform: translateY(0);
  }

  .drawer-shortcuts-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-soft);
    font-weight: 700;
    margin: 0 0 10px;
    text-align: left;
  }

  .drawer-shortcuts-row {
    display: flex;
    gap: 12px;
    width: 100%;
  }

  .drawer-shortcut-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #fff !important;
  }

  .drawer-shortcut-btn svg {
    flex-shrink: 0;
  }

  .drawer-shortcut-btn.call-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 4px 12px var(--hover-glow);
  }

  .drawer-shortcut-btn.wa-btn {
    background: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  }

  .drawer-shortcut-btn:hover {
    transform: translateY(-2px);
  }

  .nav-cta {

    width: 100%;

    margin-top: 4px;
  }

  .nav-cta.btn,
  .nav-cta .btn {

    width: 100%;
    padding: 11px 20px;
    min-height: 42px;
    font-size: 0.9rem;
  }

  /* Backdrop */

  .nav-backdrop {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    backdrop-filter: blur(3px);

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 1300;

    opacity: 0;

    visibility: hidden;

  }

  body.nav-open {

    overflow: hidden;
    touch-action: none;
  }

}

@media (max-width: 480px) {

  .nav-links {
    width: min(260px, 82vw);
    padding: calc(var(--nav-h) + 8px) 16px 16px;
    gap: 3px;
  }

  .nav-links a {
    padding: 10px 14px;
    font-size: 14px;
  }

  .drawer-shortcuts {
    padding-top: 12px;
  }

  .drawer-shortcut-btn {
    padding: 9px 6px;
    font-size: 0.78rem;
  }

  .nav-cta.btn,
  .nav-cta .btn {
    padding: 10px 16px;
    min-height: 40px;
    font-size: 0.85rem;
  }

}

@media (max-width: 992px) and (max-height: 640px) {

  .nav-links {
    padding: calc(var(--nav-h) + 6px) 16px 14px;
    gap: 2px;
  }

  .nav-links a {
    padding: 9px 14px;
    font-size: 14px;
  }

  .drawer-shortcuts {
    padding-top: 10px;
  }

  .drawer-shortcuts-title {
    margin-bottom: 8px;
  }

  .drawer-shortcut-btn {
    padding: 8px 6px;
    font-size: 0.76rem;
  }

  .nav-cta.btn,
  .nav-cta .btn {
    padding: 9px 16px;
    min-height: 38px;
  }

}

/* ---------- Page Gallery (5-Image Grid) ---------- */
.page-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 6px;
}

.page-gallery .gallery-item {
  overflow: hidden;
  position: relative;
}

.page-gallery .gallery-item:first-child {
  grid-row: 1 / 3;
}

.page-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  display: block;
}

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

.page-gallery .gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.7), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.page-gallery .gallery-item:hover::after {
  opacity: 1;
}

.page-gallery .gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-gallery .gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Traveler Experience Overlay Styles */
.page-gallery .gallery-item .gallery-caption .caption-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: goldenrod;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.page-gallery .gallery-item .gallery-caption .caption-experience {
  display: none;
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.page-gallery .gallery-item .gallery-caption .caption-author {
  display: none;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.page-gallery .gallery-item .gallery-caption .caption-stars {
  color: #0284C7;
  margin-left: 4px;
}

/* 5-item layout: first item spans left column full height, remaining 4 fill right side 2x2 */
@media (min-width: 769px) {
  .page-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 8px;
  }

  .page-gallery .gallery-item:first-child {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
  }

  .page-gallery .gallery-item:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
  }

  .page-gallery .gallery-item:nth-child(3) {
    grid-row: 1;
    grid-column: 3;
  }

  .page-gallery .gallery-item:nth-child(4) {
    grid-row: 2;
    grid-column: 2;
  }

  .page-gallery .gallery-item:nth-child(5) {
    grid-row: 2;
    grid-column: 3;
  }

  .page-gallery .gallery-item .gallery-caption {
    padding: 18px 20px;
  }

  .page-gallery .gallery-item .gallery-caption .caption-experience,
  .page-gallery .gallery-item .gallery-caption .caption-author {
    display: block;
  }
}

@media (max-width: 768px) {
  .page-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 160px 160px;
    gap: 4px;
  }

  .page-gallery .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
  }
}

/* ---------- Tourist Experiences Section (all pages) ---------- */
.tourist-experiences .section-head {
  max-width: 680px;
  margin-bottom: 44px;
}

.tourist-experiences .section-head .eyebrow.center {
  gap: 10px;
}

.tourist-experiences .section-head .eyebrow.center::after {
  content: "";
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230369A1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.tourist-experiences .page-gallery {
  gap: 10px;
  align-items: stretch;
}

.tourist-experiences .page-gallery .gallery-item {
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(10, 10, 10, 0.08);
}

.tourist-experiences .page-gallery .gallery-caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-align: left;
}

.tourist-experiences .page-gallery .caption-header {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 8px;
}

.tourist-experiences .page-gallery .caption-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(14, 165, 233, 0.18);
  border: 1.5px solid rgba(14, 165, 233, 0.45);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}

.tourist-experiences .page-gallery .gallery-item[data-icon="temple"] .caption-icon {
  background-color: rgba(14, 165, 233, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284C7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V7l7-4 7 4v14'/%3E%3Cpath d='M9 21v-4h6v4'/%3E%3Cpath d='M9 10h6'/%3E%3C/svg%3E");
}

.tourist-experiences .page-gallery .gallery-item[data-icon="palace"] .caption-icon {
  background-color: rgba(14, 165, 233, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284C7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M6 21V9l6-5 6 5v12'/%3E%3Cpath d='M9 21v-6h6v6'/%3E%3Cpath d='M9 9h6'/%3E%3C/svg%3E");
}

.tourist-experiences .page-gallery .gallery-item[data-icon="backwater"] .caption-icon {
  background-color: rgba(14, 165, 233, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284C7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12c2-1 4-1 6 0s4 1 6 0 4-1 6 0'/%3E%3Cpath d='M2 17c2-1 4-1 6 0s4 1 6 0 4-1 6 0'/%3E%3Cpath d='M2 7c2-1 4-1 6 0s4 1 6 0 4-1 6 0'/%3E%3C/svg%3E");
}

.tourist-experiences .page-gallery .gallery-item[data-icon="hills"] .caption-icon {
  background-color: rgba(14, 165, 233, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284C7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m8 3 4 8 5-5 5 15H2L8 3z'/%3E%3C/svg%3E");
}

.tourist-experiences .page-gallery .gallery-item[data-icon="coast"] .caption-icon {
  background-color: rgba(14, 165, 233, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284C7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='5' r='3'/%3E%3Cpath d='M12 8v2'/%3E%3Cpath d='M4.5 20a7.5 7.5 0 0 1 15 0'/%3E%3Cpath d='M2 20h20'/%3E%3C/svg%3E");
}

.tourist-experiences .page-gallery .gallery-item[data-icon="adventure"] .caption-icon {
  background-color: rgba(14, 165, 233, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284C7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolygon points='16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76'/%3E%3C/svg%3E");
}

.tourist-experiences .page-gallery .gallery-item[data-icon="romance"] .caption-icon {
  background-color: rgba(14, 165, 233, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284C7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E");
}

.tourist-experiences .page-gallery .gallery-item[data-icon="spiritual"] .caption-icon {
  background-color: rgba(14, 165, 233, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284C7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v4'/%3E%3Cpath d='m6 8 2 2'/%3E%3Cpath d='m18 8-2 2'/%3E%3Cpath d='M4 14h16'/%3E%3Cpath d='M6 18h12'/%3E%3Cpath d='M8 22h8'/%3E%3C/svg%3E");
}

.tourist-experiences .page-gallery .gallery-item[data-icon="family"] .caption-icon {
  background-color: rgba(14, 165, 233, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284C7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.tourist-experiences .page-gallery .gallery-item[data-icon="heritage"] .caption-icon {
  background-color: rgba(14, 165, 233, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284C7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}

.tourist-experiences .page-gallery .gallery-item[data-icon="beach"] .caption-icon {
  background-color: rgba(14, 165, 233, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284C7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v1'/%3E%3Cpath d='M12 21v-1'/%3E%3Cpath d='M3 12h1'/%3E%3Cpath d='M20 12h1'/%3E%3Cpath d='M5.6 5.6l.7.7'/%3E%3Cpath d='M17.7 17.7l.7.7'/%3E%3Cpath d='M5.6 18.4l.7-.7'/%3E%3Cpath d='M17.7 6.3l.7-.7'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3C/svg%3E");
}

.tourist-experiences .page-gallery .caption-title {
  flex: 1;
  margin-bottom: 0;
  line-height: 1.3;
  text-align: left;
}

.tourist-experiences .page-gallery .caption-experience {
  position: relative;
  width: 100%;
  padding-left: 18px;
  margin: 0 0 10px;
  line-height: 1.5;
  text-align: left;
}

.tourist-experiences .page-gallery .caption-experience::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  color: rgb(237, 145, 6);
  line-height: 1;
}

.tourist-experiences .page-gallery .caption-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
}

.tourist-experiences .page-gallery .caption-author {
  flex: 1;
  min-width: 0;
}

.tourist-experiences .page-gallery .caption-stars {
  flex-shrink: 0;
  margin-left: 0;
  letter-spacing: 1px;
  font-size: 0.72rem;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .tourist-experiences .page-gallery {
    gap: 12px;
    grid-template-rows: 300px 300px;
  }

  .tourist-experiences .page-gallery .gallery-item .gallery-caption {
    padding: 20px 22px;
  }

  .tourist-experiences .page-gallery .gallery-item:first-child .gallery-caption {
    padding: 24px 26px;
  }

  .tourist-experiences .page-gallery .gallery-item:first-child .caption-icon {
    width: 38px;
    height: 38px;
    background-size: 20px 20px;
  }

  .tourist-experiences .page-gallery .gallery-item:first-child .caption-title {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .tourist-experiences .section-head {
    margin-bottom: 28px;
  }

  .tourist-experiences .page-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(200px, 240px) minmax(150px, 180px) minmax(150px, 180px);
    gap: 8px;
  }

  .tourist-experiences .page-gallery .gallery-item {
    border-radius: 12px;
  }

  .tourist-experiences .page-gallery .gallery-item::after {
    opacity: 1;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.45) 55%, transparent 100%);
  }

  .tourist-experiences .page-gallery .gallery-item .gallery-caption {
    opacity: 1;
    transform: none;
    padding: 12px 14px;
  }

  .tourist-experiences .page-gallery .gallery-item:first-child .gallery-caption {
    padding: 14px 16px;
  }

  .tourist-experiences .page-gallery .caption-header {
    gap: 8px;
    margin-bottom: 6px;
  }

  .tourist-experiences .page-gallery .caption-icon {
    width: 28px;
    height: 28px;
    background-size: 15px 15px;
  }

  .tourist-experiences .page-gallery .caption-title {
    font-size: 0.82rem;
  }

  .tourist-experiences .page-gallery .gallery-item:first-child .caption-title {
    font-size: 0.9rem;
  }

  .tourist-experiences .page-gallery .gallery-item .gallery-caption .caption-experience {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.72rem;
    margin-bottom: 8px;
    padding-left: 14px;
  }

  .tourist-experiences .page-gallery .gallery-item .gallery-caption .caption-experience::before {
    font-size: 1.1rem;
  }

  .tourist-experiences .page-gallery .gallery-item .gallery-caption .caption-author {
    display: block;
    font-size: 0.68rem;
  }

  .tourist-experiences .page-gallery .caption-footer {
    gap: 4px;
  }

  .tourist-experiences .page-gallery .caption-stars {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .tourist-experiences .page-gallery {
    grid-template-rows: minmax(180px, 220px) minmax(130px, 160px) minmax(130px, 160px);
    gap: 6px;
  }

  .tourist-experiences .page-gallery .gallery-item .gallery-caption {
    padding: 10px 12px;
  }

  .tourist-experiences .page-gallery .gallery-item .gallery-caption .caption-experience {
    -webkit-line-clamp: 1;
    margin-bottom: 6px;
  }
}

/* =========================================================
   SERVICES PAGE - ATTRACTIVE ICON BADGES
   ========================================================= */
.services-offer .glass-card {
  padding-top: 40px;
}

.services-offer .glass-card .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary) 65%, var(--luxury) 130%);
  box-shadow: 0 10px 24px -8px rgba(11, 29, 58, 0.45), inset 0 0 0 1px rgba(14, 165, 233, 0.35);
  position: relative;
  transition: transform 0.4s cubic-bezier(.22, .61, .36, 1), box-shadow 0.4s ease;
}

.services-offer .glass-card .icon-wrap::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(14, 165, 233, 0.55);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.services-offer .glass-card .icon-wrap svg {
  width: 30px;
  height: 30px;
  color: var(--luxury);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
  transition: color 0.35s ease;
}

.services-offer .glass-card:hover .icon-wrap {
  transform: translateY(-6px) scale(1.08) rotate(-4deg);
  box-shadow: 0 16px 32px -10px rgba(11, 29, 58, 0.55), inset 0 0 0 1px rgba(14, 165, 233, 0.6);
}

.services-offer .glass-card:hover .icon-wrap::after {
  opacity: 1;
  transform: scale(1);
}

.services-offer .glass-card:hover .icon-wrap svg {
  color: #fff;
}

@media (max-width: 992px) {
  .services-offer .glass-card .icon-wrap {
    width: 100%;
    height: 96px;
    border-radius: 18px;
    margin-bottom: 18px;
  }

  .services-offer .glass-card .icon-wrap::after {
    border-radius: 18px;
  }

  .services-offer .glass-card .icon-wrap svg {
    width: 32px;
    height: 32px;
  }
}

/* =========================================================
   CONTACT & BOOK NOW PAGES - CURVED EDGES & RESPONSIVENESS
   ========================================================= */

/* Curve the rectangle box edges on contact and booknow pages alone */
.contact-page .glass-card,
.booknow-page .glass-card,
.contact-page .map-embed,
.booknow-page .confirmation-card {
  border-radius: 16px;
}

.contact-page input,
.contact-page select,
.contact-page textarea,
.booknow-page input,
.booknow-page select,
.booknow-page textarea {
  border-radius: 8px;
}

/* Align layout on mobile and eliminate unwanted side space (overflow) */
@media (max-width: 768px) {

  /* Override inline paddings to prevent side squeezing and horizontal overflow */
  .contact-page .glass-card,
  .booknow-page .glass-card {
    padding: 24px 16px !important;
  }

  /* Make form columns stack vertically in a single column on mobile */
  .contact-page .form-grid,
  .booknow-page .form-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FORM VALIDATION ERRORS
   ========================================================= */
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15) !important;
}

.field.has-error label {
  color: #ef4444 !important;
}

.error-msg {
  color: #ef4444;
  font-size: 0.76rem;
  font-weight: 600;
  margin-top: 5px;
  display: block;
  animation: fadeInError 0.2s ease-out;
}

@keyframes fadeInError {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}