:root {
  --bg: #03165A;
  --bg-soft: #0B1F49;
  --surface: #ffffff;
  --text: #03165A;
  --muted: #35506F;
  --line: #D7DEE8;
  --brand: #1D5032;
  --brand-dark: #03165A;
  --accent: #F5F7FA;
  --shadow: 0 20px 50px rgba(3, 22, 90, 0.12);
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #F5F7FA;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.topbar {
  background: var(--bg);
  color: #e5e7eb;
  font-size: 0.95rem;
}
.topbar-inner {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; padding: 0.75rem 0; align-items: center;
}
.topbar strong { color: #fff; }
.site-header {
  position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(226,232,240,.9);
}
.navbar {
  display: flex; align-items: center; justify-content: space-between; padding: 1rem 0;
}
.logo {
  font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-size: 1.05rem;
}
.logo span { color: var(--brand-dark); }
.nav-links {
  display: flex; gap: 1.25rem; font-weight: 600; color: #35506F;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-dark); }
/* .hero {
  color: white;
  background:
    linear-gradient(rgba(3,22,90,.58), rgba(3,22,90,.72)),
    radial-gradient(circle at top right, rgba(29,80,50,.32), transparent 28%),
    linear-gradient(135deg, #1D5032, #0f172a 65%);
} */
 /* .hero {
  color: white;
  background:
    linear-gradient(rgba(3,22,90,.6), rgba(3,22,90,.75)),
    url('../assets/hero.png') center/cover no-repeat;
} */
 .hero {
  color: white;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(3,22,90,.25), rgba(3,22,90,.35)),
    url('hero.png') center/cover no-repeat;
}
.hero .container { padding: 6rem 0 5rem; }
.eyebrow {
  display: inline-block; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); padding: .4rem .8rem; border-radius: 999px; font-size: .9rem; margin-bottom: 1rem;
}
.hero h1, .page-hero h1 {
  margin: 0 0 1rem; font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.05;
}
.hero p, .page-hero p { max-width: 760px; font-size: 1.1rem; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: .95rem 1.2rem; border-radius: 999px; font-weight: 700; transition: .2s ease; border: 1px solid transparent;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: #163D27; transform: translateY(-1px); }
.btn-secondary { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); color: #fff; }
.btn-secondary:hover { background: rgba(255,255,255,.15); }
.section { padding: 4.5rem 0; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.8rem); margin: 0 0 .8rem; }
.section-subtitle { margin: 0 0 2rem; color: var(--muted); max-width: 760px; }
.grid-3, .grid-2, .stats-grid, .fleet-grid, .contact-grid, .results-grid {
  display: grid; gap: 1.4rem;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2, .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.who-grid {
  align-items: center;
}

.who-text {
  padding-right: 1rem;
}

.who-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.who.reverse {
  direction: rtl;
}

.who.reverse .who-text,
.who.reverse .who-image {
  direction: ltr;
}
.service-split {
  align-items: center;
  gap: 2.5rem;
}

.service-copy {
  padding-right: 1rem;
}

.service-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-split.reverse {
  direction: rtl;
}

.service-split.reverse .service-copy,
.service-split.reverse .service-media {
  direction: ltr;
}

.service-eyebrow {
  color: var(--brand-dark);
  background: #E5EEE8;
  border: 1px solid #A9C1B1;
  margin-bottom: 1.25rem;
}

.service-alt {
  background: #ffffff;
}

.service-copy .section-title {
  margin-bottom: 1rem;
}

.service-copy .section-subtitle {
  margin-bottom: 0;
}
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; font-size: 1.25rem; }
.card p, .card li { color: var(--muted); }
.card {
  transition: all 0.3s ease;
} */
/* .card {
  padding: 2rem;
  border-radius: 22px;
} */

.card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.3rem;
  line-height: 1.3;
}
.card li { color: var(--muted); }
.card p {
  font-size: 1rem;
  line-height: 1.75;
}
.card:hover {
  transform: translateY(-6px);
background: linear-gradient(135deg, #f0f5f2, #ffffff);
  border-color: var(--brand);
  box-shadow: 0 25px 60px rgba(3, 22, 90, 0.18);
}

.card:hover h3 {
  color: var(--brand);
}

.card:hover .icon-badge {
  background: var(--brand);
  color: white;
}
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card-link:active .card {
  transform: translateY(-2px);
}
.card-link:hover {
  cursor: pointer;
}
.card ul { margin: .75rem 0 0 1.1rem; padding: 0; }
.icon-badge {
  width: 3rem; height: 3rem; border-radius: 14px; display: grid; place-items: center; font-weight: 800; background: #E5EEE8; color: var(--brand-dark); margin-bottom: 1rem;
}
.icon-badge {
  transition: all 0.3s ease;
}
.page-hero {
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1D5032);
}
.page-hero .container { padding: 4.5rem 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.process-card {
  position: relative;
  padding-top: 4.5rem;
  min-height: 230px;
}

.process-number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  background: #E5EEE8;
  color: var(--brand-dark);
  border: 1px solid #A9C1B1;
}

.process-card h3 {
  margin-bottom: 0.75rem;
}

.process-card p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
/* .process-step { position: relative; }
.process-step::before {
  content: ""; position: absolute; inset: 0 auto auto 1.5rem; width: 2px; height: 100%; background: linear-gradient(var(--brand), transparent); opacity: .18;
}
.process-step:last-child::before { display: none; } */
.stat { text-align: center; padding: 1.5rem 1rem; }
.stat strong { display: block; font-size: 2rem; color: var(--brand-dark); }
.banner {
  background: linear-gradient(135deg, #E5EEE8, #F5F7FA); border: 1px solid #A9C1B1; border-radius: calc(var(--radius) + 4px); padding: 2rem;
}
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: .7rem 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1rem; }
input, textarea {
  width: 100%; padding: .95rem 1rem; border: 1px solid #C8D3E0; border-radius: 14px; font: inherit; background: white;
}
textarea { min-height: 170px; resize: vertical; }
.notice {
  font-size: .92rem; color: var(--muted); background: #F5F7FA; border: 1px dashed #C8D3E0; padding: .85rem 1rem; border-radius: 14px; margin-bottom: 1rem;
}
.footer {
  background: var(--bg); color: #C8D3E0; padding: 2rem 0; margin-top: 2rem;
}
.footer a { color: #fff; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
@media (max-width: 900px) {
  .grid-3, .grid-2, .stats-grid, .fleet-grid, .contact-grid, .results-grid { grid-template-columns: 1fr; }
  .navbar { flex-direction: column; gap: .75rem; }
  .topbar-inner { flex-direction: column; align-items: flex-start; }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.service-card {
  height: 100%;
  padding: 2rem;
}

.service-card h3 {
  min-height: 3.2rem;
}

.service-card p {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1;
}

.logo img {
  width: 33px;
  height: 33px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo span {
  color: var(--brand-dark);
}