:root {
  --color-bg: #f8f9fa; /* base background */
  --color-surface: #ffffff;
  --color-card: #ffffff;
  --color-accent: #38b6ff; /* Changed: Blue shade to #38b6ff */
  --color-accent-2: #fff6d4; /* Changed: Yellow to gold #ffd21c */
  --color-text: #1a1a1a; /* intensified black for titles */
  --color-text-secondary: #4a4a4a; /* softer black for descriptions */
  --color-muted: #5d6f6f;
  --border: #e7efef;
  --shadow-1: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius-1: 12px;
  --radius-2: 20px;
  --maxw: 1400px; /* widened content width to reduce side space */
  /* customization tokens */
  --spacing-section-y: clamp(18px, 3.2vw, 28px); /* fluid section spacing */
  --btn-radius: 999px; /* Changed: Make buttons capsule shaped */
  --link-underline: currentColor; /* underline color */
  /* optimized animation timing for better performance */
  --anim-duration: 0.3s; /* Reduced duration for snappier animations */
  --anim-ease: ease-out;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}

/* Ensure footer sticks to bottom */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding-top: 100px; /* Add padding to account for fixed header */
}

@media (max-width: 768px) {
  main {
    padding-top: 80px; /* Smaller padding for mobile header */
  }
}
body {  
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: clamp(14px, 1.8vw, 16px); /* fluid base font size */
}

/* Global heading styles with intensified black */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text);
  font-weight: 600;
}

/* Global paragraph and text styles with softer black */
p,
span,
div,
li {
  color: var(--color-text-secondary);
}

/* Override for white text elements to maintain their white color */
.tile.portrait .p-body h3,
.tile.portrait .p-body p,
.tile.portrait .p-view,
.tile.portrait .p-view .arrow {
  color: #ffffff !important;
}

/* Home page section titles - black with fancy underline */
.section-head h2 {
  color: #1a1a1a !important;
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Account for fixed header height */
}

.container {
  width: 100%;
  /* Remove horizontal gutters to maximize content width */
  max-width: min(var(--maxw), 100%);
  margin: 0px auto;
  padding: 20px; /* no extra side padding */
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #000;
  color: #fff;
  z-index: 1000;
}

/* Header */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #38b6ff; /* Changed: Blue shade to #38b6ff */
  backdrop-filter: blur(8px);
  border-bottom: none;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.brand {
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 24px;
}
.menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu a {
  color: #ffffff;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  position: relative;
  transition: transform var(--anim-duration) var(--anim-ease);
}
.menu a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--anim-duration) var(--anim-ease);
  opacity: 0.7;
}
.menu a:hover::after {
  transform: scaleX(1);
}
.menu a:hover {
  transform: scale(1.1);
}

/* Ensure enlarge effect applies specifically to primary menu anchors */
#primary-menu a {
  display: inline-block;
  transform-origin: center;
  font-size: 18px;
  font-weight: 500;
}
#primary-menu a:hover {
  transform: scale(1.1);
}
.menu a:hover,
.menu a[aria-current="page"] {
  color: #ffffff;
  background: transparent; /* remove hover background */
}

/* Footer */
#site-footer {
  margin-top: 36px;
  padding: 28px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

/* Hero */
.hero {
  position: relative;
  height: calc(100vh - 100px);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity var(--anim-duration) var(--anim-ease);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
}
.hero-content {
  position: absolute;
  left: 5%;
  bottom: 10%;
  max-width: 640px;
}
.eyebrow {
  color: #ffd21c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(16px, 3vw, 24px);
}
.h1 {
  font-size: clamp(36px, 7vw, 55px);
  line-height: 1.1;
  margin: 10px 0 16px;
  color: #fff;
}
.lede {
  color: #eaf4f4;
  font-size: clamp(16px, 3vw, 24px);
  margin-bottom: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px; /* more tablet-like */
  border-radius: var(--btn-radius);
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--color-text);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
}

.btn.primary {
  background: #ffd21c;
  border-color: #ffd21c;
  color: #2b2b2b;
}
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 127, 80, 0.18);
}
.btn:active {
  transform: scale(1);
}
button.btn,
a.btn {
  cursor: pointer;
}

.btn.hollow {
  background: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
  border-width: 3px;
}

/* Overview tiles */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.tile {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.tile h3 {
  margin: 6px 0 8px;
  font-size: 18px;
}
.tile p {
  margin: 0;
  color: var(--color-muted);
}

/* Portrait tile variant for section-why */
#section-why .tiles {
  gap: 0;
} /* remove gaps so cards sit flush */
.tile.portrait {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: 0;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  will-change: transform;
}
.tile.portrait:hover {
  transform: scale(1.02);
  z-index: 3;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
#section-why .tile.portrait {
  border: 1px solid rgba(0, 0, 0, 0.12);
} /* very thin visible border */
.tile.portrait .p-media {
  position: absolute;
  inset: 0;
  background: #eef5f5 center/cover no-repeat;
  transition: filter 0.2s ease-out, transform 0.2s ease-out;
}
.tile.portrait:hover .p-media {
  filter: blur(1px) brightness(0.95);
  transform: scale(1.01);
}
.tile.portrait .p-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  color: #ffffff;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 80%
  );
}
.tile.portrait .p-body h3 {
  margin: 0 0 6px;
  color: #ffffff;
}
.tile.portrait .p-body p {
  margin: 0;
  color: #eaf4f4;
}

/* Section-why variant: title top-left, description hidden until hover */
#section-why .tile.portrait .p-body {
  top: 0;
  bottom: auto;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#section-why .tile.portrait .p-body h3 {
  font-size: 32px;
  letter-spacing: 0.3px;
  position: relative;
}
#section-why .tile.portrait .p-body h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
  transition: width 0.45s ease;
}
#section-why .tile.portrait:hover .p-body h3::after {
  width: 100px;
}
#section-why .tile.portrait .p-body p {
  margin-top: 8px;
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.45s ease, transform 0.45s ease, max-height 0.45s ease;
  max-height: 0;
  overflow: hidden;
  color: #eaf4f4;
  font-weight: 600;
}
#section-why .tile.portrait:hover .p-body p {
  opacity: 1;
  transform: translateX(0);
  max-height: 240px;
}
#section-why .tile.portrait .p-view {
  position: absolute;
  right: 16px;
  bottom: 14px;
  font-size: 32px;
  color: #ffffff;
  font-weight: 600;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
#section-why .tile.portrait:hover .p-view {
  opacity: 1;
  transform: translateX(0);
}
#section-why .tile.portrait .p-view {
  position: absolute;
}
#section-why .tile.portrait .p-view::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: -6px;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
  transition: width 0.45s ease;
}
#section-why .tile.portrait .p-view:hover::after {
  width: 72px;
}
/* Slow arrow reveal for the ">" part */
#section-why .tile.portrait .p-view .arrow {
  display: inline-block;
  transform: translateX(12px);
  opacity: 0;
  transition: transform 1.1s ease, opacity 1.1s ease;
  color: inherit;
}
#section-why .tile.portrait:hover .p-view .arrow {
  transform: translateX(0);
  opacity: 1;
}

/* Weather widget */
.weather {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8px;
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  padding: 12px 16px;
}
.weather .current {
  display: flex;
  align-items: center;
  gap: 16px;
}
.weather .current .temp {
  font-size: 44px;
  font-weight: 700;
}
.weather .current .cond {
  color: var(--color-muted);
}
.weather .future {
  display: grid;
  grid-template-columns: repeat(7, minmax(80px, 1fr));
  gap: 8px;
  align-items: stretch;
  margin-bottom: 4px;
}
.chip {
  min-width: 0;
  width: 100%;
  background: #f2f7f7;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
  cursor: pointer;
}

.chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

/* Sections */
section {
  margin: var(--spacing-section-y) 0;
  /* Add vertical padding to separate sections (top & bottom) */
  padding: 10px 50px; /* only vertical padding, no horizontal */
}
/* Remove top padding for the hero section only */
#section-hero {
  padding-top: 0 !important;
}
#section-hero {
  margin-top: 0 !important;
}
/* Make hero section full-bleed */
#section-hero.container {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}
section#section-hero {
  margin-left: 0;
  margin-right: 0;
}
#section-hero .hero {
  border-radius: 0;
  box-shadow: none;
}
/* Apply vertical padding to all top-level sections inside main, except the first (hero wrapper) */
main > section {
  padding-block: clamp(16px, 3vw, 36px);
}
main > section:first-of-type {
  padding-block: 0;
}

/* Fix "Ready to plan?" section spacing */
#section-cta {
  padding-block: clamp(40px, 6vw, 60px) !important;
}

#section-cta .section-head {
  margin-bottom: 24px;
}

#section-cta .section-head h2 {
  margin-bottom: 0;
}

#section-cta .btn {
  margin-right: 12px;
  margin-bottom: 8px;
}
section .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
section .section-head h2 {
  margin: 0;
}

#section-why .section-head,
#section-gallery .section-head {
  justify-content: center;
}
#section-why .section-head h2,
#section-gallery .section-head h2,
#section-video .section-head h2,
#section-weather .section-head h2,
#section-cta .section-head h2 {
  font-size: 45px;
}

/* Homepage section titles - underline reaches end of text */
#section-why .section-head h2::after,
#section-gallery .section-head h2::after,
#section-video .section-head h2::after,
#section-weather .section-head h2::after,
#section-cta .section-head h2::after {
  width: 100%;
  right: 0;
}

#section-video {
  position: relative;
  z-index: 1;
  contain: layout style;
}

/* Optimized lazy section reveal */
.lazy-in {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}
.lazy-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery */
#section-gallery {
  margin: 0 !important;
}

.feature-list {
  display: grid;
  gap: 100px; /* increased vertical space between gallery items */
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0; /* maximize horizontal space */
}
.feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
  opacity: 0.001;
  transform: translateY(8px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  overflow: hidden;
}
.feature:nth-child(even) {
  grid-template-columns: 0.9fr 1.1fr;
}
.feature:nth-child(even) .feature-media-wrap {
  order: 2;
}
.feature:nth-child(even) .feature-content {
  order: 1;
}
.feature.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-media-wrap {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 60px 0px;
  overflow: hidden;
}
.feature-media {
  position: absolute;
  inset: 0;
  background: #eef5f5 url("") center/cover no-repeat;
  transform: scale(1);
  transition: transform 0.2s ease-out;
}
.feature-media-wrap:hover .feature-media {
  transform: scale(1.02);
}
.feature-content {
  padding: 10px 12px;
}
.feature-content h3 {
  margin: 0 0 6px;
  position: relative;
  font-size: 36px;
  font-weight: 300;
}
.feature-content h3::after {
  display: none;
}
.feature-content p {
  margin: 10px 0 0;
  max-width: 56ch;
}

/* Responsive video embed */
.video-embed {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}
.video-embed::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  /* Prevent iframe from interfering with scroll */
  pointer-events: auto;
  transform: translateZ(0);
  will-change: auto;
}

/* Toasts */
#toast-root {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 8px;
  z-index: 100;
}
.toast {
  background: #0a7c7c;
  color: #ffffff;
  border: 1px solid transparent;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow-1);
}
.toast.error {
  background: #b54747;
}
.toast.success {
  background: #2f8a57;
}

/* Modal */
#modal-root .modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 90;
}
#modal-root .card {
  background: var(--color-surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  max-width: 640px;
  width: 92%;
  padding: 18px;
}

/* Loader */
#loader-root[aria-busy="true"] {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.45);
  z-index: 95;
}
.spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(0, 0, 0, 0.12);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Packages grid with slide-in overlay reveal + bg blur */
.packages-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 20px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.package-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
}
.package-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: filter 0.4s ease, transform 0.4s ease;
}
.package-overlay {
  position: absolute;
  top: 0;
  right: -60%;
  bottom: 0;
  width: 60%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-left: 1px solid var(--border);
}
.package-meta {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.package-card:hover .package-media {
  filter: blur(2px) brightness(0.9);
  transform: scale(1.04);
}
.package-card:hover .package-overlay {
  right: 0;
}
.package-title {
  font-weight: 600;
  margin: 0;
}
.package-price {
  color: var(--color-accent-2);
}
.package-cta {
  margin-top: auto;
  display: flex;
  gap: 8px;
}
.package-cta .btn {
  padding: 10px 12px;
}

@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
  /* Simplify package cards on touch */
  .package-overlay {
    position: static;
    right: auto;
    width: auto;
    background: #ffffff;
    backdrop-filter: none;
    border-left: 0;
    padding: 12px;
    transition: none;
  }
  .package-card:hover .package-media {
    filter: none;
    transform: none;
  }
  .package-card:hover .package-overlay {
    right: auto;
  }
}

/* Forms, inputs, tables */
.input,
select {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--color-text);
  padding: 12px 14px;
  border-radius: 12px;
  min-width: 220px;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"] {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--color-text);
  padding: 12px 14px;
  border-radius: 12px;
  min-width: 220px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: hue-rotate(120deg) saturate(1.2);
  opacity: 0.8;
}
input[type="date"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}
label {
  display: block;
  margin: 6px 0 4px;
}
.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.form {
  background: var(--color-surface);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 12px;
}
.error-text {
  color: #b54747;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.table th,
.table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.chip.badge {
  padding: 4px 8px;
  display: inline-block;
  background: #eef5f5;
  border: 1px solid var(--border);
}

/* Footer and About underline animation */
#site-footer a,
[href^="#/about"] {
  position: relative;
}
#site-footer a::after,
[href^="#/about"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  opacity: 0.6;
}
#site-footer a:hover::after,
[href^="#/about"]:hover::after {
  transform: scaleX(1);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  right: 24px; /* Aligned with AI button horizontal position */
  bottom: 106px; /* Vertically aligned with AI button */
  z-index: 110;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  border: none;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px -8px rgba(59, 130, 246, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  cursor: pointer;
  outline: none;
}
.back-to-top[hidden] {
  opacity: 0;
  pointer-events: none;
}
.back-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px -8px rgba(59, 130, 246, 0.35);
}

.back-to-top:focus {
  outline: none;
  box-shadow: 0 8px 32px -8px rgba(59, 130, 246, 0.25);
}

.back-to-top:active {
  transform: scale(0.95);
}

.ai-button {
  position: fixed;
  bottom: 40px;
  right: 24px;
  z-index: 110;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  border: none;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px -8px rgba(59, 130, 246, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  cursor: pointer;
}

.ai-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px -8px rgba(59, 130, 246, 0.35);
}

.ai-button.hidden {
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

/* AI Chat Popup - Modern Design */
.ai-chat-popup {
  position: fixed;
  bottom: 40px;
  right: 90px;
  z-index: 130;
  width: 380px;
  height: 500px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px -15px rgba(39, 39, 42, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(32px) scale(0.95);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.ai-chat-popup.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}

/* Header */
.ai-chat-header {
  background: var(--color-accent);
  color: white;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 24px 24px 0 0;
}

.ai-chat-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.ai-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.avatar-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}


@keyframes pulse {
  0%, 100% { 
    opacity: 1; 
    box-shadow: 
      0 0 0 2px rgba(255, 255, 255, 0.8),
      0 0 12px rgba(74, 222, 128, 0.8),
      0 0 24px rgba(74, 222, 128, 0.6),
      0 0 36px rgba(74, 222, 128, 0.4);
  }
  50% { 
    opacity: 0.8; 
    box-shadow: 
      0 0 0 3px rgba(255, 255, 255, 1),
      0 0 18px rgba(74, 222, 128, 1),
      0 0 36px rgba(74, 222, 128, 0.8),
      0 0 54px rgba(74, 222, 128, 0.6);
  }
}

.ai-chat-details {
  flex: 1;
}

.ai-name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
}

.ai-status {
  font-size: 12px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  color: white;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #10b981 0%, #22c55e 50%, #16a34a 100%);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 
    0 0 0 2px rgba(255, 255, 255, 0.8),
    0 0 12px rgba(74, 222, 128, 0.8),
    0 0 24px rgba(74, 222, 128, 0.6),
    0 0 36px rgba(74, 222, 128, 0.4);
}

.ai-chat-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ai-chat-minimize,
.ai-chat-close {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  opacity: 0.8;
  font-weight: 900;
  font-size: 24px;
}

.ai-chat-minimize:hover,
.ai-chat-close:hover {
  background-color: rgba(255,255,255,0.1);
  opacity: 1;
}

/* Messages Area */
.ai-chat-messages {
  flex: 1;
  height: 400px;
  padding: 16px;
  overflow-y: auto;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}

.message-group {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  max-width: 80%;
}

.user-message-group {
  flex-direction: row-reverse;
  align-self: flex-end;
  margin-left: auto;
}

.message-avatar {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.user-message-group .message-avatar {
  background: #6366f1;
}

.message-bubble {
  background: white;
  border-radius: 16px;
  padding: 12px 16px;
  position: relative;
  max-width: 100%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.ai-message-bubble {
  background: #ffd700;
  color: white;
  border-bottom-left-radius: 4px;
}

.user-message-bubble {
  background: #f4f4f5;
  color: #18181b;
  border-bottom-right-radius: 4px;
}

.message-text {
  margin: 0;
}

.message-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: inherit;
}

.message-time {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 4px;
  color: #71717a;
}

.ai-message-bubble .message-time {
  color: rgba(0,0,0,0.6);
}

/* Input Area */
.ai-chat-input-container {
  padding: 16px;
  background: white;
  border-top: 1px solid #e4e4e7;
  border-radius: 0 0 24px 24px;
}

.ai-chat-input-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ai-chat-input {
  flex: 1;
  border: 1px solid #e4e4e7;
  border-radius: 24px;
  padding: 12px 16px;
  font-size: 14px;
  color: #18181b;
  outline: none;
  transition: all 0.2s ease;
}

.ai-chat-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.ai-chat-input::placeholder {
  color: #71717a;
}

.ai-chat-send {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ai-chat-send:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.ai-chat-send:active {
  transform: scale(0.95);
}

.ai-chat-send:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
  transform: none;
}

/* Hide notification when chat is open */
.ai-chat-popup.show ~ .ai-notification {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 480px) {
  .ai-button {
    bottom: 20px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  
  .ai-chat-popup {
    right: 16px;
    bottom: 20px;
    left: 16px;
    width: auto;
    height: 500px;
    max-height: calc(100vh - 40px);
    border-radius: 24px;
  }
  
  .ai-chat-messages {
    padding: 16px;
    height: 400px;
  }
  
  .ai-chat-header {
    padding: 16px;
  }
  
  .ai-chat-user-info {
    gap: 8px;
  }
  
  .ai-name {
    font-size: 14px;
  }
  
  .ai-status {
    font-size: 12px;
  }
  
  .message-group {
    max-width: 90%;
  }
  
  .ai-chat-input-container {
    padding: 16px;
  }
  
  /* Additional mobile chatbot improvements */
  
  .ai-chat-input {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 14px 16px;
  }
  
  .ai-chat-send {
    width: 44px;
    height: 44px;
  }
  
  .message-bubble {
    padding: 10px 14px;
    border-radius: 14px;
  }
  
  .message-text p {
    font-size: 15px;
    line-height: 1.4;
  }
  
  .typing-indicator {
    padding: 10px 14px;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .ai-chat-popup {
    right: 80px;
    bottom: 40px;
    width: 360px;
    height: 500px;
  }
  
  .ai-chat-messages {
    padding: 14px;
    height: 380px;
  }
  
  .ai-chat-header {
    padding: 14px 16px;
  }
  
  .ai-chat-input-container {
    padding: 14px;
  }
  
  .ai-chat-input {
    font-size: 15px;
    padding: 13px 15px;
  }
  
  .message-bubble {
    padding: 11px 15px;
  }
  
  .message-text p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #ffd700;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  max-width: 80px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
  animation-delay: -0.3s;
}

.typing-dots span:nth-child(2) {
  animation-delay: -0.15s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0s;
}

@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* AI Notification Popup */
.ai-notification {
  position: fixed;
  right: 100px; /* Moved further left to create gap */
  bottom: 30px;
  z-index: 120;
  max-width: 280px;
  background: #ffd21c;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(255, 210, 28, 0.3);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  animation: slideInFromLeft 0.4s ease forwards;
}

.ai-notification::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #ffd21c;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.ai-notification-content {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ai-notification-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ai-notification-text strong {
  color: #2b2b2b;
  font-size: 16px;
  font-weight: 600;
}

.ai-notification-text span {
  color: #2b2b2b;
  font-size: 14px;
  opacity: 0.8;
}

.ai-notification-close {
  background: none;
  border: none;
  color: #2b2b2b;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.ai-notification-close:hover {
  background-color: rgba(43, 43, 43, 0.1);
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(
      calc(100% + 20px)
    ); /* Start from chatbot's left edge */
  }
  to {
    transform: translateX(0);
  }
}

/* On small screens, maintain vertical stacking */
@media (max-width: 480px) {
  .back-to-top {
    right: 18px;
    bottom: 106px;
  }
  .ai-button {
    right: 18px;
    bottom: 30px;
  }
}

/* Responsive tweaks */
@media (max-width: 960px) {
  .feature {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .feature {
    grid-template-columns: 1fr;
  }
  .feature-content {
    padding: 8px 10px;
  }
}

/* Mobile navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    padding: 12px;
    font-weight: bold;
  }

  .menu {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 80px;
    flex-direction: column;
    background: #ffffff;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    z-index: 99;
    box-shadow: var(--shadow-1);
    gap: 8px;
  }
  .menu.open {
    display: flex;
  }
  .menu a {
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--color-text);
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  .menu a:hover {
    background-color: var(--color-bg);
  }
}

/* Comprehensive mobile responsive design */
@media (max-width: 768px) {
  /* Disable animations on mobile */
  * {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: 0.2s !important;
    transition-delay: 0s !important;
  }

  /* Container adjustments */
  .container {
    padding: 16px;
  }

  /* Header responsive */
  .nav {
    height: 80px;
    padding: 0 16px;
  }

  .brand {
    font-size: 18px;
    flex-shrink: 0;
    max-width: 120px;
    overflow: hidden;
  }

  .brand img {
    max-width: 100%;
    height: 60px;
    width: auto;
    object-fit: contain;
  }

  /* Hero responsive */
  .hero {
    height: calc(100vh - 80px);
  }

  .hero-content {
    left: 50%;
    right: auto;
    bottom: 50%;
    max-width: none;
    transform: translateX(-50%);
    text-align: center;
    width: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .h1 {
    font-size: 66px;
    line-height: 1.2;
  }

  .lede {
    display: none;
  }

  /* Section spacing */
  main > section {
    padding-block: 20px;
  }

  /* Gallery responsive */
  .feature-list {
    gap: 40px;
  }

  .feature {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .feature:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature:nth-child(even) .feature-media-wrap,
  .feature:nth-child(even) .feature-content {
    order: unset;
  }

  .feature-content h3 {
    font-size: 28px;
  }

  /* Section Why responsive - same layout as gallery */
  #section-why .tiles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #section-why .tile {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  #section-why .tile.portrait,
  #section-why .tile.landscape {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  /* Weather responsive */
  .weather {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .weather .future {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .weather .future .chip:nth-child(n + 5) {
    display: none;
  }

  .weather .current .cond:last-child {
    display: none;
  }

  /* Video responsive */
  .video-embed {
    margin: 0;
  }

  /* CTA section responsive */
  #section-cta {
    padding-block: 30px !important;
  }

  #section-cta .section-head {
    text-align: center;
    margin-bottom: 20px;
  }

  #section-cta .btn {
    margin: 4px;
    flex: 1;
    min-width: 120px;
  }

  /* Section headings */
  .section-head h2 {
    font-size: 32px;
    text-align: center;
  }

  .section-head {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Floating buttons responsive */
  .back-to-top,
  .ai-button {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .back-to-top {
    right: 16px;
    bottom: 86px;
  }

  .ai-button {
    right: 16px;
    bottom: 20px;
  }

  /* AI notification responsive */
  .ai-notification {
    display: none !important;
  }
}

/* Footer stacks on mobile */
@media (max-width: 680px) {
  #site-footer .container > div {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .container {
    padding: 12px;
  }

  /* Smaller logo container on extra small screens */
  .brand {
    max-width: 80px;
  }

  .brand img {
    height: 50px;
  }

  .h1 {
    font-size: 70px;
  }

  .lede {
    font-size: 14px;
  }

  .section-head h2 {
    font-size: 28px;
  }

  /* Section Why - single column on extra small screens */
  #section-why .tiles {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .weather .future .chip:nth-child(n + 4) {
    display: none;
  }

  .feature-content h3 {
    font-size: 24px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  /* Smaller floating buttons */
  .back-to-top,
  .ai-button {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .back-to-top {
    right: 12px;
    bottom: 76px;
  }

  .ai-button {
    right: 12px;
    bottom: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Roboto, "Roboto Fallback", sans-serif;
}

#section-weather .section-head .btn {
  border: 3px solid var(--color-text);
}

/* Weather "See Details" link underline animation */
.weather a[href="#/weather"] {
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;
}

.weather a[href="#/weather"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.weather a[href="#/weather"]:hover::after {
  width: 85px;
}

/* ========================================
   SMOOTH SCROLLING & ANIMATIONS
   ======================================== */

/* CSS Variables for smooth scrolling */
:root {
  --scroll-padding: 100px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --slide-distance: 40px;
}

/* Smooth scroll container for Lenis */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Scroll-triggered animation utilities */
.scroll-animate {
  opacity: 0;
  transform: translateY(var(--slide-distance));
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-fast {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-fast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for multiple elements */
.scroll-animate:nth-child(1) {
  transition-delay: 0ms;
}
.scroll-animate:nth-child(2) {
  transition-delay: 100ms;
}
.scroll-animate:nth-child(3) {
  transition-delay: 200ms;
}
.scroll-animate:nth-child(4) {
  transition-delay: 300ms;
}
.scroll-animate:nth-child(5) {
  transition-delay: 400ms;
}
.scroll-animate:nth-child(6) {
  transition-delay: 500ms;
}

/* Ensure animations don't interfere with existing functionality */
.scroll-animate {
  will-change: opacity, transform;
}

/* Disable animations on mobile for better performance */
@media (max-width: 768px) {
  .scroll-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }

  .scroll-animate-fast {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }
}

/* ========================================
   LUXURY RESORT CARD COMPONENT
   ======================================== */

/* Luxury Card Base Styles */
.luxury-card {
  height: 350px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 300ms ease;
  cursor: pointer;
  position: relative;
}

.luxury-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Image Layer */
.luxury-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease-out, filter 500ms ease-out;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.luxury-card:hover img {
  transform: scale(1.1);
  filter: blur(4px);
}

/* Ensure no gaps or empty spaces */
.luxury-card .relative {
  background: #38b6ff;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Gradient Overlay */
.luxury-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 30%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.2) 80%,
    transparent 100%
  );
  transition: background 500ms ease;
  z-index: 2;
}

.luxury-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.8) 30%,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0.3) 80%,
    transparent 100%
  );
}

/* Content Container */
.luxury-card .content-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  z-index: 3;
  text-align: left;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  border-radius: 0 0 0.75rem 0.75rem;
}

/* Always Visible Content */
.luxury-card .always-visible {
  transition: transform 300ms ease;
}

.luxury-card:hover .always-visible {
  transform: translateY(-20px);
}

.luxury-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
  text-align: left;
  margin-left: 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.5);
}

.luxury-card .card-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffd700;
  text-align: left;
  margin-left: 0;
  margin-bottom: 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 6px rgba(0, 0, 0, 0.6);
}

/* Hover-Only Content */
.luxury-card .hover-content {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  overflow: hidden;
  transition: max-height 500ms ease-out, opacity 500ms ease-out, margin-top 500ms ease-out;
}

.luxury-card:hover .hover-content {
  max-height: 12rem;
  opacity: 1;
  margin-top: 1rem;
}

.luxury-card .card-description {
  font-size: 0.875rem;
  color: white;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.6);
}

.luxury-card .book-button {
  width: 100%;
  background-color: #ffd700;
  color: #1a1a1a;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 200ms ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.luxury-card .book-button:hover {
  background-color: #ffed4e;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 2rem 2rem;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Section Styling */
.packages-section {
  background: #f8f9fa;
  padding: 4rem 0;
  margin: 0;
}

.packages-hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  text-align: center;
  margin-bottom: 1rem;
}

.packages-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.packages-section p {
  text-align: center;
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About page hero section */
.about-hero {
  text-align: center;
  padding: 100px 20px 30px 20px;
  margin-bottom: 20px;
}

.about-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 16px;
  font-weight: 700;
}

.about-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  margin: 0;
  opacity: 0.9;
  font-weight: 400;
}

/* About content sections */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin: 0 0 24px;
  color: var(--color-accent);
  text-align: center;
  position: relative;
}

.about-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  margin: 12px auto 0;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.about-content p {
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.7;
  margin: 0 0 20px;
  color: var(--color-text);
}

/* Location features grid */
.location-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.feature-item {
  background: var(--color-surface);
  padding: 24px;
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
}

.feature-item h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--color-accent);
}

.feature-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
}

/* Amenities grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.amenity-card {
  background: var(--color-surface);
  padding: 28px;
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.amenity-card h3 {
  font-size: 22px;
  margin: 0 0 16px;
  color: var(--color-accent);
}

.amenity-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Experience highlights */
.experience-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.highlight-item {
  background: var(--color-surface);
  padding: 24px;
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
  text-align: center;
}

.highlight-item h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--color-accent);
}

.highlight-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
}

/* Sustainability features */
.sustainability-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.sustainability-item {
  background: var(--color-surface);
  padding: 24px;
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sustainability-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
}

.sustainability-item h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--color-accent);
}

.sustainability-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
}

/* Contact info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.contact-item {
  background: var(--color-surface);
  padding: 24px;
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
  text-align: center;
}

.contact-item h3 {
  font-size: 18px;
  margin: 0 0 12px;
  color: var(--color-accent);
}

.contact-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
}

/* CTA buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 160px;
}

/* Section spacing for about page */
.about-story,
.about-location,
.about-amenities,
.about-experience,
.about-sustainability,
.about-contact {
  margin: 60px 0;
  padding: 40px 0;
}

.about-story {
  background: var(--color-bg);
  border-radius: var(--radius-1);
}

.about-location {
  background: var(--color-surface);
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
}

.about-amenities {
  background: var(--color-bg);
  border-radius: var(--radius-1);
}

.about-experience {
  background: var(--color-surface);
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
}

.about-sustainability {
  background: var(--color-bg);
  border-radius: var(--radius-1);
}

.about-contact {
  background: var(--color-surface);
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
}

/* Mobile responsive for about page */
@media (max-width: 768px) {
  .about-hero {
    padding: 80px 20px 30px 20px;
    margin: 20px 0;
  }

  .about-content {
    padding: 0 16px;
  }

  .location-features,
  .amenities-grid,
  .experience-highlights,
  .sustainability-features,
  .contact-info {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .about-story,
  .about-location,
  .about-amenities,
  .about-experience,
  .about-sustainability,
  .about-contact {
    margin: 40px 0;
    padding: 24px 0;
  }
}
