/* ==========================================================================
   GeM CONSULTANT — PREMIUM LIGHT DESIGN SYSTEM
   New multi-page theme. Loaded alongside (not replacing) css/style.css,
   which admin.html continues to use until the admin panel is restyled.
   ========================================================================== */

:root {
  /* --- Core palette --- */
  --bg: #FFFFFF;
  --bg-soft: #F6F8FC;
  --bg-tint: #EEF1FF;
  --ink: #0B1220;
  --ink-soft: #4B5567;
  --ink-faint: #8A93A6;
  --line: rgba(11, 18, 32, 0.08);
  --line-strong: rgba(11, 18, 32, 0.14);

  /* --- Brand accents --- */
  --royal: #2454FF;
  --royal-deep: #173BC7;
  --purple: #7C3AED;
  --orange: #FF7A30;
  --sky: #38BDF8;
  --pink: #FF8FB1;

  /* --- Gradients --- */
  --grad-brand: linear-gradient(120deg, #2454FF 0%, #7C3AED 55%, #FF7A30 100%);
  --grad-royal-purple: linear-gradient(135deg, #2454FF, #7C3AED);
  --grad-orange-pink: linear-gradient(135deg, #FF7A30, #FF8FB1);
  --grad-sky-royal: linear-gradient(135deg, #38BDF8, #2454FF);

  /* --- Surfaces --- */
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 20px 48px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.14);

  /* --- Shape --- */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* --- Motion --- */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.25s;
  --dur-med: 0.5s;

  /* --- Type --- */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* --- Layout --- */
  --max-width: 1280px;
  --header-h: 84px;
  --header-h-shrunk: 66px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
.gem-light, .gem-light * , .gem-light *::before, .gem-light *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.gem-light {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.gem-light a { color: inherit; text-decoration: none; }
.gem-light button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; }
.gem-light img { max-width: 100%; height: auto; display: block; }
.gem-light ul { list-style: none; }

.gem-light h1, .gem-light h2, .gem-light h3, .gem-light h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.gem-light .container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gem-light ::selection { background: var(--royal); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .gem-light * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-gradient-brand {
  background: var(--grad-brand);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--royal);
  padding: 0.35rem 0.9rem 0.35rem 0.6rem;
  border-radius: 50px;
  background: var(--bg-tint);
  border: 1px solid rgba(36, 84, 255, 0.18);
}

.eyebrow .seal-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad-royal-purple);
  flex-shrink: 0;
  position: relative;
}
.eyebrow .seal-dot::after {
  content: '';
  position: absolute; inset: 4px;
  border-radius: 50%;
  border: 1.5px solid #fff;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-header.align-left { margin-left: 0; text-align: left; }

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin: 1rem 0 1rem;
}

.section-desc {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Glass card */
.glass {
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}

.glass-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(36, 84, 255, 0.28);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.7rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.btn-brand {
  background: var(--grad-royal-purple);
  color: #fff;
  box-shadow: 0 10px 30px rgba(36, 84, 255, 0.32);
}
.btn-brand:hover { box-shadow: 0 14px 38px rgba(36, 84, 255, 0.42); transform: translateY(-2px); }

.btn-accent {
  background: var(--grad-orange-pink);
  color: #fff;
  box-shadow: 0 10px 26px rgba(255, 122, 48, 0.30);
}
.btn-accent:hover { box-shadow: 0 14px 34px rgba(255, 122, 48, 0.42); transform: translateY(-2px); }

.btn-outline {
  background: #fff;
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--royal); color: var(--royal); transform: translateY(-2px); }

.btn-ghost {
  color: var(--ink-soft);
  padding: 0.6rem 0.4rem;
}
.btn-ghost:hover { color: var(--royal); }

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

/* Magnetic wrap target */
[data-magnetic] { will-change: transform; }

/* ==========================================================================
   Custom cursor
   ========================================================================== */
.gem-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--royal);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
}
.gem-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(36, 84, 255, 0.45);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width var(--dur-fast) var(--ease), height var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.gem-cursor-ring.is-active { width: 56px; height: 56px; border-color: var(--purple); }
@media (hover: none), (pointer: coarse) {
  .gem-cursor, .gem-cursor-ring { display: none; }
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.gem-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.gem-preloader-seal {
  width: 64px; height: 64px;
  position: relative;
}
.gem-preloader-bar {
  width: 200px; height: 3px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.gem-preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-brand);
}
.gem-preloader-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ==========================================================================
   Top strip
   ========================================================================== */
.top-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  padding: 0.5rem 0;
}
.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.top-strip-group { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.top-strip-item { display: flex; align-items: center; gap: 0.4rem; }
.top-strip-item i { color: var(--sky); }
.top-strip a.top-strip-item:hover { color: #fff; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.gem-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: height var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.gem-header.is-scrolled {
  height: var(--header-h-shrunk);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-royal-purple);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.15rem;
  box-shadow: 0 8px 20px rgba(36, 84, 255, 0.3);
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
}
.brand-name span { color: var(--royal); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--dur-fast) var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0%; height: 2px;
  border-radius: 2px;
  background: var(--grad-royal-purple);
  transition: width var(--dur-fast) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(84vw, 360px);
  height: 100%;
  background: #fff;
  z-index: 1200;
  box-shadow: -20px 0 60px rgba(15,23,42,.18);
  padding: 2rem 1.75rem;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.mobile-drawer .nav-link { font-size: 1.05rem; }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(11,18,32,.4);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }
.drawer-close { align-self: flex-end; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; }

@media (max-width: 980px) {
  .nav-menu, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
}

/* ==========================================================================
   Notice marquee
   ========================================================================== */
.notice-strip {
  background: var(--bg-tint);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.notice-flag {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad-royal-purple);
  color: #fff;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.1rem;
  z-index: 2;
  position: relative;
}
.notice-viewport {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.notice-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: notice-scroll 26s linear infinite;
}
.notice-strip:hover .notice-track { animation-play-state: paused; }
@keyframes notice-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.notice-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 2rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.notice-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
}
.notice-tag.urgent { background: #FFE4E0; color: #D9481F; }
.notice-tag.important { background: #FFF3D6; color: #B4790A; }
.notice-tag.new { background: #E1F7EA; color: #16874F; }
.notice-tag.info { background: #E3EEFF; color: #2454FF; }
.notice-item a { color: var(--royal); font-weight: 600; text-decoration: underline; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 5.5rem 0 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(36, 84, 255, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 60% 90%, rgba(255, 122, 48, 0.10) 0%, transparent 40%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(11,18,32,0.035) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(11,18,32,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.hero-orb.o1 { width: 340px; height: 340px; background: var(--grad-royal-purple); top: -80px; left: -80px; }
.hero-orb.o2 { width: 300px; height: 300px; background: var(--grad-orange-pink); bottom: -100px; right: -60px; }
.hero-orb.o3 { width: 200px; height: 200px; background: radial-gradient(circle, var(--sky), transparent 70%); top: 40%; right: 10%; opacity: 0.4; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-headline {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  margin: 1.75rem 0 1.5rem;
  max-width: 950px;
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .accent { background: var(--grad-brand); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.hero-sub {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.hero-badges {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  pointer-events: auto;
}
.hero-badge i { color: var(--royal); }
.hero-badge.b1 { top: 10%; left: 6%; }
.hero-badge.b2 { top: 18%; right: 7%; }
.hero-badge.b3 { bottom: 14%; left: 10%; }
.hero-badge.b4 { bottom: 20%; right: 9%; }
@media (max-width: 900px) { .hero-badges { display: none; } }

.hero-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-faint);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 34px;
  background: linear-gradient(var(--ink-faint), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--royal);
  animation: scroll-cue-drip 1.8s ease-in-out infinite;
}
@keyframes scroll-cue-drip {
  0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; }
}

/* Rotating seal (signature element) */
.seal {
  width: 100%; height: 100%;
  animation: seal-spin 22s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes seal-spin { to { transform: rotate(360deg); } }
.seal-check {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}

/* ==========================================================================
   Stats
   ========================================================================== */
.stats-band {
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  transform: translateY(-2.5rem);
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-card {
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  background: var(--grad-royal-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  background: var(--grad-royal-purple);
}
.service-card h3 { font-size: 1.1rem; }
.service-card p { color: var(--ink-soft); font-size: 0.92rem; }
.service-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--ink-faint);
}

/* ==========================================================================
   Tenders (home preview)
   ========================================================================== */
.tenders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) { .tenders-grid { grid-template-columns: 1fr; } }

.tender-card { padding: 1.75rem; }
.tender-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
}
.tender-badge.live { background: #E1F7EA; color: #16874F; }
.tender-badge.closing_soon { background: #FFF3D6; color: #B4790A; }
.tender-dept { font-size: 0.8rem; color: var(--royal); margin-bottom: 0.3rem; font-weight: 600; }
.tender-title { font-size: 1.02rem; margin-bottom: 1rem; }
.tender-row { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 0.5rem; }
.tender-row b { color: var(--ink); }

/* ==========================================================================
   Certifications / feature cards
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card { padding: 2.25rem; text-align: center; }
.feature-icon {
  width: 66px; height: 66px;
  border-radius: 50%;
  margin: 0 auto 1.4rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}
.feature-card h3 { font-size: 1.08rem; margin-bottom: 0.6rem; }
.feature-card p { color: var(--ink-soft); font-size: 0.9rem; }

/* ==========================================================================
   Process timeline
   ========================================================================== */
.timeline-band {
  background: var(--bg-soft);
}
.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 980px) { .timeline-track { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .timeline-track { grid-template-columns: 1fr; } }

.timeline-line {
  position: absolute;
  top: 26px; left: 4%; right: 4%;
  height: 2px;
  background: var(--line-strong);
  z-index: 0;
}
.timeline-line-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 0%;
  background: var(--grad-royal-purple);
}
.timeline-step { position: relative; z-index: 1; padding: 1.5rem 1.25rem; }
.step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-royal-purple);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 10px 24px rgba(36, 84, 255, 0.3);
}
.timeline-step h4 { font-size: 0.98rem; margin-bottom: 0.5rem; }
.timeline-step p { font-size: 0.85rem; color: var(--ink-soft); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; overflow: hidden; }
.faq-q {
  padding: 1.2rem 1.6rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-weight: 600;
  gap: 1rem;
}
.faq-q .plus {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  flex-shrink: 0;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: '';
  position: absolute; background: var(--ink-soft);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.faq-q .plus::before { top: 50%; left: 6px; right: 6px; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 6px; bottom: 6px; width: 1.5px; transform: translateX(-50%); }
.faq-item.active .faq-q .plus::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-item.active .faq-q { color: var(--royal); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a-inner { padding: 0 1.6rem 1.4rem; color: var(--ink-soft); font-size: 0.92rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 4rem 2rem;
  text-align: center;
  background: var(--grad-royal-purple);
  color: #fff;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 45%),
              radial-gradient(circle at 80% 80%, rgba(255,255,255,.14), transparent 40%);
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1rem; position: relative; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 2rem; position: relative; }
.cta-band .btn-outline { background: #fff; border-color: #fff; position: relative; }

/* ==========================================================================
   Footer
   ========================================================================== */
.gem-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 4.5rem 0 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.gem-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1.2rem; }
.gem-footer ul { display: flex; flex-direction: column; gap: 0.65rem; }
.gem-footer a:hover { color: #fff; }
.footer-socials { display: flex; gap: 0.9rem; margin-top: 1.4rem; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
}
.footer-socials a:hover { background: var(--grad-royal-purple); border-color: transparent; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.75rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.82rem;
}

/* ==========================================================================
   Reveal-on-scroll utility (IntersectionObserver driven)
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="scale"] { transform: translateY(0) scale(0.92); }
[data-reveal="scale"].is-visible { transform: translateY(0) scale(1); }

/* ==========================================================================
   Secondary page hero
   ========================================================================== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0 3.75rem;
  text-align: center;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.page-hero .hero-orb { opacity: 0.4; }

/* ==========================================================================
   Filter tabs
   ========================================================================== */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.75rem;
}
.tab-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  border: 1.5px solid var(--line-strong);
  background: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-soft);
  transition: all var(--dur-fast) var(--ease);
}
.tab-btn:hover { border-color: var(--royal); color: var(--royal); }
.tab-btn.active {
  background: var(--grad-royal-purple);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(36, 84, 255, 0.28);
}

/* ==========================================================================
   Form fields (light, public pages)
   ========================================================================== */
.field-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-group-light { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }
.form-group-light label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.form-control-light {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.form-control-light:focus { border-color: var(--royal); outline: none; box-shadow: 0 0 0 4px rgba(36, 84, 255, 0.12); }
.search-bar-row { display: flex; gap: 1rem; flex-wrap: wrap; padding: 1rem; }
.search-bar-row .form-control-light { flex: 1; min-width: 220px; }
.search-bar-row select.form-control-light { max-width: 220px; }

/* ==========================================================================
   Modal (light)
   ========================================================================== */
.modal-overlay-light {
  position: fixed; inset: 0;
  background: rgba(11, 18, 32, 0.5);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay-light.active { opacity: 1; pointer-events: auto; }
.modal-box-light {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-close-light {
  position: absolute; top: 1.1rem; right: 1.1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
}
.modal-close-light:hover { background: var(--line-strong); color: var(--ink); }

/* ==========================================================================
   Team / leadership
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { padding: 2rem; display: flex; gap: 1.5rem; align-items: flex-start; }
.team-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--grad-royal-purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-role { color: var(--royal); font-weight: 600; font-size: 0.88rem; margin: 0.2rem 0 0.7rem; }
.team-bio { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 0.9rem; }
.team-contact { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.84rem; color: var(--ink-soft); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-list { display: flex; flex-direction: column; gap: 1.4rem; margin: 1.5rem 0; }
.contact-info-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--bg-tint); color: var(--royal);
  display: flex; align-items: center; justify-content: center;
}
.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); margin-top: 1.5rem; }
.map-frame iframe { width: 100%; height: 220px; border: 0; display: block; }

.form-success { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; padding: 2rem 0; }
.form-success .check-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: #E1F7EA; color: #16874F;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}

/* ==========================================================================
   Admin panel — light restyle (admin.js DOM/IDs untouched)
   ========================================================================== */
.admin-light { background: var(--bg-soft); min-height: 100vh; }
.admin-light .admin-layout { display: flex; min-height: 100vh; }
.admin-light .admin-sidebar {
  width: 264px; background: #fff; border-right: 1px solid var(--line);
  padding: 1.5rem; display: flex; flex-direction: column;
}
.admin-light .admin-nav { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 2rem; flex: 1; }
.admin-light .admin-nav-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  color: var(--ink-soft); font-weight: 600; font-size: 0.9rem;
  transition: all var(--dur-fast) var(--ease);
}
.admin-light .admin-nav-item.active, .admin-light .admin-nav-item:hover { background: var(--grad-royal-purple); color: #fff; }
.admin-light .admin-content { flex: 1; padding: 2.5rem; overflow-y: auto; }
.admin-light .admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.admin-light .admin-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.admin-light .admin-table th, .admin-light .admin-table td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.88rem; }
.admin-light .admin-table th { background: var(--bg-soft); color: var(--ink-soft); font-weight: 700; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.05em; }
.admin-light .stat-card { padding: 1.6rem; }
.admin-light .form-control {
  background: #fff; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 0.8rem 1rem; color: var(--ink); font-family: inherit; width: 100%;
}
.admin-light .form-control:focus { border-color: var(--royal); outline: none; box-shadow: 0 0 0 4px rgba(36, 84, 255, 0.12); }
.admin-light .form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.admin-light .form-group label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.admin-light .tab-content { display: none; }
.admin-light .tab-content.is-active { display: block; }
@media (max-width: 900px) {
  .admin-light .admin-layout { flex-direction: column; }
  .admin-light .admin-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; align-items: center; }
  .admin-light .admin-nav { flex-direction: row; flex-wrap: wrap; margin-top: 0.5rem; }
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.75rem; bottom: 1.75rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
