/* ===================== style.css ===================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');



/* ROOT VARIABLES */
:root {
  --primary: #1a1a1a;
  --accent: #c5a059;
  /* Gold */
  --accent-hover: #b08d45;
  --bg-light: #faf9f6;
  /* Cream/Off-white */
  --bg-white: #ffffff;
  --text-main: #333333;
  --text-muted: #666666;
  --border-color: rgba(0, 0, 0, 0.08);

  --container: 1140px;
  --radius: 8px;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);

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

}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  /* Offset for sticky header */
}

body {
  margin: 0;
  background: var(--bg-light);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-top: 0;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn.primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.btn:not(.primary):hover {
  background: #f5f5f5;
  border-color: #ddd;
}

/* Carousel button styles */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

/* Modern rectangle button styles */
.carousel-btn {
  padding: 8px 16px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  font-size: 14px;
}

.carousel-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.carousel-btn svg {
  fill: currentColor;
  width: 12px;
  height: 12px;
  margin: 0 4px;
}

/* HEADER */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo img {
  height: 50px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

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

.nav-cta {
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-cta:hover {
  background: #000;
}

.mobile-toggle {
  display: none;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1510662145379-13537db782dc?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  height: 90vh;
  /* 👈 MAKE HERO MODERN + TALL */
  min-height: 650px;
  /* ensures good height on smaller screens */
  padding: 0;
  /* remove old padding */
  display: flex;
  align-items: center;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.hero-text .eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 16px;
  display: block;
}

.hero-text h1 {
  font-size: 56px;
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-text p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 540px;
}

/* BOOKING WIDGET */
.booking-widget {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  color: var(--text-main);
}

.booking-widget strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary);
}

.book-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s;
}

.input:focus {
  outline: none;
  border-color: var(--accent);
}

/* SECTIONS */
section {
  padding: 30px 0;
}

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

.section-header h2 {
  font-size: 42px;
  margin-bottom: 16px;
  margin-top: 60px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
}

/* GRID LAYOUTS */
.grid {
  display: grid;
  gap: 30px;
}

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

/* CARDS */
.card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.card-text {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.price {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
}

/* DINING SECTION */
.dining-grid {
  grid-template-columns: 1fr 1fr;
  /* Equal columns */
  gap: 0;
  /* Seamless look */
  align-items: stretch;
  /* Equal height */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 60px;
}

.dining-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin-bottom: 0;
}

.reservation-box {
  /* Lighter theme matching the site aesthetic */
  background: linear-gradient(135deg, #faf9f6 0%, #f5f0e8 100%);
  color: var(--text-main);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-left: 4px solid var(--accent);
  position: relative;
}

/* Subtle pattern overlay for texture */
.reservation-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.15), transparent 60%);
  pointer-events: none;
}

.reservation-box h3 {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 16px;
}

.reservation-box p {
  color: var(--text-muted) !important;
}

/* Form inputs styling */
.reservation-box .input {
  background: white;
  border-color: #ddd;
  color: var(--text-main);
}

.reservation-box .input:focus {
  border-color: var(--accent);
  background: white;
}

/* Add these gallery styles after the .reservation-box label section */

.reservation-box label {
  color: var(--accent);
}

/* GALLERY SECTION */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  height: 350px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 3px solid transparent;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(197, 160, 89, 0.2);
  border-color: var(--accent);
}

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

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

/* Modern overlay with gold accent */
.gallery-item::after {
  content: '✨ View';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

/* EVENTS & FEATURES */
.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border-color);
}

.feature-card h3 {
  margin-bottom: 12px;
}

/* TESTIMONIALS */
.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  position: relative;
}

.testimonial::before {
  content: '“';
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
}

.testimonial p {
  font-style: italic;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial cite {
  font-weight: 700;
  color: var(--primary);
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FOOTER */
footer {
  background: #111;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h4 {
  color: white;
  margin-bottom: 16px;
}

.footer-info {
  color: #999;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 32px;
  }

  .booking-widget {
    max-width: 500px;
    margin: 0 auto;
  }

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

  nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}


/* rooms section css */
/* ------------------------ */
/* NEW ROOMS SECTION STYLE  */
/* ------------------------ */

.rooms-wrapper {
  padding-top: 0;
  padding-bottom: 80px;
}

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

.room-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.room-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

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

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

.room-info {
  padding: 26px;
}

.room-info h3 {
  font-size: 24px;
  font-family: var(--font-heading);
  margin-bottom: 10px;
  color: var(--primary);
}

.room-info p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.room-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 18px;
}

.room-bottom .price {
  font-size: 22px;
  font-family: var(--font-heading);
  color: var(--accent);
  font-weight: bold;
}


/* NEW DINING SECTION */
.dining-new {
  padding-top: 60px;
  padding-bottom: 60px;
}

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

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

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

.dining-content h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.dining-content .sub {
  font-size: 18px;
  color: #666666;
  margin-bottom: 20px;
}

.dining-content .desc {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 30px;
}

.dining-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.highlight {
  background: white;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.highlight h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.highlight p {
  color: var(--text-muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .dining-wrapper {
    grid-template-columns: 1fr;
  }

  .dining-img {
    height: 260px;
  }
}

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

.testimonial-card.featured {
  border-left: 4px solid var(--accent);
  background: linear-gradient(180deg, rgba(245, 240, 232, 0.6), rgba(255, 255, 255, 1));
}

/* Quote */
.testimonial-card .quote {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
}

/* Meta */
.meta {
  display: flex;
  gap: 14px;
  align-items: center;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  flex: 0 0 64px;
}

.meta-text strong {
  display: block;
  font-size: 15px;
}

.meta-text .source {
  color: var(--text-muted);
  font-size: 13px;
}

.rating {
  color: var(--accent);
  margin-top: 6px;
  font-family: var(--font-heading);
}

/* Syndication box */
.testimonials-syndicate .syndicate-box {
  background: linear-gradient(135deg, #faf9f6 0%, #f5f0e8 100%);
  padding: 22px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.syndicate-box h3 {
  color: var(--accent);
  margin-bottom: 6px;
  font-size: 20px;
}

.syndicate-box .small {
  color: var(--text-muted);
  font-size: 14px;
}

.ta-badge img {
  max-width: 160px;
  display: inline-block;
  margin: 14px 0;
}

/* Social links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.social-links a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: white;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
}

.social-links a .icon {
  opacity: 0.85;
}

/* Controls */
.test-controls {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.test-controls .btn {
  padding: 8px 12px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonials-inner {
    grid-template-columns: 1fr;
  }

  .testimonials-syndicate {
    order: 2;
    margin-top: 20px;
  }
}

/* New Testimonials Section */
.testimonials-new {
  padding: 60px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head .lead {
  color: var(--text-muted);
  font-size: 16px;
}

/* Layout */
.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
}

.testimonials-list {
  display: grid;
  gap: 20px;
}

/* Cards */
.testimonial-card {
  background: white;
  padding: 22px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}

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

.testimonial-card.featured {
  border-left: 4px solid var(--accent);
  background: linear-gradient(180deg, #faf3da, #ffffff);
}

.quote {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 12px;
}

.testimonials-list {
  width: 100%;
}

.slide {
  width: 100%;
}


/* Meta */
.meta {
  display: flex;
  gap: 14px;
  align-items: center;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.meta-text strong {
  font-size: 15px;
}

.meta-text .source {
  color: var(--text-muted);
  font-size: 13px;
}

.rating {
  color: var(--accent);
  margin-top: 4px;
}

/* Right side - syndication */
.testimonials-syndicate .syndicate-box {
  background: linear-gradient(135deg, #faf9f6, #f5f0e8);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.ta-badge {
  max-width: 150px;
  margin: 15px auto;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a {
  padding: 10px;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  font-weight: 600;
  text-decoration: none;
  color: var(--primary);
}

@media(max-width:900px) {
  .testimonials-inner {
    grid-template-columns: 1fr;
  }
}

/* Testimonials — carousel + syndication */
.testimonials-new {
  padding: 60px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 28px;
}

.section-head .lead {
  color: var(--text-muted);
}

.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

/* carousel area */
.testimonials-list {
  background: transparent;
  padding: 6px 0;
}

.slide {
  display: block;
}

.testimonial-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), #fff);
  padding: 22px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.testimonial-card.featured {
  border-left: 4px solid var(--accent);
  background: linear-gradient(180deg, rgba(250, 245, 235, 1), #fff);
}

.quote {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
}

/* meta */
.meta {
  display: flex;
  gap: 14px;
  align-items: center;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  flex: 0 0 64px;
}

.meta-text strong {
  display: block;
  font-size: 15px;
}

.meta-text .source {
  color: var(--text-muted);
  font-size: 13px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  border: 2px solid transparent;
}

.carousel-dot.active {
  background: var(--accent);
  box-shadow: 0 6px 14px rgba(197, 160, 89, 0.22);
  border-color: #fff;
}

/* syndication */
.testimonials-syndicate .syndicate-box {
  background: linear-gradient(135deg, #faf9f6, #f5f0e8);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.ta-badge,
.syndicate-box img {
  max-width: 150px;
  display: block;
  margin: 10px auto;
}

/* responsive */
@media (max-width:900px) {
  .testimonials-inner {
    grid-template-columns: 1fr;
  }

  .testimonials-syndicate {
    order: 2;
    margin-top: 20px;
  }
}

/* ===============================
   LUXURY REVIEW MODAL — THEMATIC
================================ */
.review-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.review-modal {
  background: #ffffff;
  width: 420px;
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

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

.close-modal {
  background: none;
  border: none;
  font-size: 28px;
  color: #444;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
}

.modal-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 5px;
  color: #222;
}

.modal-subtitle {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* Star rating */
.star-rating {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.star-rating span {
  font-size: 28px;
  color: #ccc;
  cursor: pointer;
  transition: 0.2s;
}

.star-rating span.active {
  color: var(--accent);
}

/* Inputs */
.review-input,
.review-textarea {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid #ddd;
  margin-bottom: 12px;
  font-size: 15px;
  font-family: inherit;
}

.review-textarea {
  height: 100px;
  resize: none;
}

.submit-review-btn {
  width: 100%;
  margin-top: 10px;
}

/* Review Modal Close Icon */
.close-modal {
  background: rgba(212, 167, 98, 0.15);
  border: 1px solid rgba(212, 167, 98, 0.4);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--accent);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 14px;
  right: 14px;
  transition: 0.2s;
}

.close-modal:hover {
  background: rgba(212, 167, 98, 0.3);
  transform: scale(1.1);
}

/* Live Preview animation */
#livePreviewCard {
  transition: 0.4s ease;
}

/* ============================
   PREMIUM AESTHETIC GALLERY
   ============================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 50px;
  padding: 10px;
}

.gallery-item {
  position: relative;
  height: 360px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(197, 160, 89, 0.18);
  transition: all 0.45s ease;
}

/* SHADE + LIFT ON HOVER */
.gallery-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(197, 160, 89, 0.28);
  border-color: var(--accent);
}

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

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

/* GOLD AESTHETIC OVERLAY */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.45), rgba(0, 0, 0, 0.25));
  opacity: 0;
  transition: opacity .4s ease;
}

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

/* VIEW TEXT */
.gallery-item::before {
  content: 'View';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  font-family: var(--font-heading);
  font-size: 26px;
  color: white;
  opacity: 0;
  transition: all .4s ease;
  letter-spacing: 2px;
}

.gallery-item:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* SMOOTH FADE-UP */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------
   PREMIUM GALLERY SECTION
-------------------------------------*/

.gallery-section {
  background: linear-gradient(180deg, #faf9f6 0%, #ffffff 100%);
  padding: 100px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}


.gallery-head {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-head h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  color: #b8860b;
  margin-bottom: 10px;
}

.gallery-head p {
  color: var(--text-muted);
  font-size: 18px;
}

.gold-line {
  width: 80px;
  height: 3px;
  background: var(--accent);
  margin: 18px auto 0;
  border-radius: 3px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 26px;
}

.gallery-item {
  position: relative;
  height: 340px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: #fff;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(197, 160, 89, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center-btn {
  text-align: center;
  margin-top: 40px;
}

/* GLOBAL TYPOGRAPHY IMPROVEMENTS */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: #2a2a2a;
}

/* Headings refinement */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  color: darkgoldenrod;
}

h1 {
  font-size: 58px;
  font-weight: 600;
}

h2 {
  font-size: 42px;
  font-weight: 600;
}

h3 {
  font-size: 26px;
  font-weight: 500;
}

/* NAV FONT IMPROVEMENT */
nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 14px;
}

.nav-cta {
  font-family: var(--font-body);
  letter-spacing: 1px;
}

#gallery {
  background: linear-gradient(180deg, #faf9f6 0%, #f2ede4 100%);
  padding-top: 70px;
  padding-bottom: 60px;
}

.gallery-info {
  text-align: center;
  margin-top: 60px;
}

.gi-title {
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--primary);
  margin-bottom: 12px;
}

.gi-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===========================
   NEW COMPACT LUXURY FOOTER
   =========================== */
/* ======================
   NEW COMPACT FOOTER
====================== */

footer {
  background: #111;
  color: white;
  padding: 10px 0;
  /* reduced height */
  margin-top: 1px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* keeps same row */
  gap: 20px;
}

.footer-left h4 {
  margin: 0 0 6px 0;
  font-size: 20px;
  font-weight: 700;
}

.footer-tagline {
  margin: 0;
  font-size: 14px;
  color: #bbb;
}

.footer-copy {
  margin-top: 6px;
  font-size: 13px;
  color: #777;
}

.footer-right {
  display: flex;
  gap: 22px;
  /* spacing between links */
}

.footer-right a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.footer-right a:hover {
  color: var(--accent);
}

/* Mobile Responsive */
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* EVENTS SECTION */
.events-section {
  padding: 20px 0;
  background: #faf9f6;
  /* soft cream background */
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 40px;
}

.event-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.event-img {
  height: 220px;
  overflow: hidden;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.event-card:hover img {
  transform: scale(1.1);
}

.event-content {
  padding: 22px;
}

.event-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.event-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 15px;
}

.event-date {
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* EVENTS SECTION */
.events-section {
  padding: 1px 0 70px 0;
  background: linear-gradient(135deg, #faf9f6, #f2eee6);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.2);
  transition: all .35s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(197, 160, 89, 0.18);
  border-color: var(--accent);
}

.event-img {
  height: 220px;
  overflow: hidden;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.event-content {
  padding: 22px;
}

.event-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--primary);
  text-align: center;
  font-size: 42px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  color: var(--primary);
}

.vt-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 40px;
}

.vt-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.vt-bg {
  height: 420px;
  background: url('https://images.unsplash.com/photo-1503264116251-35a269479413?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  position: relative;
}

.vt-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(1px);
}

.vt-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.vt-center h3 {
  font-size: 26px;
  margin: 12px 0 8px;
}

.vt-center p {
  max-width: 460px;
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 18px;
}

.vt-btn {
  padding: 12px 28px;
  font-size: 14px;
}

/* 360° Icon */
.vt-icon {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
  margin-bottom: 12px;
}

/* =========================
   VIRTUAL TOUR - PREMIUM
========================= */
.virtual-tour-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.vt-container {
  text-align: center;
}

.vt-head h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  margin-bottom: 10px;
  color: var(--primary);
}

.vt-head h2 span {
  color: var(--accent);
}

.vt-head p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 50px;
}

.vt-hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.vt-bg {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.45);
}

.vt-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.vt-icon {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--accent);
  padding: 22px 38px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.vt-subtitle {
  font-size: 30px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.vt-text {
  font-size: 15px;
  color: #f1f1f1;
  margin-bottom: 25px;
}

/* =========================
   Virtual Tour Modal
========================= */
.tour-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  z-index: 9999;
}

.tour-content {
  position: relative;
  width: 80%;
  height: 80%;
  background: black;
  border-radius: 10px;
  overflow: hidden;
}

.tour-frame {
  width: 100%;
  height: 100%;
  border: none;
}

.tour-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 38px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}

/* ==============================
     AI CHATBOT STYLES
============================== */

#aiChatbotBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--accent);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: 0.2s;
}

#aiChatbotBtn:hover {
  transform: scale(1.1);
}

/* Chat Window */
#aiChatPopup {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 360px;
  height: 550px;
  background: var(--bg-light);
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  font-family: var(--font-body);
}

/* Header */
.ai-chat-header {
  background: var(--primary);
  padding: 16px 20px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

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

.bot-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  padding: 4px;
  object-fit: contain;
}

.header-text {
  display: flex;
  flex-direction: column;
}

.bot-name {
  font-weight: 700;
  font-size: 16px;
}

.bot-status {
  font-size: 12px;
  opacity: 0.8;
}

.ai-chat-header button {
  border: none;
  background: transparent;
  color: white;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.ai-chat-header button:hover {
  opacity: 1;
}

/* Body */
.ai-chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ai-msg {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 12px;
  line-height: 1.5;
  font-size: 14px;
  position: relative;
}

.ai-msg.bot {
  background: var(--primary);
  color: white;
  border-top-left-radius: 2px;
}

.ai-msg.user {
  background: white;
  color: var(--text-main);
  margin-left: auto;
  border-top-right-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border: 1px solid #E0E0E0;
}

/* Suggestions */
.ai-suggestions {
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--bg-light);
}

.suggestion-chip {
  background: white;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.suggestion-chip:hover {
  background: var(--accent);
  color: white;
}

/* Footer */
.ai-chat-footer {
  padding: 15px 20px;
  background: white;
  border-top: 1px solid #F0F0F0;
}

.ai-chat-input-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--accent);
  border-radius: 25px;
  padding: 4px 6px 4px 16px;
  background: white;
}

#aiChatInput {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 8px 0;
  color: var(--text-main);
}

#sendAiMsg {
  background: var(--accent);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
}

#sendAiMsg:hover {
  background: var(--accent-hover);
}

#clearChatBtn {
  display: block;
  margin-top: 10px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

#clearChatBtn:hover {
  color: var(--text-main);
}

/* Dynamic Action Buttons */
.ai-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  max-width: 85%;
}

.ai-action-btn {
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.review-meta strong {
  display: block;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 2px;
}

.review-meta span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Navigation */
.reviews-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.review-nav-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-nav-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

.review-nav-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: scale(1);
}

.review-nav-btn span {
  font-size: 20px;
}

.review-dots {
  display: flex;
  gap: 8px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}

.review-dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

/* Badges */
.reviews-badges {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.reviews-badges h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--primary);
}

.badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.badge-row img {
  height: 60px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.badge-row img:hover {
  opacity: 1;
}

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

  .reviews-navigation {
    flex-direction: column;
    gap: 15px;
  }

  .badge-row {
    gap: 20px;
  }

  .badge-row img {
    height: 45px;
  }
}

/* =========================================
   UPDATED TESTIMONIALS LAYOUT (3 PER ROW)
========================================= */

/* The Container Grid */
.reviews-grid {
  display: grid;
  /* This specifically forces 3 equal columns */
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  /* Space between the cards */
  margin-top: 40px;
  width: 100%;
}

/* The Individual Card Styling */
.review-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Ensures all cards in the row are the same height */
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15);
  /* Gold glow on hover */
  border-color: var(--accent);
}

/* Card Image */
.review-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Card Content Area */
.review-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /* Pushes content to fill height */
}

/* Stars */
.review-stars {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 18px;
  letter-spacing: 2px;
}

/* Review Text */
.review-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Author Section */
.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
  /* Pushes author to very bottom */
}

.review-avatar {
  width: 45px;
  /* Fixed size override */
  height: 45px;
  /* Fixed size override */
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  margin-bottom: 0;
  /* Reset */
}

/* UTILITY: Hidden class for the JS Carousel */
/* The Javascript uses this to hide the cards that aren't on the current "page" */
.review-card.hidden {
  display: none;
}

/* RESPONSIVE MEDIA QUERIES */
/* On Tablets (below 1024px), show 2 per row */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* On Mobile (below 768px), show 1 per row */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   COMPACT & MODERN TESTIMONIALS FIX
========================================= */

/* 1. Force Side-by-Side Grid (3 items) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  width: 100%;
}

/* 2. Compact Card Container */
.review-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* 3. Make Room Image Shorter */
.review-card>img {
  width: 100%;
  height: 160px;
  /* Reduced height for compactness */
  object-fit: cover;
}

/* 4. Compact Content Area */
.review-content {
  padding: 18px 20px;
  /* Reduced padding */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* 5. Smaller Stars */
.review-stars {
  color: var(--accent);
  font-size: 13px;
  /* Smaller, cleaner stars */
  margin-bottom: 8px;
  letter-spacing: 1px;
}

/* 6. Compact Text */
.review-text {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  font-style: italic;
  margin-bottom: 16px;
  flex-grow: 1;
  /* Pushes author info to the bottom */
}

/* 7. Modern "Small Avatar" Footer */
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  /* Space between image and text */
  padding-top: 12px;
  border-top: 1px solid #f7f7f7;
  margin-top: auto;
}

/* The Profile Image Fix */
.review-avatar {
  width: 40px !important;
  /* Force small size */
  height: 40px !important;
  /* Force small size */
  border-radius: 50%;
  object-fit: cover;
  border: none;
  /* Remove heavy borders */
  background: #eee;
}

/* Meta Text (Name & Source) */
.review-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-meta strong {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.2;
}

.review-meta span {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Fixes */
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 per row on tablet */
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    /* 1 per row on mobile */
  }

  .review-card>img {
    height: 180px;
    /* Slightly taller image on mobile is usually better */
  }
}

/* =========================================
   FIX FOR TESTIMONIALS HEADER SPACING
========================================= */

/* 1. Reduce the outer padding of the section */
/* letter-spacing: 2px;
} */

/* Review Text */
.review-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Author Section */
.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
  /* Pushes author to very bottom */
}

.review-avatar {
  width: 45px;
  /* Fixed size override */
  height: 45px;
  /* Fixed size override */
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  margin-bottom: 0;
  /* Reset */
}

/* UTILITY: Hidden class for the JS Carousel */
/* The Javascript uses this to hide the cards that aren't on the current "page" */
.review-card.hidden {
  display: none;
}

/* RESPONSIVE MEDIA QUERIES */
/* On Tablets (below 1024px), show 2 per row */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* On Mobile (below 768px), show 1 per row */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   COMPACT & MODERN TESTIMONIALS FIX
========================================= */

/* 1. Force Side-by-Side Grid (3 items) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  width: 100%;
}

/* 2. Compact Card Container */
.review-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* 3. Make Room Image Shorter */
.review-card>img {
  width: 100%;
  height: 160px;
  /* Reduced height for compactness */
  object-fit: cover;
}

/* 4. Compact Content Area */
.review-content {
  padding: 18px 20px;
  /* Reduced padding */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* 5. Smaller Stars */
.review-stars {
  color: var(--accent);
  font-size: 13px;
  /* Smaller, cleaner stars */
  margin-bottom: 8px;
  letter-spacing: 1px;
}

/* 6. Compact Text */
.review-text {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  font-style: italic;
  margin-bottom: 16px;
  flex-grow: 1;
  /* Pushes author info to the bottom */
}

/* 7. Modern "Small Avatar" Footer */
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  /* Space between image and text */
  padding-top: 12px;
  border-top: 1px solid #f7f7f7;
  margin-top: auto;
}

/* The Profile Image Fix */
.review-avatar {
  width: 40px !important;
  /* Force small size */
  height: 40px !important;
  /* Force small size */
  border-radius: 50%;
  object-fit: cover;
  border: none;
  /* Remove heavy borders */
  background: #eee;
}

/* Meta Text (Name & Source) */
.review-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-meta strong {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.2;
}

.review-meta span {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Fixes */
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 per row on tablet */
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    /* 1 per row on mobile */
  }

  .review-card>img {
    height: 180px;
    /* Slightly taller image on mobile is usually better */
  }
}

/* =========================================
   FIX FOR TESTIMONIALS HEADER SPACING
========================================= */

/* 1. Reduce the outer padding of the section */
#testimonials {
  padding-top: 10px !important;
  /* Reduces the section's top gap */
}

/* 2. Remove the heavy top margin from the Heading text */
#testimonials .section-header h2 {
  margin-top: 0 !important;
  /* Removes the 60px gap defined in main styles */
  padding-top: 0 !important;
}

/* Optional: Pull the paragraph closer to the heading if needed */
#testimonials .section-header p {
  margin-top: 10px;
}

/* =========================================
   TABLE RESERVATION MODAL
========================================= */

/* Reservation Modal Overlay */
.reservation-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
  padding: 20px;
}

.reservation-modal-overlay.active {
  display: flex;
}

/* Compact Modal Container */
.reservation-modal {
  background: linear-gradient(135deg, #ffffff 0%, #faf9f6 100%);
  width: 100%;
  max-width: 550px;
  padding: 32px 36px;
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.4s ease;
  position: relative;
  border: 2px solid rgba(197, 160, 89, 0.2);
  max-height: none;
  overflow: visible;
}

/* Close Button */
.reservation-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(197, 160, 89, 0.15);
  border: 2px solid var(--accent);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--accent);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.reservation-modal .close-modal:hover {
  background: var(--accent);
  color: white;
  transform: rotate(90deg) scale(1.1);
}

/* Modal Title */
.reservation-modal .modal-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--primary);
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

/* Modal Subtitle */
.reservation-modal .modal-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

/* Compact Form */
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reservation-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.reservation-form .form-group {
  display: flex;
  flex-direction: column;
}

/* Compact Labels */
.reservation-form label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 6px;
}

/* Compact Inputs */
.reservation-form .input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.3s ease;
  background: white;
}

.reservation-form .input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

/* Compact Textarea */
.reservation-form textarea.input {
  resize: vertical;
  min-height: 60px;
  max-height: 90px;
}

/* Submit Button */
.reservation-form .btn.primary {
  padding: 12px 24px;
  font-size: 14px;
  margin-top: 8px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.reservation-form .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .reservation-modal {
    padding: 28px 24px;
    max-width: 95%;
  }

  .reservation-form .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reservation-modal .modal-title {
    font-size: 24px;
  }

  .reservation-modal .modal-subtitle {
    font-size: 13px;
  }
}

/* DROPDOWN — CENTERED UNDER HOME */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown .nav-link {
  cursor: pointer;
  padding: 12px 14px;
  /* increases clickable area */
  display: flex;
  align-items: center;
}

/* DROP MENU centered */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* centers menu */
  background: white;
  border-radius: 10px;
  width: 180px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  z-index: 200;
}

.dropdown-menu a {
  padding: 12px 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #333;
  display: block;
  transition: 0.25s;
}

.dropdown-menu a:hover {
  background: #f7f7f7;
  color: var(--accent);
}

/* Toggle class (used by JS) */
.dropdown-menu.open {
  display: flex !important;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
  display: flex;
}

/* SMALL ADJUSTMENT FOR MOBILE */
@media (max-width: 900px) {
  .dropdown-menu {
    left: 0;
    transform: none;
    /* mobile: keep simple list */
    position: static;
    width: 100%;
    box-shadow: none;
    background: #fff;
  }
}

/* ================================
   PREMIUM VIRTUAL TOUR — CONTAINER WIDTH
================================ */

.virtual-tour-premium {
  padding: 90px 0;
  background: var(--bg-light);
}

.vt-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 120px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Background stays INSIDE the container width */
.vt-bg-premium {
  position: absolute;
  inset: 0;
  background: url('images/full-hotel.JPG') center/cover no-repeat;
  filter: brightness(0.48);
  z-index: 1;
}

/* Content sits above */
.vt-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  color: #fff;
}

/* Heading */
.vt-content h2 {
  font-size: 42px;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: 0.5px;
}

.vt-content h2 span {
  color: var(--accent);
}

/* Text */
.vt-content p {
  color: #eaeaea;
  font-size: 17px;
  margin-bottom: 28px;
}

/* 360° icon */
.vt-icon {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 40px;
  border: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  transition: 0.3s;
}

.vt-icon:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.22);
}

/* Responsive */
@media (max-width: 720px) {
  .vt-box {
    padding: 100px 20px;
  }

  .vt-content h2 {
    font-size: 34px;
  }
}

/* ================================
   PREMIUM VIRTUAL TOUR POPUP
================================ */

.tour-modal-box {
  max-width: 900px !important;
  width: calc(100% - 40px);
  border-radius: 18px !important;
  padding: 40px !important;
  position: relative;
  background: #ffffff;
  box-shadow: 0 0 40px rgba(197, 160, 89, 0.25),
    0 0 120px rgba(197, 160, 89, 0.15);
  border: 2px solid rgba(197, 160, 89, 0.55);
  /* Gold border */
}

/* Map Container */
.tour-map-frame {
  border-radius: 14px;

  overflow: hidden;
  border: 2px solid rgba(197, 160, 89, 0.5);
  /* soft gold */
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15),
    0 0 35px rgba(197, 160, 89, 0.4);
  /* outer gold glow */
  margin-top: 20px;
}

/* Better closing button */
.tour-close {
  background: rgba(197, 160, 89, 0.18);
  border: 1px solid rgba(197, 160, 89, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--accent);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 18px;
  transition: 0.25s;
}

.tour-close:hover {
  transform: scale(1.1);
  background: rgba(197, 160, 89, 0.3);
}

/* REMOVE OVERLAY AND TEXT ON GALLERY HOVER */
.gallery-item::after,
.gallery-item::before {
  display: none !important;
}

.ai-map-box {
  background: #fff;
  border: 1px solid rgba(197, 160, 89, 0.45);
  border-radius: 14px;
  padding: 12px;
  margin: 10px 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.map-title {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 6px;
}

/* OVERLAY */
.event-join-overlay,
.event-success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* MAIN MODAL */
.event-join-modal {
  background: linear-gradient(145deg, #ffffff, #faf9f6);
  width: 90%;
  max-width: 520px;
  padding: 38px;
  border-radius: 20px;
  position: relative;
  animation: fadeInUp 0.35s ease;
}

/* GOLD SHIMMER ANIMATION */
.shimmer-border {
  border: 2px solid rgba(197, 160, 89, 0.4);
  animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
  0% {
    box-shadow: 0 0 22px rgba(197, 160, 89, 0.4);
  }

  50% {
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.75);
  }

  100% {
    box-shadow: 0 0 22px rgba(197, 160, 89, 0.4);
  }
}

/* CLOSE BUTTON */
.event-join-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.2);
  border: 1px solid rgba(197, 160, 89, 0.5);
  color: var(--accent);
  font-size: 26px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .25s ease;
}

.event-join-close:hover {
  transform: scale(1.1);
  background: rgba(197, 160, 89, 0.35);
}

/* HEADINGS */
.event-join-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 6px;
  color: var(--primary);
}

.event-join-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

/* INPUTS */
.join-field,
.join-textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 16px;
  font-size: 15px;
  background: white;
}

.join-field:focus,
.join-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

/* SUCCESS POPUP */
.event-success-box {
  background: white;
  max-width: 360px;
  width: 90%;
  padding: 28px;
  border-radius: 18px;
  text-align: center;
  animation: fadeInUp 0.35s ease;
  border: 2px solid rgba(197, 160, 89, 0.45);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.success-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Animation */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* =========================================
   MOBILE RESPONSIVENESS & CHATBOT FIXES
========================================= */

@media (max-width: 480px) {

  /* Chatbot Button - Smaller & Better Positioned */
  #aiChatbotBtn {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }

  /* Chatbot Popup - Full Width / Centered */
  #aiChatPopup {
    width: 90%;
    right: 5%;
    left: 5%;
    bottom: 80px;
    height: 60vh;
    /* dynamic height */
    max-height: 500px;
  }

  /* Testimonials - Force 1 Column */
  .reviews-grid {
    grid-template-columns: 1fr !important;
  }

  /* Adjust Container Padding */
  .container {
    padding: 0 16px;
  }

  /* Adjust Headings */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  /* Adjust Hero Text */
  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }

  /* Booking Widget */
  .booking-widget {
    padding: 20px;
  }

  /* Footer Stacking */
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* =============================================
   SAFE MOBILE RESPONSIVE FIXES
   These fixes WON'T conflict with existing code
   Add to the VERY END of style.css
============================================= */

/* ===== FIX 1: Mobile Navigation (Already has some responsive code, enhancing it) ===== */
@media (max-width: 900px) {

  /* Ensure nav doesn't show on mobile unless toggled */
  nav:not(.mobile-active) {
    display: none !important;
  }

  /* When active, make it full width */
  nav.mobile-active {
    display: flex !important;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  /* Fix dropdown in mobile nav */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    left: 0 !important;
    width: 100%;
    padding-left: 20px;
    background: #f9f9f9;
    margin-top: 10px;
  }
}

/* ===== FIX 2: Hero Section - Only adjust what's breaking ===== */
@media (max-width: 900px) {
  .hero-section {
    min-height: 500px;
    padding: 60px 0 40px;
  }

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

  .hero-text h1 {
    font-size: 32px !important;
  }

  .hero-text p {
    font-size: 15px;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 28px !important;
  }
}

/* ===== FIX 3: Prevent Horizontal Scroll ===== */
@media (max-width: 900px) {
  body {
    overflow-x: hidden !important;
  }

  .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ===== FIX 4: Fix Grids on Mobile ===== */
@media (max-width: 600px) {

  /* Force all multi-column grids to single column */
  .grid[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .dining-wrapper,
  .hero-content {
    grid-template-columns: 1fr !important;
  }
}

/* ===== FIX 5: Images - Prevent Overflow ===== */
@media (max-width: 900px) {
  img {
    max-width: 100%;
    height: auto;
  }

  .dining-img,
  .room-img {
    height: 220px;
  }
}

/* ===== FIX 6: Modals - Make them fit mobile screens ===== */
@media (max-width: 600px) {

  .reservation-modal,
  .event-join-modal,
  .review-modal {
    width: 95% !important;
    max-width: 95% !important;
    padding: 24px 20px !important;
    margin: 20px;
  }

  .reservation-form .form-row {
    grid-template-columns: 1fr !important;
  }

  .modal-title,
  .event-join-title {
    font-size: 22px !important;
  }
}

/* ===== FIX 7: Chatbot - Full screen on mobile ===== */
@media (max-width: 480px) {
  #aiChatPopup {
    width: 100% !important;
    height: 100vh !important;
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    border-radius: 0 !important;
  }

  #aiChatbotBtn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* ===== FIX 8: Footer - Stack on mobile ===== */
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column !important;
    text-align: center;
    gap: 20px;
  }

  .footer-right {
    flex-direction: column !important;
    gap: 12px;
  }
}

/* ===== FIX 9: Buttons - Full width on mobile ===== */
@media (max-width: 600px) {
  .quick-actions {
    width: 100%;
    gap: 10px;
  }

  .quick-actions .btn {
    width: 100% !important;
  }

  .room-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .room-bottom .btn {
    width: 100% !important;
  }
}

/* ===== FIX 10: Reviews/Testimonials - Responsive Grid ===== */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr !important;
  }

  .review-card>img {
    height: 180px;
  }
}

/* ===== FIX 11: Events Section ===== */
@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== FIX 12: Gallery ===== */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .gallery-item {
    height: 250px;
  }
}

/* ===== FIX 13: Virtual Tour ===== */
@media (max-width: 768px) {
  .vt-box {
    padding: 60px 20px !important;
  }

  .vt-content h2 {
    font-size: 28px !important;
  }

  .tour-modal-box {
    padding: 24px !important;
  }
}

/* ===== FIX 14: Booking Page ===== */
@media (max-width: 768px) {
  .booking-room-card {
    flex-direction: column !important;
    height: auto !important;
  }

  .booking-room-img {
    width: 100% !important;
    height: 200px !important;
  }

  .booking-room-footer {
    flex-direction: row !important;
    width: 100%;
    border-left: none !important;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
  }
}

/* ===== FIX 15: Form Inputs - Prevent iOS Zoom ===== */
@media (max-width: 900px) {

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important;
    /* iOS won't zoom if 16px or larger */
  }
}

/* ===== FIX 16: Touch Targets - Make buttons easier to tap ===== */
@media (max-width: 900px) {

  button,
  .btn,
  a.nav-link,
  .nav-cta {
    min-height: 44px;
    /* Apple's recommended minimum */
    padding: 12px 16px;
  }
}

/* ===== FIX 17: Section Spacing ===== */
@media (max-width: 600px) {
  section {
    padding: 40px 0 !important;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 28px !important;
    margin-top: 0 !important;
  }
}

/* ===== FIX 18: Typography Scaling ===== */
@media (max-width: 600px) {
  h1 {
    font-size: 28px !important;
  }

  h2 {
    font-size: 24px !important;
  }

  h3 {
    font-size: 20px !important;
  }

  body {
    font-size: 15px;
  }
}

/* ===== FIX 19: Dining Section ===== */
@media (max-width: 900px) {
  .dining-wrapper {
    gap: 30px;
  }

  .dining-highlights {
    grid-template-columns: 1fr !important;
  }
}

/* ===== FIX 20: About Page ===== */
@media (max-width: 900px) {

  section[style*="grid-template-columns"] .grid,
  section div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* ===== FIX 21: Contact Section ===== */
@media (max-width: 900px) {
  #book .grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== FIX 22: Fix Avatar Selector on Mobile ===== */
@media (max-width: 600px) {
  .avatar-selector {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
  }
}

/* ===== FIX 23: Navigation Dots ===== */
@media (max-width: 600px) {
  .reviews-navigation {
    flex-direction: column;
    gap: 12px;
  }

  .review-nav-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== FIX 24: Event Join Modal ===== */
@media (max-width: 600px) {
  .event-join-modal {
    width: 95% !important;
    padding: 28px 20px !important;
  }

  .join-field,
  .join-textarea {
    font-size: 16px;
    /* Prevent iOS zoom */
  }
}

/* ===== FIX 25: Sticky Header Scroll Offset ===== */
@media (max-width: 900px) {
  html {
    scroll-padding-top: 80px;
  }
}

/* ===== FIX 26: Virtual Tour Section - Add Padding on Mobile ===== */
@media (max-width: 768px) {

  .virtual-tour-premium,
  .virtual-tour-section,
  #virtual-tour {
    padding: 60px 16px !important;
  }

  .vt-box {
    padding: 80px 24px !important;
    margin: 0 !important;
  }

  .vt-content {
    padding: 0 16px !important;
  }

  .vt-content h2 {
    font-size: 26px !important;
    padding: 0 10px;
  }

  .vt-content p {
    font-size: 15px !important;
    padding: 0 10px;
  }

  .vt-start-btn,
  .btn.primary.vt-start-btn {
    margin: 0 auto;
    display: block;
    width: calc(100% - 40px);
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .vt-box {
    padding: 60px 16px !important;
  }
}

/* ===== FIX 27: Booking Form Widget - Prevent Overflow ===== */
@media (max-width: 768px) {
  .booking-widget {
    margin: 0 16px !important;
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
  }

  .hero-content .booking-widget {
    padding: 24px 50px !important;
  }
}

@media (max-width: 480px) {
  .booking-widget {
    margin: 0 12px !important;
    width: calc(100% - 24px) !important;
    padding: 20px 16px !important;
  }

  .booking-widget strong {
    font-size: 18px;
  }
}

/* ===== FIX 28: Hide Contact Form on Mobile ===== */
@media (max-width: 768px) {

  /* Hide the "Send a Message" form on mobile */
  #book .grid>div:last-child,
  #book .fade-up:has(h3:contains("Send a Message")),
  #book form[onsubmit="submitContact(event)"],
  #book .fade-up:last-child {
    display: none !important;
  }

  /* Make contact info section full width when form is hidden */
  #book .grid>div:first-child,
  #book .fade-up:first-child {
    grid-column: 1 / -1;
  }

  /* Center align contact information on mobile */
  #book .grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  #book .fade-up h2,
  #book .fade-up p,
  #book .fade-up div {
    text-align: center;
  }

  #book .socials {
    justify-content: center !important;
  }
}

/* =============================================
   MOBILE RESPONSIVE FIXES - CRITICAL OVERRIDES
   Add to VERY END of style.css
   IMPORTANT: Clear browser cache after adding
============================================= */

/* ===== CHATBOT - FORCE VISIBILITY ON MOBILE ===== */
#aiChatbotBtn {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  #aiChatbotBtn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 56px !important;
    height: 56px !important;
    background: #c5a059 !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 26px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    z-index: 9999 !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    pointer-events: all !important;
  }

  #aiChatPopup {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    border-radius: 0 !important;
    z-index: 10000 !important;
  }
}

/* ===== VIRTUAL TOUR - ADD PADDING (FORCE) ===== */
@media (max-width: 768px) {
  .virtual-tour-premium {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .vt-box {
    padding: 80px 24px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .vt-content {
    padding: 0 20px !important;
  }

  .vt-content h2 {
    font-size: 24px !important;
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
  }

  .vt-content p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
  }

  .vt-start-btn {
    width: auto !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    padding: 14px 32px !important;
  }
}

/* ===== BOOKING WIDGET - PREVENT OVERFLOW ===== */
@media (max-width: 768px) {
  .booking-widget {
    margin-left: 16px !important;
    margin-right: 16px !important;
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    padding: 24px 20px !important;
  }

  .hero-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 480px) {
  .booking-widget {
    margin-left: 12px !important;
    margin-right: 12px !important;
    width: calc(100% - 24px) !important;
    padding: 20px 16px !important;
  }
}

/* ===== HIDE CONTACT FORM ON MOBILE ===== */
@media (max-width: 768px) {

  /* Target the contact form container */
  #book .container>.grid>div:nth-child(2) {
    display: none !important;
  }

  /* Make contact info full width */
  #book .container>.grid {
    grid-template-columns: 1fr !important;
  }

  #book .container>.grid>div:first-child {
    grid-column: 1 !important;
    text-align: center !important;
  }

  #book .socials {
    justify-content: center !important;
  }
}

/* ===== ADDITIONAL CRITICAL MOBILE FIXES ===== */
@media (max-width: 900px) {

  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden !important;
  }

  /* Container padding */
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Fix navigation */
  nav:not(.mobile-active) {
    display: none !important;
  }

  nav.mobile-active {
    display: flex !important;
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    flex-direction: column !important;
    background: white !important;
    z-index: 999 !important;
    padding: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  }

  /* Hero section */
  .hero-content {
    grid-template-columns: 1fr !important;
  }

  .hero-text h1 {
    font-size: 32px !important;
  }

  /* Grids to single column */
  .dining-wrapper,
  .events-grid,
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  /* Reviews grid */
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-text h1 {
    font-size: 28px !important;
  }

  /* Typography */
  h2 {
    font-size: 24px !important;
  }

  h3 {
    font-size: 20px !important;
  }
}

/* ===== MODALS RESPONSIVE ===== */
@media (max-width: 600px) {

  .reservation-modal,
  .event-join-modal {
    width: 95% !important;
    max-width: 95% !important;
    padding: 24px 20px !important;
  }

  .reservation-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* ===== BUTTONS FULL WIDTH ===== */
@media (max-width: 600px) {

  /* Hero section buttons with gap */
  .quick-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 16px !important;
  }

  .quick-actions .btn {
    width: 100% !important;
    margin: 0 !important;
  }

  /* Room bottom buttons */
  .room-bottom {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .room-bottom .btn {
    width: 100% !important;
  }
}

@media (max-width: 768px) {

  /* Force gap between hero action buttons */
  .quick-actions {
    gap: 16px !important;
    margin-top: 20px !important;
  }
}

/* ===== PREVENT iOS ZOOM ===== */
@media (max-width: 900px) {

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ===== FOOTER ===== */
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column !important;
    text-align: center !important;
  }

  .footer-right {
    flex-direction: row !important;
  }
}

/* ===== TOUCH TARGETS ===== */
@media (max-width: 900px) {

  button,
  .btn,
  a {
    min-height: 44px !important;
  }
}

/* ===== BOOKING PAGE ===== */
@media (max-width: 768px) {
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .booking-room-card {
    flex-direction: column !important;
    height: auto !important;
  }

  .booking-room-img {
    width: 100% !important;
    height: 200px !important;
  }

  .booking-room-footer {
    flex-direction: row !important;
    width: 100% !important;
    border-left: none !important;
    border-top: 1px solid #f0f0f0 !important;
    padding-top: 15px !important;
  }
}

/* ===== DEBUG - REMOVE AFTER TESTING ===== */
/* Uncomment these lines to see if CSS is loading */
/*
@media (max-width: 768px) {
  body::before {
    content: "MOBILE CSS LOADED ✓";
    position: fixed;
    top: 0;
    left: 0;
    background: red;
    color: white;
    padding: 10px;
    z-index: 99999;
  }
}
*/

/* =============================================
   CHATBOT MOBILE FIX - COMPLETE SOLUTION
   Add this to the VERY END of style.css
   This will FORCE the chatbot to show
============================================= */

/* ===== FORCE CHATBOT VISIBILITY - ALL SCREENS ===== */
#aiChatbotBtn {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  background: #c5a059 !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  color: white !important;
  font-size: 28px !important;
  cursor: pointer !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
  z-index: 99999 !important;
  transition: 0.2s !important;
  pointer-events: auto !important;
  border: none !important;
  outline: none !important;
}

#aiChatbotBtn:hover {
  transform: scale(1.1) !important;
  background: #b08d45 !important;
}

/* ===== MOBILE SPECIFIC - SMALLER BUTTON ===== */
@media (max-width: 768px) {
  #aiChatbotBtn {
    width: 56px !important;
    height: 56px !important;
    bottom: 20px !important;
    right: 20px !important;
    font-size: 26px !important;
    z-index: 99999 !important;
  }
}

@media (max-width: 480px) {
  #aiChatbotBtn {
    width: 52px !important;
    height: 52px !important;
    bottom: 16px !important;
    right: 16px !important;
    font-size: 24px !important;
  }
}

/* ===== CHATBOT POPUP - MOBILE FULLSCREEN ===== */
#aiChatPopup {
  font-family: var(--font-body) !important;
}

@media (max-width: 768px) {
  #aiChatPopup {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    z-index: 100000 !important;
  }

  .ai-chat-header {
    border-radius: 0 !important;
  }
}

/* ===== HERO BUTTONS GAP FIX ===== */
@media (max-width: 768px) {
  .quick-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
    margin-top: 24px !important;
  }

  .quick-actions .btn {
    width: 100% !important;
    margin: 0 !important;
    padding: 14px 24px !important;
  }
}

@media (max-width: 480px) {
  .quick-actions {
    gap: 12px !important;
  }
}

/* ===== ENSURE NO CONFLICTING STYLES ===== */
@media (max-width: 768px) {

  /* Remove any display:none that might be hiding it */
  #aiChatbotBtn[style*="display: none"] {
    display: flex !important;
  }

  /* Override any hidden classes */
  #aiChatbotBtn.hidden,
  #aiChatbotBtn[hidden] {
    display: flex !important;
    visibility: visible !important;
  }
}

/* ===== DEBUG MODE - UNCOMMENT TO TEST ===== */
/* 
@media (max-width: 768px) {
  #aiChatbotBtn::before {
    content: "CHATBOT HERE" !important;
    position: absolute !important;
    bottom: 70px !important;
    right: 0 !important;
    background: red !important;
    color: white !important;
    padding: 5px !important;
    font-size: 10px !important;
    white-space: nowrap !important;
  }
}
*/

/* =======================================
   MOBILE UI FIXES FOR SHARROW BAY WEBSITE
======================================= */

/* 1️⃣ Table Reservation Modal – compact on mobile */
@media (max-width: 600px) {
  .reservation-modal {
    max-height: 85vh !important;
    overflow-y: auto !important;
    padding: 22px 20px !important;
  }

  .reservation-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* 2️⃣ Booking page — room select button clipped fix */
.room-info,
.room-bottom {
  padding-right: 20px !important;
}

.room-card {
  overflow: visible !important;
}

/* Booking page room cards */
.booking-room-card,
.room-list-card {
  overflow: visible !important;
  padding-right: 16px !important;
}

/* 3️⃣ Homepage — Check Availability card overlapping fix */
.hero-section {
  margin-bottom: 40px !important;
}

@media (max-width: 768px) {
  .booking-widget {
    margin-top: 20px !important;
  }

  .hero-section {
    height: auto !important;
    padding-bottom: 40px !important;
  }
}


/* =======================================================
   MOBILE FIXES — Check Availability + Room Select Buttons
========================================================== */

/* 1️⃣ Check Availability card alignment */
@media (max-width: 600px) {
  .booking-widget {
    padding: 20px !important;
    border-radius: 14px !important;
  }

  .booking-widget .form-group label {
    margin-left: 2px !important;
  }

  .booking-widget .input,
  .booking-widget select {
    width: 100% !important;
    border-radius: 6px !important;
  }

  .booking-widget form {
    gap: 12px !important;
  }
}

/* 2️⃣ Room booking SELECT button fix */
.room-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px !important;
  padding-right: 16px !important;
  flex-wrap: nowrap;
}

.room-bottom button,
.room-bottom .btn {
  white-space: nowrap !important;
  padding: 10px 16px !important;
  font-size: 14px !important;
}

.price {
  flex-shrink: 0 !important;
}

/* Mobile layout improvement */
@media (max-width: 600px) {
  .room-bottom {
    flex-wrap: wrap !important;
    text-align: center;
  }

  .room-bottom .price {
    width: 100%;
    margin-bottom: 10px;
  }

  .room-bottom .btn {
    width: 100% !important;
  }
}

/* =============================
   MOBILE UI FIXES (FINAL)
============================= */

/* 1️⃣ Booking Page – Price + Select vertical */
@media (max-width: 600px) {
  .room-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding-right: 0 !important;
    flex-wrap: wrap !important;
  }

  .room-bottom .price {
    width: 100% !important;
    text-align: left !important;
    margin-bottom: 5px !important;
  }

  .room-bottom .btn,
  .room-bottom button {
    width: 100% !important;
    text-align: center !important;
    margin-top: 6px !important;
  }
}

/* 2️⃣ Check Availability – Inputs properly aligned */
@media (max-width: 600px) {

  #sendAiMsg {
    width: 44px;
  }

  .booking-widget {
    width: 100% !important;
    max-width: 100% !important;
    padding: 22px 18px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .booking-widget input,
  .booking-widget select {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .booking-widget .form-group {
    width: 100% !important;
  }
}

/* Section Icons */
.section-icon {
  color: var(--accent);
  margin-right: 10px;
  font-size: 0.9em;
}
/* GOLD GLOW SCROLL ARROW */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  color: var(--accent); /* gold */
  cursor: pointer;
  z-index: 10;
  animation: bounce 1.8s infinite, goldGlow 2.2s infinite;
  opacity: 0.95;
}

/* Hover effect */
.scroll-down:hover {
  transform: translateX(-50%) scale(1.15);
  opacity: 1;
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 12px); }
}

/* Gold glowing effect */
@keyframes goldGlow {
  0% {
    text-shadow: 0 0 6px rgba(197, 160, 89, 0.6),
                 0 0 12px rgba(197, 160, 89, 0.4),
                 0 0 18px rgba(197, 160, 89, 0.2);
  }
  50% {
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.9),
                 0 0 20px rgba(197, 160, 89, 0.6),
                 0 0 30px rgba(197, 160, 89, 0.4);
  }
  100% {
    text-shadow: 0 0 6px rgba(197, 160, 89, 0.6),
                 0 0 12px rgba(197, 160, 89, 0.4),
                 0 0 18px rgba(197, 160, 89, 0.2);
  }
}
