/* ============================================================
   SRIMATHI NARAYANI AMMAL KALYANA MANDAPAM
   Premium Wedding Venue — Main Stylesheet
   ============================================================ */

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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --gold:          #C9A84C;
  --gold-light:    #E8D190;
  --gold-dark:     #9B7B2F;
  --gold-glow:     rgba(201, 168, 76, 0.12);
  --gold-border:   rgba(201, 168, 76, 0.28);

  --cream:         #FEFCF5;
  --beige:         #F5EDD8;
  --beige-mid:     #EDE0C4;
  --beige-dark:    #D4C4A0;

  --dark:          #1A1209;
  --dark-2:        #231810;
  --brown:         #5C4A1E;
  --text:          #2C2418;
  --text-light:    #7A6A52;
  --text-lighter:  #B0A090;
  --white:         #FFFFFF;

  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Poppins', sans-serif;

  --section-pad:   100px;
  --section-pad-sm: 60px;

  --shadow-sm:  0 2px 15px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 8px 35px rgba(201, 168, 76, 0.22);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;

  --transition:      all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============================================================
   BASE / RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.25;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* Custom Scrollbar */
::-webkit-scrollbar        { width: 5px; }
::-webkit-scrollbar-track  { background: var(--dark); }
::-webkit-scrollbar-thumb  { background: var(--gold); border-radius: 3px; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-gold       { color: var(--gold) !important; }
.bg-cream        { background-color: var(--cream) !important; }
.bg-beige        { background-color: var(--beige) !important; }
.font-heading    { font-family: var(--font-heading); }

/* Gold ornamental divider */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 14px 0;
}
.ornament::before, .ornament::after {
  content: ''; height: 1px; width: 70px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(to left, transparent, var(--gold)); }
.ornament span { color: var(--gold); font-size: 16px; }

/* Section heading block */
.section-heading { text-align: center; margin-bottom: 64px; }
.section-heading .subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 4.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--dark); margin-bottom: 18px;
}
.section-heading p {
  max-width: 580px; margin: 0 auto;
  color: var(--text-light); font-size: 15px; line-height: 1.8;
}
.divider-gold {
  width: 56px; height: 2px; background: var(--gold); margin: 16px auto;
  position: relative;
}
.divider-gold::before, .divider-gold::after {
  content: ''; position: absolute; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}
.divider-gold::before { left: -10px; }
.divider-gold::after  { right: -10px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 38px;
  background: linear-gradient(135deg, var(--gold) 0%, #a8862e 100%);
  color: var(--white) !important;
  font-family: var(--font-body); font-size: 11px;
  font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer;
  transition: var(--transition);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 22px rgba(201, 168, 76, 0.38);
}
.btn-gold::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.22), transparent);
  transition: left 0.45s ease;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(201, 168, 76, 0.55);
  color: var(--white);
}

.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 38px;
  background: transparent; color: var(--white) !important;
  font-family: var(--font-body); font-size: 11px;
  font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.65); border-radius: 2px;
  cursor: pointer; transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--white); transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.42);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1050;
  padding: 22px 0;
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(18, 11, 4, 0.97) !important;
  padding: 12px 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.navbar-dark-bg {
  background: rgba(18, 11, 4, 0.97) !important;
  padding: 12px 0 !important;
}

.navbar-brand {
  display: flex; flex-direction: column; line-height: 1.2; gap: 2px;
}
.navbar-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 17px; font-weight: 700;
  color: var(--gold) !important; letter-spacing: 0.3px;
}
.navbar-brand .brand-sub {
  font-family: var(--font-body);
  font-size: 8px; font-weight: 400;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5) !important;
}

.navbar-toggler {
  border: 1px solid rgba(201,168,76,0.45);
  padding: 6px 10px; background: transparent;
}
.navbar-toggler-icon { filter: invert(1) brightness(0.9); }
.navbar-toggler:focus { box-shadow: 0 0 0 2px rgba(201,168,76,0.3); }

.nav-link {
  font-family: var(--font-body) !important;
  font-size: 10.5px !important; font-weight: 500 !important;
  letter-spacing: 2px !important; text-transform: uppercase !important;
  color: rgba(255,255,255,0.82) !important;
  padding: 8px 15px !important;
  position: relative; transition: var(--transition) !important;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 3px; left: 50%;
  width: 0; height: 1px; background: var(--gold);
  transition: var(--transition); transform: translateX(-50%);
}
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.nav-link:hover::after, .nav-link.active::after { width: 55%; }

.nav-book-btn {
  font-family: var(--font-body) !important;
  font-size: 10px !important; font-weight: 700 !important;
  letter-spacing: 2px !important; text-transform: uppercase !important;
  color: var(--dark) !important;
  background: var(--gold) !important;
  padding: 10px 22px !important;
  border-radius: 2px !important;
  margin-left: 14px !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35) !important;
}
.nav-book-btn:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-2px) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 24px rgba(201,168,76,0.45) !important;
}
.nav-book-btn::after { display: none !important; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/Interior/3.jpg') center/cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.13); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    150deg,
    rgba(8,4,1,0.85) 0%,
    rgba(18,10,3,0.72) 50%,
    rgba(28,16,6,0.82) 100%
  );
}

/* Decorative gold corner */
.hero-overlay::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, rgba(8,4,1,0.6), transparent);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 880px; margin: 0 auto;
  animation: heroFadeIn 1.2s ease-out both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 22px;
  animation: heroFadeIn 1.2s ease-out 0.2s both;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 8px;
  animation: heroFadeIn 1.2s ease-out 0.4s both;
}
.hero h1 span {
  display: block;
  font-style: italic; color: var(--gold-light);
  font-size: 0.8em;
}
.hero-ornament {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 20px 0;
  animation: heroFadeIn 1.2s ease-out 0.55s both;
}
.hero-ornament::before, .hero-ornament::after {
  content: ''; height: 1px; width: 90px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.7));
}
.hero-ornament::after { background: linear-gradient(to left, transparent, rgba(201,168,76,0.7)); }
.hero-ornament i { color: var(--gold); font-size: 14px; }

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.08rem);
  color: rgba(255,255,255,0.72);
  max-width: 620px; margin: 0 auto 42px;
  font-weight: 300; letter-spacing: 0.4px; line-height: 1.85;
  animation: heroFadeIn 1.2s ease-out 0.65s both;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: heroFadeIn 1.2s ease-out 0.85s both;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 34px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: heroFadeIn 1.2s ease-out 1.2s both;
}
.hero-scroll span {
  font-size: 8px; letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  position: relative; height: 390px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  animation: bannerZoom 18s ease-in-out infinite alternate;
}
@keyframes bannerZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.14); }
}
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,4,1,0.80) 0%,
    rgba(18,10,3,0.68) 100%
  );
}
.page-banner-content {
  position: relative; z-index: 2;
  text-align: center; padding: 80px 20px 20px;
}
.breadcrumb-nav {
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.breadcrumb-nav a { color: var(--gold); }
.breadcrumb-nav a:hover { color: var(--gold-light); }
.page-banner-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white); font-weight: 700; margin-bottom: 14px;
}
.page-banner-content p {
  color: rgba(255,255,255,0.65);
  font-size: 13.5px; letter-spacing: 0.4px;
}

/* ============================================================
   HIGHLIGHTS STRIP
   ============================================================ */
.highlights-strip { background: var(--dark); padding: 0; }
.highlight-item {
  display: flex; align-items: center; gap: 20px;
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(201,168,76,0.07); }
.highlight-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,0.32);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.highlight-item:hover .highlight-icon {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}
.highlight-icon i { color: var(--gold); font-size: 18px; }
.highlight-text h4 {
  font-family: var(--font-heading);
  font-size: 16px; color: var(--white); margin-bottom: 4px;
}
.highlight-text p {
  font-size: 11.5px; color: rgba(255,255,255,0.45); letter-spacing: 0.3px;
}

/* ============================================================
   ABOUT PREVIEW SECTION
   ============================================================ */
.about-section { padding: var(--section-pad) 0; }

.about-img-wrap { position: relative; padding: 0 24px 24px 0; }
.about-img-wrap img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.about-img-frame {
  position: absolute; top: 20px; left: 20px; right: 0; bottom: 0;
  border: 1px solid var(--gold-border); border-radius: var(--radius-sm);
  pointer-events: none; z-index: 0;
}
.about-img-badge {
  position: absolute; bottom: 0; right: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 22px 26px; border-radius: var(--radius-sm);
  text-align: center; box-shadow: var(--shadow-gold); z-index: 2;
}
.about-img-badge .num {
  font-family: var(--font-heading);
  font-size: 34px; font-weight: 800;
  color: var(--white); display: block; line-height: 1;
}
.about-img-badge .lbl {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-top: 5px; display: block;
}

.about-content {
  padding-left: 44px;
  display: flex; flex-direction: column; justify-content: center;
  height: 100%;
}
.about-content .subtitle {
  font-size: 10.5px; font-weight: 600; letter-spacing: 4.5px;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 14px;
}
.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700; color: var(--dark);
  margin-bottom: 22px; line-height: 1.25;
}
.about-content p {
  color: var(--text-light); font-size: 14.5px;
  line-height: 1.85; margin-bottom: 22px;
}
.about-features {
  list-style: none; padding: 0; margin: 0 0 34px;
}
.about-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0; color: var(--text);
  font-size: 13.5px; border-bottom: 1px solid var(--beige);
}
.about-features li:last-child { border-bottom: none; }
.about-features li i { color: var(--gold); font-size: 13px; flex-shrink: 0; }

/* ============================================================
   FACILITY PREVIEW CARDS
   ============================================================ */
.facilities-section { padding: var(--section-pad) 0; background: var(--beige); }

.facility-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); height: 100%;
}
.facility-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-gold);
}
.facility-card-img {
  height: 230px; overflow: hidden; position: relative;
}
.facility-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s ease;
}
.facility-card:hover .facility-card-img img { transform: scale(1.09); }
.facility-card-body { padding: 26px; }
.facility-card-body h4 {
  font-family: var(--font-heading);
  font-size: 19px; color: var(--dark); margin-bottom: 8px;
}
.facility-card-body p { font-size: 13.5px; color: var(--text-light); margin: 0; }
.facility-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  color: var(--gold-dark); font-size: 10.5px; font-weight: 600;
  letter-spacing: 1px; padding: 4px 13px; border-radius: 100px; margin-top: 13px;
}

/* ============================================================
   FACILITY GRID CARDS (facilities.html)
   ============================================================ */
.facility-grid-card {
  background: var(--white); border: 1px solid rgba(201,168,76,0.13);
  border-radius: var(--radius-md); padding: 38px 28px;
  text-align: center; height: 100%;
  transition: var(--transition); position: relative; overflow: hidden;
}
.facility-grid-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: var(--transition);
}
.facility-grid-card:hover::after { transform: scaleX(1); }
.facility-grid-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201,168,76,0.32);
}
.facility-icon-wrap {
  width: 72px; height: 72px;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; transition: var(--transition);
}
.facility-grid-card:hover .facility-icon-wrap { background: var(--gold); border-color: var(--gold); }
.facility-icon-wrap i { font-size: 24px; color: var(--gold); transition: var(--transition); }
.facility-grid-card:hover .facility-icon-wrap i { color: var(--white); }
.facility-grid-card h4 {
  font-family: var(--font-heading);
  font-size: 18px; color: var(--dark); margin-bottom: 10px;
}
.facility-grid-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; margin: 0; }
.capacity-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  color: var(--gold-dark); font-size: 10.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 15px; border-radius: 100px; margin-top: 15px;
}

/* ============================================================
   EVENT CARDS
   ============================================================ */
.events-section { padding: var(--section-pad) 0; }

.event-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); height: 100%;
  border: 1px solid rgba(201,168,76,0.1);
}
.event-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201,168,76,0.35);
}
.event-card-icon {
  display: flex; align-items: center; justify-content: center;
  height: 148px;
  background: linear-gradient(135deg, var(--dark-2) 0%, #3a2a10 100%);
  position: relative; overflow: hidden;
}
.event-card-icon::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 40%, rgba(201,168,76,0.18), transparent 65%);
}
.event-card-icon::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.event-card-icon i {
  font-size: 46px; color: var(--gold); position: relative; z-index: 1;
  transition: var(--transition);
}
.event-card:hover .event-card-icon i { transform: scale(1.12); color: var(--gold-light); }
.event-card-body { padding: 26px; }
.event-card-body h4 {
  font-family: var(--font-heading);
  font-size: 20px; color: var(--dark); margin-bottom: 10px;
}
.event-card-body p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; margin: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { padding: var(--section-pad) 0; background: var(--cream); }

.gallery-filter {
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-body); font-size: 10.5px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 26px; border: 1px solid var(--beige-dark);
  background: transparent; color: var(--text-light);
  border-radius: 2px; cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold); border-color: var(--gold); color: var(--white);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.gallery-item {
  overflow: hidden; border-radius: var(--radius-sm);
  aspect-ratio: 4/3; position: relative; cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25,0.8,0.25,1);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,4,1,0.82) 0%, rgba(8,4,1,0.1) 55%, transparent 100%);
  opacity: 0; transition: var(--transition);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end; padding: 20px;
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white); font-size: 13px; font-weight: 500;
  letter-spacing: 1px; text-align: center;
}
.gallery-overlay i { color: var(--gold); font-size: 22px; margin-bottom: 8px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #3a2010 100%);
  position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/Exterior/2.jpg') center/cover;
  opacity: 0.09;
}
.cta-section .cta-content { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.65); font-size: 15px;
  max-width: 520px; margin: 0 auto 42px; line-height: 1.8;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: var(--section-pad) 0; }

.contact-info-card {
  background: var(--dark); border-radius: var(--radius-md);
  padding: 42px 38px; height: 100%;
}
.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 24px; color: var(--white); margin-bottom: 34px;
}
.contact-info-item {
  display: flex; gap: 18px; align-items: flex-start;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-info-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-icon {
  width: 46px; height: 46px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.22);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i { color: var(--gold); font-size: 16px; }
.contact-info-text h5 {
  font-family: var(--font-body); font-size: 10.5px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 7px;
}
.contact-info-text p, .contact-info-text a {
  color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.65;
}
.contact-info-text a:hover { color: var(--gold); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-md);
  padding: 42px 38px; box-shadow: var(--shadow-md);
  border: 1px solid var(--beige-mid);
}
.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 24px; color: var(--dark); margin-bottom: 34px;
}
.form-label {
  font-size: 10.5px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text); margin-bottom: 8px;
}
.form-control, .form-select {
  border: 1px solid var(--beige-dark); border-radius: var(--radius-sm);
  padding: 12px 16px; font-family: var(--font-body);
  font-size: 14px; color: var(--text);
  background: var(--cream); transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.14);
  background: var(--white); outline: none;
}
.form-control::placeholder { color: var(--text-lighter); font-size: 13px; }
textarea.form-control { resize: vertical; min-height: 120px; }

.map-wrap {
  border-radius: var(--radius-md); overflow: hidden;
  height: 280px; box-shadow: var(--shadow-md);
  margin-top: 28px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   ABOUT PAGE — STORY / WHY SECTIONS
   ============================================================ */
.story-section  { padding: var(--section-pad) 0; }
.why-section    { padding: var(--section-pad) 0; background: var(--beige); }

.why-card {
  display: flex; gap: 20px; padding: 28px 26px;
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--beige-dark);
  transition: var(--transition); height: 100%;
}
.why-card:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: var(--shadow-gold); transform: translateY(-5px);
}
.why-card-icon {
  width: 54px; height: 54px;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.why-card:hover .why-card-icon { background: var(--gold); border-color: var(--gold); }
.why-card-icon i { font-size: 20px; color: var(--gold); transition: var(--transition); }
.why-card:hover .why-card-icon i { color: var(--white); }
.why-card-text h4 {
  font-family: var(--font-heading);
  font-size: 17px; color: var(--dark); margin-bottom: 8px;
}
.why-card-text p { font-size: 13.5px; color: var(--text-light); line-height: 1.75; margin: 0; }

/* Stats strip */
.stats-strip { background: var(--dark-2); padding: 65px 0; }
.stat-item {
  text-align: center; padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-family: var(--font-heading);
  font-size: 50px; font-weight: 800;
  color: var(--gold); display: block; line-height: 1; margin-bottom: 10px;
}
.stat-item .lbl {
  font-size: 10.5px; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark); padding-top: 72px;
  position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.footer-brand { margin-bottom: 22px; }
.footer-brand .name {
  font-family: var(--font-heading); font-size: 19px; font-weight: 700;
  color: var(--gold); display: block; margin-bottom: 4px;
}
.footer-brand .tagline {
  font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer-desc {
  font-size: 13.5px; color: rgba(255,255,255,0.48);
  line-height: 1.85; margin-bottom: 0;
}
.footer-heading {
  font-family: var(--font-body); font-size: 9.5px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.52);
  display: flex; align-items: center; gap: 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 10px; }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px;
}
.footer-contact-item i { color: var(--gold); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65;
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 52px; padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p { font-size: 11.5px; color: rgba(255,255,255,0.28); margin: 0; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-wrap {
  position: fixed; bottom: 28px; right: 26px;
  z-index: 999; display: flex; flex-direction: column;
  gap: 12px; align-items: flex-end;
}
.whatsapp-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: waPulse 2.8s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 22px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 38px rgba(37,211,102,0.72); }
}
.whatsapp-btn:hover { transform: scale(1.12); animation: none; }
.whatsapp-btn i { font-size: 24px; color: var(--white); }

.scroll-top-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  box-shadow: 0 4px 18px rgba(201,168,76,0.45);
  transition: var(--transition);
  opacity: 0; pointer-events: none; transform: translateY(12px);
}
.scroll-top-btn.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--gold-dark); transform: translateY(-3px); }
.scroll-top-btn i { font-size: 15px; color: var(--white); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes fadeInLeft { from { opacity:0; transform:translateX(-28px); } to { opacity:1; transform:none; } }
@keyframes fadeInRight{ from { opacity:0; transform:translateX(28px); } to { opacity:1; transform:none; } }

.animate-up    { animation: fadeInUp    0.7s ease-out both; }
.animate-left  { animation: fadeInLeft  0.7s ease-out both; }
.animate-right { animation: fadeInRight 0.7s ease-out both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.60s; }
.delay-5 { animation-delay: 0.75s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  :root { --section-pad: 72px; }
  .about-content { padding-left: 0; padding-top: 56px; }
  .about-img-wrap { padding: 0 0 28px 0; }
  .about-img-badge { right: 0; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  /* mobile 2-col: stack icon above text, center everything */
  .highlight-item {
    flex-direction: column; align-items: center; text-align: center;
    gap: 12px; padding: 24px 12px;
  }
  .highlight-icon { width: 44px; height: 44px; flex-shrink: 0; }
  .highlight-icon i { font-size: 16px; }
  .highlight-text h4 { font-size: 13.5px; margin-bottom: 3px; }
  .highlight-text p  { font-size: 10.5px; line-height: 1.5; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .navbar-collapse {
    background: rgba(14,8,2,0.98); padding: 16px 18px;
    border-top: 1px solid rgba(201,168,76,0.12);
    margin-top: 10px; border-radius: var(--radius-sm);
  }
  .nav-book-btn { margin-left: 0 !important; margin-top: 10px !important; }
}
@media (max-width: 767.98px) {
  :root { --section-pad: 56px; }
  .hero h1 { font-size: 2.1rem; }
  .page-banner { height: 270px; }
  .contact-info-card, .contact-form-wrap { padding: 28px 22px; }
  .about-img-wrap img { height: 320px; }
  .floating-wrap { bottom: 18px; right: 15px; }
  .footer-bottom p { text-align: center; }
  .about-img-frame { display: none; }
}
/* Events icon strip — 7 items auto-equal on lg */
.event-icon-strip .facility-icon-wrap { width: 64px; height: 64px; }
.event-icon-strip .facility-icon-wrap i { font-size: 22px; }
@media (max-width: 991.98px) {
  .event-icon-strip .facility-icon-wrap { width: 56px; height: 56px; }
}

@media (max-width: 575.98px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline-gold { width: 100%; justify-content: center; max-width: 280px; }
}
