/* =============================================
   MAHADEV PALACE — Premium Banquet Website CSS
   Royal Gold · Deep Maroon · Ivory White
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --gold: #C9A227;
  --gold-light: #E4C158;
  --gold-dark: #A07D10;
  --maroon: #6A0D25;
  --maroon-dark: #45081A;
  --ivory: #F8F4EC;
  --champagne: #EAD9B8;
  --dark-brown: #2C1A0E;
  --warm-black: #1A0E08;
  --floral-pink: #E8A0B0;
  --soft-glow: rgba(201, 162, 39, 0.15);

  --font-display: 'Poppins', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 8px 40px rgba(201, 162, 39, 0.18);
  --shadow-card: 0 4px 32px rgba(26, 14, 8, 0.12);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--dark-brown);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
}

/* ── UTILITY ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.heading-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  color: var(--maroon);
}

.heading-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
}

.text-gold {
  color: var(--gold);
}

.text-maroon {
  color: var(--maroon);
}

.text-ivory {
  color: var(--ivory);
}

.bg-maroon {
  background: var(--maroon);
}

.bg-gold {
  background: var(--gold);
}

.bg-ivory {
  background: var(--ivory);
}

.bg-warm-black {
  background: var(--warm-black);
}

/* Gold ornament divider */
.ornament {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-content: center;
  margin: 1rem 0 1.6rem;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

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

/* ── BUTTONS ── */
.btn-royal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.8rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--warm-black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-royal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: var(--transition);
}

.btn-royal:hover::after {
  opacity: 1;
}

.btn-royal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.4);
  color: var(--warm-black);
}

.btn-outline-royal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.68rem 1.7rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  border-radius: 0;
  text-decoration: none;
  transition: var(--transition);
}

.btn-outline-royal:hover {
  background: var(--gold);
  color: var(--warm-black);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.8rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  color: #fff;
  transform: translateY(-2px);
}

/* ── NAVBAR ── */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.9rem 0;
  transition: var(--transition);
  background: transparent;
}



#mainNav.scrolled {
  background: var(--maroon-dark);
  padding: 0.5rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.site-logo {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}



.nav-link {
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--champagne) !important;
  padding: 0.4rem 1rem !important;
  position: relative;
  transition: color var(--transition) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

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

.nav-link:hover::after {
  left: 1rem;
  right: 1rem;
}

.navbar-toggler {
  border-color: var(--gold) !important;
}

.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='%23C9A227' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--warm-black) !important;
  padding: 0.45rem 1.2rem !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.nav-book-btn:hover {
  opacity: 0.88;
}

.nav-book-btn::after {
  display: none !important;
}

/* ── HERO SECTION ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--warm-black);
  padding-top: 110px;
  /* clears the fixed navbar */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(26, 14, 8, 0.88) 40%, rgba(106, 13, 37, 0.55) 100%),
    url('../images/hero.png') center/cover no-repeat;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.05);
  }
}


.hero-frame .corner.tl {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.hero-frame .corner.tr {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}

.hero-frame .corner.bl {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
}

.hero-frame .corner.br {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s forwards;
}

.hero-heading em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--champagne);
  margin-bottom: 2.2rem;
  max-width: 540px;
  opacity: 0;
  animation: fadeUp 0.7s 0.7s forwards;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.9s forwards;
}

/* Sub-Hero Highlights Strip */
.sub-hero-strip {
  background: var(--maroon-dark);
  border-top: 1.5px solid rgba(201, 162, 39, 0.4);
  border-bottom: 1.5px solid rgba(201, 162, 39, 0.4);
  position: relative;
  z-index: 10;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.shs-highlights {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.shs-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(201, 162, 39, 0.2);
  justify-content: center;
  transition: background var(--transition);
}

.shs-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.shs-item i {
  color: var(--gold);
  font-size: 1.15rem;
}

.shs-item span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--champagne);
  letter-spacing: 0.03em;
  line-height: 1.3;
}

@media (max-width: 991.98px) {
  .shs-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    padding: 1rem 0.8rem;
    min-width: 50%;
    flex: 0 0 50%;
    justify-content: flex-start;
  }

  .shs-item:nth-child(even) {
    border-left: 1px solid rgba(201, 162, 39, 0.15);
  }
}

@media (max-width: 575.98px) {
  .shs-item {
    min-width: 100%;
    flex: 0 0 100%;
    border-left: none !important;
  }
}

/* ── PROMO PRICE HIGHLIGHT BANNER ── */
.promo-pricing-banner {
  padding: 5rem 0 3rem;
  background: linear-gradient(to bottom, #fff 0%, var(--ivory) 100%);
  position: relative;
  z-index: 9;
}

.ppb-card {
  background: linear-gradient(135deg, rgba(106, 13, 37, 0.98) 0%, rgba(69, 8, 26, 0.99) 100%);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 4px;
  padding: 3.5rem 3rem;
  position: relative;
  box-shadow: 0 32px 80px rgba(69, 8, 26, 0.22);
  overflow: hidden;
}

.ppb-card::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 162, 39, 0.18);
  pointer-events: none;
}

.ppb-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 0.2rem;
}

.ppb-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.8rem;
}

.ppb-price-wrapper {
  display: inline-block;
  background: rgba(0, 0, 0, 0.15);
  border: 1.5px solid rgba(201, 162, 39, 0.35);
  padding: 1.5rem 2.8rem;
  position: relative;
  margin-top: 0.5rem;
}

.ppb-price-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.4rem;
}

.ppb-price-value {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 35px rgba(201, 162, 39, 0.55);
  animation: ppbPricePulse 3s ease-in-out infinite;
}

@keyframes ppbPricePulse {

  0%,
  100% {
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
    color: var(--gold-light);
  }

  50% {
    text-shadow: 0 0 55px rgba(201, 162, 39, 0.95), 0 0 85px rgba(201, 162, 39, 0.35);
    color: #fff;
  }
}

.ppb-price-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 39, 0.25);
  animation: ppbRingPulse 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes ppbRingPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

.ppb-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--champagne);
  line-height: 1.85;
  opacity: 0.95;
  margin-bottom: 1.8rem;
}

.ppb-inclusions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1.5rem;
  margin-bottom: 0.5rem;
}

.ppb-inc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.ppb-inc-item i {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.ppb-inc-item span {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 991.98px) {
  .ppb-card {
    padding: 3rem 2rem;
  }

  .ppb-inclusions {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .ppb-card {
    padding: 2.2rem 1.2rem;
  }

  .ppb-price-wrapper {
    width: 100%;
    padding: 1.2rem 1.5rem;
  }
}



/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s both;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 1.6s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* ── ABOUT PREVIEW ── */
#about-preview {
  padding: 6rem 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

#about-preview::before {
  content: 'MAHADEV';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.05);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.about-image-frame {
  position: relative;
  z-index: 1;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 45%;
  height: 200px;
  object-fit: cover;
  border: 5px solid var(--ivory);
  box-shadow: var(--shadow-card);
}

.about-gold-bar {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  width: 5px;
  height: 70%;
  background: linear-gradient(180deg, var(--gold), var(--maroon));
}

.about-stat {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
  margin-bottom: 0.3rem;
}

.about-stat .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}

.about-stat .unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  padding-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.about-stat-label {
  font-size: 0.75rem;
  color: #7a5c3e;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.about-stats-row {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--champagne);
  border-bottom: 1px solid var(--champagne);
  margin: 1.5rem 0;
}

/* ── VENUE HIGHLIGHTS ── */
#venue-highlights {
  background: var(--maroon-dark);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

#venue-highlights::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.venue-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.22);
  padding: 2.2rem 1.8rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
}

.venue-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.08), transparent);
  transition: 0.6s;
}

.venue-card:hover::before {
  left: 100%;
}

.venue-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.venue-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.3rem;
  font-size: 1.5rem;
  color: var(--warm-black);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}

.venue-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.venue-card-desc {
  font-size: 0.83rem;
  color: rgba(232, 217, 184, 0.75);
  line-height: 1.65;
}

.venue-card-area {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--champagne);
  margin-top: 0.7rem;
}

/* ── EVENTS SECTION ── */
#events {
  padding: 5.5rem 0;
  background: var(--ivory);
}

.event-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.event-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.75);
}

.event-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.6);
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(106, 13, 37, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem;
}

.event-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.2rem;
}

.event-icon {
  font-size: 0.85rem;
  color: var(--gold);
}

.event-item:hover .event-icon {
  letter-spacing: 0.08em;
}

/* ── WHY CHOOSE US ── */
#why-us {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, var(--ivory) 60%, var(--champagne) 100%);
  position: relative;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.8);
  border-left: 3px solid var(--gold);
  margin-bottom: 1rem;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.why-feature:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-card);
  border-left-color: var(--maroon);
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.why-feature-text h6 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 0.2rem;
}

.why-feature-text p {
  font-size: 0.78rem;
  color: #6b4f35;
  margin: 0;
}

.why-image-side {
  position: relative;
}

.why-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.why-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--maroon);
  color: var(--ivory);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(106, 13, 37, 0.4);
  border: 2px solid var(--gold);
}

.why-badge .badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.why-badge .badge-txt {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
}

/* ── PACKAGES ── */
#packages {
  padding: 5.5rem 0;
  background: var(--warm-black);
  position: relative;
  overflow: hidden;
}

#packages::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 13, 37, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.package-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  background: linear-gradient(160deg, rgba(106, 13, 37, 0.4), rgba(44, 26, 14, 0.6));
  border-color: var(--gold);
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--gold);
}

.package-card:hover:not(.featured) {
  border-color: var(--gold-light);
  transform: translateY(-6px);
}

.pkg-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--warm-black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1.2rem;
}

.pkg-tier {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pkg-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.pkg-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.pkg-price-note {
  font-size: 0.72rem;
  color: rgba(232, 217, 184, 0.55);
  margin-bottom: 1.5rem;
}

.pkg-divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.5rem;
}

.pkg-features {
  list-style: none;
  text-align: left;
  flex: 1;
  margin-bottom: 2rem;
}

.pkg-features li {
  font-size: 0.82rem;
  color: rgba(232, 217, 184, 0.8);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pkg-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 5.5rem 0;
  background: var(--ivory);
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--champagne);
  padding: 2rem 1.8rem;
  position: relative;
  transition: var(--transition);
  height: 100%;
}

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

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--dark-brown);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ivory);
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--maroon);
}

.testimonial-event {
  font-size: 0.72rem;
  color: #9a7555;
  letter-spacing: 0.05em;
}

/* ── GALLERY PREVIEW ── */
#gallery-preview {
  padding: 5.5rem 0;
  background: var(--maroon-dark);
}

#gallery-preview .gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 200px 200px;
  gap: 6px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item:nth-child(2) {
  grid-column: span 4;
}

.gallery-item:nth-child(3) {
  grid-column: span 3;
}

.gallery-item:nth-child(4) {
  grid-column: span 3;
}

.gallery-item:nth-child(5) {
  grid-column: span 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.75);
}

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

.gallery-hover-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-hover-label span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

/* ── CTA BANNER ── */
#cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, var(--gold-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 0L0 40l40 40 40-40L40 0zm0 8.28L71.72 40 40 71.72 8.28 40 40 8.28z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.8rem;
}

.cta-heading em {
  color: var(--gold);
  font-style: italic;
}

.cta-sub {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--champagne);
  margin-bottom: 2rem;
}

/* ── MAP SECTION ── */
#map-section {
  padding: 5rem 0;
  background: var(--ivory);
}

.map-embed {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(15%) contrast(1.05);
}

.map-info-card {
  background: var(--maroon);
  color: var(--ivory);
  padding: 2.5rem;
  height: 100%;
}

.map-info-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.map-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.map-detail i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.15rem;
  width: 16px;
  flex-shrink: 0;
}

.map-detail p {
  font-size: 0.85rem;
  color: var(--champagne);
  margin: 0;
  line-height: 1.6;
}

.map-detail p strong {
  display: block;
  color: var(--ivory);
  font-weight: 600;
  margin-bottom: 0.1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--warm-black);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(232, 217, 184, 0.65);
  margin-top: 0.8rem;
  font-style: italic;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

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

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

.footer-links a {
  font-size: 0.82rem;
  color: rgba(232, 217, 184, 0.65);
  text-decoration: none;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  color: rgba(232, 217, 184, 0.7);
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold);
  text-decoration: none;
  margin-right: 0.5rem;
  transition: var(--transition);
  font-size: 0.88rem;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--warm-black);
  border-color: var(--gold);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  font-size: 0.75rem;
  color: rgba(232, 217, 184, 0.4);
}

/* ── FLOATING BUTTONS ── */
.float-whatsapp,
.float-call {
  position: fixed;
  right: 1.5rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.float-whatsapp {
  bottom: 5.5rem;
  background: #25D366;
}

.float-call {
  bottom: 1.5rem;
  background: linear-gradient(135deg, var(--maroon), var(--gold-dark));
}

.float-whatsapp:hover,
.float-call:hover {
  transform: scale(1.1);
  color: #fff;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .about-img-accent {
    display: none;
  }

  .about-gold-bar {
    display: none;
  }

  .why-badge {
    left: 1rem;
  }

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

  #gallery-preview .gallery-item:nth-child(1),
  #gallery-preview .gallery-item:nth-child(2),
  #gallery-preview .gallery-item:nth-child(3),
  #gallery-preview .gallery-item:nth-child(4),
  #gallery-preview .gallery-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
    height: 180px;
  }

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 767.98px) {

  /* Prevent horizontal layout scrolling globally on mobile */
  html,
  body {
    overflow-x: hidden !important;
    width: 100%;
  }

  section {
    overflow-x: hidden !important;
  }

  #hero {
    padding-top: 9rem !important;
    padding-bottom: 5rem !important;
    min-height: auto !important;
  }

  .hero-heading {
    font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
  }

  .hero-sub {
    margin-bottom: 1.5rem !important;
  }

  .hero-highlights {
    gap: 0;
  }

  .hero-highlight-item {
    padding: 0.4rem 0.7rem;
  }

  .hero-highlight-item span {
    font-size: 0.72rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-btns .btn-royal,
  .hero-btns .btn-outline-royal,
  .hero-btns .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .why-badge {
    position: static;
    margin-top: 1.5rem;
    display: inline-block;
  }

  #gallery-preview .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .map-info-card {
    height: auto;
  }

  .about-stats-row {
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  #mainNav .nav-book-btn {
    margin-top: 0.5rem;
  }
}

/* ── FAQ SECTION ── */
.footer-logo {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--champagne);
  border-left: 4px solid var(--gold);
  background: #fff;
  transition: var(--transition);
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201, 162, 39, 0.12);
}

.faq-item details {
  width: 100%;
}

.faq-item summary {
  list-style: none;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.72rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.faq-item details[open] summary::after {
  transform: rotate(180deg);
}

.faq-item details[open] summary {
  color: var(--maroon-dark);
  border-bottom: 1px solid var(--champagne);
}

.faq-answer {
  padding: 1.2rem 1.5rem;
  font-size: 0.88rem;
  color: #5a4030;
  line-height: 1.85;
}

.faq-answer p {
  margin-bottom: 0.5rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.faq-answer ul li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.faq-answer ul li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 0.35rem;
}

.faq-answer a {
  color: var(--maroon);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(106, 13, 37, 0.3);
  transition: color var(--transition);
}

.faq-answer a:hover {
  color: var(--gold-dark);
}

/* ── HERO PRICE CARD ── */
.hero-price-card {
  position: relative;
  background: rgba(106, 13, 37, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 4px;
  padding: 2rem 1.8rem 1.5rem;
  width: 100%;
  max-width: 300px;
  animation: fadeUp 0.8s 1.2s both;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 162, 39, 0.15);
}

.hpc-top {
  text-align: center;
  position: relative;
  padding-bottom: 1.2rem;
}

.hpc-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.6rem;
}

.hpc-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
  animation: pricePulse 3s ease-in-out infinite;
}

@keyframes pricePulse {

  0%,
  100% {
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
  }

  50% {
    text-shadow: 0 0 50px rgba(201, 162, 39, 0.85), 0 0 80px rgba(201, 162, 39, 0.3);
  }
}

.hpc-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 39, 0.3);
  animation: ringPulse 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes ringPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

.hpc-divider {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.75rem;
}

.hpc-divider::before,
.hpc-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.4));
}

.hpc-divider::after {
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.4), transparent);
}

.hpc-tiers {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.4rem;
}

.hpc-tiers li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  transition: background var(--transition);
}

.hpc-tiers li:last-child {
  border-bottom: none;
}

.hpc-tiers li:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hpc-tier-featured {
  background: rgba(201, 162, 39, 0.12) !important;
  border-radius: 3px;
}

.hpc-tier-name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--champagne);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hpc-tier-featured .hpc-tier-name {
  color: var(--gold-light);
  font-weight: 600;
}

.hpc-tier-name i {
  color: var(--gold);
  font-size: 0.7rem;
}

.hpc-tier-price {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
}

.hpc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--warm-black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 0.8rem;
}

.hpc-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: var(--warm-black);
}

.hpc-note {
  text-align: center;
  font-size: 0.67rem;
  color: rgba(232, 217, 184, 0.45);
  letter-spacing: 0.05em;
}


/* ── PACKAGES & PRICING PAGE ── */

/* 1. Inner Hero Page Header */
.inner-hero {
  padding: 9rem 0 7rem;
  background: linear-gradient(135deg, var(--maroon-dark) 0%, rgba(69, 8, 26, 0.95) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--gold);
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.inner-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--champagne);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ornament styles inside inner hero */
.ornament-white {
  color: rgba(255, 255, 255, 0.4);
}

.ornament-white::before,
.ornament-white::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25));
}

.ornament-white::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), transparent);
}

/* 2. Packages Comparison Cards */
.packages-section .package-card {
  background: #fff;
  border: 1px solid rgba(106, 13, 37, 0.1);
  border-radius: 6px;
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  width: 100%;
}

.packages-section .package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(106, 13, 37, 0.08);
}

/* Featured Card (Royal Wedding) */
.packages-section .package-card.featured {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, rgba(69, 8, 26, 0.98) 100%);
  border: 2px solid var(--gold);
  color: #fff;
  box-shadow: 0 20px 50px rgba(69, 8, 26, 0.18);
  transform: scale(1.02);
}

.packages-section .package-card.featured:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(69, 8, 26, 0.25);
}

.pc-ribbon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--warm-black);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 0.9rem;
  border-radius: 3px;
}

.pc-header {
  border-bottom: 1px solid rgba(106, 13, 37, 0.08);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.package-card.featured .pc-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pc-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--maroon);
  background: rgba(106, 13, 37, 0.05);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.package-card.featured .pc-badge {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.pc-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--warm-black);
  margin-bottom: 1.2rem;
}

.package-card.featured .pc-title {
  color: #fff;
}

.pc-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.pc-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--maroon);
}

.package-card.featured .pc-currency {
  color: var(--gold-light);
}

.pc-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}

.package-card.featured .pc-amount {
  color: var(--gold-light);
  text-shadow: 0 0 25px rgba(201, 162, 39, 0.3);
}

.pc-period {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.82rem;
  color: #777;
  margin-left: 0.3rem;
}

.package-card.featured .pc-period {
  color: var(--champagne);
  opacity: 0.8;
}

.pc-body {
  flex-grow: 1;
  margin-bottom: 2.5rem;
}

.pc-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2rem;
  text-align: center;
}

.package-card.featured .pc-desc {
  color: var(--champagne);
  opacity: 0.9;
}

.pc-inclusions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.pc-inclusions li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pc-inclusions li i {
  color: var(--maroon);
  font-size: 0.95rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.package-card.featured .pc-inclusions li i {
  color: var(--gold-light);
}

.pc-inclusions li span {
  font-size: 0.88rem;
  line-height: 1.45;
  color: #444;
}

.package-card.featured .pc-inclusions li span {
  color: #fff;
}

/* Buttons in Card */
.btn-royal-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  background: #fff;
  color: var(--maroon);
  border: 1.5px solid var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  border-radius: 0;
}

.btn-royal-light:hover {
  background: var(--gold);
  color: var(--warm-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.25);
}

/* 3. Detailed Comparison Matrix Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.03);
}

.comparison-table th,
.comparison-table td {
  padding: 1.4rem 1.8rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(106, 13, 37, 0.05);
}

.comparison-table th {
  background: var(--maroon-dark);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--gold);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--warm-black);
  font-size: 0.92rem;
}

.comparison-table tbody tr:hover {
  background: rgba(106, 13, 37, 0.015);
}

/* Highlighted Popular Column in comparison matrix */
.comparison-table .featured-col {
  background: rgba(201, 162, 39, 0.04);
  border-left: 1.5px solid rgba(201, 162, 39, 0.15);
  border-right: 1.5px solid rgba(201, 162, 39, 0.15);
}

.comparison-table th.featured-col {
  background: linear-gradient(180deg, var(--maroon-dark) 0%, rgba(85, 10, 31, 0.98) 100%);
  border-bottom: 2.5px solid var(--gold);
  color: var(--gold-light);
}

.comparison-table .price-cell {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--maroon);
}

.comparison-table .featured-col.price-cell {
  color: var(--gold-dark);
}

.comparison-table td i.fa-check {
  font-size: 1.1rem;
}

.comparison-table td i.fa-xmark {
  font-size: 1.1rem;
  opacity: 0.45;
}

/* 4. Bespoke Customization Section */
.customization-banner {
  background: linear-gradient(to bottom, var(--ivory) 0%, #fff 100%);
}

.cb-card {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, rgba(69, 8, 26, 0.98) 100%);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 25px 60px rgba(69, 8, 26, 0.15);
}

.cb-card::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 162, 39, 0.15);
  pointer-events: none;
}

.cb-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--champagne);
  line-height: 1.8;
  max-width: 800px;
  opacity: 0.95;
}

@media (max-width: 991.98px) {
  .package-card.featured {
    transform: none !important;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
    font-size: 0.85rem;
  }
}


/* ── ABOUT & CONTACT PAGES ── */

/* 1. About Us: Narrative & Images */
.about-story-img-wrapper {
  padding-right: 1.5rem;
}

.as-experience-badge {
  position: absolute;
  bottom: -1.5rem;
  right: 0;
  background: linear-gradient(135deg, var(--maroon-dark) 0%, rgba(77, 8, 28, 0.98) 100%);
  border: 1.5px solid var(--gold);
  padding: 1.2rem 2.2rem;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(69, 8, 26, 0.2);
  text-align: center;
}

.as-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.as-badge-lbl {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
}

.about-story-content {
  padding-left: 1rem;
}

.about-signature {
  font-family: var(--font-serif);
  font-style: italic;
}

.sig-title {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 0.2rem;
}

.sig-team {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--maroon);
  font-style: normal;
}

/* 2. Venue Specifications Metrics */
.metric-card {
  background: #fff;
  border: 1px solid rgba(106, 13, 37, 0.05);
  border-radius: 6px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}

.metric-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 12px 30px rgba(106, 13, 37, 0.05);
}

.mc-icon {
  font-size: 1.5rem;
}

.mc-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--maroon) !important;
}

.mc-desc {
  font-size: 0.82rem;
  line-height: 1.5;
}

/* 3. Guiding Values Card */
.value-item {
  background: #fff;
  border-color: rgba(106, 13, 37, 0.08) !important;
  transition: var(--transition);
}

.value-item:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 10px 25px rgba(106, 13, 37, 0.04);
}

.vi-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* 4. Contact Us: Info Cards */
.contact-info-card {
  background: #fff;
  border: 1px solid rgba(106, 13, 37, 0.06);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(106, 13, 37, 0.06);
}

.cic-icon {
  color: var(--maroon);
}

/* 5. Contact Form Elements styling */
.contact-form-card {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  padding: 0.85rem 1rem;
  border: 1px solid #ced4da;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--warm-black);
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem rgba(201, 162, 39, 0.15);
  outline: 0;
}

.contact-sidebar-card {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, rgba(69, 8, 26, 0.98) 100%) !important;
  border: 1px solid rgba(201, 162, 39, 0.3) !important;
  box-shadow: 0 20px 50px rgba(69, 8, 26, 0.15);
}

.sidebar-item .si-num {
  font-size: 1.15rem;
  border-bottom: 2px solid var(--gold);
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .about-story-img-wrapper {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .as-experience-badge {
    bottom: -1rem;
    right: 1rem;
    padding: 0.8rem 1.6rem;
  }

  .contact-sidebar-card {
    height: auto !important;
  }
}


/* ── SERVICES PAGE SPECIFIC STYLES ── */

/* 1. Signature Celebrations Card Grid */
.service-card {
  border: 1.5px solid rgba(106, 13, 37, 0.04) !important;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold) !important;
  box-shadow: 0 15px 35px rgba(106, 13, 37, 0.05) !important;
}

.sc-icon {
  color: var(--maroon);
}

/* 2. Special Infrastructure Features styling */
.special-feature-img {
  border: 2px solid rgba(201, 162, 39, 0.15);
  transition: var(--transition);
}

.special-feature-img:hover {
  transform: scale(1.01);
  border-color: var(--gold);
}

.catering-perks,
.backup-perks {
  border-left-color: var(--gold) !important;
}

/* 3. Essential Venue Amenities list */
.amenity-item-card {
  background: #fff;
  border-color: rgba(106, 13, 37, 0.05) !important;
  transition: var(--transition);
}

.amenity-item-card:hover {
  border-color: var(--gold) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(106, 13, 37, 0.04);
}

.aic-icon {
  color: var(--gold);
}


/* ── GALLERY & LIGHTBOX PAGE STYLES ── */

.gallery-section {
  background: linear-gradient(180deg, #fffaf0 0%, var(--ivory) 100%);
}

.venue-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.gallery-card-col {
  min-width: 0;
}

/* 1. Category Filter Pill bar */
.gallery-filter-nav {
  border-color: rgba(106, 13, 37, 0.05) !important;
  background-color: #fff !important;
  max-width: 100%;
}

.gallery-filter-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm-black);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.gallery-filter-btn:hover {
  color: var(--gold);
}

.gallery-filter-btn.active {
  background-color: var(--maroon);
  color: #fff;
  box-shadow: 0 4px 15px rgba(106, 13, 37, 0.2);
}

/* 2. Photo Cards and Hover overlays */
.gallery-photo-card {
  position: relative;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  min-height: 260px;
  border-radius: 8px !important;
  box-shadow: 0 14px 34px rgba(69, 8, 26, 0.08) !important;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.gallery-photo-card:hover {
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(69, 8, 26, 0.16) !important;
}

.gpc-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gpc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-photo-card:hover .gpc-img-wrap img {
  transform: scale(1.08);
}

.gpc-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(69, 8, 26, 0.95) 0%, rgba(69, 8, 26, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.gpc-hover-overlay h3,
.gpc-hover-overlay p {
  overflow-wrap: anywhere;
}

.gallery-photo-card:hover .gpc-hover-overlay {
  opacity: 1;
  visibility: visible;
}

.gpc-hover-icon {
  transform: translateY(10px);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.gallery-photo-card:hover .gpc-hover-icon {
  transform: translateY(0);
}

/* 3. Luxury Lightbox Overlay */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(22, 3, 8, 0.98);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  background: none;
  border: none;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
  line-height: 1;
  z-index: 100000;
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(106, 13, 37, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  z-index: 100000;
}

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

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-content-wrapper {
  max-width: 80%;
  max-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.lightbox-image {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(201, 162, 39, 0.3);
  border-radius: 2px;
  transition: opacity 0.15s ease-in-out;
}

.lightbox-caption-box {
  background-color: rgba(69, 8, 26, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 162, 39, 0.2);
  width: 100%;
  border-radius: 0 0 6px 6px;
  margin-top: -2px;
}

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

  .gallery-photo-card {
    min-height: 230px;
  }

  .gallery-filter-nav {
    border-radius: 8px !important;
  }

  .lightbox-nav {
    width: 45px;
    height: 45px;
    background: rgba(106, 13, 37, 0.7);
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 2.8rem;
  }

  .lightbox-content-wrapper {
    max-width: 92%;
  }

  .gallery-filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}