/* ==========================================================================
   CULTURE X VIBES — OFFICIAL LUXURY MOBILE-FIRST DESIGN SYSTEM
   Theme: Deep Obsidian Black & Liquid Gold Accents
   Platform: Modern Mobile-First + Hostinger Linux Compatible
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  --bg-black: #08080a;
  --bg-charcoal: #121318;
  --bg-card: #181920;
  --bg-card-hover: #20222c;
  --bg-glass: rgba(18, 19, 24, 0.88);
  --bg-glass-card: rgba(24, 25, 32, 0.75);

  --gold-primary: #d4af37;
  --gold-light: #fbe38e;
  --gold-dark: #aa771c;
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.35);
  --gold-border: rgba(212, 175, 55, 0.3);
  --gold-border-bright: rgba(212, 175, 55, 0.7);
  --gold-gradient: linear-gradient(135deg, #fbe38e 0%, #d4af37 50%, #aa771c 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(251, 227, 142, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);

  --text-white: #ffffff;
  --text-light: #e2e4e9;
  --text-muted: #9ba1b0;
  --text-dim: #6b7280;

  --accent-red: #e63946;
  --accent-orange: #f77f00;
  --accent-green: #25d366; /* WhatsApp brand */

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 74px;
  --bottom-bar-height: 68px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bg-black);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-light);
  background-color: var(--bg-black);
  overflow-x: hidden;
  padding-bottom: var(--bottom-bar-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* --- Typography Utilities --- */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 1rem;
  border-radius: var(--border-radius-full);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 2rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.75rem;
  min-height: 48px;
  border-radius: var(--border-radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0b0c10;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover, .btn-primary:active {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
  filter: brightness(1.08);
}

.btn-secondary {
  background: rgba(18, 19, 24, 0.8);
  color: var(--text-white);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover, .btn-secondary:active {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.08);
}

.btn-call {
  background: var(--gold-gradient);
  color: #0b0c10;
  font-weight: 800;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover, .btn-whatsapp:active {
  background: #20ba59;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.825rem;
  min-height: 38px;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
  background: rgba(8, 8, 10, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.site-header.scrolled {
  background: rgba(8, 8, 10, 0.96);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
  transition: transform var(--transition-fast);
}

.brand-logo:hover img {
  transform: scale(1.05);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-white);
  line-height: 1.1;
}

.brand-name span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-light);
}

/* Desktop Nav */
.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width var(--transition-normal);
  }

  .nav-link:hover, .nav-link.active {
    color: var(--gold-light);
  }

  .nav-link:hover::after, .nav-link.active::after {
    width: 100%;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

/* Hamburger Button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  z-index: 1002;
  transition: all var(--transition-fast);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--gold-light);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.menu-toggle.active {
  background: rgba(212, 175, 55, 0.2);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #0d0e14;
  border-left: 1px solid var(--gold-border);
  z-index: 1001;
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.9);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--transition-fast);
}

.mobile-nav-link.active, .mobile-nav-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-border);
}

.mobile-nav-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 1rem;
}

/* ==========================================================================
   MOBILE STICKY BOTTOM BAR
   ========================================================================== */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--bottom-bar-height);
  background: rgba(10, 10, 14, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0.5rem 1rem env(safe-area-inset-bottom, 0.5rem);
  z-index: 999;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.8);
  gap: 0.75rem;
}

.mobile-bottom-bar .btn {
  flex: 1;
  font-size: 0.85rem;
  padding: 0.65rem 0.5rem;
  min-height: 44px;
}

@media (min-width: 1024px) {
  .mobile-bottom-bar {
    display: none;
  }
}

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  background-color: var(--bg-black);
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.35) contrast(1.1);
  transform: scale(1.02);
  transition: transform 10s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(8, 8, 10, 0.4) 0%, rgba(8, 8, 10, 0.88) 75%, #08080a 100%),
              linear-gradient(to bottom, rgba(8, 8, 10, 0.6) 0%, transparent 40%, rgba(8, 8, 10, 0.95) 90%, #08080a 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border-bright);
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius-full);
  margin-bottom: 1.25rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.hero-title-main {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.hero-title-sub {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .hero-title-main {
    font-size: 4.25rem;
  }
  .hero-title-sub {
    font-size: 2.75rem;
  }
}

.hero-disciplines {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.hero-disciplines span {
  color: var(--gold-primary);
  margin: 0 0.35rem;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-ctas .btn {
  width: 100%;
}

@media (min-width: 480px) {
  .hero-ctas .btn {
    width: auto;
  }
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  text-transform: uppercase;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-pillars span {
  opacity: 0.5;
}

/* Page Hero for Inner Pages */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 4rem;
  background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.08) 0%, rgba(10, 10, 14, 0.95) 70%, #08080a 100%),
              #08080a;
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
  text-align: center;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3.5rem;
  }
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTIONS & LAYOUTS
   ========================================================================== */
.section {
  padding: 4rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-dark {
  background-color: var(--bg-black);
}

.section-charcoal {
  background-color: var(--bg-charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-gold-tint {
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.06) 0%, #0d0e13 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

/* Two-column layout */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.split-image-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-md);
}

.split-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}

.split-image-card:hover img {
  transform: scale(1.03);
}

.split-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(10, 10, 14, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   WHAT WE OFFER (SERVICES CARDS)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), var(--gold-glow);
}

.service-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}

.service-card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(10, 10, 14, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--border-radius-full);
}

.service-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* ==========================================================================
   WHY CULTURE X VIBES (4 PILLARS)
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius-md);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-sm);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--gold-light);
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   SCHEDULE & BATCH TIMINGS
   ========================================================================== */
.schedule-category {
  margin-bottom: 3.5rem;
}

.schedule-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold-border);
}

@media (min-width: 768px) {
  .schedule-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.schedule-header h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.schedule-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .schedule-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .schedule-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.batch-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius-md);
  padding: 1.75rem;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.batch-card.is-new {
  border: 1.5px solid var(--accent-red);
  background: linear-gradient(145deg, rgba(230, 57, 70, 0.08) 0%, rgba(24, 25, 32, 0.95) 100%);
}

.batch-card.is-new:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.25);
}

.new-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, #e63946 0%, #ff5722 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--border-radius-full);
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.5);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.batch-number {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.batch-days-box {
  margin-bottom: 1.25rem;
}

.batch-day-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.batch-day-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.batch-day-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.batch-time {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

.batch-enquire-btn {
  margin-top: 1.25rem;
}

/* Poster Callout Banner */
.poster-showcase-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .poster-showcase-box {
    grid-template-columns: 320px 1fr;
    padding: 3rem;
  }
}

.poster-preview-img {
  border-radius: var(--border-radius-md);
  border: 2px solid var(--gold-border);
  cursor: pointer;
  transition: transform var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.poster-preview-img:hover {
  transform: scale(1.02);
  border-color: var(--gold-light);
}

/* ==========================================================================
   IMAGE COLLAGE & EDITORIAL GRIDS
   ========================================================================== */
.collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .collage-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 1.25rem;
  }
}

.collage-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: #111;
  aspect-ratio: 1 / 1;
}

@media (min-width: 768px) {
  .collage-item {
    aspect-ratio: auto;
  }
  .collage-item.span-2x2 {
    grid-column: span 2;
    grid-row: span 2;
  }
  .collage-item.span-2x1 {
    grid-column: span 2;
  }
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.collage-item:hover img {
  transform: scale(1.06);
}

.collage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.9) 0%, transparent 60%);
  opacity: 0.85;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: opacity var(--transition-fast);
}

.collage-item:hover .collage-overlay {
  opacity: 1;
}

.collage-caption {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.collage-caption span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   INTERACTIVE GALLERY & LIGHTBOX
   ========================================================================== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .gallery-filters {
    justify-content: center;
  }
}

.filter-btn {
  background: rgba(24, 25, 32, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.25rem;
  border-radius: var(--border-radius-full);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-gradient);
  color: #0b0c10;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: var(--bg-card);
  cursor: pointer;
  transition: all var(--transition-normal);
  aspect-ratio: 4 / 3;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), var(--gold-glow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.gallery-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.95) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.gallery-card-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.gallery-card-badge {
  font-size: 0.7rem;
  color: var(--gold-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Fullscreen Lightbox */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 5, 8, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content-box {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--gold-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-caption-bar {
  margin-top: 1rem;
  text-align: center;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.lightbox-caption-bar span {
  display: block;
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
}

.lightbox-btn-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(24, 25, 32, 0.8);
  border: 1px solid var(--gold-border);
  color: var(--text-white);
  font-size: 1.75rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2002;
}

.lightbox-btn-close:hover {
  background: var(--gold-primary);
  color: #0b0c10;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(24, 25, 32, 0.8);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2001;
}

.lightbox-nav-btn:hover {
  background: var(--gold-primary);
  color: #0b0c10;
}

.lightbox-btn-prev {
  left: 1.25rem;
}

.lightbox-btn-next {
  right: 1.25rem;
}

@media (max-width: 768px) {
  .lightbox-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
  .lightbox-btn-prev {
    left: 0.5rem;
  }
  .lightbox-btn-next {
    right: 0.5rem;
  }
}

/* ==========================================================================
   CONTACT & ENQUIRY FORM
   ========================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
  }
}

.contact-card-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .contact-card-box {
    padding: 2.5rem;
  }
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-detail-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-icon-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold-light);
}

.contact-text-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.contact-text-content p, .contact-text-content a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-text-content a:hover {
  color: var(--gold-light);
}

.contact-phone-highlight {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.25rem;
}

/* Enquiry Form */
.enquiry-form-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .enquiry-form-box {
    padding: 2.5rem;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-control {
  width: 100%;
  background: rgba(10, 10, 14, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--border-radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-white);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(10, 10, 14, 0.95);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

select.form-control option {
  background: #121318;
  color: #fff;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-status-msg {
  display: none;
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.form-status-msg.success {
  display: block;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid var(--accent-green);
  color: #25d366;
}

/* ==========================================================================
   FINAL CALL TO ACTION & FOOTER
   ========================================================================== */
.cta-banner {
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12) 0%, rgba(18, 19, 24, 0.95) 75%, #08080a 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
  padding: 5rem 1.25rem;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .cta-banner h2 {
    font-size: 3rem;
  }
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2rem;
}

.cta-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  background-color: #050507;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 4rem;
  padding-bottom: calc(var(--bottom-bar-height) + 2rem);
  color: var(--text-muted);
}

@media (min-width: 1024px) {
  .site-footer {
    padding-bottom: 3rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 3.5rem;
  }
}

.footer-brand-col .brand-logo {
  margin-bottom: 1.25rem;
}

.footer-brand-col p {
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
    justify-content: space-between;
  }
}
