/* ============================================================
   WEDDING HALL – PREMIUM CSS THEME
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #a8892a;
  --crimson: #8b0000;
  --cream: #f8f0e3;
  --ivory: #faf7f2;
  --charcoal: #1a1a2e;
  --dark: #0d0d1a;
  --text-primary: #2c2c2c;
  --text-muted: #6c6c6c;
  --white: #ffffff;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  --shadow-gold: 0 8px 32px rgba(212, 175, 55, .25);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, .08);
  --transition: all .35s cubic-bezier(.4, 0, .2, 1);

  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--ivory);
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.75;
}

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

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

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}

.section-badge {
  display: inline-block;
  font-size: .75rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, .1);
  border: 1px solid rgba(212, 175, 55, .3);
  padding: .3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: .75rem;
}

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

.gold-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto 1.5rem;
  border: none;
}

.wh-section {
  padding: 90px 0;
}

.wh-section-light {
  background: var(--ivory);
}

.wh-section-dark {
  background: var(--charcoal);
  color: var(--cream);
}

.wh-section-dark h2,
.wh-section-dark h3 {
  color: var(--gold-light);
}

.wh-section-dark p {
  color: rgba(255, 255, 255, .75);
}

.wh-section-cream {
  background: var(--cream);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .5s, visibility .5s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring {
  width: 70px;
  height: 70px;
  border: 3px solid rgba(212, 175, 55, .2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preloader-icon {
  position: absolute;
  font-size: 1.8rem;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.wh-navbar {
  background: transparent;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.wh-navbar.scrolled,
.wh-navbar.fixed-dark {
  background: rgba(13, 13, 26, 1) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .6rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}

.navbar-brand img {
  width: var(--logo-desk-w, auto);
  height: var(--logo-desk-h, 85px);
  max-width: 250px;
  object-fit: contain;
  transition: var(--transition);
}

.wh-navbar.scrolled .navbar-brand img,
.wh-navbar.fixed-dark .navbar-brand img {
  height: calc(var(--logo-desk-h, 85px) * 0.75);
}

.navbar-brand {
  margin-right: auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-right: auto;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.brand-icon {
  font-size: 1.6rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-royal {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.wh-navbar .nav-link {
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .5px;
  color: rgba(255, 255, 255, .85) !important;
  padding: .5rem .9rem !important;
  border-radius: 6px;
  position: relative;
}

.wh-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: .9rem;
  right: .9rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 1px;
}

.wh-navbar .nav-link:hover::after,
.wh-navbar .nav-link.active::after {
  transform: scaleX(1);
}

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

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

.btn-wh-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .55rem 1.3rem !important;
  border-radius: 50px;
  border: none;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-wh-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, .4);
}

.navbar-toggler {
  border: none;
  background: transparent !important;
  padding: .4rem;
}

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

.navbar-toggler-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}

.navbar-toggler-inner span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 13, 26, .75) 0%, rgba(13, 13, 26, .4) 60%, rgba(0, 0, 0, .65) 100%);
}

.hero-content {
  position: relative;
  z-index: 99;
  text-align: center;
  padding: 120px 1rem 0;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, .5);
  padding: .3rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  opacity: 0;
}

.carousel-item.active .hero-badge {
  animation: fadeInDown 1s ease forwards !important;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: .5rem;
  opacity: 0;
}

.carousel-item.active .hero-title {
  animation: fadeInUp 1s ease .2s forwards !important;
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--gold-light);
  font-style: italic;
  font-family: var(--font-heading);
  opacity: 0;
}

.carousel-item.active .hero-subtitle {
  animation: fadeInUp 1s ease .35s forwards !important;
}

.hero-desc {
  color: rgba(255, 255, 255, .8);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 1rem auto 2rem;
  opacity: 0;
}

.carousel-item.active .hero-desc {
  animation: fadeInUp 1s ease .5s forwards !important;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

.carousel-item.active .hero-actions {
  animation: fadeInUp 1s ease .65s forwards !important;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, .45);
  color: var(--dark);
}

.btn-hero-outline {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .5);
  padding: .83rem 2.2rem;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, .1);
}

/* Carousel Controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(212, 175, 55, .5);
  border-radius: 50%;
  opacity: .7;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  transition: var(--transition);
  background: rgba(0, 0, 0, .3);
  backdrop-filter: blur(4px);
}

.hero-slider .carousel-control-prev {
  left: 2rem;
}

.hero-slider .carousel-control-next {
  right: 2rem;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
  opacity: 1;
  border-color: var(--gold);
  background: rgba(212, 175, 55, .2);
}

.hero-slider .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  border: none;
  margin: 0 4px;
  transition: var(--transition);
}

.hero-slider .carousel-indicators .active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* Scroll Down Arrow */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: var(--gold);
  animation: bounce 2s ease infinite;
  font-size: 1.5rem;
  cursor: pointer;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ============================================================
   CARDS & GENERAL
   ============================================================ */
.wh-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .1);
}

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

.wh-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(212, 175, 55, .15), rgba(212, 175, 55, .05));
  border: 2px solid rgba(212, 175, 55, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}

.wh-card:hover .wh-card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-color: var(--gold);
}

/* ============================================================
   INNOVATIVE GALLERY
   ============================================================ */
.gallery-filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.filter-btn {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .6rem 1.8rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, .2);
  color: var(--text-muted);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, .2);
}

.filter-btn:hover::before,
.filter-btn.active::before {
  opacity: 1;
}

/* Gallery Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.5rem;
  /* Highly spacious */
  margin-bottom: 5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
  transition: var(--transition);
  aspect-ratio: 3/2;
}

.gallery-img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2, .1, .2, 1);
}

/* Overlay & Content */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  transition: var(--transition);
  z-index: 2;
}

.gallery-overlay-content {
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.gallery-cat {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: .8rem;
  display: block;
}

.gallery-item-title {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
}

.gallery-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  transition: width .6s ease;
}

.gallery-zoom {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: var(--transition);
}

/* Hover States */
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .4);
}

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

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(to top, rgba(13, 13, 26, .95) 0%, transparent 80%);
}

.gallery-item:hover .gallery-overlay-content {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item:hover .gallery-line {
  width: 120px;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Grid Adjustments */
@media (max-width: 1199.98px) {
  .gallery-grid {
    gap: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  .gallery-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery-item {
    aspect-ratio: auto;
    height: 320px;
    /* Fixed height for mobile uniformity */
  }

  .gallery-overlay {
    padding: 2rem;
  }

  .gallery-item-title {
    font-size: 1.5rem;
  }
}

/* ============================================================
   FEATURES / FACILITIES LIST
   ============================================================ */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(212, 175, 55, .06);
}

.feature-num {
  min-width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
  font-size: .9rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(212, 175, 55, .1);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, .1);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(212, 175, 55, .15), rgba(212, 175, 55, .05));
  border: 2px solid rgba(212, 175, 55, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.form-control,
.form-select {
  border: 2px solid rgba(212, 175, 55, .2);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: var(--font-body);
  transition: var(--transition);
  background: var(--ivory);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .15);
  background: var(--white);
}

.wh-map iframe {
  border-radius: var(--radius-lg);
  border: none;
  width: 100%;
  height: 350px;
}

/* ============================================================
   BOOKING PAGE (no-booking notification)
   ============================================================ */
.booking-page {
  min-height: 100vh;
  background: var(--ivory);
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(212, 175, 55, .2);
  max-width: 780px;
  margin: auto;
}

.booking-warning-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(139, 0, 0, .1), rgba(139, 0, 0, .05));
  border: 2px solid rgba(139, 0, 0, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--crimson);
  margin: 0 auto 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.booking-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.booking-contact-item {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, .15);
  transition: var(--transition);
}

.booking-contact-item:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, .05);
}

.booking-contact-item i {
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-btns {
  position: fixed;
  z-index: 100000 !important;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.floating-btns.bottom-right {
  bottom: 2rem;
  right: 2rem;
  align-items: flex-end;
}

.floating-btns.bottom-center {
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: row;
}

.floating-btns.right-center {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  align-items: flex-end;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
  transition: var(--transition);
  animation: floatIn .5s ease both;
  position: relative;
}

.float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: pulseRing 2.5s ease-in-out infinite;
}

.wa-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white) !important;
}

.wa-btn::before {
  border-color: rgba(37, 211, 102, .4);
}

.call-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important;
}

.call-btn::before {
  border-color: rgba(212, 175, 55, .4);
}

.float-btn:hover {
  transform: scale(1.12) translateY(-2px);
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: scale(.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseRing {

  0%,
  100% {
    transform: scale(1);
    opacity: .6;
  }

  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.whyus-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(212, 175, 55, .2);
  transition: var(--transition);
}

.whyus-card:hover {
  background: rgba(212, 175, 55, .08);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.whyus-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: .25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.wh-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .7);
}

.footer-top {
  padding: 5rem 0 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.footer-site-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-desc {
  font-size: .9rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: .75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, .1);
}

.footer-heading {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: .5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .6);
  font-size: .875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .8rem;
  font-size: .875rem;
}

.footer-contact-list i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: .1rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, .1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: .8rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

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

/* ============================================================
   PARALLAX SECTION
   ============================================================ */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 26, .72);
}

.parallax-content {
  position: relative;
  z-index: 1;
}

/* ============================================================
   SERVICE / FEATURE CARDS
   ============================================================ */
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, .08);
  padding: 2.2rem 1.8rem;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212, 175, 55, .3);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-card h5 {
  font-size: 1.3rem;
  margin-bottom: .6rem;
}

.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
}

/* ============================================================
   HIGHLIGHTS STRIP
   ============================================================ */
.highlights-strip {
  background: var(--charcoal);
  padding: 3rem 0;
}

.highlight-item {
  text-align: center;
  color: rgba(255, 255, 255, .8);
}

.highlight-item i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: .75rem;
  display: block;
}

.highlight-item strong {
  font-size: 1.1rem;
  color: var(--gold-light);
  display: block;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-img-wrapper {
  position: relative;
  padding: 1.5rem;
}

.about-img-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
}

.about-badge-box {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center;
}

.about-badge-box strong {
  display: block;
  font-size: 2.4rem;
  font-family: var(--font-heading);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #16213e 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, .15) 0%, transparent 70%);
}

.cta-section .btn-wh-gold {
  font-size: 1rem;
  padding: .9rem 2.5rem;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed;
  bottom: 8rem;
  right: 2rem;
  z-index: 1049;
  width: 42px;
  height: 42px;
  background: rgba(212, 175, 55, .85);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(212, 175, 55, .3);
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .wh-navbar {
    background: rgba(13, 13, 26, .98) !important;
    padding: .8rem 0;
  }

  .wh-navbar .navbar-collapse {
    background: rgba(13, 13, 26, .98);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 1.5rem;
    margin-top: .5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
  }

  .wh-navbar .nav-link {
    padding: .8rem 0 !important;
    border-bottom: 1px solid rgba(212, 175, 55, .1);
  }

  .wh-navbar .nav-link:last-child {
    border-bottom: none;
  }

  .hero-slider .carousel-control-prev {
    left: .5rem;
  }

  .hero-slider .carousel-control-next {
    right: .5rem;
  }

  .parallax-section {
    background-attachment: scroll;
  }

  /* Removed redundant gallery-grid override */
}

@media (max-width: 767.98px) {

  .hero-slider,
  .hero-slide {
    height: 80vh !important;
    min-height: 80vh !important;
  }

  .hero-slide {
    background-position: center;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    text-align: center;
  }

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

@media (max-width: 575.98px) {
  .wh-section {
    padding: 60px 0;
  }

  /* Redundant gallery-grid override removed as it's handled above in the 767px query */

  .booking-card {
    padding: 2rem 1rem;
  }

  .floating-btns.bottom-right {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .floating-btns.right-center {
    right: 1rem;
    top: auto;
    bottom: 2rem;
    transform: none;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    pointer-events: none;
  }

  .navbar-brand img {
    width: auto !important;
    height: 60px !important;
    max-width: 210px !important;
  }

  .navbar-brand {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  .floating-btns {
    bottom: 50% !important;
    right: 1rem !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    flex-direction: column !important;
    width: auto !important;
    pointer-events: auto !important;
    gap: .75rem !important;
  }

  .float-btn {
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    aspect-ratio: 1/1 !important;
    flex-shrink: 0 !important;
  }

  /* Any Potential Marquee Fix */
  marquee {
    opacity: 1 !important;
    animation: none !important;
  }

  .hero-content {
    padding-top: 0 !important;
    margin-top: 200px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero-title {
    font-size: clamp(1.4rem, 6vw, 2.2rem) !important;
    margin-bottom: .25rem !important;
    opacity: 0;
    visibility: hidden;
    animation: none;
  }

  .carousel-item.active .hero-title {
    animation: fadeInUp .8s ease .1s forwards !important;
    visibility: visible !important;
  }

  .hero-badge {
    opacity: 0;
    visibility: hidden;
    font-size: .65rem !important;
    padding: .25rem .7rem !important;
    letter-spacing: 2px !important;
    margin-bottom: .75rem !important;
    animation: none;
  }

  .carousel-item.active .hero-badge {
    animation: fadeInDown 1s ease forwards !important;
    visibility: visible !important;
  }

  .hero-desc,
  .hero-actions {
    opacity: 0;
    visibility: hidden;
    animation: none;
  }

  .carousel-item.active .hero-desc,
  .carousel-item.active .hero-actions {
    animation: fadeInUp .8s ease .3s forwards !important;
    visibility: visible !important;
  }

  .hero-actions {
    gap: .75rem !important;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    padding: .3rem .7rem !important;
    font-size: .65rem !important;
    min-width: 100px !important;
    width: auto !important;
  }

  /* Footer Mobile Refinements */
  .footer-heading {
    font-size: 1.1rem !important;
    margin-bottom: .75rem !important;
  }

  .footer-links li a {
    font-size: .85rem !important;
  }

  .wh-footer .row>div {
    margin-bottom: 1.5rem !important;
  }

  .col-sm-6 {
    width: 50% !important;
  }

  .footer-contact-list span {
    font-size: .85rem !important;
  }

  .highlight-item i {
    font-size: 1.5rem;
  }

  .highlight-item strong {
    font-size: 1rem;
  }
}