@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,700;1,700&family=Montserrat:wght@300;400&display=swap');

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #1B6FB5;
  --blue-lt: #2481cc;
  --orange:  #F5A623;
  --dark:    #1A1A2E;
  --light:   #f0f6fd;
  --text:    #1A1A2E;
  --muted:   #5a6a80;
  --border:  #d6e4f0;
  --white:   #ffffff;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  font-feature-settings: "lnum" 1, "tnum" 1;
}

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(27,111,181,0.07);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap { display: none; }
.logo-text {
  text-decoration: none; display: block;
  line-height: 1; color: var(--blue);
}
.logo-text .logo-first {
  display: block;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700; font-style: italic;
  font-size: 1.3rem; color: #000;
  letter-spacing: 0.02em;
  line-height: 0.95;
}
.logo-text .logo-second {
  display: block;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700; font-style: normal;
  font-size: 1.3rem; color: var(--blue);
  letter-spacing: 0.04em;
  -webkit-transform: scaleX(1.1);
  transform: scaleX(1.1);
  -webkit-transform-origin: left;
  transform-origin: left;
  line-height: 0.95;
  padding-left: 2.6em;
}
.logo-tagline {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 0.46rem; font-weight: 700;
  color: #000; letter-spacing: 1.5px; margin-top: 3px;
  white-space: nowrap;
}
.nav-links {
  display: flex; gap: 28px;
  list-style: none; align-items: center;
}
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.88rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }
.nav-links a.active {
  font-weight: 700;
}
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 9px 22px; border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-lt) !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--blue); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { -webkit-transform: translateY(7.5px) rotate(45deg); transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { -webkit-transform: translateY(-7.5px) rotate(-45deg); transform: translateY(-7.5px) rotate(-45deg); }

/* ── HERO BASE ── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 60%, #2481cc 100%);
  color: var(--white);
  padding: 80px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: var(--orange); opacity: 0.08; border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -80px; left: -40px;
  width: 260px; height: 260px;
  background: var(--orange); opacity: 0.06; border-radius: 50%;
}
.hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 700;
  max-width: 680px; margin: 0 auto 18px;
  line-height: 1.3; position: relative;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 1rem; opacity: 0.85;
  max-width: 540px; margin: 0 auto;
  line-height: 1.75; position: relative;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.18);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--orange);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px; margin-bottom: 20px;
}

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--light); border-bottom: 1px solid var(--border); padding: 11px 24px; }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; font-size: 0.81rem; color: var(--muted); }
.breadcrumb-inner a { color: var(--blue); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner span { margin: 0 7px; color: var(--orange); }

/* ── SECTION TITLE ── */
.section-title { text-align: center; max-width: 1200px; margin: 48px auto 8px; padding: 0 24px; }
.section-title h2 { font-size: 1.65rem; font-weight: 700; color: var(--dark); }
.section-title p { color: var(--muted); margin-top: 8px; font-size: 0.93rem; }
.divider { width: 52px; height: 4px; background: var(--orange); border-radius: 2px; margin: 14px auto 0; }

/* ── STATS ── */
.stats { background: var(--dark); padding: 60px 24px; }
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px; text-align: center;
}
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.83rem; color: rgba(255,255,255,0.65); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.6px; }

/* ── FOOTER ── */
footer { background: #111827; color: rgba(255,255,255,0.8); padding: 60px 24px 32px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
}
.footer-logo img { height: 46px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 0.87rem; line-height: 1.75; opacity: 0.7; max-width: 320px; margin-top: 14px; }
.footer-brand-logo { display: inline-block; line-height: 1; margin-bottom: 10px; }
.footer-brand-logo .fl-first { display: block; font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-style: italic; font-size: 1.3rem; color: #fff; letter-spacing: 0.02em; line-height: 0.95; }
.footer-brand-logo .fl-second { display: block; font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--blue); letter-spacing: 0.04em; line-height: 0.95; padding-left: 2.6em; -webkit-transform: scaleX(1.1); transform: scaleX(1.1); -webkit-transform-origin: left; transform-origin: left; }
.footer-brand-logo .fl-tagline { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.46rem; font-weight: 700; color: #fff; letter-spacing: 1.5px; margin-top: 3px; white-space: nowrap; }
.footer-col h4 {
  color: var(--orange); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.ftr-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.ftr-ci { font-size: 1rem; flex-shrink: 0; margin-top: 1px; line-height: 1.4; }

/* ── FOOTER TRUST BADGES ── */
.footer-trust { display: flex; gap: 24px; margin-top: 20px; flex-wrap: wrap; align-items: center; }
.ft-img-badge { height: 70px; width: auto; display: block; object-fit: contain; vertical-align: middle; }
.ft-img-vision { height: 70px; filter: brightness(2) contrast(1.2) drop-shadow(0 0 6px rgba(255,255,255,0.25)); margin-top: 16px; }
.ft-flag-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ft-flag-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  background: linear-gradient(90deg, #006C35 0%, #C8A951 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
}
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem; opacity: 0.5;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--blue); color: var(--white);
  padding: 12px 32px; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; -webkit-transition: background 0.2s, -webkit-transform 0.15s; transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--blue-lt); -webkit-transform: translateY(-1px); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--blue);
  padding: 11px 30px; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s;
  border: 2px solid var(--blue); cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ── FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease; transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: flex; flex-direction: column;
    position: absolute;
    top: 90px; left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    gap: 0; z-index: 99;
    max-height: 0; overflow: hidden; opacity: 0;
    pointer-events: none;
    -webkit-transition: max-height 0.28s ease, opacity 0.22s ease;
    transition: max-height 0.28s ease, opacity 0.22s ease;
  }
  .nav-links.open { max-height: 520px; opacity: 1; pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border: none; margin-top: 12px; }
  .nav-links a { padding: 12px 0; display: block; font-size: 0.95rem; }
  .nav-links a.active { border-bottom: none; }
  .nav-cta { text-align: center; border-radius: 6px !important; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 60px 20px 70px; }
}
