/* ================= GLOBAL DESIGN SYSTEM ================= */
:root {
  --primary: #d97b06;
  --primary-hover: #b45309;
  --primary-light: #fef3c7;
  --primary-glow: rgba(217, 123, 6, 0.35);
  --dark: #120e0b;
  --dark-surface: #1e1713;
  --text-main: #2b2520;
  --text-muted: #6b635b;
  --bg-body: #faf7f2;
  --bg-card: #ffffff;
  --border-light: rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ================= TOPBAR ================= */
.topbar {
  background: var(--dark);
  color: #eeddcc;
  font-size: 13px;
  padding: 8px 16px;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.live-pill {
  background: rgba(217, 123, 6, 0.25);
  color: #f59e0b;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 6px;
}

.topbar a {
  color: #f59e0b;
  font-weight: 600;
  transition: opacity 0.2s;
}

.topbar a:hover {
  opacity: 0.8;
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn-nav {
  background: var(--primary);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 30px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-nav:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
}

@media (max-width: 860px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
}

/* ================= CAROUSEL ================= */
.carousel {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  background: #000;
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  max-width: 820px;
  color: #fff;
  transform: translateY(16px);
  animation: slideUpFade 0.9s 0.2s forwards ease;
}

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

.slide-kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.slide-content h1 {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.2rem;
  color: #f3f0eb;
  margin-bottom: 28px;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.slide-btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow.prev { left: 24px; }
.carousel-arrow.next { right: 24px; }

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

/* Targets span.dot generated by main.js */
.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dots .dot.active {
  background: var(--primary);
  width: 26px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .carousel { height: 75vh; }
  .slide-content h1 { font-size: 2.2rem; }
  .slide-content p { font-size: 1rem; }
  .carousel-arrow { display: none; }
}

/* ================= BUTTONS ================= */
.btn-primary {
  background: var(--primary);
  color: #ffffff; /* removed !important so outline classes can override it */
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 6px 18px var(--primary-glow);
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-secondary-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.2s ease;
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.3);
}

.btn-outline {
  background: #ffffff;
  color: var(--primary-hover) !important; /* clearly visible dark amber text */
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff !important;
  border-color: var(--primary);
}

/* ================= OFFER / CATEGORY STRIP ================= */
.offer-strip {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 14px 20px;
  position: relative;
  z-index: 10;
}

.offer-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #fdfbf7;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.offer-item:hover {
  background: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.offer-item.highlight-item {
  background: var(--primary-light);
  border-color: #fcd34d;
}

.icon-bubble {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}

.offer-text strong {
  display: block;
  font-size: 14px;
  color: var(--dark);
}

.offer-text span {
  font-size: 11px;
  color: var(--text-muted);
}

/* ================= ATTRACTIONS CHIP STRIP ================= */
.chip-strip-wrap {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.chip-strip-header span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

.chip-strip {
  display: flex;
  gap: 8px;
  white-space: nowrap;
  padding-bottom: 4px;
}

.chip-pill {
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: 30px;
  color: var(--text-main);
  transition: all 0.2s;
}

.chip-pill:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* ================= SECTION COMMONS ================= */
.section {
  padding: 70px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section.alt {
  background: #f5f0e6;
  max-width: 100%;
  padding: 70px 20px;
}

.section.alt > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}

h2 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.loading {
  color: #999;
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1rem;
  padding: 30px 0;
}

/* ================= WHY US GRID ================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.why-item {
  background: #fff;
  padding: 26px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 123, 6, 0.4);
  box-shadow: var(--shadow-md);
}

.why-icon {
  font-size: 26px;
  margin-bottom: 14px;
}

.why-item h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.why-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ================= SERVICE CARDS (ROOMS, CABS, BOATS) ================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}

.modern-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  position: relative;
}

.modern-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 123, 6, 0.3);
}

.card-media {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #eee;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.modern-card:hover .card-media img {
  transform: scale(1.06);
}

.media-badge {
  position: absolute;
  top: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.tag-type {
  left: 14px;
  background: rgba(18, 14, 11, 0.75);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tag-boat {
  left: 14px;
  background: rgba(10, 45, 90, 0.85);
  color: #cde4ff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.tag-discount {
  right: 14px;
  background: #e11d48;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(225, 29, 72, 0.35);
}

.modern-card .card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.card-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fffbeb;
  border: 1px solid #fef3c7;
  padding: 3px 8px;
  border-radius: 6px;
}

.card-rating .star-icon {
  color: #f59e0b;
  font-size: 13px;
}

.card-rating .rating-num {
  font-size: 12px;
  font-weight: 700;
  color: #92400e;
}

.card-rating .rating-badge {
  font-size: 10px;
  color: #b45309;
  font-weight: 600;
  text-transform: uppercase;
}

.card-spec {
  font-size: 12px;
  font-weight: 600;
  color: #6b635b;
}

.card-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.card-title a {
  transition: color 0.2s;
}

.card-title a:hover {
  color: var(--primary);
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.feature-tag {
  font-size: 11px;
  font-weight: 600;
  background: #f5f2eb;
  color: #554f47;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.card-footer-row {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f0ece6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-wrap {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 11px;
  color: #8c8278;
  text-transform: uppercase;
  font-weight: 600;
}

.price-wrap .price {
  padding: 0;
  font-size: 1.15rem;
}

.price-wrap .price del {
  color: #9ca3af;
  font-size: 0.85rem;
  margin-right: 4px;
}

.price-wrap .price strong {
  color: var(--primary);
  font-size: 1.35rem;
}

.price-unit {
  font-size: 12px;
  color: #6b635b;
  font-weight: 500;
}

.modern-card .book-btn {
  padding: 10px 18px;
  font-size: 0.9rem;
  border-radius: 25px;
  width: auto;
}

/* ================= PROMO BANNER ================= */
.promo-banner-section {
  padding: 40px 20px;
  background: #fdfbf7;
}

.promo-banner-container {
  max-width: 1180px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: 
    linear-gradient(125deg, rgba(18, 14, 11, 0.92) 0%, rgba(18, 14, 11, 0.75) 100%),
    url('/images/banner/kashi2.png') center/cover no-repeat;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(217, 123, 6, 0.35);
  color: #fff;
  padding: 56px 44px;
}

@media (max-width: 768px) {
  .promo-banner-container { padding: 32px 22px; }
}

.promo-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.promo-tag {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
}

.promo-discount-badge {
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.promo-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 14px;
}

.promo-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #ded9d1;
  max-width: 740px;
  margin-bottom: 30px;
}

.promo-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.perk-icon { font-size: 22px; }
.perk-item strong { display: block; font-size: 14px; color: #fff; margin-bottom: 2px; }
.perk-item p { font-size: 12px; color: #c4beb5; margin: 0; }

.promo-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.promo-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #ffd285;
  font-weight: 500;
  margin-left: auto;
}

@media (max-width: 768px) {
  .promo-urgency { margin-left: 0; width: 100%; }
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 9px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ================= ATTRACTIONS GRID ================= */
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.attraction-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 180px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}

.attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.attraction-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.attraction-card:hover img {
  transform: scale(1.05);
}

.attraction-card p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  padding: 24px 12px 10px;
  font-weight: 600;
  text-align: center;
  font-size: 0.95rem;
}

.view-all-wrap {
  text-align: center;
  margin-top: 36px;
}

/* ================= ABOUT SECTION ================= */
.about-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.about-visual {
  background: linear-gradient(135deg, var(--dark), var(--dark-surface));
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  align-self: flex-start;
}

.about-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: #f7e6ce;
  line-height: 1.5;
}

.about-text-wrap {
  padding: 44px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.about-stats {
  display: flex;
  gap: 30px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.stat-box strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 800;
}

.stat-box span {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 820px) {
  .about-card { grid-template-columns: 1fr; }
  .about-text-wrap { padding: 30px 24px; }
  .about-visual { padding: 30px 24px; }
}

/* ================= TESTIMONIALS ================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.testimonial-card .stars {
  color: #f59e0b;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 18px;
}

.guest-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guest-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guest-author strong {
  display: block;
  font-size: 14px;
  color: var(--dark);
}

.guest-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ================= FAQS ACCORDION ================= */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.faq-q span {
  color: var(--primary);
  font-size: 1.4rem;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-q span {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.open .faq-a {
  max-height: 250px;
  padding-bottom: 20px;
}

/* ================= CONTACT FORM ================= */
.contact-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.booking-form {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row.full {
  grid-column: 1 / -1;
}

.booking-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  border: 1.5px solid #e5e0d8;
  border-radius: var(--radius-sm);
  background: #fdfbf7;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--primary);
  background: #fff;
}

.checkbox-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  cursor: pointer;
  background: #f5f0e6;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-light);
  transition: all 0.2s;
}

.chip:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-hover);
}

.chip input[type="checkbox"] {
  width: auto;
  accent-color: var(--primary);
}

.selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.selected-items:empty {
  margin-top: 0;
}

.selected-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid var(--primary);
  color: var(--primary-hover);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}

.selected-tag .remove-tag {
  cursor: pointer;
  font-weight: 700;
  color: #c0392b;
}

.btn-submit-glow {
  grid-column: 1 / -1;
  padding: 16px;
  font-size: 1.05rem;
  box-shadow: 0 8px 24px var(--primary-glow);
}

.form-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -6px;
}

#formMsg {
  grid-column: 1 / -1;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 640px) {
  .booking-form {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }
}

/* ================= FOOTER ================= */
.footer {
  background: var(--dark);
  color: #eeddcc;
  padding: 70px 20px 24px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 12px;
}

.footer-logo span { color: var(--primary); }

.footer-desc {
  font-size: 0.95rem;
  color: #b8aba0;
  max-width: 380px;
  margin-bottom: 18px;
}

.footer-contact {
  font-size: 14px;
  margin-bottom: 6px;
  color: #d6cbbf;
}

.footer h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer a {
  color: #b8aba0;
  font-size: 0.95rem;
  line-height: 2.1;
  transition: color 0.2s;
}

.footer a:hover { color: var(--primary); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.copyright {
  font-size: 13px;
  color: #8c8278;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ================= FLOATING ACTION & BACK TO TOP ================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  font-size: 18px;
  cursor: pointer;
  display: none;
  transition: all 0.2s;
}

.back-to-top.show {
  display: block;
}

.back-to-top:hover {
  background: var(--primary);
  color: #fff;
}

/* ================= DETAIL PAGES (ROOM, CAB, BOAT) ================= */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  font-size: 0.85rem;
  color: #888;
}

.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: #555; }

.detail-section { padding-top: 10px; }

.gallery-wrapper {
  margin-bottom: 24px;
}

.detail-hero {
  max-width: 1200px;
  margin: 0 auto 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-height: 440px;
  background: #eee;
  cursor: zoom-in;
  position: relative;
}

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

.zoom-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 4px;
  pointer-events: none;
}

.thumbnail-strip {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.thumb-img {
  width: 90px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}

.thumb-img:hover,
.thumb-img.active {
  opacity: 1;
  border-color: var(--primary);
}

.detail-body {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
}

.detail-main h1 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.detail-tags {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.detail-desc {
  color: #555;
  line-height: 1.7;
  margin: 14px 0;
}

.detail-main h3 {
  margin: 22px 0 10px;
  color: var(--dark);
}

.highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-list li {
  padding-left: 26px;
  position: relative;
  color: #444;
  line-height: 1.5;
}

.highlight-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.link-inline {
  display: inline-block;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 600;
}

.detail-sidebar {
  align-self: start;
  position: sticky;
  top: 90px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.btn-full {
  width: 100%;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}

.btn-whatsapp-outline {
  display: block;
  text-align: center;
  border: 2px solid #25D366;
  color: #1ea952 !important;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.btn-whatsapp-outline:hover {
  background: #25D366;
  color: #fff !important;
}

@media (max-width: 768px) {
  .detail-body { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
}

/* ================= LIGHTBOX MODAL ================= */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 85vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
}

.lightbox-counter {
  color: #fff;
  margin-top: 12px;
  font-size: 15px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
/* ================= HERO CAROUSEL (COMPACT) ================= */
.carousel {
  position: relative;
  height: 58vh;          /* Reduced from 80vh */
  min-height: 400px;     /* Reduced from 500px */
  overflow: hidden;
  background: #000;
}

.slide-content h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;     /* Reduced from 3.2rem */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;   /* Reduced from 16px */
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.05rem;    /* Reduced from 1.2rem */
  color: #f3f0eb;
  margin-bottom: 20px;   /* Reduced from 28px */
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.slide-kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .carousel { 
    height: 50vh;        /* Reduced from 75vh */
    min-height: 350px;
  }
  .slide-content h1 { font-size: 1.85rem; }
  .slide-content p { font-size: 0.95rem; }
}
/* ================= SPINNER & LOADERS ================= */
.loader-container {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  gap: 14px;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(217, 123, 6, 0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: kkSpin 0.75s linear infinite;
}

@keyframes kkSpin {
  to {
    transform: rotate(360deg);
  }
}

.loader-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

.no-data,
.loading-error {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.95rem;
  padding: 40px 20px;
  color: var(--text-muted);
}

.loading-error {
  color: #c0392b;
  font-weight: 600;
}

/* Advertisement Section Styling */
.ad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.ad-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.ad-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.ad-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.ad-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ad-card:hover .ad-img-wrapper img {
  transform: scale(1.03);
}

.ad-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e8900a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.ad-content {
  padding: 16px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ad-content h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: #222;
}

.ad-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0 0 16px;
  flex: 1;
}

.ad-btn {
  display: inline-block;
  text-align: center;
  background: #e8900a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.ad-btn:hover {
  background: #cf7c03;
}
.ad-img-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.ad-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  transition: transform 0.3s ease;
}