/* ============================================================
   CREMEN COACHING — style.css
   ============================================================ */

:root {
  --bg:          #060606;
  --bg-2:        #0e0e0e;
  --bg-3:        #161616;
  --border:      #222222;
  --border-2:    #2e2e2e;
  --text:        #eeebe6;
  --muted:       #c8c5c0;
  --accent:      #7bd8ff;
  --accent-dark: #55c3f0;
  --accent-dim:  rgba(123,216,255,0.1);
  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Inter', sans-serif;
  --radius:      4px;
  --ease:        0.22s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 2px; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-head); line-height: 1.0; }
h1 { font-size: clamp(52px, 9vw, 108px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; line-height: 0.93; }
h2 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; text-transform: uppercase; }
h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; text-transform: uppercase; }

.accent { color: var(--accent); }

.eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--accent); flex-shrink: 0; }

/* ── Buttons ── */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #060606;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
}
.button:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(123,216,255,0.22); }
.button-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--border-2);
  transition: border-color var(--ease), color var(--ease), transform var(--ease);
}
.button-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.button-dark { background: #060606; color: var(--accent); border: 1px solid rgba(123,216,255,0.3); }
.button-dark:hover { background: rgba(123,216,255,0.08); box-shadow: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 40px;
  height: 64px;
  background: rgba(6,6,6,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.logo { height: 50px; width: auto; }
.desktop-nav { display: flex; align-items: center; gap: 2px; }
.desktop-nav a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color var(--ease);
}
.desktop-nav a:hover { color: var(--text); }
.nav-cta { color: var(--accent) !important; border: 1px solid rgba(123,216,255,0.25); }
.nav-cta:hover { background: var(--accent-dim) !important; border-color: var(--accent) !important; }
.socials { display: flex; gap: 16px; align-items: center; }
.socials a { color: var(--muted); transition: color var(--ease); display: flex; align-items: center; }
.socials a:hover { color: var(--accent); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 1px; transition: all 0.28s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  z-index: 90;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-head); font-size: 40px; font-weight: 900; text-transform: uppercase; color: var(--text); transition: color var(--ease); }
.mobile-nav a:hover { color: var(--accent); }
.mobile-cta { color: var(--accent) !important; }
.mobile-socials { display: flex; gap: 28px; margin-top: 28px; }
.mobile-socials a { color: var(--muted); transition: color var(--ease); }
.mobile-socials a:hover { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  scroll-snap-align: start;
  position: relative;
  min-height: 100svh;
  padding-top: 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,6,6,0.92) 0%, rgba(6,6,6,0.7) 50%, rgba(6,6,6,0.4) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 40px;
  max-width: 680px;
}
.hero-sub {
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  max-width: 440px;
  margin: 16px 0 32px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-services-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.bar-divider { color: var(--accent); }

/* ============================================================
   ABOUT
   ============================================================ */
.intro {
  scroll-snap-align: start;
  min-height: 100svh;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.intro-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 40px;
  width: 100%;
}
.intro-photo {
  overflow: hidden;
  border-radius: var(--radius);
}
.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}
.intro-text h2 { margin-bottom: 20px; }
.intro-text p {
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.intro-text p strong { color: var(--text); font-weight: 600; }
.intro-text .button { margin-top: 12px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-wrap { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* Services header */
.services-header {
  scroll-snap-align: start;
  min-height: 100svh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.svc-header-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  padding: 60px 0;
}
.svc-header-text h2 { margin-bottom: 4px; }
.svc-header-text h3 { margin-bottom: 20px; }
.svc-header-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
}
.svc-header-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  opacity: 0.88;
}

/* Service rows — consistent two-column layout */
.svc-row {
  scroll-snap-align: start;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  position: relative;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.svc-row.show { opacity: 1; transform: translateY(0); }

/* Text side */
.svc-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 64px 56px 64px 56px;
}
.svc-row-reverse .svc-text {
  padding: 64px 56px 64px 56px;
}
.svc-text h2 { margin-bottom: 16px; }
.svc-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.feature-list li {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-list li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.price {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.price span { color: var(--accent); }

/* Image side */
.svc-img {
  position: relative;
  overflow: hidden;
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.85;
  transition: opacity var(--ease), transform 0.6s ease;
}
.svc-row:hover .svc-img img { opacity: 0.95; transform: scale(1.02); }

/* Reversed row — image left, text right */
.svc-row-reverse .svc-text { padding: 64px 0 64px 56px; }
.svc-row-reverse .svc-img { order: -1; }

/* Badge */
.svc-img-badge { position: relative; }
.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #060606;
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 2;
}

/* 1-on-1 background image effect */
.service-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/training1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
}
.service-bg > * { position: relative; z-index: 1; }
.service-bg .svc-img img { opacity: 0.5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  scroll-snap-align: start;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px;
}
.testimonials-header { max-width: 1100px; margin: 0 auto 48px; width: 100%; }
.testimonials-header h2 { margin: 8px 0 12px; }
.testimonials-sub { font-size: 17px; color: var(--muted); font-weight: 400; }
.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.t-card {
  background: var(--bg-2);
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease, background var(--ease);
}
.t-card.show { opacity: 1; transform: translateY(0); }
.t-card:hover { background: var(--bg-3); }
.t-stars { color: var(--accent); font-size: 13px; letter-spacing: 3px; margin-bottom: 16px; }
.t-quote {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 28px;
  position: relative;
  padding-top: 8px;
}
.t-quote::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.35;
  position: absolute;
  top: -16px;
  left: -6px;
  line-height: 1;
}
.t-author { border-top: 1px solid var(--border); padding-top: 18px; }
.t-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.t-detail { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ============================================================
   ENQUIRY
   ============================================================ */
.enquire-section {
  scroll-snap-align: start;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 80px 40px;
  background: var(--bg);
}
.enquire-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.enquire-info h2 { margin: 8px 0 18px; }
.enquire-lead { font-size: 17px; color: var(--muted); font-weight: 400; line-height: 1.7; margin-bottom: 36px; }
.trust-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.trust-list li { display: flex; align-items: flex-start; gap: 14px; }
.trust-icon {
  width: 36px; height: 36px;
  background: var(--accent-dim);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.trust-list strong { display: block; font-family: var(--font-head); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.trust-list p { font-size: 14px; color: var(--muted); }
.enquire-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.enquiry-form h3 { margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: var(--radius);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--ease), background var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--border-2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); background: var(--bg); }
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-btn { width: 100%; justify-content: center; font-size: 14px; padding: 15px; margin-top: 6px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }
.form-success { display: none; text-align: center; padding: 16px 0; }
.form-success.show { display: block; }
.success-icon {
  width: 56px; height: 56px;
  background: var(--accent-dim);
  border: 1px solid rgba(123,216,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--accent);
  margin: 0 auto 18px;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--muted); font-weight: 300; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  scroll-snap-align: start;
  background: var(--accent);
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'CC';
  position: absolute;
  font-family: var(--font-head);
  font-size: 400px; font-weight: 900;
  color: rgba(0,0,0,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1; pointer-events: none;
  letter-spacing: -0.05em;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 900; text-transform: uppercase;
  color: #060606; margin-bottom: 8px; position: relative;
}
.cta-band p { font-size: 17px; color: rgba(0,0,0,0.6); margin-bottom: 28px; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  scroll-snap-align: start;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 56px 40px 24px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px; padding-bottom: 40px;
}
.footer-logo { height: 36px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 240px; }
.footer-socials { display: flex; gap: 18px; margin-top: 20px; }
.footer-socials a { color: var(--muted); transition: color var(--ease); display: flex; align-items: center; }
.footer-socials a:hover { color: var(--accent); }
.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: var(--muted); transition: color var(--ease); }
.footer-nav a:hover { color: var(--text); }
.footer-contact p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 22px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted); text-align: center;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.reveal.show { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .site-header { padding: 0 24px; }
  .desktop-nav { display: none; }
  .socials { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 52px 24px 48px; }
  .hero-sub { font-size: 16px; }
  .hero-services-bar { gap: 8px; font-size: 11px; }

  .intro { min-height: auto; }
  .intro-inner { grid-template-columns: 1fr; padding: 40px 24px; gap: 24px; }
  .intro-photo { max-height: 320px; overflow: hidden; border-radius: 4px; }
  .intro-photo img { object-position: center top; }
  .intro-text h2 { font-size: clamp(28px, 7vw, 40px); }
  .intro-text p { font-size: 15px; }

  .services-wrap { padding: 0; }
  .services-header { min-height: auto; }
  .svc-header-inner { grid-template-columns: 1fr; padding: 40px 24px; gap: 24px; }
  .svc-header-img { display: none; }

  .svc-row {
    min-height: auto;
    max-height: none;
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto;
  }
  .svc-row .svc-img { order: 1; height: 280px; }
  .svc-row .svc-text { order: 2; padding: 32px 24px; }
  .svc-row-reverse { direction: ltr; }
  .svc-row-reverse .svc-img { order: 1; height: 280px; }
  .svc-row-reverse .svc-text { order: 2; padding: 32px 24px; }

  .svc-img { width: 100%; overflow: hidden; }
  .svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    aspect-ratio: unset;
  }

  h2 { font-size: clamp(22px, 5vw, 32px); }
  .svc-desc { font-size: 13px; }
  .feature-list li { font-size: 13px; }

  .testimonials { min-height: auto; padding: 48px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .enquire-section { min-height: auto; padding: 48px 24px; }
  .enquire-inner { grid-template-columns: 1fr; gap: 32px; }
  .enquire-form-wrap { padding: 24px 18px; max-height: none; }

  .cta-band { padding: 48px 24px; }

  .site-footer { padding: 40px 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-services-bar { flex-direction: column; align-items: flex-start; gap: 6px; }
  .bar-divider { display: none; }
}

/* ============================================================
   SCREENING FORM — additional styles
   ============================================================ */
.form-section-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin: 28px 0 18px;
}
.form-section-label:first-of-type { margin-top: 0; }

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.radio-label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--ease);
}
.radio-label:hover,
.checkbox-label:hover { color: var(--text); }
.radio-label input,
.checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 0;
}

/* Make the form scrollable within the section */
.enquire-form-wrap {
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-2) var(--bg-2);
}
.enquire-form-wrap::-webkit-scrollbar { width: 4px; }
.enquire-form-wrap::-webkit-scrollbar-track { background: var(--bg-2); }
.enquire-form-wrap::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 2px; }
