/* ============================================
   CMN GND STUDIO — PREMIUM REDESIGN
   Shared stylesheet for all pages
   ============================================ */

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

/* === ROOT VARIABLES === */
:root {
  --mint: #A8E6CF;
  --mint-dim: rgba(168, 230, 207, 0.6);
  --mint-glow: rgba(168, 230, 207, 0.15);
  --mint-subtle: rgba(168, 230, 207, 0.08);
  --black: #0A0A0A;
  --dark: #111111;
  --dark-card: #161616;
  --dark-elevated: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --grey: #999999;
  --light-grey: #CCCCCC;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --max-width: 1200px;
  --section-padding: clamp(4rem, 8vw, 8rem);
}

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--mint);
  color: var(--black);
  text-align: center;
  padding: 10px 1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.announcement-bar a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.announcement-bar a:hover {
  opacity: 0.7;
}

/* Push nav down when announcement bar is present */
body:has(.announcement-bar) .nav {
  top: 38px;
}

body:has(.announcement-bar) .hero,
body:has(.announcement-bar) .hero-sub {
  padding-top: calc(100px + 38px);
}

body:has(.announcement-bar) [style*="padding-top: 180px"] {
  padding-top: 218px !important;
}

body:has(.announcement-bar) [style*="padding-top: 140px"] {
  padding-top: 178px !important;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

::selection {
  background-color: var(--mint);
  color: var(--black);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}

.nav.scrolled {
  padding: 1rem 3rem;
  background: rgba(10, 10, 10, 0.92);
}

.nav-logo {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.nav-logo span {
  display: block;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--grey);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--mint);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

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

.nav-cta {
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  color: var(--mint) !important;
  border: 1px solid rgba(168, 230, 207, 0.3);
  padding: 8px 20px;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--mint) !important;
  color: var(--black) !important;
  border-color: var(--mint) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--white);
  padding-left: 1rem;
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav { padding: 1.2rem 1.5rem; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.editorial {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--grey);
  font-weight: 300;
}

p strong {
  color: var(--white);
  font-weight: 600;
}

/* ============================================
   COMPONENTS
   ============================================ */

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3rem;
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
}

/* Pill Label */
.pill-label {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-grey);
  margin-bottom: 2.5rem;
  background: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid var(--mint);
  background: transparent;
  color: var(--mint);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--mint);
  transition: left 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: -1;
}

.btn:hover {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 230, 207, 0.2);
}

.btn:hover::before {
  left: 0;
}

.btn-solid {
  background: var(--mint);
  color: var(--black);
  border-color: var(--mint);
}

.btn-solid::before {
  background: var(--white);
}

.btn-solid:hover {
  color: var(--black);
}

/* Arrow Link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.3s ease;
}

.arrow-link .arrow {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.arrow-link:hover {
  color: var(--mint);
}

.arrow-link:hover .arrow {
  transform: translateX(5px);
}

/* Section */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

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

.section-border {
  border-top: 1px solid var(--border);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.15) 0%,
    rgba(10, 10, 10, 0.35) 40%,
    rgba(10, 10, 10, 0.88) 100%
  );
}

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

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.2rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-content .btn {
  margin-top: 0.5rem;
}

/* Sub-hero (inner pages) */
.hero-sub {
  min-height: 70vh;
  align-items: center;
}

.hero-sub .hero-bg img {
  object-position: center 30%;
}

.hero-sub .hero-content {
  max-width: 900px;
}

/* ============================================
   PROGRAM CARDS
   ============================================ */

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
}

.program-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  background: var(--dark-card);
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: all 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.program-card:hover img {
  filter: brightness(0.45);
  transform: scale(1.08);
}

.program-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 25%,
    rgba(10, 10, 10, 0.92) 100%
  );
  pointer-events: none;
}

.program-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.program-type {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: 0.5rem;
}

.program-name {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--mint);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.program-days {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--light-grey);
}

@media (max-width: 768px) {
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .program-card {
    aspect-ratio: 4 / 3;
  }
}

/* ============================================
   SOCIAL PROOF / TESTIMONIAL
   ============================================ */

.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.45;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 2rem;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mint-dim);
  letter-spacing: 0.05em;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: var(--dark-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: rgba(168, 230, 207, 0.2);
  transform: translateY(-4px);
}

.review-stars {
  color: #FFD700;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--light-grey);
  font-weight: 300;
  font-style: normal;
  margin-bottom: 1.5rem;
}

.review-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mint-dim);
  letter-spacing: 0.05em;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-banner .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.65) 100%
  );
}

.cta-banner h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

/* ============================================
   APP DOWNLOAD
   ============================================ */

.app-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-badges {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.app-badges img {
  height: 44px;
  transition: transform 0.3s ease;
}

.app-badges img:hover {
  transform: translateY(-3px);
}

.app-phone img {
  max-width: 350px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .app-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .app-badges { justify-content: center; }
}

/* ============================================
   TIMELINE STEPS (First Timers)
   ============================================ */

.timeline-step {
  display: flex;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.timeline-step:first-child {
  border-top: 1px solid var(--border);
}

.timeline-step:hover {
  padding-left: 1rem;
}

.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(168, 230, 207, 0.15);
  line-height: 1;
  min-width: 90px;
  letter-spacing: -0.03em;
  transition: color 0.4s ease;
}

.timeline-step:hover .step-number {
  color: var(--mint);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.step-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--grey);
  font-weight: 300;
}

.bring-items {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.bring-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--white);
}

.bring-item svg {
  color: var(--mint);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .timeline-step {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
  }
  .step-number { font-size: 2.5rem; min-width: auto; }
  .bring-items { flex-direction: column; gap: 1rem; }
}

/* ============================================
   GETTING STARTED STEPS
   ============================================ */

.simple-step {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  padding: 1.2rem 0;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.simple-step:hover {
  padding-left: 1rem;
  color: var(--mint);
}

.simple-num {
  font-weight: 800;
  color: var(--mint);
  margin-right: 1rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--mint);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--mint);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 2rem;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  max-width: 650px;
}

/* ============================================
   TEAM GRID
   ============================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card {
  background: var(--dark-card);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.team-card:hover {
  border-color: rgba(168, 230, 207, 0.2);
}

.team-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.team-card:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

.team-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.7));
  pointer-events: none;
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.team-role {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.75rem;
}

.team-bio {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.4s ease;
  opacity: 0;
}

.team-bio p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
  font-weight: 300;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.team-card:hover .team-bio {
  max-height: 200px;
  opacity: 1;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

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

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: #E8E8E8;
  border: 1px solid #D0D0D0;
  border-radius: 4px;
  color: #1A1A1A;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--mint);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888888;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info-block {
  margin-bottom: 3rem;
}

.contact-info-block h3 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1rem;
}

.contact-info-block p {
  font-size: 1rem;
  color: var(--light-grey);
}

.contact-info-block a {
  color: var(--light-grey);
  transition: color 0.3s ease;
}

.contact-info-block a:hover {
  color: var(--mint);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   PROGRAM DETAIL (Program page)
   ============================================ */

.program-detail {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  gap: 3rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.program-detail:first-child {
  border-top: 1px solid var(--border);
}

.program-detail-name {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--mint);
  letter-spacing: -0.02em;
}

.program-detail-sub {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--grey);
  margin-top: 0.25rem;
  text-transform: lowercase;
  font-style: italic;
}

.program-detail-body h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

.program-detail-body p {
  margin-bottom: 1.5rem;
}

.program-detail-body ul {
  margin-bottom: 1.5rem;
}

.program-detail-body ul li {
  font-size: 0.95rem;
  color: var(--grey);
  font-weight: 300;
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}

.program-detail-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--mint);
  border-radius: 50%;
}

.program-detail-image {
  width: 280px;
  border-radius: 6px;
  overflow: hidden;
}

.program-detail-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.5s ease;
}

.program-detail:hover .program-detail-image img {
  filter: brightness(1);
}

.program-detail-days {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-grey);
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .program-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .program-detail-image { width: 100%; }
  .program-detail-image img { height: 200px; }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:hover {
  border-color: var(--mint);
  color: var(--mint);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1.5rem;
}

.footer-col p,
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 300;
  line-height: 1.8;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ============================================
   MAP EMBED
   ============================================ */

.map-container {
  width: 100%;
  height: 300px;
  border-radius: 6px;
  overflow: hidden;
  filter: grayscale(80%) brightness(0.7);
  transition: filter 0.5s ease;
  margin-top: 2rem;
}

.map-container:hover {
  filter: grayscale(30%) brightness(0.9);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   UTILITIES
   ============================================ */

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.max-w-800 { max-width: 800px; }
.max-w-900 { max-width: 900px; }
.text-center { text-align: center; }

/* ============================================
   HAPANA WIDGET OVERRIDES
   ============================================ */

/* Force Hapana widget buttons to be visible on dark background */
#book button,
#book [class*="btn"],
#book [class*="Btn"],
#book [class*="load"],
#book [class*="Load"],
#book [class*="more"],
#book [class*="More"] {
  background-color: var(--mint) !important;
  color: var(--black) !important;
  border: 1px solid var(--mint) !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
  padding: 10px 24px !important;
}

/* Scroll fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HAPANA WIDGET OVERRIDES
   ============================================ */

hapana-widget button,
hapana-widget [class*="book"],
hapana-widget [class*="Book"],
hapana-widget a[class*="btn"],
hapana-widget input[type="submit"] {
  background-color: var(--mint) !important;
  color: var(--black) !important;
  border: none !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
}

/* Fix Hapana modal/popup positioning */
hapana-widget [class*="modal"],
hapana-widget [class*="Modal"],
hapana-widget [class*="popup"],
hapana-widget [class*="Popup"],
hapana-widget [class*="overlay"],
hapana-widget [class*="Overlay"],
hapana-widget [class*="dialog"],
hapana-widget [class*="Dialog"],
hapana-widget [style*="position: fixed"],
hapana-widget [style*="position:fixed"] {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  z-index: 10000 !important;
}

/* Ensure any Hapana overlay backdrop is visible */
.hapana-overlay,
[class*="hapana"][class*="overlay"],
hapana-widget ~ [class*="overlay"],
hapana-widget ~ [class*="modal"] {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 9999 !important;
}

/* Global fix for any Hapana popups rendered outside the widget */
body > [class*="hapana"],
body > [id*="hapana"],
body > div[style*="position: fixed"],
body > div[style*="position:fixed"] {
  z-index: 10000 !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
}

/* ============================================
   MOBILE RESPONSIVE OVERRIDES
   ============================================ */

@media (max-width: 768px) {
  /* Two-column sections stack */
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Hero text */
  .hero h1, h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem) !important;
  }

  /* Program detail sections */
  .program-detail {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .program-detail-image {
    width: 100% !important;
  }

  .program-detail-image img {
    height: 200px !important;
  }

  /* Nav */
  .nav {
    padding: 1rem 1.5rem !important;
  }

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

  /* Section padding */
  .section {
    padding: clamp(3rem, 6vw, 5rem) 0 !important;
  }

  /* Values grid on team page */
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Quick links on contact */
  [style*="grid-template-columns: repeat(3, 1fr); gap: 1.5rem"] {
    grid-template-columns: 1fr !important;
  }

  /* Weekly overview grid */
  [style*="grid-template-columns: repeat(6, 1fr)"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* App section */
  .app-section {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .app-badges {
    justify-content: center;
  }
}
