@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --sand: #f5e6d3;
  --sand-light: #faf3eb;
  --ocean: #0a6e8a;
  --ocean-deep: #064a5e;
  --ocean-light: #1a9bba;
  --sunset: #e8734a;
  --sunset-glow: #f4a261;
  --gold: #d4a853;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --off-white: #fafafa;
  --dark: #1a1a2e;
  --dark-soft: #2d2d44;
  --text: #3a3a4a;
  --text-light: #6b6b7b;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-bg: rgba(255, 255, 255, 0.95);
}

body.dark-mode {
  --sand: #2a231b;
  --sand-light: #1f1a14;
  --ocean: #4ebde0;
  --ocean-deep: #7dd3f0;
  --ocean-light: #2b7a94;
  --sunset: #ff8b63;
  --sunset-glow: #e8734a;
  --gold: #f4c26b;
  --gold-light: #d4a853;
  --white: #1a1a2e;
  --off-white: #11111e;
  --dark: #ffffff;
  --dark-soft: #f0f0f0;
  --text: #e0e0e0;
  --text-light: #a0a0b0;
  --glass-bg: rgba(0, 0, 0, 0.35);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --nav-bg: rgba(17, 17, 30, 0.95);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--dark);
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

/* ─── SITE LOADER ─── */
.lucide {
  width: 1.2em;
  height: 1.2em;
  vertical-align: -0.125em;
}

/* ─── ICON COLORS ─── */
.feat-icon {
  color: var(--sunset);
  margin-right: 8px;
}

.room-amenities svg.lucide {
  color: var(--ocean-light);
}



.menu-category h4 svg.lucide {
  color: var(--sunset-glow);
  margin-right: 6px;
}

.act-icon {
  margin-right: 10px;
}

.nb-icon {
  color: var(--ocean-light);
  margin-right: 10px;
}

.footer-col ul li a svg.lucide {
  color: var(--gold-light);
  margin-right: 4px;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #112F1F;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}

.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  position: relative;
  z-index: 2;
  animation: heartbeatLogo 1.5s infinite ease-in-out;
}

.loader-content img {
  width: 180px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

@keyframes heartbeatLogo {
  0% { transform: scale(1); }
  15% { transform: scale(1.15); }
  30% { transform: scale(1); }
  45% { transform: scale(1.15); }
  60% { transform: scale(1); }
  100% { transform: scale(1); }
}



/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 14px 5%;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.navbar.scrolled .logo-img {
  height: 75px;
  filter: none;
}

@media (max-width: 768px) {
  .logo-img {
    height: 65px;
  }

  .navbar.scrolled .logo-img {
    height: 50px;
  }
}

.nav-cta {
  background: var(--sunset);
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.85rem;
}

.nav-cta:hover {
  background: var(--sunset-glow);
  transform: translateY(-2px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.theme-toggle {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.navbar.scrolled .theme-toggle {
  color: var(--text);
}

.theme-toggle:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.theme-toggle svg {
  position: absolute;
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.theme-toggle .moon {
  opacity: 0;
  transform: translateY(20px) rotate(45deg);
}

body.dark-mode .theme-toggle .sun {
  opacity: 0;
  transform: translateY(-20px) rotate(-45deg);
}

body.dark-mode .theme-toggle .moon {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  transition: var(--transition);
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

.nav-links a:hover,
.navbar.scrolled .nav-links a:hover {
  color: var(--sunset);
}

/* ─── Hamburger Button (From Uiverse.io by JulanDeAlb) ─── */
.hamburger {
  cursor: pointer;
  display: none;
  z-index: 1010;
}

.hamburger input {
  display: none;
}

.hamburger svg {
  /* The size of the SVG defines the overall size */
  height: 2.6em;
  width: 2.6em;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .line {
  stroke: var(--dark);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/* ─── Mobile nav-links-cta (Book Now inside menu) ─── */
.nav-links-cta {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(17, 17, 30, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 120px 32px 48px;
    gap: 0;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    z-index: 1000;
  }

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

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff !important;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: var(--sunset) !important;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links-cta {
    display: block;
    margin-top: 16px;
    border-bottom: none !important;
  }

  .nav-links-cta .nav-cta {
    display: inline-block;
    padding: 14px 40px;
    font-size: 1rem;
  }

  .nav-cta-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ─── HERO CANVAS ─── */
.hero-scroll-container {
  position: relative;
  height: 300vh;
}

.hero-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 50, 0.45) 0%, rgba(10, 30, 50, 0.2) 40%, rgba(10, 30, 50, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 1s ease 0.2s both;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 1s ease 0.4s both;
}

.hero-content h1 span {
  color: var(--sunset-glow);
}

.hero-content p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 1s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 1s ease 0.8s both;
}

.btn-primary {
  padding: 14px 36px;
  background: var(--sunset);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
  background: var(--sunset-glow);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232, 115, 74, 0.35);
}

.btn-secondary {
  padding: 14px 36px;
  background: transparent;
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll-hint span {
  display: block;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}

/* ─── GALLERY ─── */
.gallery {
  background: var(--white);
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.gallery-track img {
  height: 260px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─── SECTIONS ─── */
.section {
  padding: 100px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--ocean);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── ABOUT ─── */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(140, 140, 140, 0.55); /* More transparent white background */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 18px;
}

.badge-stars {
  display: flex;
  gap: 4px;
}

.badge-stars svg.star {
  width: 16px;
  height: 16px;
  color: #ffb800; /* Yellow */
}

.badge-stars svg.star.empty {
  fill: none;
  opacity: 0.6;
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.about-image-badge .badge-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ocean-deep);
  line-height: 1.1;
}

.about-image-badge .badge-text {
  font-size: 0.7rem;
  color: var(--ocean-deep);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 3px;
  font-weight: 600;
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--sand-contactslight);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.about-feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.about-feature .feat-icon {
  font-size: 1.4rem;
}

.about-feature .feat-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}

/* ─── ROOMS ─── */
.rooms {
  background: var(--sand-light);
}

/* ─── Room AC/Non-AC Toggle Capsule ─── */
.room-toggle-container {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.room-toggle-capsule {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  padding: 6px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
  gap: 4px;
}

.toggle-capsule-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: inherit;
}

.toggle-capsule-btn .lucide {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.toggle-capsule-btn:hover {
  color: var(--dark);
}

.toggle-capsule-btn.active {
  background: var(--ocean);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(10, 110, 138, 0.35);
}

.toggle-capsule-btn.active .lucide {
  transform: scale(1.1);
}

.room-price .price {
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.room-price .price.updating {
  opacity: 0;
  transform: translateY(-6px);
}

.rooms-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.rooms-grid .room-card {
  flex: 1 1 340px;
  max-width: 370px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

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

.room-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

.room-card:hover .room-card-img img {
  transform: scale(1.08);
}

.room-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ocean);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.room-card-body {
  padding: 28px;
}

.room-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.room-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.room-price .price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ocean);
}

.room-price .per {
  font-size: 0.82rem;
  color: var(--text-light);
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-amenities span {
  padding: 5px 12px;
  background: var(--sand-light);
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--text);
}

/* ─── AMENITIES ─── */
.amenities {
  background: var(--white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.amenity-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: var(--sand-light);
  transition: var(--transition);
  border: 1px solid transparent;
}

.amenity-card:hover {
  border-color: var(--item-color, var(--ocean-light));
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.amenity-icon {
  font-size: 2.4rem;
  margin: 0 auto 16px;
  display: block;
  color: var(--item-color, var(--ocean));
  transition: transform 0.3s ease;
}

.amenity-card:hover .amenity-icon {
  transform: scale(1.1);
}

.amenity-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

/* ─── DINING ─── */
.dining {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: var(--white);
}

.dining .section-label {
  color: var(--sunset-glow);
}

.dining .section-title {
  color: var(--white);
}

.dining .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.dining-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.dining-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dining-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.4s ease;
}

.dining-images img:hover {
  transform: scale(1.04);
}

.dining-images img:first-child {
  grid-column: 1 / -1;
  height: 260px;
}

.dining-content h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 28px;
}

.menu-category {
  margin-bottom: 28px;
}

.menu-category h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sunset-glow);
  margin-bottom: 14px;
  font-weight: 600;
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-items span {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.menu-items span:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--sunset-glow);
}

/* ─── ACTIVITIES ─── */
.activities {
  background: var(--sand-light);
}

.activities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.activities-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.activities-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.activities-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.activity-item:hover {
  border-left-color: var(--item-color, var(--ocean));
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.activity-item .act-icon {
  color: var(--item-color, var(--sunset));
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}

.activity-item:hover .act-icon {
  transform: scale(1.15);
}

.activity-item .act-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
}

/* ─── PRICING ─── */
.pricing {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius);
  background: var(--sand-light);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}

.price-card.featured {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%);
  color: #ffffff;
  border-color: var(--ocean);
  transform: scale(1.05);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.price-card-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sunset);
  color: #ffffff;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.price-card.featured h3 {
  color: #ffffff;
}

.price-card .price-amount {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 16px 0 4px;
}

.price-card.featured .price-amount {
  color: #ffffff;
}

.price-card .price-currency {
  font-size: 1.2rem;
  vertical-align: top;
}

.price-card .price-unit {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.price-card.featured .price-unit {
  color: rgba(255, 255, 255, 0.7);
}

.price-card .price-features {
  margin-bottom: 28px;
}

.price-card .price-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.price-card.featured .price-features li {
  border-bottom-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

/* ─── LOCATION ─── */
.location {
  background: var(--sand-light);
}

.loc-wrap {
  font-family: 'DM Sans', sans-serif;
  max-width: 1000px;
  margin: 0 auto;
}

.layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 860px) {
  .layout {
    grid-template-columns: 1fr;
  }
}

/* Map panel */
.map-panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  background: #d1eae4;
  min-height: 388px;
  box-shadow: var(--shadow-sm);
}

.map-overlay-card {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 14px 16px;
  max-width: 220px;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.map-resort-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.map-address {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 8px;
}

.map-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.map-stars {
  color: var(--gold);
  font-size: 0.8rem;
}

.map-pin-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.map-pin {
  width: 36px;
  height: 36px;
  background: var(--sunset);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.map-pin svg {
  transform: rotate(45deg);
  font-size: 1.1rem;
  color: var(--white);
}

.map-pin-label {
  margin-top: 10px;
  background: var(--white);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  border: 1px solid rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.map-road-v {
  position: absolute;
  left: 62%;
  top: 0;
  bottom: 0;
  width: 8px;
  background: rgba(255, 255, 255, 0.6);
}

.map-road-h {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
}

.map-water {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 32%;
  background: var(--ocean-light);
  opacity: 0.3;
}

.map-sand {
  position: absolute;
  right: 30%;
  top: 0;
  bottom: 0;
  width: 8%;
  background: var(--gold-light);
  opacity: 0.4;
}

.map-open-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--ocean);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  z-index: 10;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.map-open-btn:hover {
  background: var(--ocean-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Info panel */
.info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.address-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.address-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(10, 110, 138, 0.1);
  color: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.address-text .a-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ocean);
  margin-bottom: 8px;
  font-weight: 600;
}

.address-text .a-value {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.att-label {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 16px;
  font-weight: 600;
}

.att-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.att-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.att-item:hover {
  transform: translateX(4px);
  border-color: rgba(10, 110, 138, 0.2);
}

.att-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-rock {
  background: var(--text-light);
}

.dot-point {
  background: var(--ocean-light);
}

.dot-estuary {
  background: var(--ocean);
}

.att-name {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
}

.att-dist {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--sand-light);
  padding: 4px 12px;
  border-radius: 50px;
}

.gmaps-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.gmaps-btn:hover {
  background: var(--sand-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gmaps-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sunset);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 0.8rem;
}

.booking {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%);
  padding: 100px 5%;
  display: flex;
  justify-content: center;
}

.booking-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3.5rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  max-width: 900px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sunset);
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.main-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
  color: var(--dark);
  margin: 0 0 10px;
}

.sub {
  font-size: 1.05rem;
  color: var(--text-light);
  text-align: center;
  margin: 0 auto 3rem;
  line-height: 1.6;
  max-width: 600px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 2.5rem;
}

.info-card {
  background: var(--sand-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

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

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.icon-teal {
  background: rgba(10, 110, 138, 0.1);
  color: var(--ocean);
}

.icon-amber {
  background: rgba(232, 115, 74, 0.1);
  color: var(--sunset);
}

.icon-blue {
  background: rgba(10, 110, 138, 0.1);
  color: var(--ocean-deep);
}

.info-card-text .label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-weight: 600;
}

.info-card-text .value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
}

.info-card-text .sub-value {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

.divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0 0 2.5rem;
}

.contacts-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ocean);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  width: 100%;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
}

.contact-btn:hover {
  background: var(--sand-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(10, 110, 138, 0.2);
}

.contact-btn .c-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.phone-avatar {
  background: rgba(10, 110, 138, 0.1);
  color: var(--ocean);
}

.wa-avatar {
  background: #e8f5e9;
  color: #2e7d32;
}

.contact-btn .c-info {
  flex: 1;
  min-width: 0;
}

.contact-btn .c-info .c-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-btn .c-info .c-num {
  font-size: 0.82rem;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-btn .c-tag {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-call {
  background: var(--ocean);
  color: var(--white);
}

.tag-whatsapp {
  background: #25d366;
  color: var(--white);
}

.advance-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

.advance-note svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  margin-top: -3px;
}

.advance-badge {
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
  background: rgba(232, 115, 74, 0.15);
  color: var(--sunset);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 5% 30px;
}

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

.footer-logo {
  max-width: 180px;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--sunset-glow);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes bounce {

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

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

@keyframes scrollDot {
  0% {
    opacity: 1;
    top: 8px;
  }

  100% {
    opacity: 0;
    top: 24px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {

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

  .price-card.featured {
    transform: scale(1);
  }

  .price-card.featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {

  .about-grid,
  .dining-wrapper,
  .activities-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .rooms-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-details {
    grid-template-columns: 1fr;
  }

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

  .about-features {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .gallery-track img {
    height: 180px;
  }

  .booking-wrap {
    padding: 2rem 1.25rem;
  }

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

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-track img {
    height: 140px;
  }

  .booking-wrap {
    padding: 1.75rem 1rem;
  }

  .contact-btn {
    padding: 12px;
    gap: 8px;
  }

  .contact-btn .c-avatar {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .contact-btn .c-info .c-name {
    font-size: 0.88rem;
  }

  .contact-btn .c-info .c-num {
    font-size: 0.76rem;
  }

  .contact-btn .c-tag {
    padding: 3px 8px;
    font-size: 0.7rem;
  }
}

/* ─── DARK MODE OVERRIDES FOR INVERTED SECTIONS ─── */
body.dark-mode .dining {
  background: #ffffff;
  color: #3a3a4a;
}
body.dark-mode .dining .section-title,
body.dark-mode .dining-content h3 {
  color: #1a1a2e;
}
body.dark-mode .dining .section-subtitle {
  color: #6b6b7b;
}

body.dark-mode .menu-items span {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #3a3a4a;
}
body.dark-mode .menu-items span:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: var(--sunset);
  color: #1a1a2e;
}

body.dark-mode .footer {
  background: #ffffff;
  color: #3a3a4a;
}
body.dark-mode .footer-col h4 {
  color: #1a1a2e;
}
body.dark-mode .footer-col a {
  color: #6b6b7b;
}
body.dark-mode .footer-col a:hover {
  color: var(--sunset);
}
body.dark-mode .footer-bottom {
  border-top-color: rgba(0, 0, 0, 0.1);
  color: #6b6b7b;
}

/* ─── REVIEWS ─── */
.reviews {
  background: var(--off-white);
}

/* Rating Summary */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 600px;
  margin: 0 auto 48px;
  padding: 32px 36px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
}

.reviews-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.reviews-score-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.reviews-score-stars {
  display: flex;
  gap: 2px;
}

.reviews-score-stars .lucide {
  width: 18px;
  height: 18px;
  color: var(--sunset-glow);
}

.reviews-score-count {
  font-size: 0.82rem;
  color: var(--text-light);
  white-space: nowrap;
}

.reviews-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.reviews-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-bar-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  width: 14px;
  text-align: right;
  flex-shrink: 0;
}

.reviews-bar-track {
  flex: 1;
  height: 8px;
  background: var(--sand);
  border-radius: 50px;
  overflow: hidden;
}

.reviews-bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--sunset-glow), var(--sunset));
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Review Cards Carousel */
.reviews-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 5% 20px;
  scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.review-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
  scroll-snap-align: start;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  background: hsl(var(--avatar-hue, 200), 55%, 50%);
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-light);
}

.review-rating {
  display: flex;
  gap: 1px;
  flex-shrink: 0;
  margin-left: auto;
}

.review-rating .lucide {
  width: 14px;
  height: 14px;
  color: var(--sunset-glow);
}

.review-rating .lucide.empty {
  opacity: 0.25;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-source {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  padding: 4px 10px;
  background: var(--sand);
  border-radius: 50px;
  width: fit-content;
}

/* Carousel Controls */
.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.reviews-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.reviews-btn:hover {
  background: var(--ocean);
  color: #fff;
  border-color: var(--ocean);
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
}

/* CTA */
.reviews-cta {
  text-align: center;
  margin-top: 36px;
}

.reviews-write-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ocean);
  border: 2px solid var(--ocean);
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.reviews-write-btn .lucide {
  width: 16px;
  height: 16px;
}

.reviews-write-btn:hover {
  background: var(--ocean);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 110, 138, 0.3);
}

/* Responsive */
@media (max-width: 640px) {
  .reviews-summary {
    flex-direction: column;
    gap: 24px;
    padding: 24px 20px;
    margin: 0 auto 32px;
  }

  .reviews-bars {
    width: 100%;
  }

  .review-card {
    width: 280px;
    padding: 22px 18px 18px;
  }

  .reviews-score-num {
    font-size: 2.6rem;
  }

  .reviews-controls {
    margin-top: 20px;
  }

  .reviews-btn {
    width: 42px;
    height: 42px;
  }
}

/* Dark Mode overrides for Reviews */
body.dark-mode .reviews {
  background: var(--off-white);
}

body.dark-mode .reviews-summary {
  background: var(--white);
  border-color: var(--glass-border);
}

body.dark-mode .review-card {
  background: var(--white);
  border-color: var(--glass-border);
}

body.dark-mode .review-source {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
}

body.dark-mode .reviews-btn {
  background: var(--white);
  border-color: var(--glass-border);
  color: var(--dark);
}

body.dark-mode .reviews-btn:hover {
  background: var(--ocean);
  color: #fff;
  border-color: var(--ocean);
}

body.dark-mode .reviews-write-btn {
  color: var(--ocean);
  border-color: var(--ocean);
}

body.dark-mode .reviews-write-btn:hover {
  background: var(--ocean);
  color: #fff;
}