/* ═══════════════════════════════════════════════════════
   ESSA QAMAR ENTERPRISES — Global Stylesheet v2
   Theme: Royal Blue + White + Charcoal
   Font: Raleway + DM Serif Display
═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Blue Palette */
  --blue:        #0c3070;   /* Deep royal blue — primary */
  --blue-mid:    #1a52cc;   /* Medium blue */
  --blue-bright: #2563eb;   /* CTA / button blue */
  --blue-light:  #dbeafe;   /* Light blue tint */
  --blue-faint:  #eff6ff;   /* Very light — page sections */
  --blue-hover:  #0a256e;   /* Hover state */

  /* Charcoal / Dark */
  --charcoal:    #111827;   /* Black charcoal — dark sections */
  --charcoal-2:  #1f2937;   /* Card bg in dark */
  --charcoal-3:  #374151;   /* Border in dark */

  /* Neutrals */
  --white:       #ffffff;
  --page-bg:     #f8faff;   /* Barely-blue white background */
  --ink:         #0f172a;   /* Primary text */
  --muted:       #4b5563;   /* Secondary text */
  --faint:       #9ca3af;
  --border:      rgba(12,48,112,0.10);
  --border-blue: rgba(37,99,235,0.20);

  /* Shadows */
  --shadow-xs:  0 1px 6px -2px rgba(12,48,112,0.12);
  --shadow-sm:  0 3px 16px -4px rgba(12,48,112,0.14);
  --shadow-md:  0 8px 32px -6px rgba(12,48,112,0.18);
  --shadow-lg:  0 20px 60px -12px rgba(12,48,112,0.22);

  /* Layout */
  --radius:      1.25rem;
  --radius-sm:   0.75rem;
  --max-w:       1250px;

  /* Easing */
  --spring:      cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* WhatsApp */
  --wa-green: #25D366;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', system-ui, -apple-system, sans-serif;
  background: var(--page-bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; background: none; }
i.fas, i.fab, i.far { line-height: 1; }

/* ── TYPOGRAPHY ──────────────────────────────────────── */
.display { font-size: clamp(2.75rem, 5.5vw, 4.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; }
.h1 { font-size: clamp(2.25rem, 4vw, 3.75rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.06; }
.h2 { font-size: clamp(1.75rem, 3vw, 2.625rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; }
.h4 { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.body-lg { font-size: 1.0625rem; line-height: 1.75; font-weight: 400; }
.body { font-size: 0.9375rem; line-height: 1.72; }
.body-sm { font-size: 0.8125rem; line-height: 1.68; }
.muted { color: var(--muted); }
.blue-text { color: var(--blue-bright); }

em.serif {
  font-style: italic;
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  color: var(--blue-bright);
}
em.serif.white { color: rgba(255,255,255,0.9); }

/* ── SECTION LABELS ──────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--blue-bright); margin-bottom: 1.25rem;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 2px;
  background: var(--blue-bright); border-radius: 2px;
  flex-shrink: 0;
}
.section-label.light { color: rgba(255,255,255,0.5); }
.section-label.light::before { background: rgba(255,255,255,0.5); }

/* ── LAYOUT ──────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1vw; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 8rem 0; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.8rem 1.75rem; border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem; font-weight: 700; line-height: 1;
  transition: transform 0.25s var(--spring), box-shadow 0.25s ease,
              background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer; white-space: nowrap;
}
.btn:active { transform: scale(0.97) !important; }

.btn-primary {
  background: var(--blue-bright); color: var(--white);
  box-shadow: 0 4px 20px -4px rgba(37,99,235,0.50);
}
.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px -6px rgba(37,99,235,0.55);
}

.btn-blue {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 20px -4px rgba(12,48,112,0.40);
}
.btn-blue:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px -6px rgba(12,48,112,0.50);
}

.btn-white {
  background: var(--white); color: var(--blue);
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--blue-faint);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent; color: var(--ink);
  border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: var(--blue-bright); color: var(--blue-bright); transform: translateY(-1px); }

.btn-ghost-white {
  background: transparent; color: rgba(255,255,255,0.88);
  border: 2px solid rgba(255,255,255,0.28);
}
.btn-ghost-white:hover {
  border-color: rgba(255,255,255,0.7); color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.btn-wa {
  background: var(--wa-green); color: var(--white);
  box-shadow: 0 4px 20px -4px rgba(37,211,102,0.40);
}
.btn-wa:hover {
  background: #1da355; transform: translateY(-2px);
  box-shadow: 0 8px 28px -6px rgba(37,211,102,0.50);
}

.btn-icon {
  width: 26px; height: 26px; border-radius: 4px;
  background: rgba(255,255,255,0.18); display: grid; place-items: center;
  flex-shrink: 0; transition: transform 0.25s var(--spring);
}
.btn:hover .btn-icon { transform: translateX(3px); }
.btn-lg { padding: 0.95rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.8125rem; }

/* ── NAVIGATION ──────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  margin: 0px 20px 0 10px;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.navbar-inner {
  max-width: var(--max-w);
  margin: 20px auto;
  padding: 0 1vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  transition: height 0.3s ease;
  background-color: white;
  border-radius: 10px;
  
}
.navbar.scrolled .navbar-inner { height: 66px; }

.nav-logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-logo-mark {
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--blue-bright); display: grid; place-items: center;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8125rem; font-weight: 900; color: #fff;
  letter-spacing: -0.02em; flex-shrink: 0;
}
.nav-logo-name { font-size: 0.9375rem; font-weight: 800; color: var(--blue-bright); letter-spacing: -0.01em; line-height: 1.2; }
.nav-logo-sub { font-size: 0.65rem; color: black; font-weight: 600; letter-spacing: 0.05em; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 0.125rem; }
.nav-links a {
  display: block; padding: 0.45rem 0.85rem;
  font-size: 0.975rem; font-weight: 600;
  color: black; border-radius: 5px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: gray; background: rgba(255,255,255,0.09); }
.nav-links a.active { color: black; background: rgb(171 169 169 / 9%); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--blue-bright); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--charcoal); z-index: 999;
  padding: 6rem 2rem 3rem;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--spring);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-size: 1.375rem; font-weight: 700; color: rgba(255,255,255,0.8); padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--blue-bright); }
.mobile-menu .btn { margin-top: 1.5rem; align-self: flex-start; padding: 15px 25px }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
}

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--blue) 100%);
  padding: 9rem 0 5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 40%, rgba(37,99,235,0.20) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), rgba(37,99,235,0));
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label.light { color: rgba(255,255,255,0.5); }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.55); margin-top: 1rem; max-width: 52ch; line-height: 1.75; font-size: 1.0625rem; }
.page-hero-bg-text {
  position: absolute; right: -2%; top: 50%; transform: translateY(-50%);
  font-size: clamp(6rem, 14vw, 13rem); font-weight: 900; letter-spacing: -0.05em;
  color: rgba(255,255,255,0.03); pointer-events: none; user-select: none; line-height: 1;
}

/* ── CARDS ───────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--spring), box-shadow 0.35s ease, border-color 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-blue); }
.card-top-border { border-top: 3px solid var(--blue-bright); }

.card-icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: var(--blue-faint);
  border: 1px solid var(--border-blue);
  display: grid; place-items: center; margin-bottom: 1.25rem;
  transition: transform 0.3s var(--spring), background 0.3s;
  flex-shrink: 0;
}
.card-icon i { font-size: 1.35rem; color: var(--blue-bright); transition: color 0.3s; }
.card:hover .card-icon { transform: scale(1.1) rotate(-6deg); background: var(--blue-bright); }
.card:hover .card-icon i { color: #fff; }

/* ── TAGS / BADGES ───────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  padding: 0; border-radius: 4px;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.04em;
}
.badge-blue { background: var(--blue-faint); color: var(--blue); border: 1px solid var(--border-blue); }
.badge-green { background: #dcfce7; color: #15803d; }
.badge-white { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.15); }

/* ── STATS BAR ───────────────────────────────────────── */
.stats-bar { background: var(--charcoal); padding: 3.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: 2rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 32px; height: 2px; background: var(--blue-bright); border-radius: 2px; }
.stat-number {
  font-size: 2.75rem; font-weight: 900; letter-spacing: -0.05em; line-height: 1;
  background: linear-gradient(135deg, #fff 30%, var(--blue-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block;
  font-family: 'Raleway', sans-serif;
}
.stat-unit { font-size: 1.75rem; font-weight: 900; }
.stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.42); margin-top: 0.45rem; font-weight: 600; letter-spacing: 0.04em; }
@media (max-width: 600px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); } .stat-item:nth-child(even) { } }

/* ── PROCESS STEPS ───────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: grid; grid-template-columns: 72px 1fr; gap: 1.5rem;
  padding: 2.5rem 0; border-bottom: 1px solid var(--border);
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.55s ease, transform 0.55s var(--spring), border-color 0.3s;
}
.process-step:first-child { border-top: 1px solid var(--border); }
.process-step.visible { opacity: 1; transform: translateX(0); }
.process-step:hover { border-color: var(--blue-bright); }
.step-number {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--blue-faint); border: 2px solid var(--border-blue);
  display: grid; place-items: center;
  font-size: 0.9375rem; font-weight: 900; color: var(--blue-bright);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--spring), color 0.3s;
}
.process-step:hover .step-number { background: var(--blue-bright); color: #fff; border-color: var(--blue-bright); transform: scale(1.08); }
.step-icon { margin-bottom: 0.5rem; }
.step-icon i { font-size: 1.75rem; color: var(--blue-bright); }
.step-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--ink); }
.step-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* ── WORKFORCE CARDS ─────────────────────────────────── */
.workforce-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.workforce-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  transition: transform 0.35s var(--spring), box-shadow 0.35s ease, border-color 0.3s;
  position: relative; overflow: hidden;
}
.workforce-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue-mid));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--spring);
}
.workforce-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-blue); }
.workforce-card:hover::before { transform: scaleX(1); }
.wf-icon i { font-size: 2rem; color: var(--blue-bright); margin-bottom: 1rem; display: block; }
.wf-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.wf-desc { font-size: 0.8125rem; color: var(--muted); line-height: 1.68; }
.wf-count { font-size: 0.75rem; font-weight: 700; color: var(--blue-bright); margin-top: 1rem; }

/* ── TEAM ────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1.5rem; }
.team-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-xs);
  transition: transform 0.35s var(--spring), box-shadow 0.35s ease;
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-img-wrap { width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--blue-faint); }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-info { padding: 1.25rem; }
.team-name { font-size: 0.9375rem; font-weight: 700; color: var(--ink); }
.team-role { font-size: 0.7rem; color: var(--blue-bright); font-weight: 700; margin-top: 0.25rem; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── CERTIFICATES ────────────────────────────────────── */
.certs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.cert-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-xs);
  transition: transform 0.35s var(--spring), box-shadow 0.35s ease; cursor: pointer;
}
.cert-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cert-img-wrap { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--blue-faint); position: relative; }
.cert-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cert-card:hover .cert-img-wrap img { transform: scale(1.04); }
.cert-overlay { position: absolute; inset: 0; background: rgba(12,48,112,0); display: grid; place-items: center; transition: background 0.3s; }
.cert-card:hover .cert-overlay { background: rgba(12,48,112,0.35); }
.cert-zoom { font-size: 2rem; opacity: 0; transform: scale(0.7); transition: opacity 0.3s, transform 0.3s; color: #fff; }
.cert-card:hover .cert-zoom { opacity: 1; transform: scale(1); }
.cert-info { padding: 1.25rem; }
.cert-title { font-size: 0.9375rem; font-weight: 700; color: var(--ink); }
.cert-issuer { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; line-height: 1.5; }
.cert-valid { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; font-weight: 700; color: #16a34a; margin-top: 0.5rem; }
.cert-valid::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #16a34a; }

/* ── LIGHTBOX ────────────────────────────────────────── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.93); place-items: center; padding: 2rem; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 0.75rem; }
.lightbox-close { position: fixed; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff; font-size: 1.1rem; display: grid; place-items: center; cursor: pointer; transition: background 0.2s; }
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ── PARTNER LOGOS MARQUEE ───────────────────────────── */
.partners-marquee { overflow: hidden; padding: 3rem 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-track { display: flex; align-items: center; width: max-content; animation: marqueeScroll 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner-item { display: flex; align-items: center; justify-content: center; padding: 0 4rem; flex-shrink: 0; }
.partner-item img { height: 80px; width: auto; max-width: 200px; object-fit: contain; filter: grayscale(0.4); opacity: 0.75; transition: filter 0.3s, opacity 0.3s, transform 0.3s; }
.partner-item:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.06); }
.partner-sep { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

/* ── PARTNER COMPANY CARDS (home page) ───────────────── */
.company-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.company-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: transform 0.35s var(--spring), box-shadow 0.35s ease, border-color 0.3s;
}
.company-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-blue); }
.company-logo-box {
  width: 80px; height: 80px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--page-bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0; padding: 8px;
}
.company-logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; }
.company-card-info { flex: 1; min-width: 0; }
.company-card-name { font-size: 0.9375rem; font-weight: 800; color: var(--ink); line-height: 1.25; margin-bottom: 0.25rem; }
.company-card-country { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.6rem; }
.company-card-sector { display: inline-block; padding: 0.2rem 0.65rem; border-radius: 4px; font-size: 0.6875rem; font-weight: 700; background: var(--blue-faint); color: var(--blue); border: 1px solid var(--border-blue); }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info-items { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.4rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  box-shadow: var(--shadow-xs);
  transition: border-color 0.2s, transform 0.3s var(--spring);
}
.contact-item:hover { border-color: var(--border-blue); transform: translateX(4px); }
a.contact-item:hover { border-color: var(--blue-bright); }
.ci-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--blue-faint); display: grid; place-items: center; flex-shrink: 0; }
.ci-icon i { font-size: 1.1rem; color: var(--blue-bright); }
.ci-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.ci-value { font-size: 0.9375rem; font-weight: 600; color: var(--ink); margin-top: 0.1rem; line-height: 1.4; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.8125rem; font-weight: 700; color: var(--ink); }
.form-input { padding: 0.8rem 1.1rem; border-radius: 8px; border: 1.5px solid var(--border); background: var(--white); font-family: 'Raleway', sans-serif; font-size: 0.9375rem; color: var(--ink); transition: border-color 0.2s ease, box-shadow 0.2s ease; outline: none; }
.form-input:focus { border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); }
textarea.form-input { resize: vertical; min-height: 130px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%234b5563' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

/* ── TICKER ──────────────────────────────────────────── */
.ticker-wrap { background: var(--blue-bright); overflow: hidden; padding: 0.85rem 0; }
.ticker-track { display: flex; width: max-content; animation: marqueeScroll 22s linear infinite; }
.ticker-item { display: flex; align-items: center; gap: 1.5rem; padding: 0 2.5rem; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.92); white-space: nowrap; }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.45); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background: var(--charcoal); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.42); line-height: 1.78; margin-top: 1rem; max-width: 32ch; }
.footer-col h4 { font-size: 0.75rem; font-weight: 800; color: #fff; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.42); transition: color 0.2s, transform 0.2s; display: inline-block; }
.footer-col ul a:hover { color: var(--blue-bright); transform: translateX(3px); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 0.85rem; }
.footer-contact-icon { width: 28px; height: 28px; border-radius: 6px; background: rgba(255,255,255,0.06); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.footer-contact-icon i { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer-contact-text { font-size: 0.8125rem; color: rgba(255,255,255,0.42); line-height: 1.6; }
.footer-contact-text a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-text a:hover { color: var(--blue-bright); }
.footer-wa-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.25rem; border-radius: 6px; background: rgba(37,211,102,0.1); color: #4ade80; border: 1px solid rgba(37,211,102,0.2); font-size: 0.8125rem; font-weight: 700; transition: background 0.2s, transform 0.2s; margin-top: 1.25rem; width: fit-content; }
.footer-wa-btn:hover { background: rgba(37,211,102,0.18); transform: translateY(-1px); }
.footer-bottom { margin-top: 4rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.28); }
.footer-copy strong { color: rgba(255,255,255,0.5); }
.footer-beoe { font-size: 0.75rem; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-beoe:hover { color: var(--blue-bright); }

/* ── LIVE DOT ────────────────────────────────────────── */
.live-dot { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.75rem; font-weight: 700; color: #22c55e; }
.live-dot::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #22c55e; animation: livePulse 2s ease infinite; }
@keyframes livePulse { 0%{box-shadow:0 0 0 0 rgba(34,197,94,0.5)} 70%{box-shadow:0 0 0 9px rgba(34,197,94,0)} 100%{box-shadow:0 0 0 0 rgba(34,197,94,0)} }

/* ── FLOATING WHATSAPP ───────────────────────────────── */
.wa-float { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 500; width: 58px; height: 58px; border-radius: 50%; background: var(--wa-green); color: #fff; display: grid; place-items: center; font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: transform 0.3s var(--spring), box-shadow 0.3s; animation: floatIn 0.6s var(--spring) 1s both; }
.wa-float:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
@keyframes floatIn { from { opacity: 0; transform: scale(0.4) translateY(20px); } to { opacity: 1; transform: scale(1); } }
.wa-float-tooltip { position: absolute; right: 68px; white-space: nowrap; background: var(--ink); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.4rem 0.9rem; border-radius: 5px; opacity: 0; transform: translateX(8px); transition: opacity 0.2s, transform 0.2s; pointer-events: none; }
.wa-float:hover .wa-float-tooltip { opacity: 1; transform: translateX(0); }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  filter: blur(4px);
  transition: opacity 0.75s ease, transform 0.75s var(--spring), filter 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s ease, transform 0.65s var(--spring); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.65s ease, transform 0.65s var(--spring); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.6s ease, transform 0.6s var(--spring); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ── SCROLL TO TOP ───────────────────────────────────── */
.scroll-top { position: fixed; bottom: 1.75rem; left: 1.75rem; z-index: 500; width: 44px; height: 44px; border-radius: 8px; background: rgba(12,48,112,0.85); color: rgba(255,255,255,0.8); display: grid; place-items: center; font-size: 1rem; box-shadow: var(--shadow-md); cursor: pointer; opacity: 0; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s, background 0.2s; backdrop-filter: blur(8px); }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--blue-bright); color: #fff; }

/* ── HOME HERO ───────────────────────────────────────── */
.home-hero {
  background: linear-gradient(145deg, var(--charcoal) 0%, var(--blue) 55%, var(--blue-mid) 100%);
  min-height: 100dvh; position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 70% at 85% 45%, rgba(37,99,235,0.25) 0%, transparent 65%);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  padding: 10rem 0vw 6rem;
}
@media (max-width: 960px) { .hero-content { grid-template-columns: 1fr; padding: 8rem 5vw 5rem; gap: 3rem; } .hero-right-panel { display: none; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 1rem; border-radius: 5px;
  background: rgba(37,99,235,0.18); border: 1px solid rgba(37,99,235,0.32);
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; width: fit-content;
}
.hero-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); animation: pulseDot 2s ease infinite; }
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.6)} }

.hero-title { color: #fff; margin-bottom: 1.5rem; }
.hero-title em.serif { color: rgba(255,255,255,0.9); font-style: italic; font-family: 'DM Serif Display', serif; font-weight: 400; position: relative; }
/* .hero-title em.serif::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--blue-bright); border-radius: 2px; } */
.hero-subtitle { font-size: 1.0625rem; color: rgba(255,255,255,0.55); line-height: 1.78; max-width: 46ch; margin-bottom: 2.25rem; font-weight: 500; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Trusted by */
.hero-trust { padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-trust-label { font-size: 0.65rem; color: rgba(255,255,255,0.38); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1rem; }
.hero-trust-logos { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.trust-logo-pill {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px; padding: 0.4rem 0.85rem;
  transition: background 0.2s, border-color 0.2s;
}
.trust-logo-pill:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25); }
.trust-logo-pill img { height: 26px; width: auto; object-fit: contain; border-radius: 5px; opacity: 0.75; }
.trust-logo-pill span { font-size: 0.6875rem; font-weight: 700; color: rgba(255,255,255,0.65); white-space: nowrap; }

/* Hero right panel */
.hero-right-panel { display: flex; flex-direction: column; gap: 1rem; }
.hero-panel-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 1.5rem; backdrop-filter: blur(8px); }
.hero-panel-card.featured { background: rgba(37,99,235,0.15); border-color: rgba(37,99,235,0.3); }
.hpc-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 0.85rem; }
.hpc-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.35rem; min-height: 1.5em; }
.hpc-desc { font-size: 0.8125rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.hpc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1rem; }
.hpc-stat { text-align: center; background: rgba(255,255,255,0.06); border-radius: 8px; padding: 0.75rem; }
.hpc-stat-num { font-size: 1.5rem; font-weight: 900; color: #fff; letter-spacing: -0.04em; line-height: 1; font-family: 'Raleway', sans-serif; }
.hpc-stat-label { font-size: 0.62rem; color: rgba(255,255,255,0.38); margin-top: 0.15rem; font-weight: 600; }
.hpc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.85rem; }
.hpc-tag { padding: 0.25rem 0.65rem; border-radius: 4px; font-size: 0.7rem; font-weight: 600; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.65); transition: background 0.2s, color 0.2s; }
.hpc-tag:hover { background: rgba(37,99,235,0.25); color: rgba(255,255,255,0.9); }

/* Typewriter cursor */
.tw-cursor { display: inline-block; width: 2px; height: 1em; background: var(--blue-bright); margin-left: 1px; vertical-align: middle; animation: twBlink 1s step-end infinite; }
@keyframes twBlink { 50% { opacity: 0; } }

/* ── ABOUT SPLIT ─────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 768px) { .about-split { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-img-wrap { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--white); border-radius: 10px; padding: 0.85rem 1.25rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 0.75rem; }
.about-img-badge-num { font-size: 1.5rem; font-weight: 900; color: var(--blue-bright); letter-spacing: -0.04em; font-family: 'Raleway', sans-serif; }
.about-img-badge-text { font-size: 0.75rem; color: var(--muted); line-height: 1.35; font-weight: 600; }

/* ── CHECKLIST ───────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
.check-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--blue-faint); border: 1.5px solid var(--border-blue); display: grid; place-items: center; flex-shrink: 0; margin-top: 0.1rem; }
.check-icon i { font-size: 0.55rem; color: var(--blue-bright); }

/* ── WHY GRID ────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { padding: 1.75rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-xs); transition: transform 0.35s var(--spring), box-shadow 0.35s ease, border-color 0.3s; }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-blue); }
.why-icon { margin-bottom: 0.85rem; }
.why-icon i { font-size: 1.75rem; color: var(--blue-bright); }
.why-title { font-size: 0.9375rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.why-desc { font-size: 0.8125rem; color: var(--muted); line-height: 1.68; }

/* ── DARK / CHARCOAL SECTIONS ────────────────────────── */
.dark-section { background: var(--charcoal); }
.dark-section .section-label.light { color: rgba(255,255,255,0.4); }
.dark-section .section-label.light::before { background: var(--blue-bright); }
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-section p { color: rgba(255,255,255,0.5); }

/* ── CTA SECTION ─────────────────────────────────────── */
.cta-wrap { padding: 0 5vw; }
.cta-section { background: linear-gradient(135deg, var(--charcoal) 0%, var(--blue) 100%); border-radius: 16px; padding: 4rem; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(37,99,235,0.25) 0%, transparent 70%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.cta-text h2 { color: #fff; }
.cta-text p { color: rgba(255,255,255,0.5); margin-top: 0.75rem; max-width: 44ch; font-size: 0.9375rem; }
.cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
@media (max-width: 768px) { .cta-section { padding: 2.5rem 1.75rem; } .cta-inner { flex-direction: column; } }

/* ── VERIFY SECTION ──────────────────────────────────── */
.verify-section { background: var(--blue); }
.verify-section .section-label.light { color: rgba(255,255,255,0.5); }
.verify-meta { display: flex; justify-content: center; gap: 3.5rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.12); }
.verify-meta-item { text-align: center; }
.verify-meta-label { font-size: 0.65rem; color: rgba(255,255,255,0.38); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.35rem; }
.verify-meta-val { font-size: 1.0625rem; font-weight: 800; color: #fff; }
.verify-meta-val.gold { color: rgba(255,255,255,0.85); }

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: translateX(0); } }

.animate-fade-up { animation: fadeUp 0.75s var(--spring) both; }
.animate-fade-in { animation: fadeIn 0.75s ease both; }
.anim-delay-1 { animation-delay: 0.15s; }
.anim-delay-2 { animation-delay: 0.3s; }
.anim-delay-3 { animation-delay: 0.45s; }
.anim-delay-4 { animation-delay: 0.6s; }
.anim-delay-5 { animation-delay: 0.75s; }

/* ── RESPONSIVE UTILS ────────────────────────────────── */
@media (max-width: 768px) { .section { padding: 4rem 0; } .section-lg { padding: 5rem 0; } .container { padding: 0 1.5rem; } }
@media (max-width: 480px) { .h2 { font-size: 1.75rem; } .company-cards-grid { grid-template-columns: 1fr; } }

/* ── ABOUT CARD DARK ─────────────────────────────────── */
.dark-card { background: var(--charcoal-2); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 2rem; transition: transform 0.35s var(--spring), border-color 0.3s; }
.dark-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,0.35); }
.dark-card .card-icon { background: rgba(37,99,235,0.15); border-color: rgba(37,99,235,0.25); }

/* ── SECTION BG VARIANTS ─────────────────────────────── */
.bg-white { background: var(--white); }
.bg-page { background: var(--page-bg); }
.bg-light-blue { background: var(--blue-faint); }
.bg-charcoal { background: var(--charcoal); }
.bg-blue { background: var(--blue); }
