/* Custom Properties */
:root {
  --blue: #1a2b6b;
  --blue-dark: #0f1a45;
  --blue-mid: #1e3a8a;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --cream: #fbfbf9;
  --charcoal: #1c1c2e;
  --grey: #6b7280;
  --light-grey: #e5e7eb;
  --shadow: 0 8px 30px rgba(26, 43, 107, 0.08);
  --shadow-hover: 0 15px 40px rgba(26, 43, 107, 0.15);
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: "Cinzel", serif;
  --font-body: "Inter", sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title.left-align {
  text-align: left;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  text-align: center;
  color: var(--grey);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.section-title span,
.page-hero-title span {
  color: var(--gold);
}

.eyebrow.center {
  display: block;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.8rem auto 2.5rem;
}

.gold-line.left-line {
  margin-left: 0;
}

p {
  margin-bottom: 1rem;
}

/* Justified long-form body copy */
.text-justify,
.about-text > p,
.founder-text > p,
.about-full-text > p,
.founder-content .content-block > p,
.centered-block > p,
.content-block > p,
.facility-card > p,
.why-card > p,
.testi-text,
.coach-text .light-p,
.coach-philosophy p,
.phil-item p,
.branch-info > p,
.page-hero-sub {
  text-align: center;
  text-wrap: pretty;
  hyphens: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: var(--font-body);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--blue-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--blue-dark);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

/* Top Bar */
.top-bar {
  background: var(--blue-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--off-white);
}

.top-bar-link:hover {
  color: var(--gold);
}

.btn-topbar {
  background: var(--gold);
  color: var(--blue-dark);
  padding: 5px 15px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-topbar:hover {
  background: var(--white);
}

/* Navbar Base (Inner Pages) */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 5px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Navbar on Home Page (Transparent to Solid) */
.page-home .navbar {
  background: transparent;
  box-shadow: none;
  position: absolute;
  width: 100%;
}

.page-home .navbar.scrolled {
  background: var(--white);
  position: fixed;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
  transition: var(--transition);
  max-width: 100%;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--blue-dark);
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 4px 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
  max-width: 680px;
  margin: 0 auto;
}

.nav-menu > li {
  line-height: 1.2;
}

.nav-drawer-header {
  display: none;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.25px;
  position: relative;
  padding: 6px 4px;
  white-space: nowrap;
}

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

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

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

.store-link {
  color: var(--gold) !important;
  font-weight: 600;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--blue-dark);
  margin: 5px 0;
  transition: var(--transition);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 69, 0.45);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

body.nav-open {
  overflow: hidden;
}

.coach-preview-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Sections */
.section {
  padding: 80px 0;
}

.bg-cream {
  background: var(--cream);
}

.bg-blue {
  background: var(--blue-dark);
  color: var(--white);
}

.bg-blue .eyebrow {
  color: var(--gold-light);
}

.bg-blue p {
  color: var(--light-grey);
}

/* Hero Banner Section */
.hero {
  position: relative;
  width: 100%;
  background: var(--white);
}

.hero-banner-wrap {
  width: 100%;
  display: block;
}

.hero-banner-img {
  width: 100%;
  height: calc(100vh - 90px);
  object-fit: fill;
  object-position: top center;
  display: block;
}

/* Screen Reader Only for SEO */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Hero CTA Bar */
.hero-cta-bar {
  background: var(--cream);
  padding: 30px 0;
  border-bottom: 1px solid var(--light-grey);
}

.hero-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-cta-text h2 {
  font-size: 1.5rem;
  color: var(--blue-dark);
  margin-bottom: 5px;
}

.hero-cta-text p {
  color: var(--grey);
  margin: 0;
}

.hero-cta-btns {
  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {
  .hero-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-cta-btns {
    width: 100%;
    justify-content: center;
  }
}

/* About Preview & Full */
.about-grid,
.about-full-grid,
.founder-grid,
.coach-grid,
.founder-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vintage-frame {
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
  border-radius: 4px;
  position: relative;
  filter: sepia(0.2) grayscale(0.8) contrast(1.1);
  transition: var(--transition);
}

.vintage-frame:hover {
  filter: sepia(0) grayscale(0) contrast(1);
  transform: scale(1.02);
}

.about-img-wrap,
.founder-img-wrap,
.about-full-img,
.coach-img-wrap {
  position: relative;
}

.about-badge-float,
.founder-year-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--blue-dark);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
  border: 5px solid var(--white);
}

.about-badge-float span,
.founder-year-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.about-badge-float strong,
.founder-year-badge {
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-grey);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-size: 2.5rem;
  color: var(--blue);
  font-family: var(--font-heading);
  line-height: 1;
}

.stat span {
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 500;
}

/* Why Us Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: justify;
}

.why-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--gold);
  transition: var(--transition);
  text-align: center;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blue);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-icon svg {
  width: 48px;
  height: 48px;
  transition: transform var(--transition);
}

.why-card:hover .why-icon svg {
  transform: scale(1.1);
}

.why-card h3 {
  color: var(--blue-dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.why-card p {
  color: var(--grey);
  font-size: 0.95rem;
  margin: 0;
}

/* Founder Preview & Full */
.founder-quote {
  background: var(--cream);
  padding: 30px;
  border-left: 4px solid var(--gold);
  margin: 1.25rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

.founder-preview .founder-quote {
  margin-bottom: 1rem;
}

.founder-quote p {
  font-size: 1.1rem;
  color: var(--blue-dark);
  font-weight: 500;
}

.founder-quote cite {
  display: block;
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 600;
  font-style: normal;
}

/* Coach Section */
.coach-placeholder {
  background: var(--gold);
  height: 500px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.coach-placeholder::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: calc(var(--radius) - 5px);
}

.coach-initials {
  font-size: 8rem;
  font-family: var(--font-heading);
  color: var(--white);
  opacity: 0.8;
}

.coach-cred-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--white);
  color: var(--blue-dark);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.coach-creds {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: start;
}

.cred-icon {
  color: var(--gold);
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.cred-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.cred-item span {
  font-weight: 500;
  color: var(--off-white);
}

/* Programs */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--light-grey);
}

.program-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.program-card.featured {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}

.program-card.featured h3 {
  color: var(--white);
}

.program-card.featured p {
  color: var(--light-grey);
}

.program-badge {
  background: var(--cream);
  color: var(--blue-dark);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.program-card.featured .program-badge {
  background: var(--gold);
}

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--blue-dark);
}

.program-card p {
  color: var(--grey);
  margin-bottom: 25px;
  min-height: 70px;
}

/* Schedule */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.schedule-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--blue);
}

.schedule-card.sunday {
  border-top-color: var(--gold);
}

.sched-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sched-icon svg {
  width: 40px;
  height: 40px;
  transition: transform var(--transition);
}

.schedule-card:hover .sched-icon svg {
  transform: scale(1.1) rotate(5deg);
}

.schedule-card h3 {
  color: var(--blue-dark);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.sched-time {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 15px;
}

.schedule-card.sunday .sched-time {
  color: var(--gold);
}

/* Testimonials & Carousel */
.testi-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testi-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--light-grey);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: rgba(201, 168, 76, 0.1);
  line-height: 1;
}

.testi-stars {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 25px;
  flex-grow: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--light-grey);
  padding-top: 20px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  background: var(--blue);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.testi-author strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1rem;
}

.testi-author span {
  font-size: 0.8rem;
  color: var(--grey);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-grid.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  filter: sepia(0.2) grayscale(0.5);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 69, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  border: 2px solid var(--gold);
  padding: 8px 20px;
  border-radius: 30px;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: sepia(0) grayscale(0);
}

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

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Page Hero */
.page-hero {
  padding: 100px 0 60px;
  text-align: center;
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  margin-bottom: 10px;
}

.page-hero-sub {
  font-size: 1.2rem;
  color: var(--light-grey);
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: var(--light-grey);
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.footer-logo-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
}

.footer-logo-sub {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-about {
  margin-bottom: 25px;
  font-size: 0.95rem;
  opacity: 0.8;
  text-align: justify;
}

.footer-heading {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--light-grey);
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-icon {
  color: var(--gold);
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.footer-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.social-btn--facebook {
  background: #1877f2;
}

.social-btn--facebook:hover {
  background: #166fe5;
  color: white;
}

.social-btn--youtube {
  background: #ff0000;
}

.social-btn--youtube:hover {
  background: #cc0000;
  color: white;
}

.footer-bottom {
  background: #12121e;
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.footer-credit {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-credit a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-credit a:hover {
  color: var(--gold-light);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 60px 0;
  color: var(--white);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-inner h2 {
  color: var(--gold);
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.cta-inner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.cta-btns {
  display: flex;
  gap: 15px;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--blue-dark);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-grey);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--cream);
}

.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 43, 107, 0.1);
  background: var(--white);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231a2b6b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 69, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border: 5px solid var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.lightbox-close:hover {
  color: var(--gold);
}

/* Additional Layouts */
.founder-full-grid {
  align-items: flex-start;
}

.content-block {
  margin-bottom: 2rem;
}

.content-block h3 {
  color: var(--blue);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.centered-block {
  max-width: 800px;
  margin: 2rem auto;
}

.centered-block .section-title,
.centered-block .gold-line {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Founder preview + birth (homepage) */
.founder-preview {
  padding-bottom: 50px;
}

.founder-birth-inner {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--light-grey);
}

.founder-birth-inner .founder-story-full {
  margin-bottom: 0;
}

.founder-birth-inner .centered-block {
  margin: 0 auto 1.75rem;
}

.founder-birth-inner .centered-block .gold-line {
  margin-bottom: 1.25rem;
}

.founder-birth-inner .legacy-pillars {
  margin-bottom: 2rem;
}

.founder-birth-inner .tribute-box {
  margin-top: 0;
  margin-bottom: 0;
}

.legacy-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 2.5rem;
}

.pillar-card {
  background: var(--cream);
  padding: 30px 20px;
  text-align: center;
  border-radius: var(--radius);
  border-bottom: 3px solid var(--gold);
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
}

.pillar-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.pillar-card h4 {
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.founder-gallery-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 4rem;
}

.founder-gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.tribute-box {
  background: var(--blue-dark);
  color: var(--white);
  padding: 50px;
  text-align: center;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.tribute-box p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1.4;
}

.tribute-box cite {
  font-size: 1rem;
  opacity: 0.8;
  display: block;
  margin-top: 20px;
}

.branches-table-wrap {
  overflow-x: auto;
}

.branches-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.branches-table th {
  background: var(--blue-dark);
  color: var(--white);
  padding: 15px 20px;
  text-align: left;
}

.branches-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--light-grey);
}

.branches-table tr:last-child td {
  border-bottom: none;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.facility-card {
  background: var(--cream);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--light-grey);
}

.facility-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
}

.facility-icon svg {
  width: 40px;
  height: 40px;
}

.facility-card h3 {
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.achieve-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.achieve-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.achieve-icon {
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.achieve-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.achieve-item p {
  margin: 0;
  font-weight: 600;
  color: var(--blue-dark);
}

.coach-philosophy {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius);
  margin-bottom: 3rem;
  border-left: 5px solid var(--gold);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 2rem;
}

.phil-item {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.phil-item h4 {
  color: var(--blue);
  margin-bottom: 10px;
}

/* Branch Cards */
.branch-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.branch-info {
  padding: 40px;
}

.branch-map {
  width: 100%;
  height: 300px;
  background: var(--light-grey);
}

.branch-info h3 {
  color: var(--blue-dark);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.branch-details {
  margin-bottom: 25px;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.detail-icon {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.detail-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Forms layout */
.contact-grid,
.admission-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.branch-map {
  width: 100%;
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.branch-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

.contact-info-panel {
  background: var(--blue-dark);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius);
}

.contact-info-panel h3 {
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  justify-content: start;
}

.contact-form-panel,
.admission-form-panel {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* News Cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.news-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.news-content {
  padding: 25px;
}

.news-date {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.news-title {
  color: var(--blue-dark);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.news-excerpt {
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.news-link {
  color: var(--blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.news-link:hover {
  color: var(--gold);
}

/* Videos */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-info {
  padding: 20px;
}

.video-info h3 {
  color: var(--blue-dark);
  font-size: 1.2rem;
}

/* Alerts */
.alert {
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: 500;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #34d399;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #f87171;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Floating WhatsApp Widget */
.floating-wa {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-wa:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: white;
}

.floating-wa svg {
  width: 35px;
  height: 35px;
}

.mobile-nav-item {
  display: none;
}
