/* =============================================
   SHEKHINAH CONVENTION CENTRE — Global Styles
   ============================================= */

:root {
  --teal:       #1d4a43;
  --teal-dark:  #142e29;
  --teal-light: #2a6359;
  --gold:       #c9a96e;
  --gold-light: #dfc08e;
  --white:      #ffffff;
  --off-white:  #f7f5f0;
  --text-dark:  #1a1a1a;
  --text-mid:   #4a4a4a;
  --border:     #e0dbd0;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.16);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: 0.25s ease;
  --font-main:  'Outfit', sans-serif;
  --font-head:  'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--teal-dark);
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--text-mid); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--teal-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--teal-dark);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-dark:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1ebe5b;
  border-color: #1ebe5b;
  transform: translateY(-2px);
}

/* ── LAYOUT ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--off-white);
}
.section-dark {
  background: var(--teal-dark);
  color: var(--white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.80); }

.text-center { text-align: center; }
.section-header { margin-bottom: 3rem; }
.section-header.text-center .section-label,
.section-header.text-center h2 { display: block; }

/* ── NAVIGATION ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(20, 46, 41, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: var(--teal-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 700;
}
.nav-logo-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201,169,110,0.1);
}
.nav-cta { margin-left: 1rem; }
.nav-cta-mobile { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--teal-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,46,41,0.55) 0%, rgba(29,74,67,0.40) 100%);
  z-index: 1;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-auditorium.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 5rem;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  max-width: 900px;
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.15;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 680px;
  margin-bottom: 0;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.2rem;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--gold);
  padding: 1.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
}
.stat-item-label {
  font-size: 0.82rem;
  color: var(--teal-dark);
  font-weight: 600;
  margin-top: 0.3rem;
  opacity: 0.85;
}

/* ── WHO IS IT FOR ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.audience-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.audience-icon {
  width: 56px;
  height: 56px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.audience-card h4 { color: var(--teal-dark); margin-bottom: 0.5rem; }
.audience-card p { font-size: 0.88rem; }

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(201,169,110,0.4);
}
.why-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.why-card h4 { color: var(--gold); margin-bottom: 0.4rem; }
.why-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.75); }

/* ── VENUES ── */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.venue-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.venue-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.venue-card-img {
  height: 220px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.venue-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.venue-capacity {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.venue-card-body { padding: 1.5rem; }
.venue-card-body h3 { color: var(--teal-dark); margin-bottom: 0.75rem; }
.venue-card-body p { font-size: 0.9rem; margin-bottom: 1rem; }
.venue-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.venue-tag {
  background: var(--off-white);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}

/* ── TWO-COL SECTION ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 380px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.two-col-text .section-label { margin-top: 0; }
.feature-list { margin: 1.25rem 0 2rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── BOOKING FORM ── */
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.booking-form-wrap h3 { color: var(--teal-dark); margin-bottom: 0.4rem; }
.booking-form-wrap .sub { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 2rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  background: var(--off-white);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  margin-top: 1.25rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-top: 0.75rem;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-style: italic;
  padding-top: 1rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.88rem; color: var(--teal-dark); }
.author-role { font-size: 0.78rem; color: var(--text-mid); }

/* ── CONTACT SECTION ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-label { font-size: 0.78rem; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-value { font-size: 0.95rem; color: var(--text-dark); font-weight: 600; }
.contact-value a { color: var(--teal); }
.contact-value a:hover { color: var(--gold); }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}
.map-embed iframe { display: block; }

/* ── LOCATION DISTANCES ── */
.distances-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.distance-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.6rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.distance-place { color: var(--text-mid); }
.distance-km { font-weight: 700; color: var(--teal-dark); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--teal-dark);
  padding: 9rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto 1.5rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span::before { content: '/'; margin-right: 0.5rem; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.12), var(--shadow-lg);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.pricing-card h3 { margin-bottom: 0.5rem; }
.pricing-card .desc { font-size: 0.88rem; margin-bottom: 1.5rem; }
.pricing-from {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.pricing-from small { font-size: 0.9rem; font-weight: 400; font-family: var(--font-main); }
.pricing-features { text-align: left; margin-bottom: 2rem; }
.pricing-features li {
  display: flex;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-bottom: 1px dashed var(--border);
}
.pricing-features li:last-child { border: none; }
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; }

/* ── GALLERY GRID ── */
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,46,41,0.7), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}
.gallery-placeholder {
  background: var(--teal-light);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-radius: var(--radius);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 60%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; position: relative; }
.cta-banner p  { color: rgba(255,255,255,0.75); margin-bottom: 2rem; position: relative; }
.cta-banner-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── FOOTER ── */
footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.footer-brand-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
  color: var(--white);
}
.social-btn:hover { background: var(--gold); color: var(--teal-dark); }
.footer-col h5 {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  align-items: flex-start;
}
.footer-contact-item .icon { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ── SUCCESS MESSAGE ── */
.success-msg {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .audience-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .venues-grid    { grid-template-columns: 1fr; }
  .two-col        { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .gallery-masonry { columns: 2; }
  .two-col-img    { height: 300px; }
}

@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  body { overflow-x: hidden; }

  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2rem; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo img { height: 46px !important; }
  .navbar.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--teal-dark);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999;
  }
  /* CTA inside mobile dropdown */
  .nav-cta-mobile { display: block; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-cta-mobile a { display: block; text-align: center; background: var(--gold); color: var(--teal-dark); font-weight: 700; font-size: 0.95rem; padding: 0.75rem 1.5rem; border-radius: 50px; }

  /* Hero — use svh on modern browsers so iOS address bar doesn't cut content */
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero-content { padding: 6rem 0 3.5rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1.25rem; }

  /* Grids */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid  { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-masonry { columns: 1; }
  .distances-grid { grid-template-columns: 1fr; }

  /* Images */
  .two-col-img { height: 240px; }

  /* Inner page hero */
  .page-hero { padding: 7rem 0 3rem; }
  .page-hero p { font-size: 1rem; max-width: 100%; }

  /* Page-hero & section button groups — stack and centre on mobile */
  .page-hero .container > div[style*="flex"],
  .hero-btns { flex-direction: column; align-items: center; }
  .page-hero .btn { width: 100%; justify-content: center; }

  /* Hero buttons already handled; ensure page CTAs also stack */
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .cta-banner-btns .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* Booking form */
  .booking-form-wrap { padding: 1.5rem; }

  /* Testimonials scroll on mobile */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* WhatsApp float — slightly smaller */
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 1.25rem; right: 1.25rem; }

  /* Event type grid */
  .event-types-grid { grid-template-columns: 1fr; }

  /* Sticky CTA — full width buttons on small screens */
  .sticky-cta { padding: 0.75rem 1rem; gap: 0.6rem; }
  .sticky-cta-btn { max-width: 100%; font-size: 0.84rem; padding: 0.65rem 1rem; }
}

/* ── STICKY CTA BAR ── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--teal-dark);
  border-top: 2px solid var(--gold);
  padding: 0.85rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  transform: translateY(110%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.28);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-btn {
  flex: 1;
  max-width: 220px;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  font-size: 0.88rem;
}

/* ── STAT STRIP LINKS ── */
a.stat-item {
  display: block;
  color: inherit;
  text-align: center;
  transition: opacity var(--transition);
}
a.stat-item:hover { opacity: 0.82; }

/* ── AUDIENCE CARDS AS LINKS ── */
a.audience-card { display: block; color: inherit; }

/* ── EVENT TYPE STRIP ── */
.event-types-strip { padding: 3rem 0; }
.event-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.event-type-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  color: inherit;
  display: block;
}
.event-type-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.event-type-icon { font-size: 2.2rem; margin-bottom: 0.9rem; }
.event-type-card h4 { color: var(--teal-dark); margin-bottom: 0.4rem; }
.event-type-card p { font-size: 0.88rem; }
.event-type-link {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* ── EXTRA SMALL PHONES (≤480px) ── */
@media (max-width: 480px) {
  .section { padding: 2.5rem 0; }
  .container { padding: 0 1rem; }

  .nav-logo img { height: 40px !important; }

  .hero-content { padding: 5.5rem 0 3rem; }
  .hero-sub { font-size: 1rem; }

  .two-col-img { height: 200px; }
  .page-hero { padding: 6.5rem 0 2.5rem; }
  .booking-form-wrap { padding: 1.25rem; }
  .cta-banner { padding: 3rem 0; }

  /* Stats strip — keep 2 cols but smaller numbers */
  .stat-item-num { font-size: 1.7rem; }

  /* Buttons — slightly smaller on tiny screens */
  .btn { font-size: 0.88rem; padding: 0.7rem 1.4rem; }

  /* Page hero button group */
  .page-hero .btn { width: 100%; max-width: 340px; }

  /* CTA banner */
  .cta-banner h2 { font-size: 1.5rem; }

  /* Footer logo — cap width so it doesn't dominate */
  footer .nav-logo img,
  footer img { max-width: 180px; height: auto !important; }

  .footer-grid { gap: 1.5rem; }

  /* Form submit buttons stack */
  .form-submit { flex-direction: column; }
  .form-submit .btn { width: 100%; justify-content: center; }

  /* Section label smaller */
  .section-label { font-size: 0.72rem; }
}
