@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --navy:   #0D1B3E;
  --orange: #E8650A;
  --white:  #FFFFFF;
  --light:  #F4F6FA;
  --mid:    #6B7A99;
  --dark:   #091228;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(13,27,62,0.12);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--navy); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 70px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 104px; width: auto; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 9px 20px; border-radius: var(--radius);
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #c9550a !important; color: var(--white) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; position: absolute; top: 70px; left: 0; right: 0;
  background: var(--navy); padding: 20px 5% 28px; flex-direction: column; gap: 18px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.82); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.mobile-menu a:hover { color: var(--orange); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  min-height: 88vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.32;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 680px; padding: 60px 5%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,101,10,0.18); border: 1px solid var(--orange);
  color: var(--orange); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white); line-height: 1.0; margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }
.hero p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem;
  max-width: 520px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 14px 30px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #c9550a; transform: translateY(-1px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.4); color: var(--white);
  padding: 14px 30px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--orange);
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  padding: 28px 48px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem; color: var(--white); line-height: 1;
}
.stat-item span { font-size: 0.78rem; color: rgba(255,255,255,0.85); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── SECTION BASICS ── */
section { padding: 80px 5%; }
.section-label {
  display: inline-block;
  color: var(--orange); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy); line-height: 1.1; margin-bottom: 14px;
}
.section-sub { color: var(--mid); font-size: 1rem; max-width: 560px; margin-bottom: 50px; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--light); border-radius: var(--radius);
  overflow: hidden;
  border-left: 4px solid var(--orange);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card-img { width: 100%; height: 160px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 20px 22px 24px; }
.service-icon { font-size: 1.6rem; margin-bottom: 10px; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.service-card p { font-size: 0.86rem; color: var(--mid); line-height: 1.65; }

/* ── ABOUT SPLIT ── */
.about-section { background: var(--navy); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius); width: 100%; object-fit: cover; max-height: 500px; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--orange); color: var(--white);
  padding: 16px 22px; border-radius: var(--radius);
  text-align: center;
}
.about-badge strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 2rem; line-height: 1; }
.about-badge span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.about-content .section-title { color: var(--white); }
.about-content .section-sub { color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.about-content p { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 18px; line-height: 1.75; }
.about-content .btn-primary { margin-top: 10px; }

/* ── TRAINING SECTION ── */
.training-section { background: var(--light); }
.training-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.training-img {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; position: relative;
}
.training-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.training-img:hover img { transform: scale(1.04); }

/* ── CERTS STRIP ── */
.certs-section { background: var(--white); }
.certs-note { color: var(--mid); font-size: 0.88rem; margin-bottom: 30px; }
.certs-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px;
}
.cert-thumb {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer; position: relative;
  border: 2px solid transparent; transition: border-color 0.2s;
}
.cert-thumb:hover { border-color: var(--orange); }
.cert-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.88); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 2rem; color: var(--white); cursor: pointer; line-height: 1;
}

/* ── CONTACT ── */
.contact-section { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .section-title { color: var(--white); }
.contact-info p { color: rgba(255,255,255,0.65); margin-bottom: 32px; font-size: 0.95rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-detail-icon {
  background: var(--orange); color: var(--white);
  width: 40px; height: 40px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-text strong { display: block; color: var(--white); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }
.contact-detail-text span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* WhatsApp Form */
.wa-form { background: var(--white); border-radius: var(--radius); padding: 36px 32px; }
.wa-form h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.wa-form p { font-size: 0.85rem; color: var(--mid); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 2px solid #E0E5F0; border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--navy);
  transition: border-color 0.2s; background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-wa {
  width: 100%; background: #25D366; color: var(--white);
  padding: 15px; border: none; border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.2s;
}
.btn-wa:hover { background: #1db954; }
.wa-note { font-size: 0.75rem; color: var(--mid); text-align: center; margin-top: 10px; }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: rgba(255,255,255,0.5);
  padding: 32px 5%; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
footer img { height: 40px; opacity: 0.85; filter: brightness(0) invert(1); }
footer p { font-size: 0.82rem; }
footer a { color: var(--orange); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy); padding: 80px 5% 60px;
  position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background: url('../images/training-3.jpg') center/cover no-repeat; opacity: 0.15; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--orange); }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white); line-height: 1.05; margin-bottom: 14px;
}
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; }

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25D366; color: var(--white);
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float-tooltip {
  position: absolute; right: 68px; background: var(--navy);
  color: var(--white); font-size: 0.78rem; font-weight: 600;
  white-space: nowrap; padding: 6px 12px; border-radius: 4px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ── SERVICE IMAGES ── */
.svc-img {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3;
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -16px; }
  .training-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 580px) {
  .training-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 20px 28px; }
  .wa-form { padding: 24px 18px; }
  section { padding: 60px 5%; }
}
