:root {
  --gp-navy-900: #06152a;
  --gp-navy-800: #0a2140;
  --gp-navy-700: #133a69;
  --gp-sea: #1a70a4;
  --gp-copper: #e39a2a;
  --gp-copper-soft: #ffcf84;
  --gp-surface: #ffffff;
  --gp-bg: #f4f8fc;
  --gp-text: #1d2734;
  --gp-muted: #617388;
  --gp-border: #d9e4f1;
  --radius-lg: 1.2rem;
  --radius-xl: 1.8rem;
  --shadow-soft: 0 12px 36px rgba(8, 36, 68, 0.11);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--gp-text);
  background: radial-gradient(circle at 20% -10%, #eaf3ff 0%, transparent 38%), var(--gp-bg);
  padding-top: 92px;
  line-height: 1.62;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.btn {
  font-family: "Sora", "Segoe UI", sans-serif;
}

a {
  text-decoration: none;
}

.nav-shell {
  background: rgba(8, 28, 52, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.55rem;
  transition: all 0.28s ease;
}

#mainNavbar.scrolled .nav-shell {
  background: rgba(8, 24, 44, 0.96);
  box-shadow: 0 12px 26px rgba(4, 18, 35, 0.35);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-left: 0.35rem;
}

.brand-mark {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gp-copper), #f6b548);
  box-shadow: 0 0 0 6px rgba(227, 154, 42, 0.24);
}

.brand-text {
  color: #fff;
}

#mainNavbar .navbar-toggler {
  border: 0;
}

#mainNavbar .navbar-toggler-icon {
  filter: invert(1);
}

#mainNavbar .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.btn-accent {
  background: linear-gradient(120deg, var(--gp-copper), #f3af3d);
  border: 0;
  color: #1b2330;
  font-weight: 700;
  border-radius: 0.9rem;
  box-shadow: 0 10px 24px rgba(227, 154, 42, 0.34);
}

.btn-accent:hover {
  color: #0b1422;
  transform: translateY(-1px);
}

.btn-outline-primary {
  border-color: var(--gp-navy-700);
  color: var(--gp-navy-700);
}

.btn-outline-primary:hover {
  background: var(--gp-navy-700);
  border-color: var(--gp-navy-700);
}

.hero-section {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  background: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(4, 16, 34, 0.92) 0%, rgba(8, 40, 79, 0.78) 52%, rgba(12, 72, 128, 0.62) 100%);
}

.hero-orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.orb-1 {
  width: 16rem;
  height: 16rem;
  right: -3.5rem;
  top: 5rem;
  background: radial-gradient(circle, rgba(227, 154, 42, 0.4), rgba(227, 154, 42, 0.02));
}

.orb-2 {
  width: 20rem;
  height: 20rem;
  left: -8rem;
  bottom: -8rem;
  background: radial-gradient(circle, rgba(61, 132, 196, 0.35), rgba(14, 52, 96, 0.02));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffe9c3;
  border: 1px solid rgba(255, 221, 166, 0.6);
  background: rgba(227, 154, 42, 0.14);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
}

.hero-title {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 1.12;
  font-weight: 800;
  max-width: 16ch;
}

.hero-lead {
  max-width: 56ch;
  color: #d8e5f5;
  font-size: 1.05rem;
}

.hero-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.kpi-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07));
  border-radius: var(--radius-lg);
  padding: 1.05rem;
  backdrop-filter: blur(6px);
}

.kpi-card h3 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

.kpi-card p {
  margin: 0.25rem 0 0;
  color: #d8e6f8;
  font-size: 0.88rem;
}

.section-kicker {
  display: inline-block;
  color: var(--gp-sea);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-heading h2 {
  color: var(--gp-navy-800);
  letter-spacing: -0.02em;
}

.bg-light-subtle {
  background: linear-gradient(180deg, #f8fbff, #eef5fc) !important;
}

.service-card {
  border: 1px solid var(--gp-border);
  border-radius: var(--radius-lg);
  background: var(--gp-surface);
  padding: 1rem;
  box-shadow: 0 6px 16px rgba(12, 41, 71, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.service-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  font-weight: 700;
  color: var(--gp-navy-700);
  background: linear-gradient(140deg, rgba(26, 112, 164, 0.2), rgba(26, 112, 164, 0.06));
}

.timeline-wrap {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  position: relative;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--gp-border);
  padding: 1.05rem 1.2rem;
  box-shadow: 0 6px 18px rgba(8, 36, 66, 0.06);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 1rem 0 0 1rem;
  background: linear-gradient(180deg, var(--gp-copper), #f3c06d);
}

.timeline-year {
  color: var(--gp-navy-700);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.9rem;
}

.partner-logo {
  border: 1px solid var(--gp-border);
  border-radius: 0.95rem;
  background: linear-gradient(160deg, #fff, #f7fafe);
  padding: 1rem;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: #2d4d75;
}

.page-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #071831, #113968, #1d5d95);
}

.page-banner::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 211, 143, 0.2), rgba(255, 211, 143, 0));
}

.page-banner .lead {
  color: #deebfb;
  max-width: 60ch;
}

.contact-card,
.card.shadow-sm {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gp-border) !important;
  box-shadow: 0 8px 20px rgba(10, 34, 63, 0.08) !important;
}

.form-control,
.form-select {
  border-radius: 0.8rem;
  border-color: #cfdae8;
  padding: 0.7rem 0.9rem;
}

.form-control:focus,
.form-select:focus {
  border-color: #6ca0c9;
  box-shadow: 0 0 0 0.22rem rgba(42, 116, 169, 0.18);
}

.btn-primary {
  border-radius: 0.85rem;
  background: linear-gradient(120deg, #113968, #1f5a94);
  border-color: #1a4f82;
}

.btn-primary:hover {
  background: linear-gradient(120deg, #0f3158, #18497a);
  border-color: #123d67;
}

.site-footer {
  margin-top: 3rem;
  background: linear-gradient(160deg, #07182f, #0c294a);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(227, 154, 42, 0.16), transparent 35%);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.text-footer {
  color: #c5d5e9;
}

.footer-divider {
  border-color: rgba(154, 181, 209, 0.36);
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--delay, 0) * 70ms);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  body {
    padding-top: 80px;
  }

  .nav-shell {
    border-radius: 1rem;
  }

  .hero-section {
    min-height: 84vh;
  }

  .hero-kpi-grid {
    gap: 0.75rem;
  }

  .hero-title {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 78vh;
  }

  .kpi-card h3 {
    font-size: 1.45rem;
  }

  .btn-lg {
    width: 100%;
  }
}

