/* ========================================
   BRISTOL PALACE HOTEL - STYLES
   ======================================== */

/* CSS Variables */
:root {
  --color-navy: #0B0F1C;
  --color-navy-light: #141B2D;
  --color-gold: #C7A14B;
  --color-gold-light: #d4b76a;
  --color-white: #F4F6FF;
  --color-muted: #A9B3D2;
  --color-border: rgba(244, 246, 255, 0.1);
  --color-silver: #C0C0C0;
  --color-silver-light: #E8E8E8;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;

  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.35);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-navy);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
}

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

ul {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-navy);
}

::-webkit-scrollbar-thumb {
  background: var(--color-navy-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

::selection {
  background: rgba(199, 161, 75, 0.3);
  color: var(--color-white);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-gold {
  color: var(--color-gold);
}

.bg-gold {
  background-color: var(--color-gold);
}

/* Micro Label */
.micro-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.micro-label-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.micro-label-wrap-right {
  justify-content: flex-end;
}

.micro-label-wrap-center {
  justify-content: center;
}

.gold-rule {
  width: 4rem;
  height: 2px;
  background-color: var(--color-gold);
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-gold);
  color: var(--color-navy);
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  transition: all var(--transition-medium);
  border: none;
}

.btn-gold:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 30px rgba(199, 161, 75, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  transition: all var(--transition-medium);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-full {
  width: 100%;
}

.btn-icon {
  padding: 0.875rem;
}

.btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-gold);
  color: var(--color-navy);
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  transition: all var(--transition-medium);
  border: none;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.btn-reserve:hover {
  filter: brightness(1.1);
}

/* Link Gold */
.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold);
  font-weight: 500;
  transition: gap var(--transition-medium);
}

.link-gold:hover {
  gap: 1rem;
}

/* ========================================
   NAVIGATION - FROSTED GLASS
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(11, 15, 28, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-medium);
}

.nav.scrolled {
  background: rgba(11, 15, 28, 0.7);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-line1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #C0C0C0 0%,
    #E8E8E8 25%,
    #FFFFFF 50%,
    #E8E8E8 75%,
    #C0C0C0 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
}

.logo-line2 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.15rem;
  opacity: 0.9;
}

@keyframes silverShine {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-fast);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  color: var(--color-white);
  font-size: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background-color: rgba(11, 15, 28, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--color-white);
  font-size: 1.5rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-white);
}

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

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 28, 0.2) 0%, rgba(11, 15, 28, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-text {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

/* ========================================
   SECTIONS - COMMON
   ======================================== */

.section {
  position: relative;
  overflow: hidden;
}

.section-pinned {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section-flowing {
  padding: 6rem 0;
}

.section-center .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.section-overlay {
  position: absolute;
  inset: 0;
}

.section-overlay-left {
  background: linear-gradient(90deg, rgba(11, 15, 28, 0.92) 0%, rgba(11, 15, 28, 0.6) 55%, transparent 100%);
}

.section-overlay-right {
  background: linear-gradient(270deg, rgba(11, 15, 28, 0.92) 0%, rgba(11, 15, 28, 0.6) 55%, transparent 100%);
}

.section-overlay-dark {
  background: linear-gradient(180deg, rgba(11, 15, 28, 0.45) 0%, rgba(11, 15, 28, 0.75) 100%);
}

.section-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-grid-reverse {
  direction: rtl;
}

.section-grid-reverse > * {
  direction: ltr;
}

.section-text {
  max-width: 500px;
}

.section-text-right {
  margin-left: auto;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ========================================
   ROOMS SECTION
   ======================================== */

.room-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.room-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.room-list-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.room-list-item.active {
  background: rgba(199, 161, 75, 0.15);
  border-color: var(--color-gold);
}

.room-list-item.active .room-price {
  color: var(--color-gold);
}

.room-list-item.active i {
  color: var(--color-gold);
  transform: translateX(4px);
}

.room-info h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.room-price {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.room-price small {
  font-size: 0.75rem;
}

.room-list-item i {
  color: rgba(255, 255, 255, 0.4);
  transition: all var(--transition-fast);
}

.room-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.room-note i {
  color: var(--color-gold);
}

/* ========================================
   FACILITIES SECTION
   ======================================== */

/* Background Video for Facilities */
.facilities-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.facilities-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.facilities-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.facilities-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 28, 0.45) 0%, rgba(11, 15, 28, 0.65) 100%);
}

.facilities-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.facilities-header {
  text-align: center;
  margin-bottom: 3rem;
}

.facilities-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.facilities-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.facility-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  transition: all var(--transition-medium);
  backdrop-filter: blur(10px);
}

.facility-card:hover {
  background: rgba(199, 161, 75, 0.15);
  border-color: rgba(199, 161, 75, 0.4);
  transform: translateY(-4px);
}

.facility-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(199, 161, 75, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-gold);
  font-size: 1.25rem;
}

.facility-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.facility-card p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.facilities-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.showcase-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.showcase-item:hover img {
  transform: scale(1.05);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 15, 28, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.showcase-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-white);
}

/* ========================================
   DINING SECTION
   ======================================== */

.restaurant-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.restaurant-card {
  background: rgba(20, 27, 45, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  transition: all var(--transition-medium);
}

.restaurant-card:hover {
  border-color: rgba(199, 161, 75, 0.3);
}

.restaurant-card.active {
  border-color: var(--color-gold);
  background: rgba(199, 161, 75, 0.1);
}

.restaurant-card img {
  width: 180px;
  height: 140px;
  object-fit: cover;
}

.restaurant-info {
  padding: 1.25rem;
  flex: 1;
}

.restaurant-info h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.restaurant-info p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

/* ========================================
   EVENTS SECTION
   ======================================== */

.hall-selector {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hall-option {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}

.hall-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hall-option.active {
  background: rgba(199, 161, 75, 0.15);
  border-color: var(--color-gold);
}

.hall-option h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.hall-option p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.hall-option.active h4 {
  color: var(--color-gold);
}

/* ========================================
   LOCATION SECTION
   ======================================== */

.location-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.location-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.location-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 28, 0.7) 0%, rgba(11, 15, 28, 0.8) 100%);
}

.location-hero {
  position: relative;
  z-index: 1;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  margin-bottom: 4rem;
}

.location-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 28, 0.5) 0%, rgba(11, 15, 28, 0.9) 100%);
}

.location-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.location-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.location-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
}

.location-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.location-info h3,
.nearby-places h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

/* Mini Map */
.location-map {
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 0.75rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-gold);
  transition: color var(--transition-fast);
}

.map-link:hover {
  color: var(--color-gold-light);
}

.location-address-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.location-address-box i {
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.address-name {
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.location-address-box p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.location-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.location-contact .contact-item i {
  color: var(--color-gold);
  width: 1.5rem;
}

.location-contact .contact-item a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.location-contact .contact-item a:hover {
  color: var(--color-gold);
}

.nearby-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nearby-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  transition: background-color var(--transition-fast);
}

.nearby-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nearby-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(199, 161, 75, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.nearby-name {
  flex: 1;
  margin-left: 1rem;
  font-weight: 500;
  color: var(--color-white);
}

.nearby-time {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}


/* ========================================
   TESTIMONIALS - FROSTED GLASS CARD
   ======================================== */

.testimonial-card-frosted {
  background: rgba(20, 27, 45, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 3rem;
  max-width: 800px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.1);
  text-align: center;
}

.testimonial-quote-icon {
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, #d4b76a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  font-size: 1.25rem;
  box-shadow: 0 8px 25px rgba(199, 161, 75, 0.4);
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating i {
  color: var(--color-gold);
  font-size: 1rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  margin-bottom: 1.5rem;
}

.author-name {
  font-weight: 600;
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.author-date {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.testimonial-dots .dot {
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.testimonial-dots .dot.active {
  width: 2rem;
  background: var(--color-gold);
}

.testimonial-dots .dot:hover {
  background: var(--color-gold);
}

/* ========================================
   GALLERY / MOMENTS SECTION
   ======================================== */

/* Background Image Container */
.gallery-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.gallery-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.gallery-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 28, 0.75) 0%, rgba(11, 15, 28, 0.88) 100%);
}

.moments-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.gallery-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}

/* --- Search & Filter Bar --- */
.moments-filter-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(11, 15, 28, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(199, 161, 75, 0.15);
  border-radius: 1rem;
}

/* Search Box */
.moments-search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 500px;
}

.moments-search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold);
  font-size: 1rem;
  z-index: 2;
  pointer-events: none;
}

.moments-search-box input {
  flex: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(199, 161, 75, 0.25);
  border-radius: 999px;
  padding: 0.875rem 3.5rem 0.875rem 3rem;
  color: var(--color-white);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.moments-search-box input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(199, 161, 75, 0.15), 0 0 20px rgba(199, 161, 75, 0.1);
}

.moments-search-box input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.moments-search-btn {
  position: absolute;
  right: 0.375rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, #d4b76a 100%);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.moments-search-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(199, 161, 75, 0.4);
}

.moments-search-btn:active {
  transform: translateY(-50%) scale(0.95);
}

/* Filter Buttons */
.moments-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.filter-btn {
  padding: 0.625rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  letter-spacing: 0.02em;
}

.filter-btn:hover {
  background: rgba(199, 161, 75, 0.15);
  border-color: rgba(199, 161, 75, 0.4);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--color-gold) 0%, #d4b76a 100%);
  border-color: var(--color-gold);
  color: var(--color-navy);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(199, 161, 75, 0.3);
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover {
  box-shadow: 0 0 0 2px var(--color-gold), 0 8px 30px rgba(199, 161, 75, 0.3);
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

/* Gallery Overlay - Always show captions */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 15, 28, 0.95) 0%, rgba(11, 15, 28, 0.6) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.4s ease;
  padding: 0;
}

.gallery-overlay-content {
  text-align: center;
  padding: 1.5rem;
  width: 100%;
}

.gallery-overlay-content h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.gallery-overlay-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.gallery-overlay-content i {
  color: var(--color-gold);
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Load More Button */
.gallery-load-more {
  text-align: center;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-card-frosted {
  background: rgba(20, 27, 45, 0.88);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  padding: 0;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55),
              0 0 0 1px rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
}

.about-accent-panel {
  background: linear-gradient(180deg, rgba(199, 161, 75, 0.15) 0%, rgba(199, 161, 75, 0.05) 50%, rgba(20, 27, 45, 0.6) 100%);
  border-right: 1px solid rgba(199, 161, 75, 0.2);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.about-accent-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(199, 161, 75, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.about-logo-img {
  width: 180px;
  height: auto;
  max-height: 200px;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 30px rgba(199, 161, 75, 0.35));
}

.about-accent-line {
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.about-accent-year {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.about-content-panel {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-header-area {
  margin-bottom: 1.75rem;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.about-title-gold {
  color: var(--color-gold);
}

.about-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.about-divider-line {
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.about-descriptions {
  margin-bottom: 2rem;
}

.about-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.625rem;
  transition: all 0.3s ease;
}

.about-highlight:hover {
  background: rgba(199, 161, 75, 0.08);
  border-color: rgba(199, 161, 75, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.about-highlight-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(199, 161, 75, 0.18);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.about-highlight:hover .about-highlight-icon {
  background: var(--color-gold);
  color: var(--color-navy);
}

.about-highlight-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.about-highlight-text p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}


/* ========================================
   NEWSLETTER SECTION
   ======================================== */

.newsletter-section-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.newsletter-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.newsletter-close:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
  transform: rotate(90deg);
}

.newsletter-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(199, 161, 75, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-gold);
  font-size: 1.5rem;
}

.newsletter-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.newsletter-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 400px;
}

.newsletter-input-wrap {
  position: relative;
}

.newsletter-input-wrap i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-wrap input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  color: var(--color-white);
}

.newsletter-input-wrap input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.newsletter-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   POPUPS - GENERAL
   ======================================== */

.popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 28, 0.9);
  backdrop-filter: blur(10px);
}

.popup-content {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  padding: 2.5rem;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transition: all var(--transition-fast);
}

.popup-close:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

.popup-content h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: #0B0F1C;
  margin-bottom: 0.5rem;
  text-align: center;
}

.popup-content > p {
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}

.popup-content .form-group {
  margin-bottom: 1rem;
}

.popup-content .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.popup-content .form-group input,
.popup-content .form-group select,
.popup-content .form-group textarea {
  width: 100%;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: #1a1a1a;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.popup-content .form-group input:focus,
.popup-content .form-group select:focus,
.popup-content .form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(199, 161, 75, 0.2);
}

.popup-content .form-group input::placeholder,
.popup-content .form-group textarea::placeholder {
  color: #888888;
}

.popup-content .form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.popup-content .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* --- Terms Popup --- */
.popup-content-terms {
  max-width: 700px;
  max-height: 85vh;
}

.terms-scrollable {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 1rem;
}

.terms-intro {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.terms-section {
  margin-bottom: 1.25rem;
}

.terms-section h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #0B0F1C;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.terms-section p,
.terms-section li {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.terms-section ul {
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.terms-section li {
  margin-bottom: 0.35rem;
  list-style-type: disc;
}

.terms-footer-btn {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  text-align: center;
}

/* --- Privacy Policy Contact Details --- */
.contact-details {
  background: rgba(199, 161, 75, 0.1);
  border-left: 3px solid var(--color-gold);
  padding: 1rem;
  margin-top: 0.75rem;
  border-radius: 0 0.5rem 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.8;
}

.contact-details strong {
  color: #0B0F1C;
  font-weight: 600;
}

.contact-details a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #0B0F1C;
  text-decoration: underline;
}

/* ========================================
   FROSTED GLASS POPUPS
   ======================================== */

.frosted-overlay {
  background: rgba(11, 15, 28, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.popup-frosted {
  background: rgba(20, 27, 45, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 0;
  max-width: 450px;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.1);
}

.frosted-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.frosted-close:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
  transform: rotate(90deg);
}

/* --- Legal Popups --- */
.popup-legal {
  max-width: 600px;
}

.legal-popup-header {
  text-align: center;
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(199, 161, 75, 0.15) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.legal-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, #d4b76a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 25px rgba(199, 161, 75, 0.3);
}

.legal-icon-wrap i {
  font-size: 1.5rem;
  color: var(--color-navy);
}

.legal-popup-header h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-white);
  margin: 0;
}

.legal-content-scrollable {
  padding: 1.5rem 2rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.legal-content-scrollable::-webkit-scrollbar {
  width: 6px;
}

.legal-content-scrollable::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.legal-content-scrollable::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px;
}

.legal-intro {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section {
  margin-bottom: 1.25rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.legal-section p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.legal-section ul {
  margin: 0.5rem 0;
  padding-left: 1.25rem;
}

.legal-section li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0.35rem;
  list-style-type: disc;
}

.legal-section li strong {
  color: var(--color-gold);
  font-weight: 600;
}

.legal-contact-details {
  background: rgba(199, 161, 75, 0.1);
  border-left: 3px solid var(--color-gold);
  padding: 1rem;
  margin-top: 0.75rem;
  border-radius: 0 0.5rem 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.8;
}

.legal-contact-details strong {
  color: var(--color-white);
  font-weight: 600;
}

.legal-contact-details a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-contact-details a:hover {
  color: var(--color-gold);
}

.legal-popup-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* --- Booking Popups --- */
.popup-booking {
  max-width: 500px;
}

.booking-popup-header {
  text-align: center;
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(199, 161, 75, 0.15) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.booking-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, #d4b76a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 25px rgba(199, 161, 75, 0.3);
}

.booking-icon-wrap i {
  font-size: 1.5rem;
  color: var(--color-navy);
}

.booking-popup-header h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.booking-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.booking-content-scrollable {
  padding: 1.5rem 2rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.booking-content-scrollable::-webkit-scrollbar {
  width: 6px;
}

.booking-content-scrollable::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.booking-content-scrollable::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px;
}

.booking-intro {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group-frosted {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group-frosted label {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group-frosted input,
.form-group-frosted select,
.form-group-frosted textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  padding: 0.875rem 1rem;
  color: var(--color-white);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-group-frosted input:focus,
.form-group-frosted select:focus,
.form-group-frosted textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(199, 161, 75, 0.2);
}

.form-group-frosted input::placeholder,
.form-group-frosted textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group-frosted select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C7A14B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group-frosted select option {
  background: var(--color-navy);
  color: var(--color-white);
}

.form-group-frosted textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row-frosted {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-submit {
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: 0.95rem;
}

/* --- Contact Popup --- */
.contact-popup-header {
  text-align: center;
  padding: 2.5rem 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(199, 161, 75, 0.15) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.contact-icon-wrap {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, #d4b76a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 30px rgba(199, 161, 75, 0.3);
}

.contact-icon-wrap i {
  font-size: 1.75rem;
  color: var(--color-navy);
}

.contact-popup-header h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.contact-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.contact-details-frosted {
  padding: 1.5rem 2rem;
  overflow-y: auto;
  max-height: 50vh;
  flex: 1;
}

.contact-details-frosted::-webkit-scrollbar {
  width: 6px;
}

.contact-details-frosted::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.contact-details-frosted::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px;
}

.contact-item-frosted {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.contact-item-frosted:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(199, 161, 75, 0.3);
  transform: translateX(5px);
}

.contact-item-frosted:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  background: rgba(199, 161, 75, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1rem;
}

.contact-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.contact-info a:hover {
  color: var(--color-gold);
}

.contact-popup-footer {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.phone-divider {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0.5rem;
}


/* ========================================
   FOOTER
   ======================================== */

.footer-logo-section {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(199, 161, 75, 0.2);
}

.footer-logo-section img {
  height: 150px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo-section img:hover {
  opacity: 1;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #C0C0C0 0%,
    #E8E8E8 25%,
    #FFFFFF 50%,
    #E8E8E8 75%,
    #C0C0C0 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.1em;
}

.footer {
  background: var(--color-navy);
  border-top: 1px solid var(--color-border);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #C0C0C0 0%,
    #E8E8E8 50%,
    #C0C0C0 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact .contact-item i {
  color: var(--color-gold);
  margin-top: 0.25rem;
}

.footer-contact .contact-item a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-contact .contact-item a:hover {
  color: var(--color-gold);
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li {
  margin: 0;
  padding: 0;
  display: block;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.25rem 0;
  margin: 0;
  text-align: left;
}

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

.footer-link-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: inherit;
  padding: 0.25rem 0;
}

.footer-link-btn:hover {
  color: var(--color-gold);
}

/* Footer Social - Centered */
.footer-social-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(199, 161, 75, 0.2);
  width: 100%;
}

.footer-social-center .social-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1.75rem;
  margin-top: 0;
  position: relative;
  display: block;
  letter-spacing: 0.08em;
  text-align: center;
  width: 100%;
}

.footer-social-center .social-title::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.footer-social-center .social-links {
  justify-content: center;
}

.footer-social-center .social-links a {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.footer-social-center .social-links a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(199, 161, 75, 0.35);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-single-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
}

.footer-divider {
  color: rgba(255, 255, 255, 0.3);
  user-select: none;
}

.footer-single-line a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0 0.5rem;
}

.footer-single-line a:hover {
  color: var(--color-gold);
}

/* ========================================
   GALLERY LIGHTBOX
   ======================================== */

#galleryLightboxPopup {
  padding: 0;
  margin: 0;
}

#galleryLightboxPopup .popup-content {
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(11, 15, 28, 0.97);
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.gallery-lightbox-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  padding: 0;
}

.gallery-lightbox-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  transform: scale(0.15) rotate(-3deg);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.34, 1.8, 0.64, 1),
              opacity 0.5s ease;
}

.popup.active .gallery-lightbox-image-wrap img {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

#galleryLightboxPopup .frosted-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2002;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Navigation Arrows */
.gallery-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 4.5rem;
  height: 4.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2001;
  backdrop-filter: blur(10px);
}

.gallery-nav:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 30px rgba(199, 161, 75, 0.5);
}

.gallery-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-nav-prev {
  left: 2rem;
}

.gallery-nav-next {
  right: 2rem;
}

/* Image Counter */
.gallery-counter {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  letter-spacing: 0.15em;
  background: rgba(11, 15, 28, 0.6);
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  z-index: 2001;
}

/* Zoom Controls */
.gallery-zoom-controls {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 1.5rem;
  z-index: 2001;
}

.gallery-zoom-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.gallery-zoom-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
  transform: scale(1.1);
}

/* Zoomed State */
.gallery-lightbox-image-wrap.zoomed img {
  transform: scale(1.5);
  cursor: grab;
}

.gallery-lightbox-image-wrap.zoomed img:active {
  cursor: grabbing;
}

/* Lightbox Info Panel */
.lightbox-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11, 15, 28, 0.98) 0%, rgba(11, 15, 28, 0.85) 50%, transparent 100%);
  padding: 5rem 2rem 2.5rem;
  text-align: center;
  z-index: 5;
  pointer-events: none;
}

.lightbox-info h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.lightbox-info p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Slide Animations */
.gallery-slide-out-left {
  animation: slideOutLeft 0.3s ease forwards;
}

.gallery-slide-in-right {
  animation: slideInRight 0.3s ease forwards;
}

.gallery-slide-out-right {
  animation: slideOutRight 0.3s ease forwards;
}

.gallery-slide-in-left {
  animation: slideInLeft 0.3s ease forwards;
}

@keyframes slideOutLeft {
  from { transform: scale(1) translateX(0); opacity: 1; }
  to { transform: scale(0.8) translateX(-100px); opacity: 0; }
}

@keyframes slideInRight {
  from { transform: scale(0.8) translateX(100px); opacity: 0; }
  to { transform: scale(1) translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
  from { transform: scale(1) translateX(0); opacity: 1; }
  to { transform: scale(0.8) translateX(100px); opacity: 0; }
}

@keyframes slideInLeft {
  from { transform: scale(0.8) translateX(-100px); opacity: 0; }
  to { transform: scale(1) translateX(0); opacity: 1; }
}

/* ========================================
   COOKIE CONSENT
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: rgba(11, 15, 28, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(199, 161, 75, 0.2);
  padding: 1.5rem 2rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.cookie-text p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  border: 1px solid transparent;
}

.cookie-btn-accept {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

.cookie-btn-accept:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 15px rgba(199, 161, 75, 0.3);
}

.cookie-btn-customize {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-btn-customize:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Cookie Preferences Popup */
.cookie-preferences-content {
  max-width: 500px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.cookie-option-text p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  width: 3rem;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 0.15rem;
  left: 0.15rem;
  width: 1.2rem;
  height: 1.2rem;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle:checked {
  background: var(--color-gold);
}

.cookie-toggle:checked::after {
  transform: translateX(1.5rem);
}

.cookie-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   GOLDEN TEXTURE & EFFECTS
   ======================================== */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.018;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(199, 161, 75, 0.15) 10px,
      rgba(199, 161, 75, 0.15) 11px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(199, 161, 75, 0.1) 10px,
      rgba(199, 161, 75, 0.1) 11px
    );
}

.gold-texture {
  background:
    linear-gradient(135deg, #C7A14B 0%, #d4b76a 25%, #e8d5a3 50%, #d4b76a 75%, #C7A14B 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 4s ease-in-out infinite;
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}


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

/* Large screens */
@media (max-width: 1200px) {
  .facilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* Tablets */
@media (max-width: 1024px) {
  .logo img {
    height: 65px;
  }

  .logo-line1 {
    font-size: 1.5rem;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-grid-reverse {
    direction: ltr;
  }

  .section-text-right {
    margin-left: 0;
  }

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

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

  .gallery-item-wide {
    grid-column: span 2;
  }

  .about-card-frosted {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

  .about-accent-panel {
    border-right: none;
    border-bottom: 1px solid rgba(199, 161, 75, 0.2);
    padding: 2rem;
    flex-direction: row;
    gap: 1.5rem;
  }

  .about-accent-icon {
    width: 4rem;
    height: 4rem;
  }

  .about-accent-icon i {
    font-size: 1.75rem;
  }

  .about-content-panel {
    padding: 2rem 2rem 1.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Nav */
  .nav-links,
  .nav .btn-gold {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Logo */
  .logo img {
    height: 65px;
  }

  .logo-line1 {
    font-size: 1.25rem;
  }

  .logo-line2 {
    font-size: 0.7rem;
  }

  /* Hero */
  .hero-content {
    flex-direction: column;
    padding-top: 6rem;
  }

  .hero-text {
    text-align: center;
  }

  .micro-label-wrap {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  /* Facilities */
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facilities-showcase {
    grid-template-columns: 1fr;
  }

  /* Restaurant */
  .restaurant-card {
    flex-direction: column;
  }

  .restaurant-card img {
    width: 100%;
    height: 160px;
  }

  /* Location */
  .location-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  /* Gallery Grid */
  .gallery-grid {
    grid-auto-rows: 150px;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  /* Testimonials */
  .testimonial-card-frosted {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  .testimonial-quote-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
    top: -1.25rem;
    left: 1.5rem;
  }

  /* Popups */
  .popup-content {
    padding: 1.5rem;
  }

  .popup-content .form-row {
    grid-template-columns: 1fr;
  }

  .popup-content-wide,
  .popup-legal,
  .popup-booking {
    max-width: 90vw;
  }

  /* Moments Filter Bar */
  .moments-filter-bar {
    padding: 1.25rem 1rem;
    gap: 1.25rem;
  }

  .moments-search-box {
    max-width: 100%;
  }

  .moments-search-box input {
    padding: 0.875rem 0.875rem 0.875rem 2.75rem;
    font-size: 0.95rem;
  }

  .moments-search-btn {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
  }

  .moments-filter-wrap {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
  }

  .gallery-overlay-content h4 {
    font-size: 1.1rem;
  }

  .gallery-overlay-content p {
    font-size: 0.75rem;
  }

  /* About */
  .about-card-frosted {
    margin: 0 1rem;
  }

  .about-descriptions {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .about-highlight {
    flex-direction: row;
    align-items: center;
    padding: 1rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .about-stat:not(:last-child)::after {
    display: none;
  }

  .about-content-panel {
    padding: 1.5rem;
  }

  /* Lightbox */
  .gallery-lightbox-image-wrap {
    width: 100vw;
    height: 100vh;
  }

  .gallery-nav {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
  }

  .gallery-nav-prev {
    left: 0.75rem;
  }

  .gallery-nav-next {
    right: 0.75rem;
  }

  .gallery-zoom-controls {
    bottom: 5rem;
    right: 1rem;
  }

  .gallery-zoom-btn {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.75rem;
  }

  .lightbox-info h4 {
    font-size: 1.5rem;
  }

  .lightbox-info p {
    font-size: 0.9rem;
  }

  /* Cookie */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  /* Contact popup */
  .contact-item-frosted {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin: 0 auto;
  }

  .contact-details-frosted,
  .contact-popup-footer {
    padding: 1.25rem 1.5rem;
  }

  .contact-popup-header {
    padding: 2rem 1.5rem 1rem;
  }

  .popup-frosted {
    max-width: 90vw;
    margin: 1rem;
  }

  /* Legal popup */
  .legal-popup-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .legal-content-scrollable {
    padding: 1.25rem 1.5rem;
  }

  .legal-popup-footer {
    padding: 1.25rem 1.5rem;
  }

  .legal-section h4 {
    font-size: 1rem;
  }

  /* Booking popup */
  .booking-popup-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .booking-content-scrollable {
    padding: 1.25rem 1.5rem;
  }

  .form-row-frosted {
    grid-template-columns: 1fr;
  }

  .booking-icon-wrap {
    width: 3rem;
    height: 3rem;
  }

  .booking-icon-wrap i {
    font-size: 1.25rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .logo img {
    height: 55px;
  }

  .logo-line1 {
    font-size: 1.1rem;
  }

  .logo-line2 {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

  .gallery-item-wide {
    grid-column: span 1;
  }

  /* Moments */
  .moments-filter-bar {
    padding: 1rem;
  }

  .moments-search-box input {
    font-size: 0.9rem;
  }

  .filter-btn {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
  }

  .footer-social-center {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .footer-social-center .social-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-social-center .social-links {
    gap: 1.25rem;
  }

  .footer-social-center .social-links a {
    width: 3rem;
    height: 3rem;
    font-size: 1.15rem;
  }

  /* Footer single line */
  .footer-single-line {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-divider {
    display: none;
  }

  /* About */
  .about-accent-panel {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .about-accent-title {
    text-align: center;
    font-size: 1.35rem;
  }

  .about-stat-number {
    font-size: 1.5rem;
  }

  .about-stat-label {
    font-size: 0.65rem;
  }

  .about-title {
    font-size: 1.5rem;
  }
}
