/* ===================== Base ===================== */
:root {
  --navy: #060d1a;
  --navy-2: #0b1730;
  --navy-3: #0f2044;
  --blue: #2f6fed;
  --blue-dark: #1c4fc4;
  --blue-light: #7ea6ff;
  --gold: #f0b429;
  --gold-light: #ffd166;
  --white: #ffffff;
  --off-white: #f5f7fb;
  --gray: #6b7280;
  --whatsapp: #25d366;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --max-width: 1160px;
  --grad-blue: linear-gradient(135deg, #4f8bff 0%, #2f6fed 55%, #1c4fc4 100%);
  --grad-title: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 60%, var(--gold) 130%);
  --shadow-card: 0 12px 34px rgba(15, 32, 68, 0.10);
  --shadow-card-hover: 0 24px 50px rgba(15, 32, 68, 0.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: #1c2536;
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* Slim branded scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 8px;
  border: 2px solid var(--navy);
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: 1px;
  line-height: 1.1;
}

.accent {
  background: linear-gradient(90deg, var(--blue-light) 0%, #a8c4ff 50%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue-light);
}

/* ===================== Buttons ===================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

/* soft light sweep on hover */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn:hover::after { left: 130%; }

.btn-primary {
  background: var(--grad-blue);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(47, 111, 237, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(47, 111, 237, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25); }

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }

.btn-whatsapp {
  background: linear-gradient(135deg, #34e37a 0%, #25d366 50%, #1ebe57 100%);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-whatsapp:hover { box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3); }

.btn-lg { padding: 17px 36px; font-size: 1.05rem; }

/* ===================== Header ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 13, 26, 0.82);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(126, 166, 255, 0.45) 30%, rgba(240, 180, 41, 0.45) 70%, transparent 100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue-light);
  border: 2px solid var(--blue);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: radial-gradient(circle at 30% 25%, rgba(126, 166, 255, 0.35), rgba(47, 111, 237, 0.10) 70%);
  box-shadow: 0 0 18px rgba(47, 111, 237, 0.35);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong { font-size: 1.05rem; letter-spacing: 0.3px; }
.logo-text small { font-size: 0.7rem; color: var(--blue-light); letter-spacing: 1.5px; text-transform: uppercase; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  position: relative;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.85;
  padding: 4px 0;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.main-nav a:hover { opacity: 1; color: var(--blue-light); }

.nav-cta {
  background: var(--grad-blue);
  padding: 10px 22px;
  border-radius: 999px;
  opacity: 1 !important;
  box-shadow: 0 6px 18px rgba(47, 111, 237, 0.45);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.nav-cta:hover {
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(47, 111, 237, 0.6);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.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); }

/* ===================== Hero ===================== */
.hero {
  position: relative;
  color: var(--white);
  padding: 100px 0;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 12% 20%, rgba(47, 111, 237, 0.35), transparent 70%),
    radial-gradient(ellipse 45% 40% at 90% 12%, rgba(240, 180, 41, 0.12), transparent 70%),
    radial-gradient(ellipse 60% 50% at 82% 88%, rgba(47, 111, 237, 0.25), transparent 70%),
    linear-gradient(160deg, #060d1a 0%, #0b1730 55%, #060d1a 100%);
}
/* faint dojo grid texture */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 166, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 166, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 25%, transparent 75%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
}
.hero .hero-inner { max-width: 1560px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 22px;
  text-transform: uppercase;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}

.hero-sub {
  font-size: 1.05rem;
  color: #c3cbdb;
  max-width: 640px;
  margin: 0 auto 32px;
}

.hero-text { max-width: 760px; }

.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 30px; }

.hero-phone { color: var(--blue-light); font-weight: 600; font-size: 1rem; margin-bottom: 40px; }
.hero-phone a { text-decoration: underline; text-underline-offset: 3px; }
.hero-phone a:hover { color: var(--gold-light); }

/* Hero feature badges */
.hero-badges {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  max-width: 120px;
}
.hero-badge-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: radial-gradient(circle at 30% 25%, rgba(126, 166, 255, 0.28), rgba(47, 111, 237, 0.08) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--blue-light);
  box-shadow: 0 0 22px rgba(47, 111, 237, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.hero-badge:hover .hero-badge-icon {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(240, 180, 41, 0.35);
}
.hero-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #d6dcea;
}

.gallery-teaser {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 8px 22px 8px 8px;
  background: rgba(126, 166, 255, 0.07);
  border: 1px solid rgba(126, 166, 255, 0.3);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-teaser:hover {
  border-color: var(--gold);
  background: rgba(240, 180, 41, 0.10);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}
.gallery-teaser img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.gallery-teaser span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

/* Hero visual / photo panel */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero-photo {
  position: relative;
  width: 100%;
  max-width: 1560px;
  aspect-ratio: 1808/870;
  border-radius: 22px;
  overflow: hidden;
  background: #060d1a;
  border: 1px solid rgba(126, 166, 255, 0.3);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 60px rgba(47, 111, 237, 0.18);
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
}
.photo-placeholder {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--blue-light);
  text-align: center;
  padding: 30px;
}
.photo-placeholder .placeholder-icon {
  font-size: 4.5rem;
  filter: drop-shadow(0 10px 20px rgba(47, 111, 237, 0.4));
}
.photo-placeholder p {
  font-size: 0.85rem;
  color: #b7c3de;
  line-height: 1.5;
}

/* ===================== Sections ===================== */
.section { position: relative; padding: 96px 0; }

/* light sections get a soft tinted wash */
.section:not(.section-dark):not(.cta-section) {
  background:
    radial-gradient(ellipse 60% 45% at 88% 0%, rgba(47, 111, 237, 0.06), transparent 70%),
    radial-gradient(ellipse 50% 40% at 5% 100%, rgba(240, 180, 41, 0.05), transparent 70%),
    var(--off-white);
}

/* dark sections get subtle glows so they never feel flat */
.section-dark {
  background:
    radial-gradient(ellipse 55% 45% at 90% 8%, rgba(47, 111, 237, 0.16), transparent 70%),
    radial-gradient(ellipse 45% 40% at 5% 92%, rgba(47, 111, 237, 0.12), transparent 70%),
    radial-gradient(ellipse 35% 30% at 50% 105%, rgba(240, 180, 41, 0.06), transparent 70%),
    var(--navy);
  color: var(--white);
}
.section-dark .section-eyebrow { color: var(--gold); }
.section-dark p { color: #c3cbdb; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.section-title {
  position: relative;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 46px;
  text-transform: uppercase;
  padding-bottom: 18px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 74px;
  height: 4px;
  border-radius: 4px;
  background: var(--grad-title);
}

/* ===================== About ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p { margin-bottom: 18px; color: #333; }

.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  color: #333;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--grad-blue);
  box-shadow: 0 4px 10px rgba(47, 111, 237, 0.35);
  font-weight: 700;
}

.about-visual { display: flex; justify-content: center; }
.belt-card {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(47, 111, 237, 0.25), transparent 70%),
    var(--navy);
  border: 1px solid rgba(126, 166, 255, 0.25);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 24px 50px rgba(6, 13, 26, 0.35);
}
.belt {
  height: 60px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.belt.black {
  background: linear-gradient(90deg, #0f2044, #060d1a);
  border: 2px solid var(--gold);
  box-shadow: 0 0 24px rgba(240, 180, 41, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.belt-label { color: var(--gold-light); font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 1.5px; }

/* ===================== Sensei ===================== */
.sensei-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
}
.photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  padding: 0;
  border: none;
  background:
    linear-gradient(var(--navy-2), var(--navy-2)) padding-box,
    linear-gradient(140deg, var(--blue) 0%, var(--blue-light) 40%, var(--gold) 100%) border-box;
  border: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45), 0 0 45px rgba(47, 111, 237, 0.2);
}
.photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 3px);
}
.photo-frame span {
  display: none;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--blue-light);
  opacity: 0.85;
}
.sensei-text p { margin-bottom: 18px; }
.sensei-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 4px 0 8px;
}
.sensei-credentials li {
  display: flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, rgba(126, 166, 255, 0.10), rgba(126, 166, 255, 0.04));
  border: 1px solid rgba(126, 166, 255, 0.28);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.sensei-credentials li:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.credential-icon { font-size: 1.05rem; }
.sensei-quote {
  position: relative;
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 22px;
  font-style: italic;
  color: var(--blue-light);
  margin-top: 24px;
}

/* ===================== Cards / Programs ===================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 32, 68, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-title);
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(47, 111, 237, 0.12), rgba(47, 111, 237, 0.05));
  border: 1px solid rgba(47, 111, 237, 0.18);
}
.card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; text-transform: none; letter-spacing: 0; }
.card p { color: var(--gray); font-size: 0.95rem; }

.programs-note {
  margin-top: 40px;
  text-align: center;
  font-weight: 500;
}
.programs-note a { color: var(--blue); font-weight: 700; }
.programs-note a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ===================== Why Us ===================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.why-item {
  padding: 26px 24px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(126, 166, 255, 0.07), rgba(126, 166, 255, 0.02));
  border: 1px solid rgba(126, 166, 255, 0.16);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.why-item:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 180, 41, 0.5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.why-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  display: block;
  margin-bottom: 10px;
  background: var(--grad-title);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue-light);
}
.why-item h3 { font-family: var(--font-body); font-weight: 700; text-transform: none; font-size: 1.05rem; margin-bottom: 8px; letter-spacing: 0; }

/* ===================== Testimonials ===================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  border: 1px solid rgba(15, 32, 68, 0.06);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 4.6rem;
  line-height: 1;
  background: var(--grad-title);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
}
.testimonial-card p { font-style: italic; color: #333; margin-bottom: 14px; }
.testimonial-card span { color: var(--blue); font-weight: 600; font-size: 0.9rem; }
.testimonial-note { margin-top: 24px; text-align: center; color: var(--gray); font-size: 0.85rem; }

/* ===================== FAQ ===================== */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: linear-gradient(160deg, rgba(126, 166, 255, 0.08), rgba(126, 166, 255, 0.03));
  border: 1px solid rgba(126, 166, 255, 0.22);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item:hover { border-color: rgba(126, 166, 255, 0.45); }
.faq-item[open] {
  border-color: rgba(240, 180, 41, 0.45);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  list-style: none;
  position: relative;
  padding-right: 34px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(126, 166, 255, 0.4);
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--blue-light);
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.faq-item[open] summary::after {
  content: "−";
  color: var(--gold);
  border-color: rgba(240, 180, 41, 0.55);
}
.faq-item p { margin-top: 14px; color: #c3cbdb; }
.faq-item a { color: var(--gold-light); font-weight: 600; }

/* ===================== Location ===================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.location-info p { margin-bottom: 16px; color: #d9d9d9; }
.location-info a { color: var(--blue-light); font-weight: 600; }
.location-info a:hover { color: var(--gold-light); }
.location-map iframe {
  border-radius: var(--radius);
  border: 1px solid rgba(126, 166, 255, 0.25);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

/* ===================== CTA Section ===================== */
.cta-section {
  position: relative;
  background:
    radial-gradient(ellipse 50% 80% at 15% 10%, rgba(255, 255, 255, 0.14), transparent 60%),
    radial-gradient(ellipse 45% 70% at 90% 90%, rgba(240, 180, 41, 0.22), transparent 65%),
    linear-gradient(135deg, #3d7bff 0%, var(--blue) 40%, var(--blue-dark) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.cta-inner h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.cta-inner p { max-width: 600px; margin: 0 auto 30px; color: #e2ebff; }
.cta-section .hero-cta { justify-content: center; }
.cta-section .btn-primary {
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.cta-section .btn-primary:hover { background: #02060f; }

/* ===================== Footer ===================== */
.site-footer {
  position: relative;
  background:
    radial-gradient(ellipse 50% 60% at 85% 0%, rgba(47, 111, 237, 0.10), transparent 70%),
    var(--navy);
  color: #92a0bd;
  padding: 46px 0 20px;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 166, 255, 0.5), rgba(240, 180, 41, 0.5), transparent);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-inner strong { font-size: 1.05rem; }
.footer-right { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-contact a { color: var(--blue-light); font-weight: 600; white-space: nowrap; transition: color 0.2s ease; }
.footer-contact a:hover { color: var(--gold-light); }

.footer-social { display: flex; gap: 12px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(126, 166, 255, 0.08);
  border: 1px solid rgba(126, 166, 255, 0.28);
  color: var(--blue-light);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.social-btn:hover {
  background: var(--grad-blue);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(47, 111, 237, 0.45);
}

.footer-copy { text-align: center; font-size: 0.8rem; border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 18px; }

/* ===================== Floating WhatsApp ===================== */
.floating-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34e37a, #1ebe57);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  z-index: 200;
  animation: pulse 2.4s infinite;
  transition: transform 0.25s ease;
}
.floating-whatsapp:hover { transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===================== Featured In The Media ===================== */
.media-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 760px;
  margin-bottom: 18px;
}
.media-intro { color: #333; max-width: 820px; margin-bottom: 40px; }
.section-dark .media-subtitle { color: #c3cbdb; }

.media-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 50px;
}
.media-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 32, 68, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.media-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-title);
}
.media-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.media-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.media-outlet {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--blue);
  text-transform: uppercase;
}
.media-date {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
  white-space: nowrap;
  background: rgba(47, 111, 237, 0.07);
  border: 1px solid rgba(47, 111, 237, 0.14);
  border-radius: 999px;
  padding: 4px 12px;
}
.media-headline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.media-card p { color: var(--gray); font-size: 0.95rem; }

.media-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.media-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(15, 32, 68, 0.07);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 22px rgba(15, 32, 68, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.media-highlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(47, 111, 237, 0.3);
}
.media-highlight-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(126, 166, 255, 0.3), rgba(47, 111, 237, 0.08) 70%);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================== Newspaper Archive ===================== */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}
.archive-card { display: flex; flex-direction: column; gap: 14px; }
.archive-img-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(126, 166, 255, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.archive-img-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45), 0 0 35px rgba(47, 111, 237, 0.2);
  border-color: var(--gold);
}
.archive-img-btn img { width: 100%; height: auto; display: block; }
.archive-card figcaption { text-align: center; color: #c3cbdb; font-size: 0.9rem; font-weight: 600; }

/* ===================== Gallery ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.gallery-btn { aspect-ratio: 1; position: relative; }
.gallery-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-btn:hover img { transform: scale(1.08); }
.gallery-btn::before {
  content: "🔍";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(180deg, rgba(6, 13, 26, 0.0) 30%, rgba(6, 13, 26, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-btn:hover::before { opacity: 1; }

/* ===================== Lightbox ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 16, 0.94);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner {
  max-width: 92vw;
  max-height: 78vh;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(47, 111, 237, 0.15);
  cursor: zoom-in;
  transition: transform 0.3s ease;
  transform-origin: center center;
}
.lightbox-inner img.zoomed { cursor: zoom-out; transform: scale(1.8); }
.lightbox-caption { color: var(--white); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.3px; }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); transform: rotate(90deg); }

/* ===================== Scroll fade-up ===================== */
/* Visible by default so content never depends on JS running; JS opts elements
   into the hidden starting state right before observing them. */
.fade-up { transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.fade-armed { opacity: 0; transform: translateY(24px); }
.fade-up.fade-armed.in-view { opacity: 1; transform: translateY(0); }

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .fade-up.fade-armed { opacity: 1; transform: none; }
}

/* ===================== Responsive ===================== */
/* Collapse the nav into the hamburger early — 8 links + CTA need ~1000px */
@media (max-width: 1024px) {
  .main-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(6, 13, 26, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(126, 166, 255, 0.2);
  }
  .main-nav.open { transform: translateY(0); }
  .hamburger { display: flex; }
}

@media (max-width: 960px) {
  .about-grid, .sensei-grid, .location-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .media-cards { grid-template-columns: 1fr; }
  .media-highlights { grid-template-columns: repeat(2, 1fr); }
  .archive-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .hero .eyebrow::before, .hero .eyebrow::after { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero { padding: 110px 0 70px; }
  .hero-badges { gap: 22px; }
  .media-highlights { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
