@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --primary-gold: #C8A14D;
  --secondary-maroon: #7B1E3B;
  --accent-cream: #FFF9F2;
  --bg-dark: #1C1C1C;
  --text-dark: #333333;
  --text-muted: #666666;
  --text-light: #FFFFFF;
  --gold-gradient: linear-gradient(135deg, #E6C687 0%, #C8A14D 50%, #A37F33 100%);
  --maroon-gradient: linear-gradient(135deg, #9C27B0 0%, #7B1E3B 50%, #4A0E21 100%);
  --dark-gradient: linear-gradient(180deg, rgba(28, 28, 28, 0.95) 0%, rgba(12, 12, 12, 0.98) 100%);
  --gold-glow: 0 8px 30px rgba(200, 161, 77, 0.3);
  --maroon-glow: 0 8px 30px rgba(123, 30, 59, 0.35);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 20px 40px rgba(123, 30, 59, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--gold-gradient);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s ease-out;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-logo {
  max-width: 220px;
  margin-bottom: 25px;
  animation: logoPulse 2s infinite ease-in-out;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(200, 161, 77, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary-gold);
  animation: spin 1s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(200,161,77,0)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(200,161,77,0.4)); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Section Title Decorator */
.section-title-container {
  position: relative;
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-subtitle {
  color: var(--primary-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  color: var(--secondary-maroon);
  font-size: 2.75rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.section-title::before {
  content: '♦';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-gold);
  font-size: 1.1rem;
  z-index: 2;
  background: #FFFFFF;
  padding: 0 8px;
}

.bg-cream .section-title::before {
  background: var(--accent-cream);
}

.bg-dark .section-title {
  color: var(--text-light);
}

.bg-dark .section-title::before {
  background: var(--bg-dark);
}

/* Buttons System */
.btn-gold {
  background: var(--gold-gradient);
  color: var(--bg-dark) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
  box-shadow: var(--gold-glow);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #B8860B 0%, #C8A14D 50%, #FFE082 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 161, 77, 0.5);
  color: var(--bg-dark);
}

.btn-maroon {
  background: var(--maroon-gradient);
  color: var(--text-light) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
  box-shadow: var(--maroon-glow);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
}

.btn-maroon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #5A1127 0%, #7B1E3B 50%, #9A3052 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn-maroon:hover::before {
  opacity: 1;
}

.btn-maroon:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(123, 30, 59, 0.55);
}

.btn-outline-gold {
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold) !important;
  background: transparent;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.75rem 1.85rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: var(--bg-dark) !important;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

/* Button Ripple effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Header & Transparent Sticky Navbar */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition-smooth);
  padding: 1.25rem 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-nav.sticky {
  background: rgba(28, 28, 28, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--primary-gold);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
  height: 75px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  transition: var(--transition-smooth);
  display: block;
  background: linear-gradient(135deg, rgba(20, 5, 8, 0.92), rgba(40, 10, 15, 0.95)) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  padding: 8px 16px !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(200, 161, 77, 0.15) !important;
}

.navbar-brand:hover img {
  border-color: rgba(212, 175, 55, 0.8) !important;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), 0 0 18px rgba(200, 161, 77, 0.3) !important;
  transform: translateY(-1px);
}

.header-nav.sticky .navbar-brand img {
  height: 60px;
  padding: 6px 12px !important;
}

.footer-logo {
  height: 75px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  margin-bottom: 1.25rem;
  display: inline-block;
  background: linear-gradient(135deg, rgba(20, 5, 8, 0.92), rgba(40, 10, 15, 0.95)) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  padding: 8px 16px !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(200, 161, 77, 0.15) !important;
  transition: var(--transition-smooth);
}

.footer-logo:hover {
  border-color: rgba(212, 175, 55, 0.8) !important;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), 0 0 18px rgba(200, 161, 77, 0.3) !important;
  transform: translateY(-1px);
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1.1rem !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: var(--transition-smooth);
  transform-origin: right;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-gold) !important;
}

.navbar-toggler {
  border-color: rgba(200, 161, 77, 0.5);
  padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(200, 161, 77, 0.25);
}

.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%28200, 161, 77, 0.85%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Floating Elements & Scroll actions */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: var(--transition-smooth);
  animation: floatBounce 3s infinite ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--maroon-gradient);
  border: 1px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  font-size: 20px;
  box-shadow: var(--maroon-glow);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(123, 30, 59, 0.5);
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero Section */
.hero-slider-container {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(15,15,15,0.55) 100%);
  z-index: 2;
}

/* Hero content wrapper — transparent, no box behind the whole banner */
.hero-content {
  position: relative;
  z-index: 3;
  color: var(--text-light);
  max-width: 900px;
  padding: 3rem 2.5rem;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Shared pill backdrop mixin applied per text element */
.hero-subtitle,
.hero-title,
.hero-tagline {
  display: inline-block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
  padding: 0.45rem 2rem;
  background:none;
  border-radius: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* Restore the gold gradient on the accented span — individual backdrop gives contrast */
.hero-title span {
    color: #ffffff;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    filter: drop-shadow(0 1px 6px rgba(200, 161, 77, 0.45));
}

.hero-subtitle {
  font-size: 1.35rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: #f5e6c0;
  padding: 0.35rem 1.6rem;
  background: rgba(0, 0, 0, 0.28);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}

/* Hero Banner Logo & Tagline */
.hero-banner-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-banner-logo {
  height: 85px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
  background: linear-gradient(135deg, rgba(20, 5, 8, 0.92), rgba(40, 10, 15, 0.95)) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  padding: 10px 22px !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(200, 161, 77, 0.2) !important;
  margin-bottom: 0.6rem;
}

.hero-tagline {
  font-size: 1.25rem;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: 'Hind Siliguri', 'Noto Sans Bengali', 'Mukti', sans-serif;
  color: var(--primary-gold);
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.3rem 1.4rem;
  background: rgba(0, 0, 0, 0.26);
}

.tagline-ornament {
  color: rgba(212, 175, 55, 0.7);
  font-size: 0.75rem;
  vertical-align: middle;
}

.header-logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-top: 3px;
  font-weight: 500;
  text-align: center;
  display: block;
  white-space: nowrap;
}

/* Scroll indicator */
.scroll-indicator-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-indicator {
  width: 28px;
  height: 48px;
  border: 2px solid var(--primary-gold);
  border-radius: 15px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 12px;
  background-color: var(--primary-gold);
  border-radius: 3px;
  animation: mouseScroll 1.8s infinite ease-in-out;
}

@keyframes mouseScroll {
  0% { top: 8px; opacity: 1; }
  100% { top: 26px; opacity: 0; }
}

/* Theme Utilities & Cards */
.bg-cream {
  background-color: var(--accent-cream);
}

.bg-dark-luxury {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.bg-dark-luxury-gradient {
  background: var(--dark-gradient);
  color: var(--text-light);
}

/* Glassmorphism system */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 161, 77, 0.25);
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--gold-glow);
}

.glass-card-dark {
  background: rgba(28, 28, 28, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 161, 77, 0.2);
  border-radius: 8px;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.glass-card-dark:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(200, 161, 77, 0.15);
}

/* Hover Zoom & Cards Lift */
.hover-lift {
  transition: var(--transition-smooth);
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.img-zoom-container {
  overflow: hidden;
  position: relative;
}

.img-zoom-container img {
  transition: var(--transition-smooth);
  width: 100%;
}

.hover-lift:hover .img-zoom-container img,
.img-zoom-container:hover img {
  transform: scale(1.1);
}

/* Why Choose Us Cards */
.feature-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  height: 100%;
  position: relative;
  z-index: 1;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--maroon-gradient);
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-icon-box {
  width: 70px;
  height: 70px;
  background-color: var(--accent-cream);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--secondary-maroon);
  font-size: 1.8rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(200, 161, 77, 0.3);
}

.feature-card:hover {
  transform: translateY(-8px);
  color: var(--text-light);
  border-color: transparent;
  box-shadow: var(--maroon-glow);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover .feature-icon-box {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  transform: rotateY(360deg);
}

.feature-card:hover h4 {
  color: var(--primary-gold);
}

.feature-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}

/* Category Grid & Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-tab-btn {
  background: transparent;
  border: 1px solid rgba(123, 30, 59, 0.3);
  color: var(--secondary-maroon);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.filter-tab-btn:hover,
.filter-tab-btn.active {
  background: var(--maroon-gradient);
  color: var(--text-light);
  border-color: transparent;
  box-shadow: var(--maroon-glow);
}

.category-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 380px;
  margin-bottom: 24px;
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(123, 30, 59, 0.95) 0%, rgba(123, 30, 59, 0.5) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  transition: var(--transition-smooth);
  z-index: 2;
}

.category-title {
  color: #FFFFFF;
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.category-subtitle {
  color: var(--primary-gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.category-card:hover .category-overlay {
  height: 100%;
  background: rgba(123, 30, 59, 0.9);
}

.category-card:hover .category-subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* Facility Card */
.facility-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 1.85rem;
  transition: var(--transition-smooth);
  text-align: center;
  box-shadow: var(--card-shadow);
}

.facility-card:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--gold-glow);
  transform: translateY(-5px);
}

.facility-icon {
  font-size: 2.2rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

/* Gallery Showcase Grid */
.gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 24px;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-grid-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon-link {
  width: 50px;
  height: 50px;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  transform: translateY(-15px);
  transition: var(--transition-smooth);
}

.gallery-grid-item:hover .gallery-icon-link {
  transform: translateY(0);
}

/* Pricing Cards */
.pricing-card {
  background: #FFFFFF;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 3rem 2.25rem;
  box-shadow: var(--card-shadow);
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.pricing-card.premium-tier {
  border-color: var(--primary-gold);
  background: var(--accent-cream);
  transform: scale(1.05);
  box-shadow: var(--gold-glow);
  z-index: 2;
}



.popular-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--maroon-gradient);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 2.5rem;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.pricing-title {
  font-size: 1.8rem;
  color: var(--secondary-maroon);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2.25rem;
}

.pricing-features-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.pricing-features-list li i {
  color: var(--primary-gold);
  margin-right: 12px;
  font-size: 1.1rem;
}

/* Statistics Counter */
.counter-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-box:last-child {
  border-right: none;
}



.counter-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
}

/* Testimonial slider */
.testimonial-swiper {
  padding-bottom: 3.5rem !important;
}

.testimonial-card {
  padding: 3rem 2.25rem;
  border-radius: 12px;
  text-align: center;
  margin: 15px;
}

.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 1.85rem;
  position: relative;
}

.testimonial-author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-gold);
  margin: 0 auto 1rem auto;
}

.testimonial-stars {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.swiper-pagination-bullet-active {
  background: var(--primary-gold) !important;
}

/* Footer Section */
.footer-top {
  padding: 5rem 0 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}



.footer-desc {
  font-size: 0.95rem;
  color: #B5B5B5;
  margin-bottom: 1.5rem;
}

.social-links {
  display: none !important;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF !important;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: var(--gold-gradient);
  color: var(--bg-dark) !important;
  transform: translateY(-3px);
}

.footer-heading {
  color: #FFFFFF;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 0.85rem;
  margin-bottom: 1.85rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2px;
  background: var(--primary-gold);
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: #B5B5B5;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.footer-links a i {
  margin-right: 8px;
  font-size: 0.8rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-links a:hover i {
  transform: translateX(5px);
  color: var(--primary-gold);
}

.contact-info-list {
  list-style: none;
  padding-left: 0;
}

.contact-info-list li {
  color: #B5B5B5;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: flex-start;
}

.contact-info-list li i {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-right: 12px;
  margin-top: 3px;
}

.contact-info-list a {
  color: #B5B5B5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-list a:hover {
  color: var(--primary-gold);
}

/* Newsletter UI */
.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  border-radius: 4px;
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-gold);
  box-shadow: none;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #B5B5B5;
}

/* Booking Modal Form */
.booking-modal .modal-content {
  background: var(--accent-cream);
  border: 2px solid var(--primary-gold);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.booking-modal .modal-header {
  border-bottom: 1px solid rgba(123, 30, 59, 0.1);
  background: var(--maroon-gradient);
  color: #FFFFFF;
  border-radius: 10px 10px 0 0;
}

.booking-modal .modal-header .btn-close {
  filter: invert(1);
}

.booking-modal .form-control,
.booking-modal .form-select {
  border: 1px solid rgba(123, 30, 59, 0.2);
  border-radius: 6px;
  padding: 0.65rem 1rem;
}

.booking-modal .form-control:focus,
.booking-modal .form-select:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.25rem rgba(200, 161, 77, 0.15);
}

/* Timeline Components */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--primary-gold);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}



.timeline-container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container::after {
  content: '♦';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: #FFFFFF;
  border: 4px solid var(--primary-gold);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--secondary-maroon);
}



.left-container {
  left: 0;
}

.right-container {
  left: 50%;
}

.right-container::after {
  left: -13px;
}



.timeline-content {
  padding: 2rem;
  background-color: #FFFFFF;
  position: relative;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.05);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--secondary-maroon);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Page Banner */
.page-banner {
  position: relative;
  padding: 10rem 0 6rem 0;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #FFFFFF;
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.85) 0%, rgba(28, 28, 28, 0.95) 100%);
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-gold {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.breadcrumb-gold a {
  color: var(--primary-gold);
}

.breadcrumb-gold li::after {
  content: '/';
  margin-left: 10px;
  color: rgba(255,255,255,0.4);
}

.breadcrumb-gold li:last-child::after {
  content: '';
}

.breadcrumb-gold li.active {
  color: #FFFFFF;
}

/* FAQ Accordion Styling */
.faq-accordion .accordion-item {
  border: 1px solid rgba(123, 30, 59, 0.15) !important;
  border-radius: 8px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.faq-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--secondary-maroon);
  background-color: #FFFFFF;
  padding: 1.25rem 1.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--accent-cream);
  color: var(--secondary-maroon);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237b1e3b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c8a14d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

/* Service Detail Page Cards styling */
.service-details-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-details-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
}

.service-card-body {
  padding: 2.25rem 1.85rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.85rem;
}

.service-features-list li {
  font-size: 0.92rem;
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  color: var(--text-dark);
}

.service-features-list li i {
  color: var(--primary-gold);
  font-size: 0.85rem;
  margin-right: 8px;
}

.service-starting-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-maroon);
  margin-top: auto;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 1.25rem;
}

.service-starting-price span {
  color: var(--primary-gold);
  font-size: 1.45rem;
}

/* Form inputs & styling */
.luxury-input-group {
  margin-bottom: 1.85rem;
}

.luxury-input-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--secondary-maroon);
}

.luxury-form-control {
  border: 1px solid rgba(123, 30, 59, 0.2);
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  border-radius: 6px;
  background-color: #FFFFFF;
  transition: var(--transition-smooth);
}

.luxury-form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 15px rgba(200, 161, 77, 0.15);
  outline: none;
}

/* Contact Cards styling */
.contact-info-card {
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: var(--maroon-gradient);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  margin: 0 auto 1.5rem auto;
  border: 2px solid var(--primary-gold);
}

/* Google Map Container */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--primary-gold);
  box-shadow: var(--gold-glow);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  flex: 1;
  border: 0;
  display: block;
}

/* Custom Cursor follow style */
.custom-cursor-outer {
  position: fixed;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  z-index: 10001;
  margin-top: -17.5px;
  margin-left: -17.5px;
  transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

.custom-cursor-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--primary-gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  z-index: 10002;
  margin-top: -3px;
  margin-left: -3px;
  transition: transform 0.05s ease-out;
}

.custom-cursor-outer.cursor-hover {
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  background-color: rgba(200, 161, 77, 0.15);
  border-color: var(--secondary-maroon);
}

.custom-cursor-inner.cursor-hover {
  background-color: var(--secondary-maroon);
}

/* Glass Alerts Notification system styles */
.glass-alert-container {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10005;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1.5px solid rgba(200, 161, 77, 0.3);
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: var(--gold-glow);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.glass-alert-container.show {
  top: 30px;
}

.glass-alert-container.error {
  border-color: rgba(220, 53, 69, 0.4);
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.2);
}

.glass-alert-container.warning {
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.2);
}

.glass-alert-container.info {
  border-color: rgba(13, 110, 253, 0.4);
  box-shadow: 0 8px 30px rgba(13, 110, 253, 0.2);
}

.glass-alert-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.glass-alert-icon {
  font-size: 1.25rem;
}

.glass-alert-container.success .glass-alert-icon { color: #28a745; }
.glass-alert-container.error .glass-alert-icon { color: #dc3545; }
.glass-alert-container.warning .glass-alert-icon { color: #ffc107; }
.glass-alert-container.info .glass-alert-icon { color: #0d6efd; }

.glass-alert-message {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Video Box Style */
.video-box-container {
  border: 2px solid var(--primary-gold);
  box-shadow: var(--gold-glow);
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.video-play-btn {
  width: 80px;
  height: 80px;
  background: var(--gold-gradient);
  color: var(--text-light) !important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  box-shadow: var(--gold-glow);
  transition: var(--transition-smooth);
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(200, 161, 77, 0.6);
}

.video-box-container:hover .video-play-overlay {
  background: rgba(28, 28, 28, 0.45);
}

/* ==========================================================================
   FACILITIES STYLING & DETAIL PAGES
   ========================================================================== */
.facility-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.facility-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 1.75rem 1rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(200, 161, 77, 0.18);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.facility-card-link:hover .facility-card {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(114, 24, 23, 0.15);
  border-color: var(--primary-gold);
  background: linear-gradient(145deg, #ffffff 0%, #fffdf7 100%);
}

.facility-icon {
  font-size: 2.3rem;
  color: var(--primary-gold);
  margin-bottom: 0.85rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.facility-card-link:hover .facility-icon {
  transform: scale(1.18);
  color: var(--secondary-maroon);
}

.facility-card h5 {
  color: var(--text-dark);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.facility-card-link:hover h5 {
  color: var(--secondary-maroon);
}

/* Facility Detail Pages Styling */
.facility-detail-hero {
  background: linear-gradient(rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.85)), url('../images/hero/slide-1.jpg') center/cover no-repeat;
  padding: 120px 0 80px;
  color: #FFFFFF;
  text-align: center;
}

.facility-badge-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-gold);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 25px rgba(200, 161, 77, 0.4);
}

.facility-feature-box {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-gold);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  height: 100%;
}

/* Google Reviews & Map Location Card Redesign */
.google-reviews-card {
  background-color: #1a1c23;
  background: linear-gradient(145deg, #1d1f28 0%, #14151b 100%);
  border: 1px solid rgba(200, 161, 77, 0.35);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.google-reviews-card .text-gold {
  color: var(--primary-gold) !important;
}

.google-address-box {
  background-color: #242731;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.pin-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.google-summary-box {
  background-color: #22252e;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.google-badge-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-progress-bar {
  height: 7px;
  background-color: #313543;
  border-radius: 4px;
  overflow: hidden;
}

.google-progress-bar .progress-bar {
  background: #fbbc04 !important;
  border-radius: 4px;
}

.user-avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.bg-purple-avatar {
  background: linear-gradient(135deg, #7c4dff, #673ab7);
}

.bg-green-avatar {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.bg-gold-avatar {
  background: linear-gradient(135deg, #e6c687, #c8a14d);
}

.hover-bg-dark {
  transition: background-color 0.25s ease, transform 0.25s ease;
  border-radius: 8px;
}

.hover-bg-dark:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.google-map-card {
  background-color: #1a1c23;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  position: relative;
}

.google-map-card iframe {
  filter: contrast(102%) saturate(105%);
}


/* ==========================================================================
   BTB TESTIMONIALS CAROUSEL SECTION (Reference Design)
   ========================================================================== */

.btb-testimonials-section {
  padding: 90px 0 80px;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

/* ── Ornament ── */
.btb-testi-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.btb-testi-ornament span {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--primary-gold);
  opacity: 0.5;
}

.btb-testi-ornament i {
  color: var(--primary-gold);
  font-size: 0.85rem;
}

/* ── Rating Summary Strip ── */
.btb-rating-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.btb-rating-score-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 90px;
}

.btb-big-score {
  font-family: var(--font-body);
  font-size: 2.8rem;
  font-weight: 700;
  color: #111111;
  line-height: 1;
}

.btb-stars-row {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #f59e0b;
}

.btb-rating-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666666;
  font-family: var(--font-body);
  margin-top: 2px;
  font-weight: 600;
}

.btb-rating-divider {
  width: 1px;
  height: 55px;
  background: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.btb-rating-facts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btb-fact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #444444;
  font-size: 0.875rem;
  font-family: var(--font-body);
}

.btb-fact-item i {
  color: var(--primary-gold);
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.btb-gmaps-btn {
  font-size: 0.82rem !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  white-space: nowrap;
}

/* ── Swiper Wrapper ── */
.btb-swiper-wrapper {
  position: relative;
  padding: 0 54px;
}

/* ── Testimonial Cards (Matches Reference Image Design) ── */
.btb-testi-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btb-testi-card::before {
  display: none;
}

.btb-testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Hide background quote icon for clean design */
.btb-testi-quote-icon {
  display: none;
}

/* ── Stars ── */
.btb-testi-stars {
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: #f59e0b;
}

/* ── Review Text (Matches Reference Image Typography) ── */
.btb-testi-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  color: #333333;
  line-height: 1.65;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.btb-testi-text strong {
  color: #111111;
  font-weight: 600;
}

/* ── Author Row (Matches Reference Image Layout) ── */
.btb-testi-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 0;
  border-top: none;
}

/* ── Avatar ── */
.btb-testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.btb-avatar-purple { background: linear-gradient(135deg, #4f46e5, #3b82f6); }
.btb-avatar-green  { background: linear-gradient(135deg, #059669, #10b981); }
.btb-avatar-gold   { background: linear-gradient(135deg, #d97706, #f59e0b); }
.btb-avatar-maroon { background: linear-gradient(135deg, #7B1E3B, #9C1A37); }
.btb-avatar-blue   { background: linear-gradient(135deg, #0284c7, #38bdf8); }

/* ── Author Info ── */
.btb-testi-author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.btb-testi-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: #111111;
  line-height: 1.2;
}

.btb-testi-event {
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: normal;
  color: #666666;
  margin-top: 3px;
  font-family: var(--font-body);
  font-weight: 400;
}

/* ── Verified Badge ── */
.btb-verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #059669;
  padding: 4px 10px;
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 20px;
  white-space: nowrap;
  background: rgba(5, 150, 105, 0.06);
  font-weight: 500;
}

/* ── Swiper Dot Pagination ── */
.btb-testi-pagination { bottom: 0 !important; }

.btb-testi-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
}

.btb-testi-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: #111111;
}

/* ── Arrow Buttons ── */
.btb-testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  color: #333333;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btb-testi-arrow:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  transform: translateY(-60%) scale(1.05);
}

.btb-testi-arrow:active { transform: translateY(-60%) scale(0.96); }
.btb-testi-prev { left: 0; }
.btb-testi-next { right: 0; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .btb-rating-strip { justify-content: center; text-align: center; }
  .btb-rating-divider { display: none; }
  .btb-rating-facts { align-items: center; }
  .btb-gmaps-btn { width: 100%; text-align: center; }
}

@media (max-width: 767px) {
  .btb-testimonials-section { padding: 64px 0 60px; }
  .btb-swiper-wrapper { padding: 0 38px; }
  .btb-testi-card { padding: 28px 22px; }
  .btb-testi-text { font-size: 0.95rem; }
  .btb-verified-badge { display: none; }
  .btb-testi-arrow { width: 36px; height: 36px; font-size: 0.85rem; }
}

/* ==========================================================================
   FACILITY DETAIL PAGE STYLES (Matches Reference Image Design)
   ========================================================================== */

.facility-img-box {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.facility-img-box img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.facility-zoom-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(28, 28, 28, 0.85);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 1rem;
  transition: transform 0.25s ease, background 0.25s ease;
  z-index: 2;
}

.facility-zoom-btn:hover {
  background: #1c1c1c;
  color: #ffffff;
  transform: scale(1.1);
}

.facility-quality-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.facility-quality-card .quality-icon {
  font-size: 2.2rem;
  color: #222222;
  margin-bottom: 8px;
  line-height: 1;
}

.facility-quality-card .quality-title {
  color: var(--secondary-maroon, #7B1E3B);
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 2px;
}

.facility-quality-card .quality-sub {
  color: #666666;
  font-size: 0.88rem;
  font-family: var(--font-body, 'Outfit', sans-serif);
}

/* Sidebar Booking Box */
.booking-form-card {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.booking-form-card .card-header {
  background: #1c1c1c;
  padding: 26px 20px;
  text-align: center;
  border-bottom: none;
}

.booking-form-card .card-header .header-sub {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-body, 'Outfit', sans-serif);
}

.booking-form-card .card-header .header-title {
  color: #ffffff;
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0;
}

.booking-form-card .card-body {
  background: #ffffff;
  padding: 28px 24px;
}

.booking-form-card .form-label {
  color: #222222;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-body, 'Outfit', sans-serif);
  margin-bottom: 6px;
}

.booking-form-card .form-control,
.booking-form-card .form-select {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: var(--font-body, 'Outfit', sans-serif);
  color: #333333;
}

.booking-form-card .btn-submit {
  background: var(--secondary-maroon, #7B1E3B);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 8px;
  border: none;
  width: 100%;
  margin-top: 8px;
  font-family: var(--font-body, 'Outfit', sans-serif);
  transition: background 0.3s ease, transform 0.2s ease;
}

.booking-form-card .btn-submit:hover {
  background: #5d152c;
  color: #ffffff;
}


