/* ============================================================
   Variables & Reset
   ============================================================ */
:root {
  --primary:       #4a2080;
  --primary-dark:  #35155e;
  --primary-light: #6b3ea6;
  --accent:        #f0b429;
  --accent-dark:   #d4960f;
  --bg:            #FFFFF0;
  --bg-section:    #f5f5e0;
  --text:          #1a1a2e;
  --text-muted:    #5a5a7a;
  --white:         #FFFFF0;
  --border:        #e8e0f5;
  --shadow:        0 4px 24px rgba(74,32,128,.10);
  --shadow-md:     0 8px 40px rgba(74,32,128,.15);
  --radius:        12px;
  --t:             .3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.gold        { color: var(--accent); }
.section-sub { color: var(--text-muted); font-size: 1rem; }
.lead        { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.75; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.2; margin-bottom: 14px; }
h3 { font-size: 1.15rem; margin-bottom: 10px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(240,180,41,.13); color: var(--accent-dark);
  font-size: .8rem; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.section-tag.light { background: rgba(240,180,41,.2); color: var(--accent); }
.section-header    { text-align: center; max-width: 700px; margin: 0 auto 52px; }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: 50px;
  font-weight: 600; font-size: .95rem; transition: all var(--t);
  cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent  { background: var(--accent); color: var(--primary-dark); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(240,180,41,.4); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: var(--white); }

/* ============================================================
   Top Bar
   ============================================================ */
.topbar {
  background: var(--primary-dark); color: rgba(255,255,255,.85);
  font-size: .78rem; padding: 6px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.topbar a { color: var(--accent); }
.topbar-right { display: flex; gap: 20px; align-items: center; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--white); border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(74,32,128,.08);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.site-logo img { height: 90px; width: auto; background: transparent; display: block; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 8px 16px; border-radius: 8px; font-weight: 500; font-size: .92rem;
  color: var(--text); transition: all var(--t);
}
.main-nav a:hover,
.main-nav a.active { color: var(--primary); background: var(--bg-section); }
.main-nav a.active { font-weight: 700; }
.main-nav a.nav-portal-link {
  background: var(--primary); color: var(--white); margin-left: 6px; padding: 9px 18px;
  display: inline-flex; align-items: center; gap: 7px;
}
.main-nav a.nav-portal-link:hover { background: var(--primary-dark); color: var(--white); }

.close-nav { display: none; }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px;
}
.hamburger span { display: block; width: 25px; height: 2.5px; background: var(--primary); border-radius: 3px; transition: var(--t); }

/* ============================================================
   Page-header banner (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--white); text-align: center; padding: 72px 24px;
}
.page-header .breadcrumb { font-size: .82rem; opacity: .7; margin-bottom: 10px; }
.page-header .breadcrumb a { color: var(--accent); }
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.page-header p  { font-size: 1.05rem; opacity: .88; max-width: 580px; margin: 0 auto; }

/* ============================================================
   Hero (homepage)
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--primary-dark);
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(35,10,70,.80) 0%, rgba(35,10,70,.50) 55%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 620px;
  padding: 40px 24px 40px 60px;
}
.hero-eyebrow {
  display: inline-block; background: var(--accent); color: var(--primary-dark);
  font-size: .75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px; margin-bottom: 18px;
}
.hero-rule { width: 52px; height: 3px; background: var(--accent); margin: 14px 0 22px; border-radius: 2px; }
.hero h1 {
  color: var(--white); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 12px;
}
.hero-tagline { color: var(--accent); font-size: clamp(1rem, 2vw, 1.3rem); font-style: italic; margin-bottom: 18px; }
.hero-body { color: rgba(255,255,255,.88); font-size: 1rem; margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   Section wrapper
   ============================================================ */
section { padding: 80px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.bg-light   { background: var(--bg-section); }
.bg-white   { background: var(--white); }
.bg-dark    { background: var(--primary-dark); color: var(--white); }
.bg-grad    { background: linear-gradient(135deg, var(--primary-dark), var(--primary-light)); color: var(--white); }

/* ============================================================
   Mission / Intro section
   ============================================================ */
.mission-section { background: var(--white); }
.mission-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mission-text h2 { color: var(--primary); }
.mission-feature-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.mission-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px; background: var(--bg-section); border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.mission-feature-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.mission-feature h4 { font-size: .97rem; color: var(--primary); margin-bottom: 2px; }
.mission-feature p  { font-size: .87rem; color: var(--text-muted); margin: 0; }

.mission-image-wrap {
  display: grid; grid-template-rows: auto; gap: 16px;
}
.mission-image-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* ============================================================
   Methodology
   ============================================================ */
.methodology-section { background: var(--bg-section); }
.methodology-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px;
}
.method-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 22px;
  text-align: center; box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t);
  border-top: 4px solid var(--primary);
}
.method-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.method-icon { font-size: 2.2rem; margin-bottom: 14px; }
.method-card h4 { font-size: .97rem; color: var(--primary); margin-bottom: 8px; }
.method-card p  { font-size: .87rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   Training Formats
   ============================================================ */
.formats-section { background: var(--white); }
.formats-tabs    { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.tab-btn {
  padding: 9px 22px; border-radius: 50px; border: 2px solid var(--border);
  background: var(--white); font-size: .88rem; font-weight: 600; cursor: pointer;
  color: var(--text-muted); transition: all var(--t);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.format-panel { display: none; }
.format-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.format-info h3   { color: var(--primary); font-size: 1.4rem; margin-bottom: 8px; }
.format-duration  { display: inline-block; background: var(--accent); color: var(--primary-dark); font-size: .78rem; font-weight: 700; padding: 3px 12px; border-radius: 50px; margin-bottom: 14px; }
.format-info p    { color: var(--text-muted); font-size: .95rem; line-height: 1.7; }
.format-lists     { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.format-list-box  { background: var(--bg-section); border-radius: var(--radius); padding: 20px; }
.format-list-box h5 { color: var(--primary); font-size: .88rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .8px; }
.format-list-box li { font-size: .85rem; color: var(--text-muted); padding: 4px 0; padding-left: 16px; position: relative; }
.format-list-box li::before { content: '✓'; color: var(--accent-dark); position: absolute; left: 0; font-weight: 700; }
.format-img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 22px; box-shadow: var(--shadow);
}

/* ============================================================
   Differentiators / Why Choose Us
   ============================================================ */
.diff-section { background: var(--bg-section); }
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.diff-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t);
  display: flex; gap: 18px; align-items: flex-start;
}
.diff-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.diff-icon { font-size: 2rem; flex-shrink: 0; }
.diff-card h4 { font-size: 1rem; color: var(--primary); margin-bottom: 6px; }
.diff-card p  { font-size: .87rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   Training Programs grid
   ============================================================ */
.programs-section { background: var(--white); }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.program-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t);
  background: var(--white); border: 1px solid var(--border);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.program-card-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white); font-size: 2.4rem; text-align: center; padding: 32px 20px;
}
.program-card-body { padding: 20px; }
.program-card-body h3 { color: var(--primary); font-size: 1rem; margin-bottom: 8px; }
.program-card-body p  { font-size: .87rem; color: var(--text-muted); margin-bottom: 14px; }
.program-card-body .btn { font-size: .82rem; padding: 7px 18px; }

/* ============================================================
   Trust / Credibility bar
   ============================================================ */
.trust-section { background: var(--primary-dark); padding: 48px 24px; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.trust-item { text-align: center; color: var(--white); }
.trust-icon { font-size: 2.4rem; color: var(--accent); margin-bottom: 10px; }
.trust-item h4 { font-size: 1rem; margin-bottom: 6px; }
.trust-item p  { font-size: .85rem; opacity: .75; margin: 0; }

/* ============================================================
   Stats (about page)
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white); padding: 64px 24px;
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.stat-item   { text-align: center; }
.stat-num    { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--accent); line-height: 1; }
.stat-suffix { font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.stat-label  { font-size: .88rem; opacity: .85; margin-top: 6px; }

/* ============================================================
   About sections
   ============================================================ */
.about-intro { background: var(--white); }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--accent); color: var(--primary-dark);
  border-radius: var(--radius); padding: 16px 20px; text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-size: 1.8rem; font-weight: 800; }
.about-badge span   { font-size: .75rem; font-weight: 600; }

/* ============================================================
   Why Choose / checklist
   ============================================================ */
.why-section { background: var(--bg-section); }
.why-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.why-item {
  background: var(--white); border-radius: var(--radius); padding: 22px 20px;
  display: flex; gap: 14px; align-items: flex-start; box-shadow: var(--shadow);
}
.why-check {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.why-item h4 { color: var(--primary); font-size: .97rem; margin-bottom: 4px; }
.why-item p  { font-size: .86rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   Mission / Vision
   ============================================================ */
.mv-section { background: var(--white); }
.mv-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card {
  border-radius: var(--radius); padding: 36px 32px;
  box-shadow: var(--shadow);
}
.mv-card.mission { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white); }
.mv-card.vision  { background: var(--bg-section); color: var(--text); }
.mv-card .mv-icon { font-size: 2.4rem; margin-bottom: 16px; }
.mv-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.mv-card p  { font-size: .95rem; line-height: 1.75; opacity: .9; margin: 0; }

/* ============================================================
   Certifications
   ============================================================ */
.certs-section { background: var(--bg-section); }
.certs-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.cert-card {
  background: var(--white); border-radius: var(--radius); padding: 24px 20px;
  text-align: center; box-shadow: var(--shadow); transition: transform var(--t);
  border-bottom: 4px solid var(--accent);
}
.cert-card:hover { transform: translateY(-5px); }
.cert-icon { font-size: 2.4rem; margin-bottom: 12px; color: var(--accent-dark); }
.cert-card h4 { font-size: .92rem; color: var(--primary); line-height: 1.3; margin: 0; }

/* ============================================================
   Coach / Trainer
   ============================================================ */
.coach-section { background: var(--white); }
.coach-grid    { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; }
.coach-photo   { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.coach-name    { font-size: 2rem; color: var(--primary); margin-bottom: 4px; }
.coach-title   { color: var(--accent-dark); font-weight: 600; margin-bottom: 20px; }
.coach-bio     { color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.coach-tags    { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.coach-tag {
  background: var(--bg-section); color: var(--primary);
  font-size: .82rem; font-weight: 600; padding: 5px 14px; border-radius: 50px;
  border: 1px solid var(--border);
}

/* ============================================================
   Testimonials
   ============================================================ */
.testi-section { background: var(--bg-section); }
.testi-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testi-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow); position: relative;
}
.testi-stars   { color: var(--accent); font-size: 1rem; margin-bottom: 14px; }
.testi-quote   { font-size: .93rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author  { display: flex; align-items: center; gap: 12px; }
.testi-avatar  {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testi-name    { font-weight: 700; font-size: .93rem; color: var(--text); }
.testi-role    { font-size: .8rem; color: var(--text-muted); }

/* ============================================================
   Services page
   ============================================================ */
.services-intro { background: var(--white); }
.services-grid  { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card-head {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white); padding: 28px 24px; display: flex; align-items: center; gap: 16px;
}
.service-card-head .svc-icon { font-size: 2.2rem; }
.service-card-head h3  { font-size: 1.1rem; margin: 0; }
.service-card-body { padding: 22px 24px; }
.service-card-body p { font-size: .92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.service-card-body .btn { font-size: .85rem; padding: 8px 20px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--bg-section); }
.faq-list    { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item    { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: .97rem; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: color var(--t);
}
.faq-question:hover { color: var(--primary); }
.faq-question.open  { color: var(--primary); }
.faq-arrow { font-size: .85rem; flex-shrink: 0; transition: transform var(--t); }
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: .92rem; color: var(--text-muted); line-height: 1.75; }
.faq-answer.open { display: block; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-section { background: var(--white); }
.contact-grid    { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }
.contact-info h3 { color: var(--primary); font-size: 1.6rem; margin-bottom: 8px; }
.contact-info .lead { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-detail  { display: flex; align-items: flex-start; gap: 16px; }
.contact-det-icon {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-section); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-det-text strong { display: block; font-size: .88rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-det-text a, .contact-det-text span { font-size: .97rem; color: var(--text); font-weight: 500; }
.contact-det-text a:hover { color: var(--primary); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-section); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all var(--t); border: 1px solid var(--border);
}
.social-link:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.contact-form-box {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 32px; box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-box h4 { color: var(--primary); font-size: 1.2rem; margin-bottom: 22px; }

/* ── Form elements ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .88rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: .93rem; color: var(--text); background: var(--white);
  transition: border-color var(--t), box-shadow var(--t); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(74,32,128,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a2080' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-submit { width: 100%; padding: 13px; font-size: 1rem; font-weight: 700; border: none; border-radius: 8px; background: var(--primary); color: var(--white); cursor: pointer; transition: background var(--t); }
.form-submit:hover { background: var(--primary-dark); }
.form-submit:disabled { opacity: .65; cursor: not-allowed; }
.form-message { margin-top: 14px; padding: 12px 16px; border-radius: 8px; font-size: .92rem; display: none; }
.form-message.success { background: #e8f9f0; color: #1a7f4e; border: 1px solid #b8e8cf; display: block; }
.form-message.error   { background: #fef2f2; color: #c53030; border: 1px solid #fcc; display: block; }

/* ── Enquiry form (homepage) ── */
.enquiry-section { background: var(--bg-section); }
.enquiry-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
.enquiry-info h2 { color: var(--primary); }
.enquiry-info p  { color: var(--text-muted); margin-top: 12px; }
.enquiry-info .contact-details { margin-top: 28px; }
.enquiry-form-box {
  background: var(--white); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow-md);
}

/* ============================================================
   Gallery strip
   ============================================================ */
.gallery-section { background: var(--white); padding: 60px 0; }
.gallery-strip   { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.gallery-item    { overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.07); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.82); padding: 56px 24px 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
  max-width: 1200px; margin: 0 auto 40px;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; opacity: .82; margin-bottom: 20px; }
.footer-col h4 { color: var(--white); font-size: .97rem; margin-bottom: 16px; border-bottom: 2px solid var(--accent); padding-bottom: 8px; display: inline-block; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .87rem; opacity: .78; transition: opacity var(--t); }
.footer-col ul li a:hover { opacity: 1; color: var(--accent); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: .87rem; }
.footer-contact-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
  transition: all var(--t); color: rgba(255,255,255,.78);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--primary-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); text-align: center;
  padding: 20px 24px; font-size: .82rem; opacity: .65; max-width: 1200px; margin: 0 auto;
}

/* ============================================================
   Responsive
   ============================================================ */
/* ============================================================
   Recruitment page
   ============================================================ */
.recruit-services-grid {
  display: grid; grid-template-columns: 340px 1fr; gap: 32px; align-items: start;
}
.recruit-feature-img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.recruit-cards-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.recruit-card {
  background: var(--white); border-radius: var(--radius); padding: 26px 22px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
}
.recruit-card:hover   { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.recruit-card.dark    { background: var(--primary); color: var(--white); border-color: var(--primary); }
.recruit-card .rc-icon { font-size: 2rem; margin-bottom: 14px; }
.recruit-card h4      { font-size: 1rem; margin-bottom: 8px; }
.recruit-card p       { font-size: .87rem; line-height: 1.65; margin: 0; opacity: .85; }
.recruit-card a       { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: .85rem; font-weight: 600; color: var(--accent); }
.recruit-card.dark a  { color: var(--accent); }

.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0; }
.process-step { text-align: center; padding: 32px 20px; position: relative; }
.process-step:not(:last-child)::after {
  content: '→'; position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--accent); font-weight: 700;
}
.process-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.process-step h4 { font-size: .97rem; color: var(--primary); margin-bottom: 6px; }
.process-step p  { font-size: .84rem; color: var(--text-muted); margin: 0; }

.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.industry-pill {
  background: var(--white); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 18px 14px; text-align: center; transition: all var(--t);
}
.industry-pill:hover { border-color: var(--primary); background: var(--bg-section); }
.industry-pill .ind-icon { font-size: 2rem; margin-bottom: 8px; }
.industry-pill span { font-size: .88rem; font-weight: 600; color: var(--primary); display: block; }

.clients-strip { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: center; margin-top: 32px; }
.client-badge {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 28px; font-size: .97rem; font-weight: 700; color: var(--primary);
  box-shadow: var(--shadow); transition: all var(--t);
}
.client-badge:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }

.recruit-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: var(--white); text-align: center; padding: 72px 24px;
}
.recruit-cta h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.recruit-cta p  { opacity: .88; max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.recruit-cta .btn-accent { font-size: 1.05rem; padding: 14px 36px; }

.recruit-form-section { background: var(--bg-section); }
.recruit-form-grid    { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }

@media (max-width: 900px) {
  .recruit-services-grid { grid-template-columns: 1fr; }
  .recruit-cards-grid    { grid-template-columns: 1fr; }
  .process-step:not(:last-child)::after { display: none; }
  .recruit-form-grid    { grid-template-columns: 1fr; }
}

/* ============================================================
   Certificate gallery
   ============================================================ */
.cert-gallery      { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.cert-img-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t);
  border: 1px solid var(--border); cursor: pointer;
}
.cert-img-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cert-img-card img  { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: top; display: block; }
.cert-img-label     { padding: 14px 16px; border-top: 1px solid var(--border); }
.cert-img-label h4  { font-size: .92rem; color: var(--primary); margin-bottom: 4px; }
.cert-img-label p   { font-size: .8rem; color: var(--text-muted); margin: 0; }
.cert-img-label .cert-badge {
  display: inline-block; margin-top: 8px; background: rgba(240,180,41,.15);
  color: var(--accent-dark); font-size: .75rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
}

/* ── Lightbox ── */
.cert-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.85); align-items: center; justify-content: center; padding: 24px;
}
.cert-lightbox.open { display: flex; }
.cert-lightbox img  { max-width: 900px; max-height: 90vh; width: 100%; border-radius: 8px; box-shadow: 0 20px 80px rgba(0,0,0,.6); }
.cert-lightbox-close {
  position: absolute; top: 20px; right: 28px; background: none; border: none;
  color: #fff; font-size: 2.5rem; cursor: pointer; line-height: 1; opacity: .85;
}
.cert-lightbox-close:hover { opacity: 1; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .close-nav { display: block; background: none; border: none; font-size: 1.8rem; color: var(--primary); cursor: pointer; padding: 4px 8px; align-self: flex-end; }
  .main-nav {
    position: fixed; inset: 0 0 0 30%; z-index: 1000;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 24px 20px; gap: 4px; box-shadow: -4px 0 30px rgba(0,0,0,.15);
    transform: translateX(100%); transition: transform var(--t);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 12px 16px; font-size: 1rem; border-radius: 8px; }

  .hero-content { padding: 40px 24px; }
  .hero h1 { font-size: 2rem; }
  .mission-grid,
  .about-split,
  .coach-grid,
  .contact-grid,
  .enquiry-wrap,
  .mv-grid      { grid-template-columns: 1fr; gap: 32px; }
  .about-split.reverse { direction: ltr; }
  .format-panel.active { grid-template-columns: 1fr; }
  .format-lists { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 56px 16px; }
  .hero { min-height: 80vh; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .coach-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-header { padding: 52px 16px; }
}
