/* ============================================================
   PINILI VILLA — Main Stylesheet
   style.css
   ============================================================ */

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal: #3a9eaf;
  --teal-dark: #2d8496;
  --teal-light: #5bb8c7;
  --navy: #1e3a4a;
  --cream: #edeae0;
  --cream-dark: #e2ddd2;
  --white: #ffffff;
  --text-muted: #7a8a90;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(237, 234, 224, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58, 158, 175, 0.12);
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(237, 234, 224, 0.97);
  box-shadow: 0 2px 20px rgba(30, 58, 74, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 50px;
  /* Slightly larger than before so your logo is readable */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Removed the blue gradient and border-radius used for the emoji */
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Ensures the logo doesn't get stretched or squished */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-book {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem !important;
  box-shadow: 0 4px 14px rgba(58, 158, 175, 0.35);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
}

.btn-book::after {
  display: none !important;
}

.btn-book:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(58, 158, 175, 0.45) !important;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--navy);
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Darker, richer gradient at the bottom to ground the text */
  background: linear-gradient(to bottom,
      rgba(10, 25, 35, 0.2) 0%,
      rgba(10, 25, 35, 0.4) 40%,
      rgba(10, 25, 35, 0.8) 100%);
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  width: 20px;
  height: 1.4rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeUp 1s ease both, floatText 6s ease-in-out infinite;
  /* Added float */
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  /* Stronger text shadow for better contrast */
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(58, 158, 175, 0.5);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 158, 175, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ─── SHARED EYEBROW ─── */
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════
   ABOUT — new centered column layout
═══════════════════════════════════════════ */
.about {
  padding: 90px 48px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* 1. Top header */
.about-header {
  margin-bottom: 52px;
}

.about-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-top: 10px;
}

/* 2. Rotating carousel stage */
.about-images {
  perspective: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  width: 100%;
  position: relative;
  margin-bottom: 64px;
}

.fan-card {
  position: absolute;
  /* This makes the cards grow on big screens and shrink on mobile */
  width: clamp(120px, 14vw, 240px);
  aspect-ratio: 2 / 3;
  /* Automatically keeps the correct portrait height */
  height: auto;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream-dark);
  box-shadow: 0 12px 40px rgba(30, 58, 74, 0.16);
  will-change: transform, opacity, z-index;
  cursor: pointer;
}

.fan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 3. Bottom info block */
.about-text {
  max-width: 640px;
  text-align: center;
}

.about-text p {
  font-size: 1rem;
  color: #5a6a74;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--teal);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.about-cta:hover {
  gap: 14px;
}

/* ─── AMENITIES PREVIEW ─── */
.amenities-preview {
  background: var(--cream-dark);
  padding: 90px 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.amenity-card {
  background: linear-gradient(135deg, #4fa8b4 0%, #1e3a4a 100%);
  border-radius: 16px;
  padding: 24px 20px;
  transition: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  cursor: default;
}

.amenity-card:hover {
  transform: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.amenity-card h3,
.amenity-card p,
.amenity-card .amenity-icon {
  transition: none;
}

.amenity-card .amenity-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.amenity-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.amenity-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.amenity-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
}

.amenity-card::before {
  content: none;
}

.see-all {
  text-align: center;
}

.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

/* People Say section */
.people-say {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: stretch;
}

.people-say-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
}

.psay-bg-img {
  height: 100%;
  overflow: hidden;
}

.psay-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.people-say-content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: 50%;
  min-width: 340px;
  /* Replaced flat color with an animated gradient background */
  background: linear-gradient(-45deg, #2d8496, #1e3a4a, #3a9eaf, #1a2a32);
  background-size: 400% 400%;
  animation: dynamicWater 12s ease infinite;
  padding: 56px 48px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.psay-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.psay-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.5);
}

.people-say-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.2;
}

@keyframes dynamicWater {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.review-card {
  /* Removed the simple left-border, replaced with a beautiful glass card */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  margin-top: 10px;
}

.review-card .review-title {
  font-style: italic;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.95);
}

.review-card .review-body {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 22px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-info .name {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-author-info .date {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.review-nav {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 10px;
  margin-top: 28px;
}

.review-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.review-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

/* ─── EVENTS & PROMOS ─── */
.promos-section {
  background: var(--cream);
  padding: 90px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promos-header {
  text-align: center;
  margin-bottom: 48px;
}

.promos-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.promos-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.promos-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 1000px;
}

.promos-track-wrapper {
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  border-radius: 28px;
  /* Matches the soft rounding from your photo */
}

.promos-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.promo-slide {
  min-width: 100%;
  padding: 4px;
  /* Prevents border clipping during transition */
}

.promo-card {
  background: transparent;
  border: 1.5px solid var(--teal);
  border-radius: 28px;
  padding: 70px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.promo-icon {
  color: var(--teal);
  margin-bottom: 24px;
}

.promo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 600;
}

.promo-desc {
  color: var(--navy);
  font-size: 1.05rem;
  max-width: 420px;
  line-height: 1.6;
}

.promo-nav-btn {
  background: transparent;
  border: none;
  color: var(--teal);
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  transition: background 0.2s;
  display: flex;
}

.promo-nav-btn:hover {
  background: rgba(58, 158, 175, 0.1);
}

/* Hide side arrows on small screens; users will use dots */
@media (max-width: 768px) {
  .promo-nav-btn {
    display: none;
  }

  .promo-card {
    padding: 50px 20px;
  }

  .promo-title {
    font-size: 1.5rem;
  }

  /* Additional mobile styles */
  .page-hero {
    min-height: 350px;
  }

  .page-hero-content {
    padding: 40px 20px;
  }

  .page-hero-title {
    font-size: 2.2rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Events */
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    padding: 40px 20px;
  }
}

/* ─── MAP SECTION ─── */
.map-section {
  background: var(--white);
  padding: 90px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-header {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 700px;
  width: 100%;
}

.map-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.map-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.map-wrapper {
  width: 90%;
  max-width: 1200px;
  height: 550px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(30, 58, 74, 0.12);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.map-wrapper:hover {
  transform: translateY(-8px);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--teal);
  padding: 70px 48px 36px;
  color: rgba(255, 255, 255, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto 56px;
}

.footer-brand .nav-logo-text {
  color: var(--white);
  font-size: 1.3rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: background 0.2s, transform 0.15s;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 28px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── RESPONSIVE / MOBILE ─── */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .navbar {
    position: relative;
    padding: 14px 20px;
    z-index: 200;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -10px);
    width: min(92%, 360px);
    background: rgba(255, 255, 255, 0.98);
    border-radius: 22px;
    box-shadow: 0 24px 50px rgba(20, 40, 60, 0.12);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 10px 0;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 150;
  }

  .nav-links.active {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    margin: 0;
  }

  .nav-links a {
    display: block;
    font-size: 1rem;
    padding: 14px 22px;
    text-align: center;
    border-radius: 16px;
    width: auto;
  }

  .nav-links a.btn-book {
    width: calc(100% - 32px);
    margin: 8px 16px 14px;
  }

  .about {
    padding: 60px 20px 70px;
  }

  .about-images {
    height: 240px;
  }

  .fan-card {
    width: 110px;
    height: 163px;
    border-radius: 14px;
  }

  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .amenities-preview {
    padding: 60px 20px;
  }

  .people-say-bg {
    width: 100%;
    position: static;
  }

  .people-say {
    flex-direction: column;
  }

  .people-say-content {
    width: 100%;
    min-width: unset;
    padding: 40px 24px;
  }

  .map-section {
    padding: 50px 20px;
  }

  .map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links {
    align-items: center;
    padding: 0;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .contact-item {
    justify-content: center;
    text-align: center;
  }

  .footer {
    padding: 50px 20px 28px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 16px;
  }

  .nav-logo-text {
    font-size: 1rem;
  }

  .hamburger span {
    width: 22px;
  }

  .hero-content {
    padding: 50px 16px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .amenity-card {
    padding: 28px 20px;
  }

  .amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }

  .people-say-content {
    padding: 28px 16px;
  }

  .review-card {
    padding: 20px;
  }

  .footer {
    padding: 32px 16px;
  }
}

/* ============================================================
   BOOKING PAGE SPECIFIC STYLES
   ============================================================ */
.step-hidden {
  display: none;
}

.fade-in {
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   ADDITIONAL PAGES STYLES (Amenities, Gallery, Reviews, Events)
   ============================================================ */

/* ─── PAGE HERO ─── */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0c3547 0%, #1f6477 100%);
  padding: 110px 20px 100px;
  text-align: center;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: white;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: translateY(50%);
}

.page-hero-content {
  position: relative;
  max-width: 760px;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 700;
  color: var(--white);
  margin: 16px 0 20px;
  line-height: 1.05;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto;
}

/* ─── AMENITIES PAGE ─── */
.amenities-page-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── GALLERY PAGE ─── */
.gallery-section {
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(30, 58, 74, 0.9), transparent);
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-label {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}

/* ─── LIGHTBOX MODAL ─── */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-image {
  max-width: 85%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-title {
  color: var(--white);
  font-size: 1.1rem;
  margin-top: 20px;
  text-align: center;
  max-width: 80%;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: #ccc;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 20px;
  transition: color 0.2s ease;
  user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #ccc;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* ─── REVIEWS PAGE ─── */
.reviews-stats-section {
  padding: 60px 48px;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.reviews-page-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.review-card-page {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(30, 58, 74, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card-page::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: rgba(58, 158, 175, 0.08);
  line-height: 1;
  pointer-events: none;
}

.review-card-page:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(30, 58, 74, 0.1);
}

.review-stars {
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.review-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.review-text {
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.05rem;
  font-style: italic;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.review-emoji {
  width: 50px;
  height: 50px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.review-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.review-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── EVENTS PAGE ─── */
.events-types-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.event-card {
  background: var(--white);
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(30, 58, 74, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(30, 58, 74, 0.14);
}

.event-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.event-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.event-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.event-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-features li {
  padding: 8px 0;
  color: var(--navy);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--cream);
}

.event-features li:last-child {
  border-bottom: none;
}

/* ─── PACKAGES SECTION ─── */
.packages-section {
  padding: 80px 48px;
  background: var(--cream-dark);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 48px auto 0;
}

.package-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(30, 58, 74, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(30, 58, 74, 0.15);
}

.package-card.featured {
  border: 2px solid var(--teal);
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 32px;
  background: var(--teal);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.package-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.package-duration {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.package-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--cream);
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.package-inclusions {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.package-inclusions li {
  padding: 10px 0;
  color: var(--navy);
  font-size: 0.95rem;
}

.package-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: var(--teal);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.package-btn:hover {
  background: var(--teal-dark);
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 100px 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  text-align: center;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

/* ─── RESPONSIVE FOR NEW PAGES ─── */
@media (max-width: 900px) {
  .page-hero-title {
    font-size: 2.5rem;
  }

  .amenities-page-section,
  .gallery-section,
  .reviews-page-section,
  .events-types-section,
  .packages-section,
  .cta-section {
    padding: 60px 20px;
  }

  .gallery-grid,
  .reviews-grid,
  .events-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 560px) {
  .page-hero-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

/* ═══════════════════════════════════════════════════════
   NEW ADDITIONS FOR ENHANCED EVENTS & REVIEWS SECTIONS
═══════════════════════════════════════════════════════ */

/* Promo Hook Styling */
.promo-hook {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 8px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.85;
  }
}

/* See More Button Styling */
.btn-see-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(58, 158, 175, 0.3);
  transition: all 0.3s ease;
}

.btn-see-more:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58, 158, 175, 0.45);
}

.btn-see-more svg {
  transition: transform 0.3s ease;
}

.btn-see-more:hover svg {
  transform: translateX(4px);
}

/* Promo CTA Container */
.promo-cta {
  text-align: center;
  margin-top: 48px;
  padding-bottom: 20px;
}

/* Reviews CTA Container */
.reviews-cta-home {
  text-align: center;
  padding: 40px 48px 60px;
  background: var(--cream);
}

/* Responsive adjustments for See More buttons */
@media (max-width: 560px) {
  .btn-see-more {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .promo-hook {
    font-size: 1.1rem;
  }

  .reviews-cta-home {
    padding: 30px 20px 40px;
  }
}

/* Responsive lightbox */
@media (max-width: 768px) {
  .lightbox-image {
    max-width: 95%;
    max-height: 75vh;
  }

  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 2rem;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 1.5rem;
    padding: 15px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-title {
    font-size: 0.95rem;
    max-width: 90%;
  }
}

/* TABLE IN EVENTS */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.rates-table th,
.rates-table td {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px;
  text-align: left;
}

.rates-table th {
  background: #f7f3eb;
}

.fees-box {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

@media (max-width: 768px) {
  .fees-box {
    padding: 24px;
  }
}

/* ═══════════════════════════════════════════════════════
   events.php PAGE STYLES
═══════════════════════════════════════════════════════ */

/* Events Intro Section */
.events-intro-section {
  padding: 80px 48px;
  background: var(--white);
  text-align: center;
}

.events-intro-content {
  max-width: 1100px;
  margin: 0 auto;
}

.events-intro-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.events-intro-content>p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Rates Image Section */
.rates-image-section {
  padding: 80px 48px;
  background: var(--cream);
}

.rates-header {
  text-align: center;
  margin-bottom: 48px;
}

.rates-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.rates-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.rates-image-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(30, 58, 74, 0.1);
}

.rates-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin-bottom: 24px;
}

.rates-image-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: rgba(58, 158, 175, 0.08);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
}

.rates-image-note svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
}

.rates-image-note p {
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.6;
  margin: 0;
}

/* What's Included Section */
.whats-included-section {
  padding: 80px 48px;
  background: var(--white);
}

.whats-included-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.whats-included-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.included-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.included-item {
  padding: 24px;
  background: var(--cream);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.included-item:hover {
  transform: translateY(-4px);
}

.included-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.included-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

/* Policies Section */
.policies-section {
  padding: 80px 48px;
  background: var(--cream);
}

.policies-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.policies-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 48px;
}

.policy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.policy-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(30, 58, 74, 0.08);
  text-align: left;
}

.policy-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.policy-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.policy-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-card li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.policy-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: bold;
}

/* ── Blueish table headers ── */
.rates-table th {
  background: var(--teal);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── Better row spacing ── */
.rates-table th,
.rates-table td {
  padding: 18px 20px;
}

.rates-table tbody tr {
  border-bottom: 1px solid rgba(58, 158, 175, 0.12);
}

.rates-table tbody tr:last-child {
  border-bottom: none;
}

/* Responsive for Events Page */
@media (max-width: 900px) {

  .events-intro-section,
  .rates-image-section,
  .whats-included-section,
  .policies-section {
    padding: 60px 24px;
  }

  .events-intro-content h2,
  .rates-header h2,
  .whats-included-content h2,
  .policies-content h2 {
    font-size: 2rem;
  }

  .included-grid,
  .policy-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rates-image-container {
    padding: 20px;
  }
}

@media (max-width: 560px) {

  .events-intro-content h2,
  .rates-header h2,
  .whats-included-content h2,
  .policies-content h2 {
    font-size: 1.75rem;
  }

  .rate-icon,
  .included-icon,
  .policy-icon {
    font-size: 2rem;
  }
}

/* ============================================================
   BOOKING PAGE SPECIFIC STYLES
   ============================================================ */
.step-hidden {
  display: none;
}

.fade-in {
  animation: fadeIn 0.4s ease-in-out;
}

/* Custom styling for invalid inputs */
input:invalid.touched {
  border-color: red;
}

/* ─── IMPROVED AMENITIES (centered & balanced) ─── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 48px;
  justify-items: center;
}

.amenity-card {
  text-align: center;
  height: 100%;
}

.amenity-icon {
  margin: 0 auto 20px;
}

/* ─── LUXURY EVENTS & PROMOS (new grid design) ─── */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.promo-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(30, 58, 74, 0.08);
  border: 1px solid rgba(58, 158, 175, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(58, 158, 175, 0.18);
  border-color: var(--teal);
}

.promo-card.featured {
  border: 2px solid var(--teal);
  position: relative;
}

.promo-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--teal);
  color: white;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.promo-icon {
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1;
}

.promo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.promo-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  flex-grow: 1;
}

.promo-cta-link {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.promo-cta-link:hover {
  gap: 12px;
  color: var(--teal-dark);
}

/* Hide old carousel elements (safe fallback) */
.promos-container,
.promos-track-wrapper,
.promos-track,
.promo-slide,
.promo-nav-btn,
.promo-dots {
  display: none !important;
}


/* ============================================================
   UPDATED & ENHANCED EVENTS PAGE STYLES
   (Add this at the very bottom of style.css)
   ============================================================ */

/* ─── RATES TABLE (inside promo cards) ─── */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  margin-top: 20px;
}

.rates-table th,
.rates-table td {
  padding: 18px 20px;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(58, 158, 175, 0.15);
}

.rates-table th {
  background: var(--teal);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.rates-table td {
  color: var(--navy);
}

.rates-table tr:last-child td {
  border-bottom: none;
}

/* Price cells */
.price-cell {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--teal);
  text-align: right;
}

.price-cell.weekend {
  color: #1e3a4a;
}

/* Option badges */
.option-badge {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

/* Surcharge & note row */
.surcharge-badge {
  background: #f8d7da;
  color: #721c24;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 500;
  display: inline-block;
}

.rates-note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  justify-content: space-between;
  align-items: center;
}

/* Additional Fees Grid */
.additional-fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.fee-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 74, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fee-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(58, 158, 175, 0.15);
}

.fee-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  width: 70px;
}

.fee-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.fee-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
}

.fee-card-highlight {
  border: 2px solid var(--teal);
}

/* Make sure promo cards look great with tables */
.promo-card table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 58, 74, 0.06);
}

/* Small responsive fixes for events page */
@media (max-width: 768px) {

  .rates-table th,
  .rates-table td {
    padding: 14px 12px;
    font-size: 0.9rem;
  }

  .price-cell {
    font-size: 1.3rem;
  }

  .additional-fees-grid {
    grid-template-columns: 1fr;
  }
}

/* Ensure rates-header looks consistent */
.rates-header .section-eyebrow {
  margin-bottom: 12px;
}

/* ─── FIX FOR DAY & NIGHT TOUR RIGHT-SIDE SPACE ─── */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  /* ← prevents edge bleeding */
}

@media (min-width: 900px) {

  .promos-grid>.promo-card:nth-child(1),
  .promos-grid>.promo-card:nth-child(2) {
    grid-column: span 1;
  }
}

/* Makes Day + Night always perfectly side-by-side and full width */
@media (min-width: 1100px) {
  .promos-grid {
    grid-template-columns: repeat(2, 1fr) repeat(auto-fit, minmax(320px, 1fr));
  }
}

/* ─── PRICING TIERS (Day & Night Tour) ─── */
.pricing-tiers {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 58, 74, 0.08);
  margin: 20px 0;
}

.tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(58, 158, 175, 0.15);
}

.tier:last-child {
  border-bottom: none;
}

.tier-option {
  background: var(--teal);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
}

.tier-desc {
  font-size: 0.95rem;
  color: var(--navy);
  flex-grow: 1;
  margin-left: 16px;
}

.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
}

.featured-tier .tier-price {
  color: #1e3a4a;
}

/* ─── PREMIUM PRICING TIERS (Day & Night Tour) ─── */
.pricing-tiers {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(30, 58, 74, 0.1);
  margin: 20px 0 10px;
}

.tier {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(58, 158, 175, 0.12);
}

.tier:last-child {
  border-bottom: none;
}

.tier-option {
  background: var(--teal);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.tier-desc {
  flex-grow: 1;
  margin-left: 20px;
  font-size: 0.98rem;
  color: var(--navy);
}

.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--teal);
}

.featured-tier .tier-price {
  color: var(--navy);
}

/* Grid fix - no more right side space */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

@media (min-width: 1100px) {
  .promos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   ADDITIONAL FEES - Premium Style
   ============================================================ */

.additional-fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.fee-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(30, 58, 74, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.fee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(58, 158, 175, 0.18);
}

.fee-icon {
  font-size: 3.2rem;
  flex-shrink: 0;
  line-height: 1;
}

.fee-card strong {
  display: block;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.fee-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
}

.fee-card p {
  margin-top: 12px;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.fee-card-highlight {
  border: 2px solid var(--teal);
  position: relative;
}

.fee-card-highlight::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--teal);
  color: white;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 600;
}

/* =============================================
   FIX CTA SECTION - Full Width Background
   ============================================= */
.cta-section {
  padding: 100px 20px !important;
  /* Only vertical padding + small side padding */
  margin: 0;
  width: 100%;
  max-width: none;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%) !important;
  overflow: hidden;
}

.cta-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* =============================================
   FIX FOOTER - Full Width Background (No gaps)
   ============================================= */
.footer {
  padding: 70px 20px 36px !important;
  width: 100%;
  max-width: none;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--teal) !important;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
}

/* PROMOS GRID - Balanced & Centered */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: center;
  /* Centers the whole group */
}

/* Force 3 equal columns on big screens */
@media (min-width: 1100px) {
  .promos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Make the middle card stand out a bit more */
.promos-grid .promo-card.featured {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(58, 158, 175, 0.25);
}

/* =============================================
   EVENTS PAGE - CLEAN & CONSISTENT STYLES
   Paste this at the very bottom of style.css
   ============================================= */

.packages-overview {
  padding: 80px 5%;
  background: white;
}

.packages-overview .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.packages-overview .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.packages-overview .section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background: var(--cream);
  border: 1px solid rgba(58, 158, 175, 0.15);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.package-card:hover {
  box-shadow: 0 8px 32px rgba(58, 158, 175, 0.12);
  transform: translateY(-4px);
}

.package-card .pkg-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.package-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.package-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Rates Section */
.rates-section {
  padding: 80px 5%;
  background: var(--cream);
}

.rates-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.rates-section .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.rates-section .section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.rates-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.rates-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .rates-row-2 {
    grid-template-columns: 1fr;
  }
}

.rate-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(30, 58, 74, 0.06);
  border: 1px solid rgba(58, 158, 175, 0.1);
}

.rate-card.featured {
  border: 2px solid var(--teal);
  position: relative;
}

.rate-card-header {
  background: var(--navy);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.rate-card.featured .rate-card-header {
  background: linear-gradient(135deg, var(--teal-dark), var(--navy));
}

.rate-card-header h3 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.rate-card-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.popular-tag {
  background: var(--teal);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}

.rate-card-body {
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.rate-table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.rate-table thead tr {
  background: #f8fafc;
  border-bottom: 2px solid #e8edf0;
}

.rate-table thead th {
  padding: 12px 20px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.rate-table tbody tr {
  border-bottom: 1px solid #f0f3f5;
  transition: background 0.15s;
}

.rate-table tbody tr:last-child {
  border-bottom: none;
}

.rate-table tbody tr:hover {
  background: #f8fffe;
}

.rate-table td {
  padding: 14px 20px;
  color: var(--navy);
  vertical-align: middle;
}

.rate-table td.price {
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 1rem;
}

.rate-table td.price-weekend {
  font-weight: 700;
  color: #d97706;
  font-size: 1rem;
}

.opt-badge {
  display: inline-block;
  background: var(--navy);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.rate-card-footer {
  padding: 14px 20px;
  background: #f8fafc;
  border-top: 1px solid #e8edf0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.surcharge-pill {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Additional Fees */
.fees-section {
  padding: 60px 5%;
  background: white;
}

.fees-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.fees-section .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.fee-item {
  background: var(--cream);
  border: 1px solid rgba(58, 158, 175, 0.15);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fee-item strong {
  font-size: 1rem;
  color: var(--navy);
  display: block;
}

.fee-item .fee-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
}

.fee-item .fee-value small {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

.fee-item .fee-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.fee-item.highlight {
  border-color: var(--teal);
  background: linear-gradient(135deg, rgba(58, 158, 175, 0.06), rgba(30, 58, 74, 0.04));
}

.fee-item.highlight .fee-value {
  color: var(--teal);
}

/* Policies */
.policies-section {
  padding: 80px 5%;
  background: var(--cream);
}

.policies-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.policies-section .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.policy-item {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(58, 158, 175, 0.1);
  box-shadow: 0 2px 12px rgba(30, 58, 74, 0.04);
}

.policy-item .policy-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.policy-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.policy-item ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-item ul li {
  font-size: 0.875rem;
  color: #4a5a65;
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}

.policy-item ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* House Rules Divider */
.rules-divider {
  text-align: center;
  margin: 64px auto 48px;
  max-width: 1200px;
}

.rules-divider h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 10px;
}

.rules-divider p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Section Eyebrow */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 10px;
}

line-height: 1.55;
padding-left: 16px;
position: relative;
}

.policy-item ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* House Rules Divider */
.rules-divider {
  text-align: center;
  margin: 64px auto 48px;
  max-width: 1200px;
}

.rules-divider h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 10px;
}

.rules-divider p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Section Eyebrow */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 10px;
}

/* ── Policy Cards – Premium Card Grid ── */
.policy-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto 0;
}
.policy-card {
  background: #fff;
  border-radius: 20px;
  border-top: 4px solid #3a9eaf;
  padding: 32px 26px 28px;
  color: #1e3a4a;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 4px 18px rgba(30,58,74,.08);
  transition: transform .3s, box-shadow .3s;
}
.policy-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(30,58,74,.14); }
.policy-card .pc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3a9eaf, #1e3a4a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.policy-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e3a4a;
  margin: 0 0 14px;
}
.policy-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.policy-card ul li {
  font-family: 'DM Sans', sans-serif;
  font-size: .84rem;
  color: #4a5a65;
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}
.policy-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3a9eaf;
}
.policy-card ul li strong { color: #1e3a4a; font-weight: 600; }
/* Divider between booking policies and house rules */
.rules-divider-new {
  text-align: center;
  margin: 64px auto 48px;
  max-width: 1200px;
  position: relative;
}
.rules-divider-new::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3a9eaf, #1e3a4a);
  border-radius: 2px;
  margin: 0 auto 24px;
}
.rules-divider-new h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--navy, #1e3a4a);
  margin: 8px 0 10px;
}
.rules-divider-new p {
  color: var(--text-muted, #6b7f8a);
  font-size: .95rem;
}
@media(max-width:900px){ .policy-cards-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:520px){ .policy-cards-grid{ grid-template-columns:1fr; } }