/* ============================================================
   DR ANAS INSPIRES — DESIGN SYSTEM
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green:    #1F4D3A;
  --ivory:    #F8F7F4;
  --gold:     #C9A24D;
  --charcoal: #333333;
  --grey:     #E5E5E5;
  --white:    #FFFFFF;
  --green-light: #2a6650;
  --gold-light:  #e0bb75;
  --blue:        #1A5276;
  --blue-light:  #2980B9;
  --shadow:   0 4px 24px rgba(31,77,58,0.10);
  --shadow-sm:0 2px 10px rgba(31,77,58,0.08);
  --radius:   8px;
  --radius-lg:16px;
  --transition: all 0.28s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--green);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p  { font-size: 1rem; color: var(--charcoal); max-width: 68ch; }

.lead {
  font-size: 1.15rem;
  color: #555;
  font-weight: 300;
  max-width: 60ch;
}

/* ---- Utility ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--ivory { background: var(--ivory); }
.section--white { background: var(--white); }
.section--green { background: var(--green); }

.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.25rem 0 2rem;
  border-radius: 2px;
}
.divider--center { margin: 1.25rem auto 2rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition);
  line-height: 1;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,82,118,0.35);
}

/* ---- Button Shine Animation ---- */
.btn-primary::after,
.navbar__cta::after,
.mobile-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: buttonShine 4s infinite;
  pointer-events: none;
}

@keyframes buttonShine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,77,0.3);
}

.btn-white {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* ---- Image Placeholder ---- */
.img-placeholder {
  background: linear-gradient(135deg, #d4e8df 0%, #b8d6c8 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--green);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 2rem;
}
.img-placeholder svg {
  opacity: 0.5;
}

/* ---- Icon Bullet ---- */
.icon-bullet {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.icon-bullet .icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(31,77,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.icon-bullet p { max-width: none; margin: 0; }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loadingScreen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loadingScreen.loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.loader__logo {
  width: 90px;
  height: auto;
  animation: loaderPulse 1.4s ease-in-out infinite;
}
.loader__ring {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(31,77,58,0.15);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: loaderSpin 0.9s linear infinite;
}
.loader__text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--green);
  opacity: 0.75;
  letter-spacing: 0.04em;
}
@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}
@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.65; transform: scale(0.93); }
}

/* ============================================================
   VIDEO HERO
   ============================================================ */
.hero--video {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: #0a1a12;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  filter: brightness(1.15) contrast(1.05);
}
.hero__video.playing { opacity: 1; }
.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10,26,18,0.45) 0%,
    rgba(10,26,18,0.25) 60%,
    rgba(10,26,18,0.1) 100%
  );
}
.hero__inner--centered {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 10rem 2rem 6rem;
  grid-template-columns: 1fr;
  display: block;
}
.hero__content--light {
  color: var(--white);
  max-width: 720px;
}
.hero__content--light h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero__content--light .lead {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.hero__btn-outline {
  border-color: rgba(255,255,255,0.6) !important;
  color: var(--white) !important;
}
.hero__btn-outline:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: var(--white) !important;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item--wide { grid-column: span 2; }
}
@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item--tall,
  .gallery-item--wide { grid-column: span 1; grid-row: span 1; }
  .hero--video { min-height: 100svh; }
}

/* ============================================================
   ANNOUNCEMENT BANNER
   ============================================================ */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: linear-gradient(-45deg, #1F4D3A, #2a6650, #C9A24D, #2a6650, #1F4D3A);
  background-size: 400% 400%;
  animation: announcementGradient 15s ease infinite;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 3rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  gap: 1.2rem;
  transition: all 0.4s ease;
  min-height: 48px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

@keyframes announcementGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.announcement-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  min-height: 0;
}

/* Global persistent state */
.announcement-hidden .announcement-bar {
  display: none !important;
}
.announcement-hidden .navbar {
  /* top handled by JS */
}
.announcement-bar__text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.announcement-bar__emoji {
  font-size: 1.1rem;
}
.announcement-bar__link {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.35rem 1.1rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.announcement-bar__link:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.announcement-bar__close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: var(--transition);
}
.announcement-bar__close:hover {
  background: rgba(255,255,255,0.4);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 48px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(248,247,244,0.97);
  border-bottom: 1px solid var(--grey);
  backdrop-filter: blur(8px);
  transition: top 0.4s ease;
  /* top handled by JS */
}
.navbar.bar-hidden {
  top: 0;
}

.navbar__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.navbar__logo img {
  height: 48px;
  width: auto;
}

.navbar__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.navbar__brand-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.navbar__brand-text small {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: #555;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

@media (max-width: 600px) {
  .navbar__brand-text small {
    display: none;
  }
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  flex-shrink: 0;
}

/* Regular nav links */
.navbar__nav > a,
.navbar__nav .nav-item > a {
  padding: 0.45rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  border-radius: 6px;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar__nav > a:hover,
.navbar__nav > a.active,
.navbar__nav .nav-item > a:hover,
.navbar__nav .nav-item > a.active {
  color: var(--green);
  background: rgba(31,77,58,0.07);
}

.navbar__cta {
  padding: 0.5rem 1rem !important;
  background: var(--blue) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  font-size: 0.8rem !important;
  position: relative;
  overflow: hidden;
  border: none;
  transition: var(--transition);
}
.navbar__cta:hover {
  background: var(--blue-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26,82,118,0.3) !important;
}

/* ---- Dropdown ---- */
.nav-item {
  position: relative;
}
.nav-item__arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
  opacity: 0.6;
  flex-shrink: 0;
}
.nav-item--has-dropdown.open .nav-item__arrow {
  transform: rotate(180deg);
}

.dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(31,77,58,0.18);
  padding: 1.5rem;
  display: none;
  min-width: 560px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem 2rem;
  z-index: 2000;
  border-top: 3px solid var(--gold);
}
.dropdown__menu--small {
  min-width: 240px;
  grid-template-columns: 1fr;
  padding: 1rem;
}
/* Small arrow pointer */
.dropdown__menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top: none;
  border-bottom-color: var(--gold);
}
.nav-item--has-dropdown.open .dropdown__menu {
  display: grid;
}

.dropdown__group-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--grey);
}
.dropdown__link {
  display: block;
  font-size: 0.83rem;
  color: var(--charcoal);
  padding: 0.3rem 0.4rem;
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}
.dropdown__link:hover {
  color: var(--green);
  background: rgba(31,77,58,0.07);
  padding-left: 0.7rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  left: 0; right: 0;
  /* top handled by JS */
  background: var(--ivory);
  border-bottom: 1px solid var(--grey);
  padding: 1.25rem 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.15rem;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav > a,
.mobile-nav .mobile-nav-item > a {
  padding: 0.7rem 1rem;
  font-weight: 600;
  color: var(--charcoal);
  border-radius: 6px;
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav > a:hover,
.mobile-nav .mobile-nav-item > a:hover { background: rgba(31,77,58,0.07); color: var(--green); }
.mobile-nav .mobile-cta {
  margin-top: 0.75rem;
  background: var(--blue);
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius);
  justify-content: center !important;
  position: relative;
  overflow: hidden;
  border: none;
}

/* Mobile submenu */
.mobile-nav-item { position: relative; }
.mobile-submenu {
  display: none;
  padding: 0.25rem 0 0.25rem 1rem;
  border-left: 2px solid var(--gold);
  margin: 0.1rem 0 0.1rem 1rem;
}
.mobile-submenu.open { display: block; }
.mobile-submenu__group-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding: 0.5rem 0.5rem 0.25rem;
}
.mobile-submenu a {
  display: block;
  padding: 0.35rem 0.75rem;
  font-size: 0.88rem;
  color: #555;
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
}
.mobile-submenu a:hover { color: var(--green); background: rgba(31,77,58,0.06); }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green);
  color: rgba(255,255,255,0.85);
  padding: 1.5rem 0 1rem;
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer__brand p {
  display: none;
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
}
.footer__logo-wrap img { 
  height: 36px; 
  width: auto;
  display: block;
  filter: brightness(0) invert(1); 
}
.footer__logo-wrap .navbar__brand-text strong {
  color: var(--white);
}

.footer h4 {
  display: none;
}

.footer__links li { margin-bottom: 0.6rem; }
.footer__links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--gold); }

.footer__contact {
  display: flex;
  gap: 1.5rem;
}
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 0;
}
.footer__contact a { color: rgba(255,255,255,0.75); }
.footer__contact a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  max-width: none;
  margin: 0;
}
.footer__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold) !important;
  font-size: 0.9rem !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 162px;
  padding-bottom: 5rem;
  background: var(--ivory);
}

.hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__content h1 {
  margin-bottom: 1.5rem;
}

.hero__content .lead {
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero__image {
  width: 100%;
  min-height: 420px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .navbar__nav { display: none; }
  .hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__image { min-height: 280px; }
  .mobile-nav { top: 114px; }
  .hero { padding-top: 138px; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  
  .announcement-bar {
    padding: 0.6rem 2.5rem;
    font-size: 0.78rem;
    min-height: auto;
    line-height: 1.4;
  }
  .announcement-bar__text {
    gap: 0.5rem;
  }
  .announcement-bar__link {
    padding: 0.3rem 0.8rem;
    font-size: 0.72rem;
  }
}

/* ============================================================
   PAGE HEADER BANNER
   ============================================================ */
.page-header {
  padding: 8rem 0 4rem;
  background: var(--green);
  text-align: center;
}
.page-header h1 { color: var(--white); }
.page-header .lead { color: rgba(255,255,255,0.8); margin: 1rem auto 0; }
.page-header .section-label { color: var(--gold); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--green);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--grey);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31,77,58,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   TESTIMONIALS SLIDER
   ============================================================ */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}
.testimonial-card p {
  font-style: italic;
  font-size: 0.97rem;
  color: #555;
  margin-top: 1rem;
  max-width: none;
}
.testimonial-card__author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(31,77,58,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-card__author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 700;
}
.testimonial-card__author-info span {
  font-size: 0.8rem;
  color: #888;
}

/* Stars */
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.5rem; }

/* ============================================================
   PROGRAM CARDS
   ============================================================ */
.program-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  border-left: 5px solid var(--green);
  transition: var(--transition);
}
.program-block:hover { box-shadow: var(--shadow); }
.program-block__badge {
  display: inline-block;
  background: rgba(201,162,77,0.15);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.25rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.program-block h3 { margin-bottom: 1rem; }
.program-block__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.program-block__meta h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.program-block__meta p { max-width: none; font-size: 0.95rem; }
.program-block ul { margin: 0.5rem 0 0 1.25rem; list-style: disc; }
.program-block ul li { font-size: 0.95rem; color: #555; margin-bottom: 0.3rem; }

.program-video-wrap {
  margin: 1.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  background: #000;
}
.program-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}


/* ============================================================
   INVESTMENT PAGE
   ============================================================ */
.investment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.investment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.investment-card .icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(31,77,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--green);
}
.investment-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.investment-card p { font-size: 0.95rem; color: #666; max-width: none; }

/* ============================================================
   STEP TIMELINE
   ============================================================ */
.steps {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
}
.step__number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: #666; max-width: none; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--green);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.8); margin: 0 auto 2rem; }

/* ============================================================
   PATHWAY
   ============================================================ */
.pathway-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.pathway-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--gold);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pathway-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.pathway-card__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}
.pathway-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 0.45s ease;
}
.pathway-card__image img.active {
  opacity: 1;
  z-index: 1;
}
.pathway-card:hover .pathway-card__image img.active {
  transform: scale(1.05);
}

.pathway-card__content {
  padding: 2rem;
  flex: 1;
}
.pathway-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(31,77,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green);
}
.pathway-card__age {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pathway-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.pathway-card p  { font-size: 0.9rem; color: #666; max-width: none; margin-bottom: 1rem; }
.pathway-card ul { margin-left: 1.1rem; list-style: disc; }
.pathway-card ul li { font-size: 0.88rem; color: #666; margin-bottom: 0.3rem; }

/* ============================================================
   PROGRAM PREVIEW CARDS (HOMEPAGE)
   ============================================================ */
.program-preview-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.program-preview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.program-preview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.program-preview-card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(31,77,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--green);
}
.program-preview-card h4 { margin-bottom: 0.6rem; font-size: 0.98rem; }
.program-preview-card p  { font-size: 0.88rem; color: #666; max-width: none; flex: 1; margin-bottom: 1.25rem; }
.program-preview-card .btn-outline { font-size: 0.82rem; padding: 0.55rem 1.1rem; align-self: flex-start; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.what-different-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.what-different-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.what-different-item .icon-wrap {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,162,77,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.what-different-item p { max-width: none; font-size: 0.95rem; margin: 0; }
.what-different-item strong { color: var(--green); }

/* ============================================================
   TESTIMONIALS FILTER (FULL PAGE)
   ============================================================ */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-tab {
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  border: 2px solid var(--green);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}
.filter-tab.active,
.filter-tab:hover {
  background: var(--green);
  color: var(--white);
}


/* ============================================================
   BOOK PAGE
   ============================================================ */
.book-hero {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.book-mockup {
  position: sticky;
  top: 100px;
}
.transformation-list {
  list-style: none;
  margin: 0;
}
.transformation-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--grey);
  font-size: 0.97rem;
}
.transformation-list li:last-child { border-bottom: none; }
.transformation-list li .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
}

@media (max-width: 800px) {
  .book-hero { grid-template-columns: 1fr; }
  .book-mockup { position: static; }
  .program-block__meta { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
}

@media (max-width: 700px) {
  .pathway-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .pathway-cards { grid-template-columns: 1fr; }
  .program-preview-cards { grid-template-columns: 1fr; }
}



@media (max-width: 768px) {
  .footer__grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .footer__logo-wrap {
    justify-content: center;
  }
  .footer__logo-wrap .navbar__brand-text {
    text-align: left !important;
  }
  .footer__contact {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
