/* =========================================================
   The Bellwyn Resort - Luxury Boutique Resort (Vagator, Goa)
   Zero-Dependency Modern CSS Stylesheet
   ========================================================= */

:root {
  /* Luxury Palette */
  --sand-50: #FDFBF7;
  --sand-100: #F9F5EC;
  --sand-200: #F2E8D6;
  --sand-300: #E8D8BC;
  --sand-400: #DCC39E;
  --sand-500: #CEAC7F;
  --sand-600: #B89260;
  --sand-700: #947248;
  --sand-800: #755A3A;
  --sand-900: #5F492F;

  --ocean-50: #F0F8FA;
  --ocean-100: #E1F1F5;
  --ocean-800: #0C3B4B;
  --ocean-900: #082531;
  --ocean-950: #051821;

  --gold-300: #EECB94;
  --gold-400: #E5B16B;
  --gold-500: #D99544;
  --gold-600: #C27830;
  --gold-700: #9C5924;

  --palm-50: #F2F8F5;
  --palm-100: #E2F0E9;
  --palm-600: #34775D;
  --palm-700: #2A5F4B;

  --white: #ffffff;
  --black: #000000;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(5, 24, 33, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(5, 24, 33, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(5, 24, 33, 0.14);
  --shadow-xl: 0 25px 50px -12px rgba(5, 24, 33, 0.25);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--sand-50);
  color: var(--ocean-950);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--transition);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Announcement Bar */
.announcement-bar {
  background-color: var(--ocean-950);
  color: var(--sand-200);
  font-size: 0.8rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.weather-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sand-200);
  font-weight: 500;
}

.weather-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}

.top-contact-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
}

.top-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sand-300);
}

.top-contact-links a:hover {
  color: var(--gold-400);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-200);
  padding: 16px 0;
  transition: var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-950);
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
}

.logo-text h1 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--ocean-900);
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-text span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 600;
  display: block;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocean-900);
  letter-spacing: 0.03em;
  position: relative;
  padding: 6px 0;
}

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

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

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

.nav-cta-btn {
  background: var(--ocean-900);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.nav-cta-btn:hover {
  background: var(--ocean-950);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--gold-400);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--ocean-900);
  padding: 6px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ocean-950);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 8s ease-out;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.05);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(5, 24, 33, 0.2) 0%, rgba(5, 24, 33, 0.75) 100%),
              linear-gradient(to bottom, rgba(5, 24, 33, 0.5) 0%, transparent 40%, rgba(5, 24, 33, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 60px 24px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--gold-300);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--sand-200);
  margin-bottom: 34px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--ocean-950);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(217, 149, 68, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(217, 149, 68, 0.55);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.hero-features-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--sand-300);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Section Common Styling */
.section {
  padding: 90px 0;
  position: relative;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sand-200);
  color: var(--gold-700);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-tag.dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold-400);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ocean-950);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

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

.section-desc {
  font-size: 0.95rem;
  color: var(--sand-800);
  line-height: 1.65;
}

.section-desc.white {
  color: var(--sand-300);
}

/* About Resort Section */
.about-section {
  background-color: var(--sand-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.about-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about-img-box:hover img {
  transform: scale(1.04);
}

.about-location-card {
  background: var(--ocean-950);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-location-card h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-400);
  margin-bottom: 4px;
}

.about-location-card p {
  font-size: 0.8rem;
  color: var(--sand-300);
  line-height: 1.5;
}

.about-content-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--sand-200);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pillar-card:hover {
  border-color: var(--gold-400);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: var(--sand-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-700);
  margin-bottom: 12px;
}

.pillar-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ocean-950);
  margin-bottom: 6px;
}

.pillar-card p {
  font-size: 0.78rem;
  color: var(--sand-700);
  line-height: 1.5;
}

/* Rooms & Suites Section (NO PRICING) */
.rooms-section {
  background-color: var(--sand-100);
}

.filter-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--white);
  color: var(--ocean-900);
  border: 1px solid var(--sand-200);
}

.filter-btn:hover {
  background: var(--sand-200);
}

.filter-btn.active {
  background: var(--ocean-950);
  color: var(--white);
  border-color: var(--ocean-950);
  box-shadow: var(--shadow-sm);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--sand-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-300);
}

.room-card-image {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}

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

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

.room-badge-stack {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.room-badge {
  background: rgba(5, 24, 33, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.room-badge.featured {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--ocean-950);
  font-weight: 800;
}

.room-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.room-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ocean-950);
  margin-bottom: 6px;
}

.room-card-body .room-subtitle {
  font-size: 0.8rem;
  color: var(--sand-700);
  margin-bottom: 16px;
  line-height: 1.5;
}

.room-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--sand-100);
  border-bottom: 1px solid var(--sand-100);
  margin-bottom: 16px;
  font-size: 0.78rem;
  color: var(--ocean-900);
}

.room-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-highlights {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.room-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--palm-700);
}

.room-highlight-item span.check {
  color: var(--palm-600);
  font-weight: bold;
}

.room-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.btn-room-specs {
  border: 1px solid var(--sand-300);
  color: var(--ocean-900);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}

.btn-room-specs:hover {
  background: var(--sand-100);
}

.btn-room-book {
  background: var(--ocean-950);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-room-book:hover {
  background: var(--ocean-900);
  color: var(--gold-400);
}

/* Dining Section */
.dining-section {
  background-color: var(--ocean-950);
  color: var(--white);
}

.dining-card {
  background: rgba(8, 37, 49, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}

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

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

.dining-img-wrap {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.dining-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.dining-img-wrap:hover img {
  transform: scale(1.05);
}

.dining-img-caption {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(5, 24, 33, 0.85);
  font-size: 0.68rem;
  color: var(--gold-300);
  padding: 3px 8px;
  border-radius: 6px;
}

.dining-info-col h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 8px;
}

.dining-timing-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dining-desc {
  font-size: 0.88rem;
  color: var(--sand-300);
  margin-bottom: 24px;
  line-height: 1.6;
}

.dishes-list-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 12px;
}

.dishes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.dish-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--sand-200);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--sand-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 24, 33, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: var(--white);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-cat {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 700;
}

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Goa Vibe / Location Guide Section */
.goa-section {
  background-color: var(--sand-100);
}

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

.info-card {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ocean-950);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.distance-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--sand-100);
  font-size: 0.85rem;
}

.distance-item .place {
  font-weight: 600;
  color: var(--ocean-900);
}

.distance-item .meta {
  color: var(--gold-700);
  font-weight: 700;
}

/* FAQ Section */
.faq-section {
  background-color: var(--sand-50);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ocean-950);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question:hover {
  background: var(--sand-50);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--sand-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--ocean-900);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--gold-100);
  color: var(--gold-800);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
  color: var(--sand-700);
  font-size: 0.88rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding-bottom: 22px;
}

/* Concierge Direct Contact Box (NO FORM) */
.concierge-box {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--ocean-950), var(--ocean-900));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.concierge-box h4 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.concierge-box p {
  font-size: 0.88rem;
  color: var(--sand-300);
  margin-bottom: 24px;
}

.concierge-channels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-pill-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-pill-btn:hover {
  background: var(--white);
  color: var(--ocean-950);
  transform: translateY(-2px);
}

.contact-pill-btn.whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: var(--white);
}

.contact-pill-btn.whatsapp:hover {
  background: #1ebc59;
  color: var(--white);
}

/* Footer */
.footer {
  background-color: var(--ocean-950);
  color: var(--sand-300);
  padding: 70px 0 30px;
  border-top: 1px solid var(--ocean-800);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--ocean-800);
}

.footer-col h4 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 0.78rem;
  color: var(--sand-500);
  flex-wrap: wrap;
  gap: 16px;
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-xl);
}

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

.float-whatsapp:hover {
  background-color: #1ebc59;
  transform: scale(1.05);
}

.float-call {
  background-color: var(--ocean-950);
  color: var(--gold-400);
  border: 1px solid rgba(217, 149, 68, 0.4);
}

.float-call:hover {
  background-color: var(--black);
  transform: scale(1.05);
}

/* Modals Common */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 24, 33, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  position: relative;
}

.modal-backdrop.open .modal-dialog {
  transform: scale(1);
}

.modal-header {
  background: var(--ocean-950);
  color: var(--white);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.modal-close-btn {
  color: var(--white);
  font-size: 1.4rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.modal-body {
  padding: 28px 24px;
}

/* Contact / Direct Booking Modal Specifics */
.contact-modal-intro {
  text-align: center;
  margin-bottom: 24px;
}

.contact-modal-intro h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ocean-950);
  margin-bottom: 6px;
}

.contact-modal-intro p {
  font-size: 0.85rem;
  color: var(--sand-700);
}

.contact-options-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-opt-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-300);
  background: var(--sand-50);
  color: var(--ocean-950);
  transition: var(--transition);
}

.contact-opt-btn:hover {
  border-color: var(--gold-500);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-opt-btn .btn-left {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

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

.icon-circle.phone {
  background: var(--ocean-100);
  color: var(--ocean-900);
}

.icon-circle.wa {
  background: #e7f9ee;
  color: #25d366;
}

.icon-circle.mail {
  background: var(--sand-200);
  color: var(--sand-800);
}

.icon-circle.map {
  background: var(--palm-100);
  color: var(--palm-700);
}

.contact-opt-btn .opt-title {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
}

.contact-opt-btn .opt-sub {
  font-size: 0.78rem;
  color: var(--sand-700);
}

.contact-opt-btn .btn-action-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-700);
  text-transform: uppercase;
}

.contact-address-block {
  background: var(--sand-100);
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--sand-800);
  text-align: center;
  line-height: 1.5;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 24, 33, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 1000px;
  width: 100%;
  position: relative;
  text-align: center;
}

.lightbox-image {
  max-height: 80vh;
  border-radius: var(--radius-md);
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

.lightbox-caption {
  color: var(--white);
  font-family: var(--font-serif);
  margin-top: 14px;
  font-size: 1.1rem;
}

.lightbox-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
  pointer-events: none;
}

.lightbox-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  pointer-events: auto;
}

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

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--white);
  font-size: 1.8rem;
}

/* Virtual Tour Modal */
.tour-modal-dialog {
  max-width: 900px;
  background: var(--ocean-900);
  color: var(--white);
}

.tour-nav-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 24px;
  background: rgba(5, 24, 33, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-tab {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sand-300);
  background: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.tour-tab.active {
  background: var(--gold-500);
  color: var(--ocean-950);
  font-weight: 700;
}

.tour-viewport {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.tour-viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  background: rgba(5, 24, 33, 0.85);
  border: 2px solid var(--gold-400);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  cursor: pointer;
  box-shadow: 0 0 15px rgba(217, 149, 68, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.tour-footer-info {
  padding: 18px 24px;
  font-size: 0.85rem;
  color: var(--sand-300);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .about-grid, .dining-grid, .location-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--sand-200);
    gap: 16px;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .about-images-col {
    grid-template-columns: 1fr;
  }
  .dining-images-col {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .top-contact-links {
    display: none;
  }
  .dishes-grid {
    grid-template-columns: 1fr;
  }
  .floating-actions {
    bottom: 16px;
    right: 16px;
  }
  .float-btn {
    padding: 10px 16px;
    font-size: 0.75rem;
  }
}
