:root {
  --primary: #123b5c;
  --primary-dark: #0d2d46;
  --accent: #d79d56;
  --accent-soft: #f6ead9;
  --text: #1d2430;
  --muted: #5e6a77;
  --white: #ffffff;
  --light: #f4f7fb;
  --border: #e3e9f0;
  --success: #2e7d61;
  --shadow: 0 16px 40px rgba(18, 59, 92, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f8fafc;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.9rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}
.topbar .links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar a { color: var(--white); opacity: 0.9; }

.header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(18,59,92,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--primary);
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #2a6ca5);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(18,59,92,0.2);
}
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--primary);
  font-weight: 600;
  transition: 0.2s ease;
}
.nav a:hover, .nav a.active {
  background: var(--light);
  color: var(--primary-dark);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  color: var(--primary);
  padding: 6px 10px;
}

.hero {
  background: linear-gradient(135deg, rgba(18,59,92,0.94), rgba(28,92,135,0.86)),
    url('https://images.unsplash.com/photo-1521587760476-6c12a4b040da?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 90px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 18px;
}
h1, h2, h3 { margin: 0 0 16px; line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: 1.4rem; }
p { margin-top: 0; color: var(--muted); }
.hero p { color: rgba(255,255,255,0.82); }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 2px solid transparent;
}
.btn.primary {
  background: var(--accent);
  color: var(--primary-dark);
}
.btn.primary:hover { transform: translateY(-2px); }
.btn.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.feature-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.feature-box .card, .card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 14px 30px rgba(9, 20, 33, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-box .card:hover, .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(9, 20, 33, 0.16);
}
.feature-box .card .icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-soft), #ffffff);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  border: 1px solid rgba(215,157,86,0.22);
}
.feature-box .card h3 {
  color: var(--primary);
  margin-bottom: 8px;
}
.feature-box .card p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 90px 0;
}
.section-title {
  max-width: 680px;
  margin-bottom: 28px;
}
.section-title p { margin-bottom: 0; }
.grid-3, .grid-4 {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.stats {
  background: linear-gradient(180deg, var(--light), #edf4fa);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat-box {
  text-align: center;
  padding: 24px 18px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
}
.stat-box strong {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--primary);
}

.book-card, .event-card, .plan-card, .resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(17,24,39,0.04);
}
.book-card .img-wrap {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.book-card .content, .event-card .content, .resource-card .content, .plan-card .content {
  padding: 20px;
}
.badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--light);
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--muted);
}
.link-arrow {
  color: var(--primary);
  font-weight: 700;
}

.member-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan-card.highlight {
  border-color: rgba(215,157,86,0.7);
  box-shadow: 0 16px 40px rgba(215,157,86,0.12);
  transform: translateY(-4px);
}
.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 10px 0 20px;
}
.price small { font-size: 0.9rem; color: var(--muted); }
ul.clean {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
ul.clean li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--text);
}
ul.clean li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.quote {
  background: linear-gradient(135deg, var(--primary), #1a4f78);
  color: var(--white);
  border-radius: 26px;
  padding: 30px;
}
.quote p { color: rgba(255,255,255,0.84); }

.banner {
  background: linear-gradient(120deg, #f6ead9, #eef6ff);
  border-radius: 30px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.page-hero {
  background: linear-gradient(135deg, rgba(18,59,92,0.95), rgba(46,125,97,0.75)),
    url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 70px 0 48px;
}
.page-hero .crumbs {
  opacity: 0.8;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.image-panel {
  min-height: 320px;
  border-radius: 24px;
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  box-shadow: var(--shadow);
}
.timeline {
  display: grid;
  gap: 18px;
}
.timeline-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  padding: 18px 20px;
}
.team-grid,
.event-grid,
.resource-grid,
.blog-grid,
.faq-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}
.team-grid { grid-template-columns: repeat(3, 1fr); }
.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.filter-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--primary);
  font-weight: 700;
}
.filter-tag.active {
  background: var(--primary);
  color: var(--white);
}

.form-card, .info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(17,24,39,0.04);
}
label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  margin-bottom: 18px;
  background: #fff;
}
textarea { min-height: 140px; resize: vertical; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}

.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 40px 0 20px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.footer h3 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.footer a { color: rgba(255,255,255,0.8); }
.footer p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 24px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.8);
}
.footer-credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.footer-credit a {
  color: var(--accent);
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1ecf6d, #18a85a);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(24, 168, 90, 0.38);
  border: 4px solid rgba(255,255,255,0.9);
  z-index: 50;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 46px rgba(24, 168, 90, 0.45);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.thankyou-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 70px 0;
}
.thankyou-box {
  max-width: 620px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 42px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}
.thankyou-box .check {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(46, 125, 97, 0.12);
  color: var(--success);
  display: grid;
  place-items: center;
  font-size: 2.5rem;
}

@media (max-width: 960px) {
  .hero-grid, .split, .footer-top, .contact-grid {
    grid-template-columns: 1fr;
  }
  .grid-3, .member-plans, .team-grid, .event-grid, .resource-grid, .blog-grid, .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
}

@media (max-width: 620px) {
  .topbar-inner {
    display: block;
    text-align: center;
  }
  .topbar .links {
    justify-content: center;
    margin-top: 8px;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .banner, .footer-bottom {
    display: block;
  }
  .feature-box, .grid-3, .grid-4, .member-plans, .team-grid, .event-grid, .resource-grid, .blog-grid, .faq-grid, .stat-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 60px; }
  h1 { font-size: 2.5rem; }
  .btn {
    width: 100%;
  }
  .btn-row {
    flex-direction: column;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-credit {
    justify-content: flex-start;
  }
  .nav {
    left: 12px;
    right: 12px;
  }
}
