/* =============================================
   KERALA LUXURY HOUSEBOAT — STYLE.CSS
   ============================================= */

/* ---------- Font Awesome — font-display swap to avoid invisible icons ---------- */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-brands-400.woff2') format('woff2');
}

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-ocean: #0F4C81;
  --color-ocean-dark: #0a3560;
  --color-emerald: #1F7A5C;
  --color-sand: #D4A373;
  --color-sunset: #F4A261;
  --color-cream: #F8F5F0;
  --color-white: #ffffff;
  --color-dark: #1B1B1B;
  --color-dark-80: rgba(27,27,27,0.8);
  --color-glass: rgba(255,255,255,0.1);
  --color-glass-border: rgba(255,255,255,0.18);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  --container-max: 1240px;
  --section-pad: 6rem 0;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(15,76,129,0.08);
  --shadow-md: 0 8px 32px rgba(15,76,129,0.14);
  --shadow-lg: 0 20px 60px rgba(15,76,129,0.22);

  --transition: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --navbar-h: 80px;
  --z-loader: 9999;
  --z-cursor: 9998;
  --z-navbar: 1000;
  --z-mobile-nav: 999;
  --z-float: 100;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-cream);
  overflow-x: hidden;
  cursor: none;
  word-break: break-word;
  -webkit-text-size-adjust: 100%;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  border: 2px solid #e2d9d0;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  background: #fff;
  color: var(--color-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-ocean);
  box-shadow: 0 0 0 3px rgba(15,76,129,0.15);
}
textarea { resize: vertical; }

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-cream); }
::-webkit-scrollbar-thumb { background: var(--color-ocean); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-ocean-dark); }

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-sand), var(--color-sunset));
  z-index: calc(var(--z-navbar) + 10);
  transition: width 0.1s linear;
}

/* ---------- Custom Cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: var(--z-cursor);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--color-sand);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 2px solid rgba(212,163,115,0.6);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}
.cursor-ring.cursor-ring--hover {
  width: 48px; height: 48px;
  border-color: var(--color-sand);
}
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ---------- Layout Utilities ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-pad { padding: var(--section-pad); position: relative; }
.bg-cream { background-color: var(--color-cream); }
.bg-ocean { background-color: var(--color-ocean); }
.bg-ocean-dark { background-color: var(--color-ocean-dark); }
.bg-white { background-color: var(--color-white); }

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-emerald);
  margin-bottom: 0.75rem;
}
.section-label--light  { color: #F0C080; }
.section-label--green  { color: #52D99A; } /* bright emerald for dark backgrounds */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 1rem;
}
.section-title--light { color: var(--color-white); }
.section-sub {
  font-size: 1.05rem;
  color: #444444;
  max-width: 620px;
  line-height: 1.7;
}
.section-sub--light { color: rgba(255,255,255,0.93); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-sub { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-15deg);
  transition: left 0.5s ease;
}
.btn:hover::after { left: 150%; }
.btn-sand {
  background: linear-gradient(135deg, var(--color-sand), var(--color-sunset));
  color: var(--color-dark);
  box-shadow: 0 4px 20px rgba(212,163,115,0.4);
}
.btn-sand:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,163,115,0.5);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--color-white);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- Glass Card ---------- */
.glass-card {
  background: var(--color-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
}
.glass-card-dark {
  background: rgba(15,76,129,0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
}

/* ---------- Wave Divider ---------- */
.wave-divider {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; line-height: 0;
  overflow: hidden;
  z-index: 2;
}
.wave-divider svg { width: 100%; height: 80px; display: block; }

/* =============================================
   LOADING SCREEN
   ============================================= */
.loader {
  position: fixed;
  inset: 0;
  background: #010818;
  z-index: var(--z-loader);
  overflow: hidden;
  transition: opacity 0.9s ease;
}
.loader--hidden { opacity: 0; pointer-events: none; }

/* Full-screen SVG night scene */
.loader__scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Sailboat gentle float + rock */
.loader__boat {
  animation: boatFloat 3.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: 50% 90%;
}
@keyframes boatFloat {
  0%,100% { transform: translateY(0px)   rotate(-0.6deg); }
  25%      { transform: translateY(-5px)  rotate(-0.2deg); }
  50%      { transform: translateY(-11px) rotate(0.7deg);  }
  75%      { transform: translateY(-5px)  rotate(0.2deg);  }
}

/* Star twinkling */
.star-twinkle   { animation: starPulse 2.6s ease-in-out infinite; }
.star-twinkle-2 { animation: starPulse 3.5s ease-in-out infinite 1.1s; }
@keyframes starPulse {
  0%,100% { opacity: 0.9; }
  50%      { opacity: 0.18; }
}

/* Brand text — centered in the upper sky area */
.loader__brand {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-white);
  z-index: 10;
  animation: brandReveal 1.2s ease 0.4s both;
  pointer-events: none;
  width: max-content;
  max-width: 90vw;
}
@keyframes brandReveal {
  from { opacity: 0; transform: translate(-50%, -62%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}
.loader__brand-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #F0C080;
  margin-bottom: 0.75rem;
}

.loader__logo-text {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 0 60px rgba(15,76,129,0.5);
}
.loader__logo-sub {
  display: block;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 0.4rem;
  margin-bottom: 0.35rem;
}
.loader__brand-line {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.loader__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.loader__dots span {
  width: 9px; height: 9px;
  background: var(--color-sand);
  border-radius: 50%;
  animation: dotBounce 1.3s ease infinite;
}
.loader__dots span:nth-child(2) { animation-delay: 0.2s; }
.loader__dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
  0%,80%,100% { transform: translateY(0);    opacity: 0.55; }
  40%          { transform: translateY(-11px); opacity: 1;    }
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 16px rgba(15,76,129,0.10);
  z-index: var(--z-navbar);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar--scrolled {
  background: rgba(255,255,255,1);
  box-shadow: 0 4px 24px rgba(15,76,129,0.18);
}
.navbar__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1.5rem;
}
.navbar__logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  flex-shrink: 0;
}
.navbar__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  /* logo sits on white navbar — no shadow needed */
  transition: transform var(--transition), opacity var(--transition);
}
.navbar__logo:hover .navbar__logo-img {
  transform: scale(1.05);
  opacity: 0.88;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  color: var(--color-ocean);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0.7rem; right: 0.7rem;
  height: 2px;
  background: var(--color-ocean);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--color-ocean-dark); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.navbar__cta { margin-left: 0.5rem; padding: 0.55rem 1.25rem; font-size: 0.875rem; }
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-ocean);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--color-ocean-dark);
  z-index: var(--z-mobile-nav);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__link {
  display: block;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: color var(--transition);
}
.mobile-nav__link:hover { color: var(--color-sand); }
.mobile-nav__cta { margin-top: 1.5rem; font-size: 1rem; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Offset the fixed navbar so content is never hidden behind it */
  padding-top: var(--navbar-h);
  padding-bottom: 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?w=1440&q=75&fm=webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
@media (hover: none) {
  .hero__bg { background-attachment: scroll; }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,53,96,0.88) 0%,
    rgba(15,76,129,0.75) 40%,
    rgba(27,27,27,0.65) 100%
  );
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  /* padding-top handled by .hero so content centres cleanly below navbar */
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  width: 100%;
}
.hero__content { color: var(--color-white); }
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.hero__title span { color: var(--color-sand); }
.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  color: var(--color-white);
  animation: float 4s ease-in-out infinite;
  transition: transform var(--transition);
}
.stat-card:nth-child(1) { animation-delay: 0s; }
.stat-card:nth-child(2) { animation-delay: 0.5s; }
.stat-card:nth-child(3) { animation-delay: 1s; }
.stat-card:nth-child(4) { animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.stat-card__icon { font-size: 1.75rem; color: var(--color-sand); }
.stat-card__num { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; line-height: 1; }
.stat-card__label { font-size: 0.8rem; opacity: 0.85; line-height: 1.3; }
.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3; line-height: 0;
}
.hero__wave svg { width: 100%; height: 80px; display: block; }

/* =============================================
   ABOUT
   ============================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 5rem;
}
.about__lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-ocean);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about__body {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about__features { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.about__feat {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #3a3a3a;
}
.about__feat i { color: var(--color-emerald); margin-top: 2px; flex-shrink: 0; }
.about__counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.counter-item { text-align: center; }
.counter-item p { font-size: 0.78rem; color: #555; margin-top: 0.25rem; }
.counter {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-ocean);
}
.counter-suffix { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-ocean); font-weight: 700; }
.about__images {
  position: relative;
  padding: 1rem;
}
.about__img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about__img-secondary {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 220px; height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-md);
}
.about__badge {
  position: absolute;
  top: 1.5rem; left: -1.5rem;
  background: var(--color-ocean);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}
.about__badge i { font-size: 1.5rem; color: var(--color-sand); }

/* =============================================
   HOUSEBOAT CATEGORIES
   ============================================= */
.boat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  overflow: visible;
}
.boat-card {
  display: flex;
  flex-direction: column;
  background: var(--color-ocean-dark);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  min-width: 0;
}
.boat-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.boat-card--featured {
  transform: translateY(-1rem);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  border-color: var(--color-sand);
}
.boat-card--featured:hover { transform: translateY(calc(-1rem - 6px)); }
.boat-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--color-sand);
  color: var(--color-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  z-index: 2;
}
.boat-card__img-wrap {
  height: 220px;
  overflow: hidden;
}
.boat-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.boat-card:hover .boat-card__img-wrap img { transform: scale(1.08); }
.boat-card__body {
  padding: 1.5rem;
  color: var(--color-white);
  display: flex;
  flex: 1;
  flex-direction: column;
  flex: 1;
  min-height: 280px;
}
.boat-card__tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F0C080;
  display: block;
  margin-bottom: 0.4rem;
}
.boat-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.boat-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.boat-card__features li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.95);
}
.boat-card__features i { color: var(--color-sand); font-size: 0.75rem; flex-shrink: 0; }
.feature-note {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.15rem;
}
.boat-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.price-from { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.88); }
.price-amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #F0C080;
}
.price-amount span { font-size: 0.75rem; font-family: var(--font-body); color: rgba(255,255,255,0.88); }

/* Room Tabs */
.packages { margin-top: 2rem; }
.tab-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.35);
  transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--color-sand); color: var(--color-white); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--color-sand), var(--color-sunset));
  border-color: transparent;
  color: var(--color-dark);
}
.tab-content { position: relative; }
.tab-pane {
  display: none;
  text-align: center;
  animation: fadeIn 0.35s ease;
}
.tab-pane.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}
.pkg-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  text-align: left;
}
.pkg-item i { color: var(--color-sand); flex-shrink: 0; }


/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-bottom: 3rem;
}
.why-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  /* fixed equal height */
  min-height: 248px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-card:hover {
  border-color: var(--color-sand);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--color-ocean), var(--color-emerald));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.why-icon i { font-size: 1.4rem; color: var(--color-white); }
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-ocean);
  margin-bottom: 0.5rem;
}
.why-card p { font-size: 0.875rem; color: #3d3d3d; line-height: 1.6; flex: 1; }

/* =============================================
   TIMELINE
   ============================================= */
.timeline__track {
  position: relative;
  padding: 2rem 0 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.timeline__track::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--color-ocean), var(--color-sand));
}
.tl-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.tl-item--right {
  flex-direction: row-reverse;
}
.tl-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 56px;
  background: var(--color-ocean);
  border: 3px solid var(--color-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  flex-shrink: 0;
}
.tl-dot i { color: var(--color-sand); font-size: 1.1rem; }
.tl-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1.5rem;
  width: calc(50% - 3rem);
  color: var(--color-dark);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.tl-item--right .tl-card { margin-left: auto; }
.tl-time {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-emerald);
  display: block;
  margin-bottom: 0.3rem;
}
.tl-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-ocean);
  margin-bottom: 0.4rem;
}
.tl-card p { font-size: 0.875rem; color: #4a4a4a; line-height: 1.65; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.gal-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.35);
  transition: all var(--transition);
}
.gal-btn:hover { border-color: var(--color-sand); color: var(--color-white); }
.gal-btn.active {
  background: linear-gradient(135deg, var(--color-sand), var(--color-sunset));
  border-color: transparent;
  color: var(--color-dark);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-bottom: 3rem;
}
.gal-item {
  position: relative;
  will-change: opacity, transform;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  /* Fixed equal height for every cell */
  height: 280px;
  transition: opacity 0.38s ease, transform 0.38s ease, box-shadow 0.38s ease;
}
.gal-item:hover {
  box-shadow: 0 16px 48px rgba(10,53,96,0.45);
  transform: translateY(-4px) scale(1.01);
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.gal-item:hover img { transform: scale(1.07); }

/* Permanent gradient — text always readable */
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,53,96,0.92) 0%,
    rgba(10,53,96,0.35) 45%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem 1.1rem 1rem;
  gap: 0.3rem;
  transition: background 0.4s ease;
}
.gal-item:hover .gal-overlay {
  background: linear-gradient(
    to top,
    rgba(10,53,96,0.97) 0%,
    rgba(10,53,96,0.55) 55%,
    rgba(10,53,96,0.1) 100%
  );
}

/* Category badge — always visible */
.gal-cat {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-sand);
  background: rgba(212,163,115,0.18);
  border: 1px solid rgba(212,163,115,0.45);
  padding: 0.18rem 0.6rem;
  border-radius: 50px;
}

/* Title — always visible */
.gal-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.gal-item:hover .gal-title { color: var(--color-sand); }

/* =============================================
   TESTIMONIALS
   ============================================= */
/* Extra bottom room: pagination dots + nav buttons stacked below slides */
.testimonials-swiper {
  padding-bottom: 5.5rem !important;
}

/* Equal-height slides — all cards stretch to the tallest one */
.testimonials-swiper .swiper-wrapper { align-items: stretch; }
.testimonials-swiper .swiper-slide   { height: auto; display: flex; }

.testi-card {
  padding: 2rem;
  flex: 1;                  /* fills the slide height */
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testi-stars { color: var(--color-sand); font-size: 0.9rem; display: flex; gap: 2px; }
.testi-card blockquote {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  font-style: italic;
  flex: 1;                  /* pushes author to bottom */
  position: relative;
  padding-top: 0.5rem;
}
/* decorative opening quote */
.testi-card blockquote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: rgba(212,163,115,0.35);
  line-height: 0;
  position: absolute;
  top: 0.6rem;
  left: -0.25rem;
  pointer-events: none;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--color-white); font-size: 0.9rem; }
.testi-author span   { font-size: 0.78rem; color: rgba(255,255,255,0.85); }

/* ---- Swiper overrides — nav buttons below the cards ---- */
:root {
  --swiper-navigation-color: var(--color-sand);
  --swiper-pagination-color: var(--color-sand);
  --swiper-navigation-size: 18px;
}

/* Pagination dots row — sits 3rem from swiper bottom */
.testimonials-swiper .swiper-pagination {
  bottom: 3rem !important;
}
/* Bullets: visual size 10 px, touch area 24 px via transparent padding (WCAG 2.5.5) */
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  padding: 7px !important;
  background-color: rgba(255,255,255,0.35) !important;
  background-clip: content-box !important;
  box-sizing: content-box !important;
  border-radius: 50% !important;
  margin: 0 2px !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background-color: var(--color-sand) !important;
}

/* Nav buttons row — below the dots, centred */
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  top: auto !important;
  bottom: 0 !important;
  width: 46px !important;
  height: 46px !important;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition);
}
.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
  background: rgba(212,163,115,0.25);
  border-color: var(--color-sand);
  transform: scale(1.08);
}
.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after { font-size: 15px !important; }

/* Prev: just left of centre */
.testimonials-swiper .swiper-button-prev {
  left: calc(50% - 58px) !important;
  right: auto !important;
}
/* Next: just right of centre */
.testimonials-swiper .swiper-button-next {
  left: calc(50% + 12px) !important;
  right: auto !important;
}

/* =============================================
   FAQ
   ============================================= */
.faq__inner { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-ocean);
  transition: background var(--transition);
}
.faq-q:hover { background: rgba(15,76,129,0.04); }
.faq-icon { transition: transform 0.4s ease; flex-shrink: 0; font-size: 0.8rem; color: var(--color-emerald); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.75;
}

/* =============================================
   CONTACT
   ============================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.825rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-white);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.68); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-sand);
  box-shadow: 0 0 0 3px rgba(212,163,115,0.2);
  background: rgba(255,255,255,0.15);
}
.form-group select option { background: var(--color-ocean-dark); color: var(--color-white); }

/* Validation states */
.form-group.is-error input,
.form-group.is-error select,
.form-group.is-error textarea {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255,107,107,0.2);
}
.form-group.is-valid input,
.form-group.is-valid select,
.form-group.is-valid textarea {
  border-color: #52e09c;
  box-shadow: 0 0 0 3px rgba(82,224,156,0.15);
}
.form-error {
  font-size: 0.78rem;
  color: #ff9f9f;
  min-height: 1rem;
  display: block;
}
.required-star { color: #ff9f9f; margin-left: 2px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-white);
  transition: background var(--transition);
}
.contact-card:hover { background: rgba(255,255,255,0.18); }
.contact-card i { font-size: 1.5rem; color: var(--color-sand); flex-shrink: 0; }
.contact-card strong { display: block; font-size: 0.875rem; margin-bottom: 0.2rem; }
.contact-card a, .contact-card span { font-size: 0.875rem; color: rgba(255,255,255,0.93); }
.contact-card a:hover { color: var(--color-sand); }
.contact__map {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
}
.contact__map iframe { width: 100%; height: 100%; border: none; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--color-ocean-dark);
  color: rgba(255,255,255,0.9);
  padding-top: 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.footer__logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  /* white-bg logo on dark footer — give it a white backing pill */
  background: rgba(255,255,255,0.96);
  padding: 6px 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.footer__logo:hover .footer__logo-img {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.footer__brand p { font-size: 0.875rem; line-height: 1.7; max-width: 300px; }
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--color-sand);
  border-color: var(--color-sand);
  color: var(--color-dark);
  transform: translateY(-2px);
}
.footer__col h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--color-sand); }
.footer__newsletter p { font-size: 0.875rem; line-height: 1.65; margin-bottom: 1rem; }
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.newsletter-form input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-white);
  border-radius: 50px;
  padding: 0.65rem 1.25rem;
  flex: 1;
  width: auto;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.68); }
.newsletter-form .btn { padding: 0.65rem 1rem; }
.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__contact-info p {
  font-size: 0.825rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__contact-info i { color: var(--color-sand); width: 14px; }
.footer__bottom {
  background: rgba(0,0,0,0.2);
  padding: 1.25rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__bottom p { font-size: 0.825rem; }
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--color-sand); }

/* =============================================
   FLOATING ELEMENTS
   ============================================= */
/* Pulse ring — separate element, composited via transform/opacity (no box-shadow animation) */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: var(--z-float);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.65); }
/* Pulse ring uses a ::before pseudo-element with transform — GPU-composited */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulseGreen 2.5s ease-in-out infinite;
  z-index: -1;
}
.whatsapp-float:hover::before { animation-play-state: paused; }
@keyframes pulseGreen {
  0%, 100% { transform: scale(1);   opacity: 0.7; }
  50%       { transform: scale(1.5); opacity: 0;   }
}
.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* Scroll-to-top button — stacked above WhatsApp (bottom-right) */
.scroll-top {
  position: fixed;
  bottom: 6.25rem;   /* sits above the 60px WhatsApp button + gap */
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-ocean);
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: var(--z-float);
  box-shadow: 0 4px 20px rgba(15,76,129,0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease,
              transform 0.3s ease, background 0.25s ease;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--color-sand);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(212,163,115,0.45);
}
@media (max-width: 768px) {
  .scroll-top { bottom: 10rem; right: 1.25rem; width: 40px; height: 40px; font-size: 0.875rem; }
}

.mobile-booking-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-float);
  background: var(--color-ocean-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-booking-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition);
}
.mobile-booking-bar__btn--call {
  color: var(--color-white);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.mobile-booking-bar__btn--call:hover { background: rgba(255,255,255,0.08); }
.mobile-booking-bar__btn--book {
  background: linear-gradient(135deg, var(--color-sand), var(--color-sunset));
  color: var(--color-dark);
}
.mobile-booking-bar__btn--book:hover { filter: brightness(1.1); }

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-dark);
  color: var(--color-white);
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: calc(var(--z-float) + 10);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  white-space: normal;
  max-width: min(420px, calc(100vw - 2rem));
  text-align: center;
  line-height: 1.4;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* =============================================
   MARQUEE TICKER
   ============================================= */
.marquee-section {
  background: linear-gradient(135deg, var(--color-ocean-dark), var(--color-ocean));
  overflow: hidden;
  padding: 0.9rem 0;
  border-top: 2px solid rgba(212,163,115,0.3);
  border-bottom: 2px solid rgba(212,163,115,0.3);
}
.marquee-track { overflow: hidden; white-space: nowrap; }
.marquee-inner {
  display: inline-block;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-inner span {
  display: inline-block;
  padding: 0 2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-sand);
  text-transform: uppercase;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   VENICE EAST SECTION
   ============================================= */
.venice-section { background: var(--color-ocean); }
.venice__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.venice__para {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.venice__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.venice__card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  backdrop-filter: blur(6px);
}
.venice__card i {
  font-size: 1.5rem;
  color: var(--color-sand);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.venice__card h3 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: white;
  margin-bottom: 0.2rem;
}
.venice__card p { font-size: 0.8rem; color: rgba(255,255,255,0.72); margin: 0; }
.venice__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

/* =============================================
   HOUSEBOATS SECTION — white background
   ============================================= */

/* Packages subsection gets its own dark ocean background */
.houseboats .packages {
  background: linear-gradient(135deg, var(--color-ocean-dark) 0%, var(--color-ocean) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-top: 1rem;
}
/* Tab buttons work on the dark packages background */
.houseboats .tab-btn {
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
}
.houseboats .tab-btn:hover { border-color: var(--color-sand); background: rgba(212,163,115,0.15); }
.houseboats .tab-btn.active { color: var(--color-dark); }

/* Boat card footer with no price — centered button */
.boat-card__footer--centered {
  justify-content: center;
}
.boat-card__footer--centered .btn { width: 100%; text-align: center; justify-content: center; }

/* =============================================
   EFFORTLESS BOOKING SECTION
   ============================================= */
.effortless__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.effortless__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(15,76,129,0.18);
}
.effortless__para {
  color: #3d3d3d;
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.effortless__steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.effortless__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--color-ocean), var(--color-emerald));
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
}
.effortless__step h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 0.2rem;
}
.effortless__step p { font-size: 0.85rem; color: #5a5a5a; margin: 0; }

/* =============================================
   WHY CHOOSE US — 5-card variant
   ============================================= */
.why-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
/* Why section on ocean background */
.why.bg-ocean .why-card {
  background: rgba(255,255,255,0.96);
}
.why.bg-ocean .why-icon {
  background: linear-gradient(135deg, var(--color-ocean-dark), var(--color-emerald));
}

/* =============================================
   SHIKARA BANNER
   ============================================= */
.shikara-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1609828913552-f9138ed9e42d?w=1200&q=75&fm=webp') center/cover no-repeat;
  background-attachment: fixed;
}
@media (hover: none) {
  .shikara-banner { background-attachment: scroll; }
}
.shikara-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,53,96,0.88) 0%, rgba(15,122,92,0.72) 100%);
}
.shikara-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.5rem 6rem; /* 6rem bottom clears the 80px wave divider */
}
.shikara-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: white;
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}
.shikara-banner__sub {
  max-width: 650px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.75;
}

/* =============================================
   KERALA SERENITY SECTION
   ============================================= */
.kerala-serenity__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}
.kerala-serenity__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(15,76,129,0.15);
}
.kerala-serenity__para {
  color: #3d3d3d;
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.kerala-serenity__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.kerala-serenity__feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #3a3a3a;
}
.kerala-serenity__feat i {
  color: var(--color-ocean);
  font-size: 1rem;
  width: 20px;
  flex-shrink: 0;
}

/* =============================================
   ALAPPUZHA PUREST FORM SECTION
   ============================================= */
.alappuzha-section { background: var(--color-ocean); }
.alappuzha__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
.alappuzha__block {
  display: flex;
  gap: 1.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}
.alappuzha__block:hover { background: rgba(255,255,255,0.11); }
.alappuzha__block-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-sand), var(--color-sunset));
  border-radius: 50%;
  margin-top: 0.15rem;
}
.alappuzha__block-icon i { font-size: 1.3rem; color: white; margin: auto; }
.alappuzha__block-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.75rem;
}
.alappuzha__block-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.alappuzha__block-content p:last-child { margin-bottom: 0; }

/* =============================================
   FOOTER — contact column
   ============================================= */
.footer__contact-col h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: white;
  margin-bottom: 1.25rem;
}
.footer__contact-col .footer__contact-info { margin-bottom: 1.5rem; }
.footer__contact-info a {
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
}
.footer__contact-info a:hover { color: var(--color-sand); }
.footer__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-top: 0.5rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* ── Tablet landscape / small desktop (≤ 1100px) ── */
@media (max-width: 1100px) {
  .why-grid       { grid-template-columns: repeat(4, 1fr); }
  .why-grid--5    { grid-template-columns: repeat(3, 1fr); }
  .footer__grid   { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 1.8rem; }
  .venice__grid   { gap: 2.5rem; }
  .effortless__grid { gap: 2.5rem; }
  .kerala-serenity__grid { gap: 2.5rem; }
}

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  :root { --section-pad: 5rem 0; }

  /* Navbar — logo only on tablet/mobile; links & hamburger hidden */
  .navbar__links     { display: none; }
  .navbar__cta       { display: none; }
  .navbar__hamburger { display: none; }
  .mobile-nav        { display: none; }

  /* Centre the logo since it's the only item left */
  .navbar__inner { justify-content: center; }

  /* Hero — offset for the slim logo-only navbar */
  .hero          { padding-top: var(--navbar-h); }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding-top: 1rem;
    padding-bottom: 3rem;
  }
  .hero__subtitle { margin: 0 auto 2rem; max-width: 100%; }
  .hero__actions  { justify-content: center; }
  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: 580px;
    margin: 0 auto;
  }
  .stat-card        { padding: 1.1rem 0.8rem; min-width: 0; }
  .stat-card__num   { font-size: 1.4rem; }
  .stat-card__label { font-size: 0.72rem; }

  /* About */
  .about__grid   { grid-template-columns: 1fr; }
  .about__images { display: none; }

  /* Venice / Effortless / Kerala serenity — stack on tablet */
  .venice__grid          { grid-template-columns: 1fr; gap: 2rem; }
  .venice__image         { order: -1; }
  .venice__image img     { height: 300px; }
  .venice__cards         { grid-template-columns: 1fr 1fr; }
  .effortless__grid      { grid-template-columns: 1fr; gap: 2rem; }
  .effortless__image     { order: -1; }
  .effortless__image img { height: 280px; }
  .kerala-serenity__grid { grid-template-columns: 1fr; gap: 2rem; }
  .kerala-serenity__image { order: -1; }
  .kerala-serenity__image img { height: 280px; }
  .alappuzha__blocks     { grid-template-columns: 1fr; }
  .alappuzha__block      { padding: 1.5rem; }

  /* Houseboats */
  .boat-cards {
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    padding-top: 2rem;
  }
  .boat-card--featured { transform: translateY(-0.75rem); }

  /* Why Choose Us */
  .why-grid    { grid-template-columns: repeat(4, 1fr); }
  .why-grid--5 { grid-template-columns: repeat(3, 1fr); }
  .why-card    { min-width: 0; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ── Tablet portrait (≤ 900px) ── */
@media (max-width: 900px) {
  /* Boat cards → single column */
  .boat-cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .boat-card--featured       { transform: none; }
  .boat-card--featured:hover { transform: translateY(-6px); }
  .boat-card__body           { min-height: auto; }

  /* Why Choose Us → 2 cols */
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .why-grid--5 { grid-template-columns: repeat(2, 1fr); }

  /* Packages → 2 cols */
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }

  /* Section padding tighter */
  :root { --section-pad: 4.5rem 0; }
}

/* ── Tablet small / large mobile (≤ 768px) ── */
@media (max-width: 768px) {
  :root { --section-pad: 4rem 0; }

  /* Body offset for sticky bar */
  body { padding-bottom: 0; }
  .mobile-booking-bar { display: flex; }
  /* Footer absorbs the sticky-bar height so its dark bg fills the gap */
  .footer { padding-bottom: 68px; }
  .whatsapp-float     { bottom: 5.5rem; right: 1.25rem; }

  /* Container — tighter padding */
  .container { padding: 0 1rem; }

  /* Hero */
  .hero           { padding-top: var(--navbar-h); }
  .hero__title    { font-size: clamp(1.8rem, 6.5vw, 2.8rem); }
  .hero__subtitle { font-size: 0.9rem; }
  .hero__stats    { grid-template-columns: repeat(2, 1fr); max-width: 380px; gap: 0.75rem; }
  .hero__actions  { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Section typography */
  .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .section-sub   { font-size: 0.9rem; }

  /* About */
  .about__lead { font-size: 0.95rem; }

  /* Boat cards */
  .boat-cards { max-width: 340px; gap: 1rem; }

  /* Packages tabs */
  .tab-nav  { gap: 0.35rem; flex-wrap: wrap; justify-content: center; }
  .tab-btn  { padding: 0.45rem 0.85rem; font-size: 0.78rem; }
  .pkg-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }

  /* Why → 2 cols */
  .why-grid    { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .why-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .why-card    { min-height: 200px; padding: 1.5rem 1rem; }
  .why-icon    { width: 52px; height: 52px; }
  .why-card h3 { font-size: 0.92rem; }

  /* Timeline */
  .timeline__track::before { left: 24px; transform: none; }
  .tl-item, .tl-item--right {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 68px;
  }
  .tl-dot {
    position: absolute;
    left: 0; top: 0;
    transform: none;
    width: 48px; height: 48px;
  }
  .tl-card             { width: 100%; }
  .tl-item--right .tl-card { margin-left: 0; }

  /* Gallery */
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .gal-item        { height: 240px; }
  .gal-title       { font-size: 0.875rem; }
  .gallery-filters { gap: 0.35rem; }
  .gal-btn         { padding: 0.35rem 0.75rem; font-size: 0.78rem; }

  /* Testimonials */
  .testi-card          { padding: 1.25rem; min-height: 280px; }
  .testi-card blockquote { font-size: 0.82rem; }

  /* FAQ */
  .faq__inner { max-width: 100%; }
  .faq-q      { font-size: 0.875rem; padding: 0.9rem 1rem; gap: 0.75rem; }
  .faq-a p    { padding: 0 1rem 1rem; font-size: 0.85rem; }

  /* Contact */
  .form-row     { grid-template-columns: 1fr; gap: 0; }
  .contact__map { height: 180px; }

  /* Footer */
  .footer__grid         { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 0.5rem; }
  .footer__legal        { justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
  .footer__brand p      { max-width: 100%; }

  /* Buttons */
  .btn { padding: 0.75rem 1.4rem; font-size: 0.875rem; }
}

/* ── Mobile (≤ 540px) ── */
@media (max-width: 540px) {
  .container { padding: 0 0.85rem; }

  /* Hero */
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .stat-card   { padding: 0.85rem 0.65rem; }
  .stat-card__num { font-size: 1.25rem; }

  /* Boat cards */
  .boat-cards { max-width: 100%; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .why-card { min-height: 190px; }

  /* Gallery */
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .gal-item        { height: 220px; }

  /* Packages */
  .pkg-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }

  /* Tab nav */
  .tab-nav { flex-wrap: wrap; justify-content: center; gap: 0.3rem; }
  .tab-btn { padding: 0.4rem 0.7rem; font-size: 0.75rem; }

  /* Contact cards */
  .contact-card   { padding: 0.9rem 1rem; gap: 0.75rem; }
  .contact-card i { font-size: 1.2rem; }
  .contact-card strong, .contact-card a, .contact-card span { font-size: 0.82rem; }

  /* Footer */
  .footer__grid       { grid-template-columns: 1fr; gap: 1.5rem; }
  .newsletter-form    { flex-direction: column; }
  .newsletter-form input { border-radius: var(--radius-sm); width: 100%; }
  .newsletter-form .btn  { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

  /* Mobile bar */
  .mobile-booking-bar__btn { padding: 0.8rem; font-size: 0.82rem; }
}

/* ── Small mobile (≤ 400px) ── */
@media (max-width: 400px) {
  .container { padding: 0 0.75rem; }

  .hero__title { font-size: 1.65rem; }
  .hero__actions .btn { max-width: 100%; }

  .why-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .why-card { min-height: auto; padding: 1.25rem 1rem; }

  .gallery-masonry { grid-template-columns: 1fr; gap: 0.65rem; }
  .gal-item        { height: 210px; }

  .boat-cards { max-width: 100%; }
  .tab-btn    { font-size: 0.72rem; padding: 0.35rem 0.6rem; }

  .tl-item, .tl-item--right { padding-left: 60px; }
  .tl-dot   { width: 42px; height: 42px; }
  .tl-dot i { font-size: 0.85rem; }

  .footer__legal { flex-direction: column; gap: 0.4rem; text-align: center; }
  .footer__grid  { gap: 1.25rem; }

  /* Loader brand on tiny screens */
  .loader__logo-text { font-size: 1.75rem; }
  .loader__logo-sub  { font-size: 0.65rem; letter-spacing: 0.18em; }
  .loader__brand-tag { font-size: 0.6rem; }
  .loader__brand     { top: 25%; }

  .shikara-banner        { min-height: auto; }
  .shikara-banner__inner { padding: 2.5rem 1.25rem 5.5rem; }
  .shikara-banner__title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .venice__cards         { grid-template-columns: 1fr; gap: 0.75rem; }
  .houseboats .packages  { padding: 2rem 1.25rem; }
}
