/* =====================================================
   Bakhshi Hotel — Luxury Custom Stylesheet
   Gwadar Tourist Motel | bakhshihotel.com
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ====== CSS VARIABLES ====== */
:root {
  --navy:       #0a1628;
  --navy-mid:   #111e38;
  --navy-light: #1a2e50;
  --gold:       #c9a84c;
  --gold-light: #e2c16f;
  --gold-dark:  #a07c2e;
  --white:      #ffffff;
  --off-white:  #f5f0e8;
  --cream:      #faf7f0;
  --text-dark:  #1a1a2e;
  --text-grey:  #6b7280;
  --border:     rgba(201,168,76,0.3);
  --shadow:     0 20px 60px rgba(0,0,0,0.4);
  --shadow-sm:  0 4px 20px rgba(0,0,0,0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body:  'Inter', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

/* ====== RESET & BASE ====== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover, a:focus { color: var(--gold-light); text-decoration: none; outline: none; }

img { max-width: 100%; height: auto; }
section { padding: 100px 0; }
.clearfix::after { content: ''; display: table; clear: both; }

/* ====== UTILITY ====== */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.bg-navy { background: var(--navy); }
.bg-cream { background: var(--cream); }
.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 15px;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 40px;
}
.section-divider.center { margin: 20px auto 40px; }

/* ====== TOP HEADER BAR ====== */
.top-header {
  background: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.top-header .info-block {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  letter-spacing: 0.5px;
}
.top-header .info-block .fa { color: var(--gold); margin-right: 8px; }
.top-header .contact-info { display: flex; gap: 20px; align-items: center; }
.top-header .contact-info a { color: rgba(255,255,255,0.8); font-size: 12px; }
.top-header .contact-info a:hover { color: var(--gold); }
.top-header .contact-info .fa { color: var(--gold); margin-right: 5px; }

.social-grid ul { margin: 0; padding: 0; list-style: none; }
.social-grid ul li { display: inline-block; }
.social-grid ul li + li { margin-left: 15px; }
.social-grid ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  transition: var(--transition);
}
.social-grid ul li a:hover {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ====== MAIN HEADER / NAVBAR ====== */
.header-container {
  background: var(--white);
  box-shadow: 0 2px 30px rgba(10,22,40,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.top-row { padding: 18px 0; }
@media (min-width: 992px) {
  .header-row { display: flex; align-items: center; }
  .sticky-summary {
    position: sticky;
    top: 100px;
    z-index: 10;
  }
}

#logo a {
  display: inline-block;
  text-decoration: none;
}
#logo img.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.logo-text span { color: var(--gold); display: block; font-size: 11px; letter-spacing: 3px; font-family: var(--font-body); font-weight: 400; text-transform: uppercase; margin-top: 2px; }

/* NAV */
.navbar { background: transparent; border: none; margin: 0; min-height: auto; }
.navbar-default { background: transparent; border: none; box-shadow: none; }

.cl-effect-10 { position: relative; z-index: 1; }
.cl-effect-10 a {
  color: var(--navy);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  font-family: var(--font-body);
}
.cl-effect-10 a span {
  display: block;
  padding: 10px 14px;
  background: transparent;
  transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
}
.cl-effect-10 a::before {
  content: attr(data-hover);
  background: var(--gold);
  color: var(--navy);
  height: 100%;
  left: 0;
  padding: 10px 14px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  transform: translateX(-100%);
}
.cl-effect-10 a:hover::before,
.cl-effect-10 a:focus::before { transform: translateX(0); }
.cl-effect-10 a:hover span,
.cl-effect-10 a:focus span { transform: translateX(100%); }
.cl-effect-10 a.active span {
  background: var(--gold);
  color: var(--navy);
}
.cl-effect-10 a.active::before { transform: translateX(0); }
.cl-effect-10 a.active:hover span,
.cl-effect-10 a.active:focus span {
  transform: translateX(0) !important;
}

.navigation .nav1 { margin: 0; padding: 0; }
.navigation .nav1 li { display: inline-block; list-style: none; }

/* Book Now Button */
.book-now-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 11px 24px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.book-now-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--navy);
  transition: left 0.4s;
  z-index: 0;
}
.book-now-btn:hover::before { left: 0; }
.book-now-btn span, .book-now-btn { position: relative; z-index: 1; }
.book-now-btn:hover, .book-now-btn:hover span { color: #ffffff !important; }

/* Mobile Toggle & Actions */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  height: 100%;
}
.header-actions .navbar-toggle {
  margin: 0;
  display: block;
}
.navbar-toggle {
  background: var(--navy);
  border: none;
  border-radius: 0;
  padding: 8px 12px;
  margin-top: 0;
}
.navbar-toggle .icon-bar { background: var(--gold); width: 22px; height: 2px; display: block; }
.navbar-toggle .icon-bar + .icon-bar { margin-top: 5px; }
.navbar-toggle:hover { background: var(--gold); }
.navbar-toggle:hover .icon-bar { background: var(--navy); }
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background: var(--gold); }

/* ====== HERO CAROUSEL ====== */
#mainHero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}
#mainHero .carousel-inner { height: 100%; }
#mainHero .item {
  height: 100vh;
  min-height: 680px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
#mainHero .item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2; /* Force overlay on top of background video */
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.75) 0%,
    rgba(10,22,40,0.4) 50%,
    rgba(10,22,40,0.65) 100%
  );
}
#mainHero .carousel-caption {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  text-align: left;
  padding: 0 150px;
  z-index: 10;
}
.hero-tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
#mainHero .carousel-caption h1 {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
#mainHero .carousel-caption h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin-bottom: 35px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.4);
}
.btn-outline-gold {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 13px 30px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* Carousel Controls */
.carousel-control {
  background: none;
  background-image: none !important;
  opacity: 1;
  width: auto;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  z-index: 20;
  text-shadow: none !important;
  filter: none !important;
}
.carousel-control.left {
  left: 30px;
  background-image: none !important;
}
.carousel-control.right {
  right: 30px;
  background-image: none !important;
}
.carousel-ctrl-btn {
  width: 52px; height: 52px;
  border: 2px solid rgba(201,168,76,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
  transition: var(--transition);
  background: rgba(10,22,40,0.3);
  backdrop-filter: blur(4px);
  overflow: hidden;
  box-shadow: none;
}
.carousel-ctrl-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
#mainHero .carousel-indicators { bottom: 120px; z-index: 20; }
#mainHero .carousel-indicators li {
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(201,168,76,0.5);
  width: 8px; height: 8px;
  border-radius: 50%;
  margin: 0 5px;
  transition: var(--transition);
}
#mainHero .carousel-indicators .active {
  background: var(--gold);
  border-color: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* ====== BOOKING WIDGET ====== */
.booking-widget-section {
  position: relative;
  z-index: 50;
  margin-top: -45px;
}
.booking-widget {
  background: var(--white);
  box-shadow: 0 20px 60px rgba(10,22,40,0.2);
  border-top: 3px solid var(--gold);
  padding: 30px 35px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}
.booking-field { flex: 1; min-width: 150px; }
.booking-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.booking-field input,
.booking-field select {
  width: 100%;
  border: 1px solid #e0d8c8;
  border-bottom: 2px solid var(--gold);
  padding: 10px 12px;
  font-size: 14px;
  color: var(--navy);
  background: var(--cream);
  outline: none;
  transition: var(--transition);
  font-family: var(--font-body);
  border-radius: 0;
}
.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 4px 12px rgba(201,168,76,0.15);
}
.booking-submit-btn {
  background: var(--navy);
  color: var(--gold);
  border: none;
  padding: 12px 30px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-submit-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ====== SERVICE / AMENITY ICONS ====== */
.amenities-section { background: var(--cream); }
.amenity-card {
  text-align: center;
  padding: 40px 20px;
  transition: var(--transition);
  cursor: default;
}
.amenity-card:hover { transform: translateY(-8px); }
.amenity-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--white);
  transition: var(--transition);
}
.amenity-icon .fa { font-size: 28px; color: var(--gold); }
.amenity-card:hover .amenity-icon {
  background: var(--gold);
}
.amenity-card:hover .amenity-icon .fa { color: var(--navy); }
.amenity-card h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
}

/* ====== ROOMS SECTION ====== */
.rooms-section { background: var(--white); }
.room-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 30px;
}
.room-card:hover { box-shadow: 0 20px 50px rgba(10,22,40,0.2); transform: translateY(-5px); }
.room-card .room-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.room-card .room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.8,0.25,1);
}
.room-card:hover .room-img img { transform: scale(1.08); }
.room-badge {
  position: absolute;
  top: 15px; right: 15px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}
.room-card .room-body {
  padding: 25px 28px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}
.room-card:hover .room-body { border-left-color: var(--gold); }
.room-card .room-price {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.room-card .room-price strong { font-size: 28px; font-family: var(--font-heading); color: var(--navy); margin-right: 3px; }
.room-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}
.room-card p {
  font-size: 14px;
  color: var(--text-grey);
  line-height: 1.65;
  margin-bottom: 18px;
}
.room-amenities { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 20px; }
.room-amenity-tag {
  font-size: 11px;
  color: var(--navy);
  background: var(--cream);
  padding: 4px 10px;
  border: 1px solid var(--border);
}
.room-amenity-tag .fa { color: var(--gold); margin-right: 5px; }
.btn-book-room {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 9px 22px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-book-room:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ====== OFFER / CALL TO ACTION ====== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 100px solid rgba(201,168,76,0.05);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(201,168,76,0.05);
}
.cta-content { position: relative; z-index: 2; }
.cta-banner h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}
.cta-banner h2 span { color: var(--gold); }
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 35px;
  max-width: 550px;
}

/* ====== GWADAR FEATURES / RESORT OVERVIEW ====== */
.features-section { background: var(--cream); }
.feature-block {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2px;
  background: var(--white);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-sm);
}
.feature-block.reverse { flex-direction: row-reverse; }
.feature-img {
  flex: 0 0 50%;
  overflow: hidden;
  height: 280px;
}
.feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.feature-block:hover .feature-img img { transform: scale(1.05); }
.feature-text {
  flex: 0 0 50%;
  padding: 40px 50px;
}
.feature-text h3 {
  font-size: 26px;
  margin-bottom: 15px;
}
.feature-text p {
  color: var(--text-grey);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: var(--transition);
}
.read-more-link:hover { color: var(--gold-dark); gap: 14px; }

/* ====== TESTIMONIALS ====== */
.testimonials-section {
  background: var(--navy);
  padding: 90px 0;
}
.testimonials-section .section-title { color: var(--white); }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 45px 40px;
  position: relative;
  text-align: center;
  backdrop-filter: blur(8px);
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 100px;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
}
.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.testimonial-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.testimonial-author-info h5 {
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-heading);
  margin: 0;
}
.testimonial-author-info small {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1px;
}
.testimonial-stars { color: var(--gold); margin-bottom: 20px; letter-spacing: 2px; }

/* Testimonial Carousel Controls */
#testimonialCarousel .carousel-indicators { bottom: -50px; }
#testimonialCarousel .carousel-indicators li {
  background: rgba(201,168,76,0.3);
  border-color: var(--gold);
  width: 30px; height: 3px;
  border-radius: 0;
}
#testimonialCarousel .carousel-indicators .active { background: var(--gold); }

/* ====== BLOG / NEWS SECTION ====== */
.news-section { background: var(--white); }
.blog-card {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 30px;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card .blog-img {
  overflow: hidden;
  height: 220px;
}
.blog-card .blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-card .blog-body { padding: 25px; }
.blog-cat {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.blog-card h4 {
  font-size: 19px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-card h4 a { color: var(--navy); }
.blog-card h4 a:hover { color: var(--gold); }
.blog-card p { font-size: 14px; color: var(--text-grey); line-height: 1.65; margin-bottom: 18px; }
.blog-meta { font-size: 12px; color: var(--text-grey); }
.blog-meta .fa { color: var(--gold); margin-right: 4px; }

/* ====== GALLERY ====== */
.gallery-section { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(10,22,40,0.15);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .fa { font-size: 30px; color: var(--gold); margin-bottom: 10px; }
.gallery-overlay span {
  color: var(--white);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ====== PAGE HERO BANNER ====== */
.page-hero {
  position: relative;
  height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10,22,40,0.6), rgba(10,22,40,0.8));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero-content .breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.breadcrumb-nav a { color: var(--gold); }
.breadcrumb-nav span { color: rgba(255,255,255,0.5); }

/* Legacy compat */
.image-head-wrapper {
  position: relative;
  height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-head-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.65);
}
.inner-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}
.inner-wrapper h1 {
  font-size: 52px;
  color: var(--white);
  font-family: var(--font-heading);
}

/* ====== ABOUT PAGE ====== */
.about-lead-text {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.about-lead-text em { color: var(--gold); font-style: italic; }

/* About section accent divider */
.about-section-wrap {
  padding: 100px 0;
  background: var(--white);
}
.about-left-col {
  padding-right: 20px;
}

.about-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
  font-family: var(--font-heading);
  line-height: 1.4;
}
.about-content p {
  font-size: 15px;
  color: var(--text-grey);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-highlights { list-style: none; padding: 0; margin: 20px 0; }
.about-highlights li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 14px;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  line-height: 1.5;
}
.about-highlights li:last-child { border-bottom: none; }
.about-highlights li::before {
  content: '\f00c';
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  top: 13px;
}

/* About — Value Cards (Why Choose section) */
.about-value-card {
  background: var(--white);
  padding: 40px 28px 36px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.about-value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.3);
}
.about-value-card:hover::after {
  transform: scaleX(1);
}
.about-value-card .amenity-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(201,168,76,0.2);
}
.about-value-card h4 {
  font-size: 17px;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 600;
}
.about-value-card p {
  color: var(--text-grey);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}
/* ====== STAT BOXES — ABOUT PAGE ====== */
.stat-boxes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 35px;
}
.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 20px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  flex: 1 1 90px;
  min-width: 90px;
  min-height: 110px;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, rgba(255,255,255,0) 100%);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.stat-box:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(201,168,76,0.15);
  transform: translateY(-4px);
}
.stat-box:hover::before {
  transform: scaleX(1);
}
.stat-box .num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-box .label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-grey);
  font-weight: 500;
  line-height: 1.4;
  display: block;
}

/* ====== ROOMS PAGE ====== */
.rooms-page .room-card-full {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  overflow: hidden;
  display: flex;
  min-height: 300px;
  transition: var(--transition);
}
.rooms-page .room-card-full:hover { box-shadow: var(--shadow); }
.rooms-page .room-card-full.reverse { flex-direction: row-reverse; }
.rooms-page .room-full-img {
  flex: 0 0 48%;
  overflow: hidden;
}
.rooms-page .room-full-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.rooms-page .room-card-full:hover .room-full-img img { transform: scale(1.06); }
.rooms-page .room-full-body {
  flex: 0 0 52%;
  padding: 40px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.room-price-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 18px;
}

/* ====== MINI BOOKING BAR ====== */
.rooms-booking-bar {
  background: var(--navy);
  padding: 25px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: relative;
  z-index: 10;
}
.rooms-booking-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.rooms-booking-field {
  flex: 1;
  min-width: 180px;
  position: relative;
}
.rooms-booking-label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.rooms-date-wrap, .rooms-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.rooms-cal-icon {
  position: absolute;
  left: 12px;
  color: var(--gold);
  font-size: 14px;
  pointer-events: none;
  z-index: 2;
}
.rooms-date-input, .rooms-select-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-bottom: 2px solid var(--gold);
  padding: 10px 12px 10px 36px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
  border-radius: 4px 4px 0 0;
}
.rooms-date-input:focus, .rooms-select-input:focus {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold-light);
}
.rooms-date-input::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(100%) saturate(400%) hue-rotate(10deg);
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition);
}
.rooms-date-input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}
.rooms-booking-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.15);
  align-self: center;
}
.rooms-select-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 30px;
}
.rooms-select-input option {
  background: var(--navy-mid);
  color: var(--white);
  padding: 10px;
}
.rooms-select-arrow {
  position: absolute;
  right: 12px;
  color: var(--gold);
  font-size: 12px;
  pointer-events: none;
}
.rooms-check-btn {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
  padding: 12px 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 4px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}
.rooms-check-btn:hover {
  background: var(--gold-light);
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
  transform: translateY(-2px);
}

/* ====== ROOM AMENITIES & PRICES ====== */
.room-price-line {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-grey);
  margin-bottom: 15px;
}
.room-price-amount {
  font-size: 32px;
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 700;
}
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 25px;
}
.room-amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--navy-mid);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 500;
}
.room-amenity-tag i {
  color: var(--gold);
  font-size: 13px;
}
.btn-book-room {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  transition: var(--transition);
  cursor: pointer;
  max-width: fit-content;
}
.btn-book-room:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  box-shadow: 0 8px 24px rgba(10,22,40,0.15);
}
.btn-book-room i {
  font-size: 11px;
  transition: transform 0.3s ease;
}
.btn-book-room:hover i {
  transform: translateX(4px);
}

/* ====== INCLUSIONS AMENITIES ====== */
.rooms-amenity-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 8px;
  padding: 25px 15px;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.rooms-amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.15);
  border-color: var(--gold);
}
.rooms-amenity-card .rooms-amenity-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.02) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.rooms-amenity-card:hover .rooms-amenity-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.rooms-amenity-card .rooms-amenity-icon i {
  color: var(--gold);
  font-size: 18px;
  transition: var(--transition);
}
.rooms-amenity-card:hover .rooms-amenity-icon i {
  color: var(--navy);
}
.rooms-amenity-card h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
}

/* ====== DINING PAGE ====== */
.dining-feature {
  background: var(--cream);
  padding: 50px;
  margin-bottom: 30px;
}
.dining-img {
  overflow: hidden;
  height: 350px;
  margin-bottom: 30px;
}
.dining-img img { width: 100%; height: 100%; object-fit: cover; }

/* ====== CONTACT PAGE ====== */
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  padding: 50px 40px;
  height: 100%;
}
.contact-info-card h3 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 30px;
}
.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info-item .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .icon .fa { color: var(--gold); font-size: 16px; }
.contact-info-item .detail { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.contact-info-item .detail strong { display: block; color: var(--gold); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px; }
.contact-info-item .detail a { color: rgba(255,255,255,0.85); }
.contact-info-item .detail a:hover { color: var(--gold); }

.contact-form-wrap { background: var(--white); padding: 50px 40px; box-shadow: var(--shadow-sm); }
.contact-form-wrap h3 { font-size: 28px; margin-bottom: 8px; }
.contact-form-wrap .form-group { margin-bottom: 20px; }
.contact-form-wrap .form-control {
  border: 1px solid #e0d8c8;
  border-bottom: 2px solid var(--gold);
  border-radius: 0;
  padding: 10px 16px;
  height: 48px;
  font-size: 14px;
  font-family: var(--font-body);
  box-shadow: none;
  transition: var(--transition);
}
.contact-form-wrap .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(201,168,76,0.1);
  outline: none;
}
.contact-form-wrap textarea.form-control { min-height: 140px; resize: vertical; }
.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  padding: 15px 25px;
  margin-top: 15px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}
.whatsapp-cta:hover { background: #128c7e; color: white; transform: translateY(-2px); }
.whatsapp-cta .fa { font-size: 22px; }

/* Map */
.map-section { padding: 0; }
.map-section iframe { display: block; }

/* ====== FOOTER ====== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-brand { margin-bottom: 25px; }
.footer-brand img { height: 60px; margin-bottom: 15px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-details h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  align-items: flex-start;
}
.footer-contact-list .fa { color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.75); }
.footer-contact-list a:hover { color: var(--gold); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links li a::before {
  content: '—';
  color: var(--gold);
  font-size: 10px;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}
.footer-links li a:hover { color: var(--gold); padding-left: 5px; }
.footer-links li a:hover::before { opacity: 1; transform: translateX(0); }

.footer-social-icon { display: flex; gap: 10px; margin-top: 25px; }
.footer-social-icon a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social-icon a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

#subscribe { margin-top: 20px; }
#subscribe .input-group { border: 1px solid rgba(201,168,76,0.3); }
#subscribe input.subscribe-box {
  background: rgba(255,255,255,0.06);
  border: none;
  color: white;
  border-radius: 0;
  box-shadow: none;
  font-size: 13px;
}
#subscribe input.subscribe-box::placeholder { color: rgba(255,255,255,0.4); }
#subscribe .subscribe-button {
  background: var(--gold);
  border: none;
  border-radius: 0;
  color: var(--navy);
  padding: 0 16px;
}
#subscribe .subscribe-button:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.15);
  margin-top: 50px;
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  margin: 0;
}
.footer-bottom a { color: var(--gold); }

/* ====== WHATSAPP FLOATING BUTTON ====== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 25px;
  z-index: 9999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float .fa { font-size: 28px; color: white; }
.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.5);
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ====== BACK TO TOP ====== */
#back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}
#back-to-top:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-3px);
}
#back-to-top span { display: none; }

/* ====== ANIMATIONS ====== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
  #mainHero .carousel-caption { padding: 0 40px; }
  #mainHero .carousel-caption h1 { font-size: 48px; }
  .hero-desc { font-size: 15px; }
  .feature-block, .feature-block.reverse, .rooms-page .room-card-full, .rooms-page .room-card-full.reverse {
    flex-direction: column;
  }
  .feature-img, .rooms-page .room-full-img { height: 250px; flex: auto; width: 100%; }
  .feature-text, .rooms-page .room-full-body { padding: 30px 30px; flex: auto; width: 100%; }
  .booking-widget { padding: 25px 20px; }
  .cta-banner h2 { font-size: 36px; }
}

@media (max-width: 767px) {
  /* Header & Navigation Fixes */
  .navbar-toggle {
    position: absolute;
    top: 28px;
    right: 15px;
    margin: 0;
    z-index: 1050;
  }
  .header-container { padding-bottom: 10px; }
  .mobile-book-btn-wrapper {
    padding-right: 48px;
    padding-top: 13px;
    text-align: right !important;
  }
  .mobile-book-btn-wrapper .book-now-btn {
    padding: 8px 16px;
    font-size: 10px;
  }
  
  .navigation .nav1 li { 
    display: block; 
    text-align: center; 
    margin: 0; 
    border-bottom: 1px solid var(--off-white); 
  }
  .navigation .nav1 li:last-child { border-bottom: none; }
  .cl-effect-10 a { padding: 15px !important; display: block; font-size: 15px; }
  .cl-effect-10 a span { padding: 0 !important; }
  .cl-effect-10 a::before { display: none; } /* Disable sliding hover effect on mobile */
  .cl-effect-10 a:hover span, .cl-effect-10 a:focus span, .cl-effect-10 a.active span { 
    transform: none; 
    color: var(--gold); 
    background: transparent;
  }
  .navbar-collapse {
    background: var(--white);
    border: none !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    margin-top: 15px;
  }
  .navbar-default .navbar-collapse { border-color: transparent; }

  section { padding: 60px 0; }
  .section-title { font-size: 30px; }
  #mainHero { height: 90vh; min-height: 500px; }
  #mainHero .item { height: 90vh; }
  #mainHero .carousel-caption { padding: 0 25px; }
  #mainHero .carousel-caption h1 { font-size: 36px; }
  .hero-btns { flex-direction: column; }
  .btn-gold, .btn-outline-gold { text-align: center; }
  .booking-widget { flex-direction: column; }
  .booking-field { min-width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-card, .contact-form-wrap { padding: 35px 25px; }
  .about-lead-text { font-size: 26px; }
  .page-hero-content h1, .inner-wrapper h1 { font-size: 36px; }
  .cta-banner h2 { font-size: 28px; }
  .top-row { padding: 12px 0; }
  .whatsapp-float { bottom: 80px; right: 15px; width: 50px; height: 50px; }
  .whatsapp-float .fa { font-size: 24px; }
  /* About page mobile fixes */
  .about-content { padding-left: 15px !important; margin-top: 40px; }
  .about-left-col { padding-right: 15px; }
  .stat-boxes { gap: 12px; }
  .stat-box .num { font-size: 30px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stat-boxes { flex-direction: row; flex-wrap: wrap; }
  .stat-box { flex: 1 1 calc(50% - 10px); min-width: 0; }
  .about-lead-text { font-size: 24px; }
}

/* ====== ROOMS GRID VIEW (for rooms.html) ====== */
.room-grid-card {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 30px;
  transition: var(--transition);
}
.room-grid-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-grid-card .rg-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.room-grid-card .rg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.room-grid-card:hover .rg-img img { transform: scale(1.08); }
.room-grid-card .rg-body { padding: 25px 22px; }
.room-grid-card .rg-price {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.room-grid-card .rg-price strong {
  display: block;
  font-size: 26px;
  font-family: var(--font-heading);
  color: var(--navy);
  margin-top: 2px;
}
.room-grid-card h3 { font-size: 19px; margin: 10px 0 10px; }
.room-grid-card p { font-size: 13.5px; color: var(--text-grey); margin-bottom: 15px; line-height: 1.6; }
.rg-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 15px; }
.rg-tag {
  font-size: 10px;
  color: var(--text-grey);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 3px 8px;
}
.rg-tag .fa { color: var(--gold); margin-right: 3px; }

/* Gallery front page */
.gallery-front { background: var(--white); }
.gallery-front .gallery-image { position: relative; overflow: hidden; height: 220px; margin-bottom: 4px; }
.gallery-front .gallery-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-front .gallery-image:hover img { transform: scale(1.08); }
.gallery-front .gallery-image .overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.7);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-front .gallery-image:hover .overlay { opacity: 1; }
.gallery-front .gallery-image .overlay .fa { font-size: 28px; color: var(--gold); }
.gallery-front .gallery-image .overlay p { color: white; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin: 8px 0 0; }
.gallery-front .gallery-image .overlay p a { color: white; }

/* Dining section tweaks */
.blog-block .event-blog-details h4 a { color: var(--navy); }
.blog-block .event-blog-details h4 a:hover { color: var(--gold); }
.event-blog-details a.btn-default {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 0;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 20px;
  transition: var(--transition);
}
.event-blog-details a.btn-default:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Rooms filter bar */
.room-filter-bar {
  background: var(--cream);
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 8px 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-right: 5px;
  margin-bottom: 5px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ==========================================================================
   DYNAMIC HERO SLIDER ADJUSTMENTS (ALIGNMENT & BACKGROUND VIDEO)
   ========================================================================== */
#mainHero .carousel-caption.align-center {
  text-align: center;
}
#mainHero .carousel-caption.align-center .hero-desc {
  margin-left: auto;
  margin-right: auto;
}
#mainHero .carousel-caption.align-center .hero-btns {
  justify-content: center;
}

#mainHero .carousel-caption.align-right {
  text-align: right;
}
#mainHero .carousel-caption.align-right .hero-desc {
  margin-left: auto;
  margin-right: 0;
}
#mainHero .carousel-caption.align-right .hero-btns {
  justify-content: flex-end;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1; /* Sits below the ::after dark overlay (z-index: 2) */
  transform: translate(-50%, -50%);
  object-fit: cover;
}
