/* ==========================================================
   JOGINDER GYMKHANA CLUB — Global Stylesheet
   app.css
   ========================================================== */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Cinzel:wght@400;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --maroon:      #5c1010;
  --maroon-dark: #3e0a0a;
  --navy:        #0d2240;
  --navy-deep:   #071628;
  --teal:        #0e3d5c;
  --gold:        #b8933a;
  --gold-light:  #d4a94a;
  --gold-pale:   rgba(184,147,58,0.12);
  --cream:       #faf8f3;
  --white:       #ffffff;
  --text:        #2c2c2c;
  --text-mid:    #555555;
  --text-light:  #888888;
  --border:      #e0d8cc;
  --shadow:      rgba(0,0,0,0.10);
  --shadow-deep: rgba(0,0,0,0.25);
  --radius:      6px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── SCROLL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="down"]  { transform: translateY(-40px); }
[data-reveal="left"]  { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="zoom"]  { transform: scale(0.9); }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ── NAVBAR ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--maroon-dark);
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  justify-content: space-between;
  border-bottom: 3px solid var(--gold);
  transition: height var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  height: 62px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(184,147,58,0.5);
  flex-shrink: 0;
  transition: transform var(--transition), border-color var(--transition);
  background: var(--white);
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.08);
  border-color: var(--gold);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-name {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.nav-logo-sub {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Nav links */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  align-items: center;
  height: 100%;
}
.nav-menu > li { position: relative; height: 100%; display: flex; align-items: center; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  height: 100%;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--gold-light);
  background: rgba(255,255,255,0.05);
}
.nav-arrow {
  font-size: 0.55rem;
  transition: transform var(--transition);
  opacity: 0.7;
}
.nav-menu > li:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 100;
}
.nav-menu > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 0.82rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover {
  background: var(--cream);
  color: var(--maroon);
  padding-left: 24px;
}
.nav-dropdown li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.nav-icon-btn:hover {
  background: rgba(255,255,255,0.15);
  color: var(--gold-light);
  border-color: var(--gold);
}
.nav-member-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-member-btn:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── MAIN CONTENT ── */
main { margin-top: 72px; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* ── SECTION BASICS ── */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-bg-cream  { background: var(--cream); }
.section-bg-navy   { background: var(--navy); }
.section-bg-teal   { background: var(--teal); }
.section-bg-maroon { background: var(--maroon-dark); }

/* ── SECTION LABELS ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ── HEADINGS ── */
.heading-xl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
.heading-lg {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
.heading-md {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}
.heading-white { color: var(--white) !important; }
.heading-gold  { color: var(--gold-light) !important; }

/* ── PARAGRAPH ── */
.para { font-size: 0.97rem; color: var(--text-mid); line-height: 1.85; }
.para + .para { margin-top: 1rem; }
.para-white { color: rgba(255,255,255,0.75); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-navy   { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

.btn-maroon { background: var(--maroon); color: var(--white); border-color: var(--maroon); }
.btn-maroon:hover { background: var(--maroon-dark); border-color: var(--maroon-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(92,16,16,0.3); }

.btn-gold   { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(184,147,58,0.35); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); }

.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-2px); }

.btn-sm { padding: 9px 20px; font-size: 0.72rem; }
.btn-icon { font-size: 0.85rem; }

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 1.5rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  max-width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.divider-gem {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ── PAGE BANNER ── */
.page-banner {
  height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  transition: transform 8s ease;
}
.page-banner:hover .page-banner-bg { transform: scale(1.04); }
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,34,64,0.88), rgba(92,16,16,0.65));
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-banner-label::before { content: ''; width: 25px; height: 1px; background: var(--gold); }
.page-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 700;
}
.page-banner-breadcrumb {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-banner-breadcrumb a { color: var(--gold-light); transition: color var(--transition); }
.page-banner-breadcrumb a:hover { color: var(--white); }

/* ── FACILITY CARD ── */
.facility-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}
.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-deep);
}
.facility-card-img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.facility-card:hover .facility-card-img { transform: scale(1.06); }
.facility-card-body { padding: 1.5rem; }
.facility-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.6rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--gold);
}
.facility-card-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.2rem; }

/* ── EVENT CARD ── */
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px var(--shadow);
  border-color: var(--gold);
}
.event-card-img { width: 100%; height: 200px; object-fit: cover; }
.event-card-body { padding: 1.2rem 1.5rem; }
.event-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.event-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.event-card-meta { font-size: 0.78rem; color: var(--text-light); }

/* ── FORMS ── */
.form-group { margin-bottom: 1.3rem; }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,147,58,0.12);
}
.form-control::placeholder { color: #aaa; }
.form-control-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.form-control-dark:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.form-control-dark::placeholder { color: rgba(255,255,255,0.4); }

/* ── SPLIT LAYOUT (text + image) ── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }

/* ── IMAGE WITH HOVER ── */
.img-hover-wrap { position: relative; overflow: hidden; border-radius: var(--radius); }
.img-hover-wrap img { transition: transform 0.6s ease; }
.img-hover-wrap:hover img { transform: scale(1.05); }
.img-badge {
  position: absolute;
  bottom: -1px; right: -1px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 1rem 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: var(--radius) 0 0 0;
}
.img-badge small { font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; display: block; }

.img-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background var(--transition);
  cursor: pointer;
}
.img-play-overlay:hover { background: rgba(0,0,0,0.4); }
.play-btn {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transition: all var(--transition);
  padding-left: 4px;
}
.img-play-overlay:hover .play-btn { transform: scale(1.1); background: var(--white); }

/* ── CAROUSEL ── */
.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.carousel-track .event-card { flex: 0 0 calc(33.333% - 1rem); }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all var(--transition);
  box-shadow: 0 4px 15px var(--shadow);
}
.carousel-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }

/* ── ALERTS ── */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: 0.88rem; margin-bottom: 1rem; }
.alert-success { background: #e8f5e9; border-left: 4px solid #4caf50; color: #2e7d32; }
.alert-error   { background: #ffebee; border-left: 4px solid #f44336; color: #c62828; }

/* ── FOOTER ── */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); }
.footer-top {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1.2rem;
}
.footer-about-logo img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(184,147,58,0.4);
  background: var(--white);
  flex-shrink: 0;
}
.footer-logo-crest {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--navy-deep);
  font-weight: 700;
}
.footer-logo-name {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--gold-light);
  display: block;
}
.footer-logo-sub {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-desc { font-size: 0.85rem; line-height: 1.8; margin-bottom: 1rem; }
.footer-est {
  font-size: 0.75rem;
  color: var(--gold);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.footer-heading {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(184,147,58,0.3);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition), padding-left var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--gold); opacity: 0.6; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.85rem;
  line-height: 1.6;
}
.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; font-style: normal; }

.footer-emergency {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  margin-top: 0.5rem;
}
.footer-emergency-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,100,100,0.85);
  margin-bottom: 0.5rem;
}
.footer-emergency-item { font-size: 0.8rem; color: rgba(255,255,255,0.5); padding: 2px 0; }
.footer-emergency-item strong { color: rgba(255,255,255,0.7); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-gold { color: var(--gold-light); }

/* ── ENQUIRE SECTION ── */
.enquire-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.enquire-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,34,64,0.87), rgba(92,16,16,0.75)),
    url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1600&q=80') center/cover no-repeat;
}
.enquire-form-box {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.enquire-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.enquire-grid .full { grid-column: span 2; }

/* ── BADGE / TAG ── */
.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-sports   { background: #e3f2fd; color: #1565c0; }
.badge-social   { background: #f3e5f5; color: #6a1b9a; }
.badge-cultural { background: #fce4ec; color: #880e4f; }
.badge-dining   { background: #fff8e1; color: #e65100; }
.badge-gold     { background: var(--gold-pale); color: var(--gold); border: 1px solid rgba(184,147,58,0.3); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--maroon-dark);
  border-top: 3px solid var(--gold);
  padding: 45px 0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 1rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.stat-sep {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(184,147,58,0.4);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .split-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-layout.reverse { direction: ltr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .nav-menu, .nav-right { display: none; }
  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    bottom: 68px; /* Leave space for bottom fixed bar */
    background: var(--maroon-dark);
    padding: 1rem 2rem;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.mobile-open > li { height: auto; }
  .nav-menu.mobile-open > li > a { height: auto; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; border: none; box-shadow: none; background: rgba(0,0,0,0.2); display: none; }
  .nav-menu.mobile-open > li.dropdown-open .nav-dropdown { display: block; }
  .nav-toggle { display: flex; }
  .nav-right.mobile-open {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 2rem;
    background: var(--maroon-dark);
    position: fixed;
    left: 0; right: 0; bottom: 0;
    height: 68px;
    z-index: 1000;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
  .stat-sep { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .carousel-track .event-card { flex: 0 0 calc(100% - 0rem); }
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
  .enquire-grid { grid-template-columns: 1fr; }
  .enquire-grid .full { grid-column: span 1; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .page-banner { height: 240px; }
}

/* =====================================================
   BUILDING SHOWCASE GRID STYLES
   ===================================================== */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.showcase-img:hover {
  transform: scale(1.05);
}
.showcase-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: var(--navy-deep, #071628);
  text-align: center;
  gap: 1.5rem;
}
.showcase-logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(184,147,58,0.6);
  box-shadow: 0 0 40px rgba(184,147,58,0.2);
}

@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .showcase-content {
    padding: 2.5rem 1.5rem;
    gap: 1rem;
  }
  .showcase-logo {
    width: 130px;
    height: 130px;
  }
}

/* =====================================================
   PUBLIC BLOGS / NEWS STYLES
   ===================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--gold);
}
.blog-card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.blog-card:hover .blog-card-img {
  transform: scale(1.08);
}
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-category {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.blog-card-title a:hover {
  color: var(--navy);
}
.blog-card-desc {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-light);
}
.blog-card-date {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card-link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}
.blog-card-link:hover {
  color: var(--gold);
}
