/* ============================================
   Blue Heaven Resort Jaipur — Premium Styles
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #0c5fab;
  --primary-light: #1a7fd4;
  --primary-dark: #084a87;
  --gold: #c9a84c;
  --gold-hover: #b8923a;
  --white: #ffffff;
  --light-grey: #f5f5f5;
  --dark: #0d1b2a;
  --body-text: #444444;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  color: var(--body-text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--primary);
  font-weight: 700;
}

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

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

/* ---------- Section Utilities ---------- */
.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: #777;
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gold-line {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 15px auto 20px;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 14px 36px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  display: inline-block;
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 14px 36px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  display: inline-block;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ---------- Fade-in Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   1. NAVBAR
   ============================================ */
.navbar {
  padding: 15px 0;
  transition: var(--transition);
  background: var(--white);
  z-index: 1050;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
  height: 70px;
  transition: var(--transition);
}

/* Hide white logo by default, show original */
.navbar-brand .show-default {
  display: none;
}

.navbar-brand .show-on-sticky {
  display: block;
}

/* Scrolled state — same as default since navbar is always white */
.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-brand img {
  height: 55px;
}

.navbar-nav .nav-link {
  color: var(--primary) !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 8px 16px !important;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}

.navbar .btn-book {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
}

.navbar .btn-book:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 58, 107, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   2. HERO SECTION
   ============================================ */
#hero {
  margin-block-start: 110px;
  position: relative;
  padding-block: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

/* Hero Fade Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

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

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.65) 0%, rgba(26, 58, 107, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 2px;
}

/* Typewriter Hero Text */
.hero-rotate-wrapper {
  display: inline-block;
  position: relative;
}

.hero-rotate-text {
  display: inline-block;
  color: var(--gold);
  position: relative;
  border-right: 3px solid var(--gold);
  animation: blink-cursor 0.7s step-end infinite;
}

@keyframes blink-cursor {
  0%, 100% { border-color: var(--gold); }
  50% { border-color: transparent; }
}

.hero-content .tagline {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 15px;
  opacity: 0.9;
  letter-spacing: 1px;
}

.hero-content .gold-line {
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}


/* ============================================
   3. ABOUT SECTION
   ============================================ */
#about {
  background: var(--white);
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
}

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

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

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-text .gold-line {
  margin: 15px 0 25px 0;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #555;
}

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

.about-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-feature .icon-box {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  transition: var(--transition);
}

.about-feature:hover .icon-box {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 58, 107, 0.3);
}

.about-feature h5 {
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.85rem;
  color: #888;
}

/* ============================================
   4. ROOMS SECTION
   ============================================ */
#rooms {
  background: var(--light-grey);
}

.room-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.room-card .room-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

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

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

.room-card .room-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.room-card .room-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.room-card .room-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  flex: 1;
}

.room-card .room-features li {
  padding: 5px 0;
  font-size: 0.92rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-card .room-features li i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ============================================
   5. AMENITIES SECTION
   ============================================ */
#amenities {
  background: var(--white);
}

.amenity-item {
  text-align: center;
  padding: 40px 25px;
  border-radius: 16px;
  transition: var(--transition);
  background: var(--light-grey);
}

.amenity-item:hover {
  background: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(26, 58, 107, 0.25);
}

.amenity-item .amenity-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.amenity-item:hover .amenity-icon {
  background: var(--gold);
  color: var(--white);
}

.amenity-item h5 {
  font-family: var(--body-font);
  font-size: 1.05rem;
  font-weight: 600;
  transition: var(--transition);
}

.amenity-item:hover h5 {
  color: var(--white);
}

.amenity-item p {
  font-size: 0.88rem;
  color: #888;
  margin-top: 8px;
  transition: var(--transition);
}

.amenity-item:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   6. DINING SECTION
   ============================================ */
#dining {
  background: var(--light-grey);
}

.dining-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

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

.dining-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.dining-text .gold-line {
  margin: 15px 0 25px 0;
}

.dining-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.dining-highlights {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.dining-highlights li {
  padding: 8px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
}

.dining-highlights li i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ============================================
   7. EVENTS SECTION
   ============================================ */
#events {
  position: relative;
  display: flex;
  padding-block: 70px;
  align-items: center;
  background: url('galley-images/13.jpeg') center/cover no-repeat;
}

#events::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.82) 0%, rgba(26, 58, 107, 0.7) 100%);
}

.events-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.events-content h2 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.events-content .gold-line {
  margin-bottom: 25px;
}

.events-content p {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 40px;
  opacity: 0.9;
  line-height: 1.8;
}

/* ============================================
   8. GALLERY SECTION
   ============================================ */
#gallery {
  background: var(--white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filters .filter-btn {
  padding: 8px 24px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 0.88rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
  background: var(--primary);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
}

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

.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::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 58, 107, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition);
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  z-index: 10;
}

.lightbox-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--gold);
}

.lightbox-prev {
  left: 25px;
}

.lightbox-next {
  right: 25px;
}

/* ============================================
   9. TESTIMONIALS SECTION
   ============================================ */
#testimonials {
  background: var(--light-grey);
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
}

.testimonial-card .guest-name {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-card .guest-location {
  font-size: 0.88rem;
  color: #999;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  border: none;
}

.carousel-indicators .active {
  opacity: 1;
  background: var(--gold);
}

/* ============================================
   10. LOCATION SECTION
   ============================================ */
#location {
  background: var(--white);
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.location-info h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.location-info .address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
  font-size: 1rem;
  color: #555;
}

.location-info .address i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 4px;
}

.nearby-list {
  list-style: none;
  padding: 0;
}

.nearby-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #555;
}

.nearby-list li:last-child {
  border-bottom: none;
}

.nearby-list li i {
  color: var(--gold);
}

/* ============================================
   11. ENQUIRY FORM
   ============================================ */
#enquiry {
  background: var(--light-grey);
}

.enquiry-form {
  background: var(--white);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.enquiry-form .form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--body-text);
  transition: var(--transition);
}

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   12. CTA BANNER
   ============================================ */
#cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

#cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12, 95, 171, 0.88) 0%, rgba(8, 74, 135, 0.92) 100%);
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 8px 28px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

#cta-banner h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

#cta-banner .gold-line {
  margin-bottom: 20px;
}

#cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-features span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-features span i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ============================================
   13. FOOTER
   ============================================ */
#footer {
  background: var(--light-grey);
  padding: 80px 0 0;
  color: #555;
  border-top: 1px solid #e0e0e0;
}

#footer h5 {
  color: var(--primary);
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}

#footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

#footer .footer-about p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #666;
}

#footer .footer-about img {
  height: 80px;
  margin-bottom: 20px;
}

#footer .footer-links {
  list-style: none;
  padding: 0;
}

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

#footer .footer-links a {
  color: #666;
  font-size: 0.92rem;
  transition: var(--transition);
}

#footer .footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

#footer .contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.92rem;
  color: #666;
}

#footer .contact-info li i {
  color: var(--gold);
  margin-top: 4px;
}

#footer .contact-info li a {
  color: #666;
}

#footer .contact-info li a:hover {
  color: var(--primary);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.social-icons a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(12, 95, 171, 0.3);
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding: 25px 0;
  margin-top: 60px;
  text-align: center;
  font-size: 0.88rem;
  color: #888;
}

/* ============================================
   EXTRAS
   ============================================ */

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  z-index: 999;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 33px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(26, 58, 107, 0.3);
  transition: var(--transition);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

/* Mobile Sticky Booking Bar */
.mobile-booking-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1040;
  align-items: center;
  justify-content: space-between;
}

.mobile-booking-bar .price-info {
  font-size: 0.82rem;
  color: #888;
}

.mobile-booking-bar .price-info strong {
  font-size: 1.3rem;
  color: var(--primary);
  display: block;
}

.error {
    color: red;
    font-size: 13px;
    padding-bottom: 5px;
}
.success {
    color: green;
    font-size: 13px;
    padding-bottom: 5px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  #hero {
    padding-block: 150px;
  }
  .navbar-collapse {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .navbar-collapse .nav-link {
    color: var(--primary) !important;
    padding: 10px 15px !important;
  }

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

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

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

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

  .mobile-booking-bar {
    display: flex;
  }

  .whatsapp-float {
    bottom: 85px;
  }

  .scroll-top {
    bottom: 155px;
  }
}

@media (max-width: 767.98px) {
  #hero {
    padding-block: 120px;
  }
  .section-padding {
    padding: 70px 0;
  }

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

  .hero-content .tagline {
    font-size: 1rem;
  }

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

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

  .enquiry-form {
    padding: 30px 25px;
  }

  #cta-banner h2 {
    font-size: 2rem;
  }

  .events-content h2 {
    font-size: 2.2rem;
  }

  /* All sections from Dining onwards — compact padding on mobile */
  #dining,
  #events,
  #gallery,
  #testimonials,
  #location,
  #enquiry,
  #cta-banner,
  #footer {
    padding-block: 40px;
  }

  #footer {
    padding-bottom: 0;
  }

  .footer-bottom {
    margin-top: 30px;
  }
}

@media (max-width: 575.98px) {
  #hero {
    padding-block: 80px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }

  .hero-buttons .btn-gold,
  .hero-buttons .btn-outline-white {
    padding: 12px 28px;
    font-size: 0.85rem;
  }
}
