/* ============================================================
   ALPHA ZEBRA EVENTS — Main Stylesheet
   Design: Black & Gold Luxury Theme
   ============================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --black:       #0A0A0A;
  --black2:      #111111;
  --black3:      #1A1A1A;
  --gold:        #D4AF37;
  --gold-light:  #E8C84A;
  --gold-dark:   #B8960C;
  --gold-muted:  rgba(212,175,55,0.15);
  --white:       #FFFFFF;
  --cream:       #FAF8F2;
  --off-white:   #F5F3EE;
  --text-dark:   #1A1A1A;
  --text-muted:  #666666;
  --text-light:  #999999;
  --border:      rgba(212,175,55,0.2);
  --radius:      4px;
  --shadow:      0 20px 60px rgba(0,0,0,0.12);
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Outfit', system-ui, sans-serif;
  --font-script: 'Great Vibes', cursive;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}
.script-text { font-family: var(--font-script); font-weight: 400; }
.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--black);
}
.section-title.light { color: var(--white); }
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
  margin-top: 14px;
}
.section-desc.light { color: rgba(255,255,255,0.7); }

/* ---- Container ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,175,55,0.35);
  color: var(--black);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--black3);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  color: var(--white);
}
.btn i { font-size: 0.85em; transition: transform 0.3s ease; }
.btn:hover i.fa-arrow-right { transform: translateX(5px); }

/* ---- Gold Divider ---- */
.gold-line {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 16px 0 28px;
}
.gold-line.center { margin: 16px auto 28px; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
  background: var(--white);
  /*box-shadow: 0 2px 20px rgba(0,0,0,0.06);*/
}
#navbar.scrolled {
  background: rgba(10,10,10,0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
#navbar.transparent {
  background: transparent;
}
#navbar.white-nav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav-logo-name span { color: var(--gold); }
.nav-logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
  margin-top: 3px;
}
/* Scrolled (dark) nav overrides */
#navbar.scrolled .nav-logo-name { color: var(--white); }
#navbar.scrolled .nav-logo-tagline { color: rgba(255,255,255,0.45); }
#navbar.scrolled .nav-hamburger span { background: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
/* Scrolled dark nav text */
#navbar.scrolled .nav-links a { color: rgba(255,255,255,0.85); }
#navbar.scrolled .nav-links a:hover { color: var(--gold); }
.white-nav .nav-links a { color: var(--text-dark); }
.white-nav .nav-links a:hover { color: var(--gold); }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--black2);
  min-width: 210px;
  padding: 8px 0;
  border-top: 2px solid var(--gold);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75) !important;
  border-radius: 0;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { color: var(--gold) !important; background: rgba(212,175,55,0.08); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-cta .btn {
  padding: 11px 24px;
  font-size: 0.78rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
  transform-origin: center;
}
.white-nav .nav-hamburger span { background: var(--black); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  padding: 10px 40px;
  transition: color 0.25s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .nav-mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: background 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile .nav-mobile-close:hover,
.nav-mobile .nav-mobile-close:focus {
  background: rgba(212,175,55,0.2);
  border-color: var(--gold);
  color: var(--gold);
  outline: none;
}

/* ============================================================
   HERO SECTION (legacy — overridden by inline styles on homepage)
   ============================================================ */
#hero {
  background: #fff;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 40px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.hero-left { position: relative; }
.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 4px;
}
.hero-title .script {
  font-family: var(--font-script);
  font-size: 1.35em;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1.1;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 460px;
  margin: 24px 0 36px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero Right — Circular Image */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrap {
  position: relative;
  width: 520px;
  height: 520px;
  max-width: 100%;
}
.hero-circle-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-muted) 0%, rgba(212,175,55,0.08) 100%);
  border: 1.5px solid var(--border);
}
.hero-circle-bg-outer {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(212,175,55,0.25);
}
.hero-circle-img {
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}
.hero-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  border: 2px solid var(--gold);
}
.hero-badge i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.hero-badge-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-badge-text {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

/* Gold decorative dots */
.hero-dots {
  position: absolute;
  top: 20px;
  right: -10px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  opacity: 0.35;
}
.hero-dots span {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
#features {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
}
.feature-item {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
}
.feature-item:hover { background: var(--cream); }
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-muted);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}
.feature-item:hover .feature-icon {
  background: var(--gold);
  color: var(--black);
}
.feature-text h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}
.feature-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SIGNATURE EVENTS (Dark Section)
   ============================================================ */
#signature-events {
  background: var(--black);
  padding: 100px 0;
}
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}
.events-header .section-label { color: var(--gold); }
.events-header .section-title.light { color: var(--white); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.event-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}
.event-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.event-card:hover .event-card-img { transform: scale(1.08); }
.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0.15) 100%
  );
  transition: var(--transition);
}
.event-card:hover .event-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.3) 100%
  );
}
.event-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
}
.event-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: var(--transition);
}
.event-card:hover .event-card-icon { background: var(--gold-light); transform: scale(1.1); }
.event-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.event-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}
.event-card:hover .event-card-arrow { opacity: 1; transform: translateY(0); }

/* ============================================================
   ABOUT + WHY CHOOSE US
   ============================================================ */
#about-section {
  background:  #fff;
  padding-top: 68px;
  padding-bottom: 100px;
  padding-left: 0px;
  padding-right: 0px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left .section-label { color: var(--gold); }
.about-tagline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}
.about-tagline span { color: var(--gold); }
.about-left p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 28px 0 36px;
}
.about-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.about-check-item i { color: var(--gold); font-size: 0.85rem; }

.about-right .section-label { color: var(--gold); }
.about-right h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 32px;
}
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-muted);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}
.why-item:hover .why-icon { background: var(--gold); color: var(--black); }
.why-text h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.why-text p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* About Image */
.about-image-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 520px;
}
.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  z-index: 1;
  pointer-events: none;
}
.about-quote-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  z-index: 2;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.about-quote-badge small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
  color: var(--black3);
}

/* ============================================================
   STATS ROW
   ============================================================ */
#stats-row {
  background: var(--gold);
  padding: 52px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.1);
}
.stat-item {
  background: var(--gold);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.stat-item:hover { background: var(--gold-light); }
.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  margin-top: 6px;
}

/* ============================================================
   TRUSTED BRANDS
   ============================================================ */
#trusted-brands {
  background: var(--white);
  padding: 72px 0;
}
.brands-header {
  text-align: center;
  margin-bottom: 48px;
}
.brands-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  display: inline-block;
  padding: 0 20px;
}
.brands-label::before, .brands-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: rgba(0,0,0,0.12);
}
.brands-label::before { right: 100%; }
.brands-label::after { left: 100%; }
.brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.brand-logo {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 0.06em;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-logo i { font-size: 1.4rem; }
.brand-logo:hover { color: var(--text-dark); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials-section {
  background: var(--cream);
  padding: 100px 0;
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(0,0,0,0.14); }
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.testimonial-msg {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-msg::before { content: '"'; font-family: var(--font-serif); font-size: 2rem; color: var(--gold); line-height: 0; vertical-align: -0.6em; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-muted);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}
.testimonial-role { font-size: 0.75rem; color: var(--text-light); margin-top: 2px; }

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
#blog-preview {
  background: var(--white);
  padding: 100px 0;
}
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.13); }
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; }
.blog-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color 0.25s;
}
.blog-card:hover .blog-card-title { color: var(--gold-dark); }
.blog-card-excerpt { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-light);
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.blog-card-meta-left { display: flex; align-items: center; gap: 6px; }
.blog-read-more {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s;
}
.blog-card:hover .blog-read-more { gap: 8px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta-section {
  background: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner .section-label { color: var(--gold); }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 12px 0 20px;
}
.cta-title span { color: var(--gold); font-style: italic; }
.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.cta-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 52px;
}
.footer-brand .nav-logo-name { font-size: 1.5rem; color: var(--white); }
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '—';
  font-size: 0.65rem;
  color: var(--gold);
  opacity: 0.5;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-copy a { color: var(--gold); transition: opacity 0.25s; }
.footer-copy a:hover { opacity: 0.7; }
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.25s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero_venue.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--black), transparent);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero-title span { color: var(--gold); font-style: italic; }
.page-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--gold); transition: opacity 0.25s; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ============================================================
   SECTIONS GENERIC
   ============================================================ */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.bg-dark { background: var(--black2); }
.bg-cream { background: var(--cream); }

/* ============================================================
   GRID UTILITIES
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ============================================================
   CARDS (General)
   ============================================================ */
.card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(0,0,0,0.14); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 28px; }
.card-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  transition: color 0.25s;
}
.card:hover .card-title { color: var(--gold-dark); }
.card-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

/* Activity cards (dark) */
.activity-card {
  background: var(--black3);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
}
.activity-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.activity-card-img { aspect-ratio: 4/3; overflow: hidden; }
.activity-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.activity-card:hover .activity-card-img img { transform: scale(1.06); }
.activity-card-body { padding: 22px; }
.activity-card-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-muted);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: var(--transition);
}
.activity-card:hover .activity-card-icon { background: var(--gold); color: var(--black); }
.activity-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.activity-card-desc { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 14px; }
.activity-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
}
.activity-card-meta i { color: var(--gold); font-size: 0.7rem; margin-right: 4px; }

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */
.portfolio-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1.5px solid rgba(0,0,0,0.15);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.portfolio-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay i {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.portfolio-overlay span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.25s;
}
.lightbox-close:hover { color: var(--gold); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group.light label { color: rgba(255,255,255,0.6); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  border-radius: 2px;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-control.dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,175,55,0.2);
  color: var(--white);
}
.form-control.dark:focus { border-color: var(--gold); }
.form-control.dark::placeholder { color: rgba(255,255,255,0.3); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-message {
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 0.85rem;
  margin-top: 16px;
  display: none;
}
.form-message.success {
  background: rgba(39,174,96,0.1);
  border-left: 3px solid #27ae60;
  color: #1e8449;
  display: block;
}
.form-message.error {
  background: rgba(231,76,60,0.1);
  border-left: 3px solid #e74c3c;
  color: #c0392b;
  display: block;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--black);
  padding: 48px 40px;
  border-radius: 4px;
  border: 1px solid rgba(212,175,55,0.15);
}
.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-info-card > p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-info-items { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-muted);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-info-text h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-text p, .contact-info-text a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.contact-form-wrap {
  background: var(--white);
  padding: 48px 40px;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 52px;
}
.pagination a, .pagination span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.pagination a:hover, .pagination span.current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--black);
  color: var(--white);
  padding: 14px 22px;
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  font-size: 0.85rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show { transform: translateX(0); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
#scroll-top.show { opacity: 1; pointer-events: all; }
#scroll-top:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-aos] { transition-property: opacity, transform; }

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .events-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-left { order: 2; }
  .hero-right { order: 1; }
  .hero-tagline { justify-content: center; }
  .hero-desc { margin: 24px auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { width: 380px; height: 380px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero-inner { padding: 40px 20px; }
  .hero-image-wrap { width: 280px; height: 280px; }
  .hero-badge { width: 90px; height: 90px; font-size: 0.7rem; }
  .hero-badge-num { font-size: 1rem; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .brands-grid { gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-inner { padding: 0 20px; }
}
