@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,300&display=swap');

:root {
  --navy:      #1a2e5a;
  --navy-dk:   #111e3d;
  --navy-lt:   #2a4070;
  --salmon:    #e8614a;
  --salmon-lt: #f07860;
  --teal:      #3ab5b5;
  --teal-lt:   #4ecece;
  --white:     #ffffff;
  --off-white: #f8f9fc;
  --light:     #eef1f7;
  --muted:     #6b7a99;
  --text:      #1a2e5a;
  --font:      'Avenir LT Std', 'Avenir', 'Jost', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

/* =========================================
   NAV
   ========================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.nav-logo img { display: block; height: 52px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a svg {
  width: 13px;
  height: 13px;
  opacity: 0.55;
  flex-shrink: 0;
}

.nav-links a:hover { color: var(--salmon); }
.nav-links a:hover svg { opacity: 0.85; }

.nav-cta {
  background: var(--salmon) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 3px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-variant: small-caps;
  transition: background 0.2s !important;
  display: inline-flex !important;
  align-items: center !important;
}

.nav-cta:hover { background: var(--salmon-lt) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); }

main { padding-top: 72px; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  color: var(--white);
  padding: 6rem 2rem;
  text-align: center;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,46,90,0.7);
  z-index: 0;
}

/* YOUTUBE HERO WRAPPER */
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-variant: small-caps;
  transition: background 0.2s, color 0.2s;
}

.btn-salmon { background: var(--salmon); color: var(--white); }
.btn-salmon:hover { background: var(--salmon-lt); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-lt); color: var(--white); }

/* =========================================
   SECTIONS
   ========================================= */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-inner-narrow { max-width: 780px; margin: 0 auto; }

.section-light { background: var(--off-white); }
.section-dots {
  background-color: var(--off-white);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1.5' fill='%231a2e5a' fill-opacity='0.055'/%3E%3C/svg%3E");
}
.section-navy { background: var(--navy); color: var(--white); }
.section-navy-dk { background: var(--navy-dk); color: var(--white); }

section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.section-navy h2, .section-navy-dk h2 { color: var(--white); }
.section-navy p, .section-navy-dk p { opacity: 0.92; }

section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.section-navy h3, .section-navy-dk h3 { color: var(--teal-lt); }
section p { margin-bottom: 1rem; }
section p:last-child { margin-bottom: 0; }

/* =========================================
   TEAL RULE
   ========================================= */
.teal-rule {
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--teal) 20%, var(--teal) 80%, transparent);
  opacity: 0.3;
  margin: 0;
}

/* =========================================
   GRIDS
   ========================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.four-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

/* =========================================
   CARDS
   ========================================= */
.card {
  background: var(--white);
  border: 1px solid var(--light);
  border-left: 3px solid var(--teal);
  border-radius: 0 6px 6px 0;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(26,46,90,0.07);
}

.card h3 { color: var(--navy); }

.card .meta {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.card .card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--salmon);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.card .card-link:hover { color: var(--salmon-lt); }

.card-icon {
  color: var(--teal);
  margin-bottom: 1rem;
}

.card-icon svg { width: 32px; height: 32px; }

/* =========================================
   PROBLEMS LIST
   ========================================= */
.problems-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.problems-list li {
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-left: 3px solid var(--teal);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 1px 6px rgba(26,46,90,0.06);
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.problems-list li svg { color: var(--salmon); flex-shrink: 0; margin-top: 3px; width: 18px; height: 18px; }

/* =========================================
   CREDENTIAL ITEMS (Why Wilde People)
   ========================================= */
.credential-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.credential-item svg { color: var(--teal); flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; }
.credential-item h3 { margin-bottom: 0.4rem; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--light);
  border-left: 3px solid var(--teal);
  border-radius: 0 6px 6px 0;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(26,46,90,0.06);
  font-style: italic;
  font-weight: 300;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--teal);
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-style: normal;
}

.testimonial p { padding-top: 1.5rem; }

/* =========================================
   LOGO STRIP
   ========================================= */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

.logo-box {
  background: var(--light);
  border-radius: 4px;
  padding: 0.6rem 1.2rem;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================================
   CTA BAND
   ========================================= */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-band h2 { color: var(--white); font-size: 2rem; margin-bottom: 1rem; }
.cta-band p { max-width: 580px; margin: 0 auto 2rem; opacity: 0.9; }

/* =========================================
   TRAINING BANNER
   ========================================= */
.training-banner {
  background: var(--salmon);
  color: var(--white);
  text-align: center;
  padding: 1.4rem 2rem;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.training-banner svg { width: 18px; height: 18px; opacity: 0.85; }

/* =========================================
   PROGRAMME CARDS (Training page)
   ========================================= */
.programme-cards { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }

.programme-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-left: 3px solid var(--teal);
  border-radius: 0 6px 6px 0;
  padding: 2rem 2.5rem;
  box-shadow: 0 2px 12px rgba(26,46,90,0.06);
  overflow: hidden;
}

.programme-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--navy); }

.programme-card .programme-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 1rem;
  align-items: center;
}

.programme-card .programme-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.programme-card .programme-meta svg { width: 14px; height: 14px; }

.programme-card .programme-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* =========================================
   WHO LIST
   ========================================= */
.who-list { list-style: none; margin-top: 2rem; }

.who-list li {
  padding: 0.75rem 1.25rem;
  border-left: 3px solid var(--teal);
  margin-bottom: 0.75rem;
  background: var(--white);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 1px 6px rgba(26,46,90,0.05);
}

/* =========================================
   SPEAKING / ABOUT IMAGES
   ========================================= */
.speaking-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  max-height: 340px;
}

.speaking-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.speaking-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,46,90,0.2);
  border-radius: 8px;
}

.img-placeholder {
  width: 100%;
  height: 340px;
  background: var(--navy-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 15px;
  font-weight: 400;
}

.about-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  height: 480px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 15px;
}

/* =========================================
   CREDENTIALS LIST (About page)
   ========================================= */
.credentials { list-style: none; margin-top: 1rem; }

.credentials li {
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
  font-weight: 300;
}

.credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* =========================================
   EQUIWAY LIST
   ========================================= */
.equiway-features { list-style: none; margin-top: 1rem; }

.equiway-features li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}

.equiway-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 8px;
  height: 2px;
  background: var(--teal-lt);
}

.equiway-meta { margin-top: 1.5rem; font-size: 15px; opacity: 0.85; }
.equiway-meta p { margin-bottom: 0.3rem; }

/* =========================================
   AI PAGE SPECIFIC
   ========================================= */
.credentials-callout {
  background: var(--teal);
  color: var(--white);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  margin: 2rem 0;
}

.credentials-callout h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.5rem; }
.credentials-callout p { opacity: 0.95; margin-bottom: 0; }

.matters-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.matters-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  font-weight: 300;
}

.matters-list li svg { color: var(--salmon); flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px; }

/* =========================================
   CONTACT FORM
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #c8d0e0;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--teal); }

.form-group textarea { min-height: 130px; resize: vertical; }
.form-trust { font-size: 14px; color: var(--muted); margin-top: 0.75rem; }

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-detail-item svg { color: var(--teal); width: 18px; height: 18px; flex-shrink: 0; }
.contact-detail-item a { color: var(--salmon); text-decoration: none; }
.contact-detail-item a:hover { color: var(--salmon-lt); }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--navy-dk);
  color: rgba(255,255,255,0.75);
  padding: 3rem 2rem;
  text-align: center;
}

footer img { display: block; height: 44px; margin: 0 auto 1.25rem; }
footer p { font-size: 14px; margin-bottom: 0.4rem; }
footer a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
footer a:hover { color: var(--white); }
footer a svg { width: 14px; height: 14px; }

.footer-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* =========================================
   FORMAT CALLOUT
   ========================================= */
.format-callout {
  background: rgba(58,181,181,0.1);
  border: 1px solid var(--teal);
  border-radius: 6px;
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
}

.skillnet-note {
  background: var(--light);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  font-size: 15px;
}

/* =========================================
   CARD WITH TOP IMAGE
   ========================================= */
.card-with-img {
  padding: 0;
  overflow: hidden;
}

.card-img-top {
  height: 150px;
  background-size: cover;
  background-position: center;
  display: block;
  width: 100%;
}

.card-with-img .card-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

/* =========================================
   PROGRAMME CARD IMAGE
   ========================================= */
.programme-card-img {
  width: calc(100% + 5rem);
  margin: -2rem -2.5rem 1.5rem -2.5rem;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  flex-shrink: 0;
}

/* =========================================
   SECTION INLINE IMAGE
   ========================================= */
.section-img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

/* =========================================
   FULL WIDTH BANNER IMAGE
   ========================================= */
.full-width-banner-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* =========================================
   STAT IMAGES / GRIDS
   ========================================= */
.stat-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.stat-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.stat-img {
  max-width: 340px;
  width: 100%;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(26,46,90,0.12);
  border-radius: 6px;
}

.stat-placeholder {
  max-width: 340px;
  height: 200px;
  margin: 0 auto;
  background: var(--navy);
  border: 2px solid var(--teal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* LEADERSHIP PROGRAMME CARD IMG */
.leadership-card-img {
  width: calc(100% + 4rem);
  margin: -2rem -2rem 1.5rem -2rem;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* CONSULTANCY HOW WE WORK BANNER */
.how-we-work-banner {
  position: relative;
  overflow: hidden;
  height: 300px;
  margin: 3rem 0 0;
}

.how-we-work-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.how-we-work-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,46,90,0.5);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .three-col { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr; }
  .problems-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--navy);
    padding: 1rem 2rem;
    gap: 1rem;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 4rem 1.5rem; }
  section { padding: 3.5rem 1.5rem; }
  .service-grid { grid-template-columns: 1fr; }
}
