@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Libre+Baskerville:wght@400;700&display=swap');

:root {
  --primary: #0e5f7a;
  --secondary: #1593a5;
  --accent: #f0b347;
  --ink: #0f172a;
  --muted: #5c6773;
  --surface: #ffffff;
  --soft: #f3f9fc;
  --line: #dbe7ef;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 8% 0%, #dff2f8 0, #f8fdff 36%, #ffffff 100%);
  line-height: 1.6;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, #084d64, #0e5f7a);
  color: #e8f8fe;
  font-size: 0.86rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.topbar a {
  color: #e8f8fe;
  text-decoration: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  text-decoration: none;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  line-height: 1;
}

.logo-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo-text {
  color: #0e5f7a;
  font-weight: 800;
}

.logo-sub {
  color: #68808c;
  font-size: 0.9rem;
  font-weight: 700;
  margin-left: 0.2rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.1rem;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}

nav a:hover,
nav a.active {
  background: #e4f3f7;
  color: #0c6f87;
}

.btn {
  border: 0;
  border-radius: 10px;
  padding: 0.78rem 1.25rem;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #0f6884, #1493a4);
  color: #fff;
  box-shadow: 0 10px 20px rgba(15, 104, 132, 0.22);
}

.btn-secondary {
  background: #ffffff;
  color: #0b5d74;
  border: 1px solid #b8d7e2;
}

.hero {
  padding: 3.2rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.14;
  margin-bottom: 1rem;
}

.hero .lead {
  color: var(--muted);
  font-size: 1.03rem;
  margin-bottom: 1rem;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.hero-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 490px;
}

.hero-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(5, 23, 30, 0.75);
  color: #fff;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge strong {
  display: block;
  font-size: 1.3rem;
}

section {
  padding: 3.2rem 0;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-title h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.2;
}

.section-title p {
  color: var(--muted);
  max-width: 620px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 12px 25px rgba(10, 48, 68, 0.08);
}

.card h3 {
  color: #0a6077;
  margin-bottom: 0.35rem;
}

.card p {
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat {
  background: linear-gradient(145deg, #0b5d74, #148ca1);
  border-radius: 16px;
  padding: 1rem;
  color: #fff;
}

.stat strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.step .num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #daf1f6;
  color: #0c6e86;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.image-grid img,
.page-banner img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta {
  background: linear-gradient(130deg, #0a4f66, #0f7287 52%, #16a0ad);
  border-radius: 20px;
  padding: 2rem;
  color: #fff;
}

.cta h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.8rem;
}

.cta p {
  max-width: 760px;
  margin-bottom: 1rem;
  color: #e0f7fd;
}

.page-hero {
  padding: 2.6rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 0.6rem;
}

.page-hero p {
  color: var(--muted);
}

.page-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.content-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  margin-bottom: 0.9rem;
}

.content-block h3 {
  color: #0e6880;
  margin-bottom: 0.3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
}

.contact-card h3 {
  color: #0d6e86;
  margin-bottom: 0.45rem;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  text-decoration: none;
}

footer {
  text-align: center;
  color: #68808c;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding: 1.3rem 0 2rem;
}

.fade-up {
  animation: fadeUp 0.65s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .page-grid,
  .cards,
  .stats,
  .process,
  .image-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .hero-media img {
    min-height: 340px;
  }

  .hero-media--small img {
    min-height: 200px;
  }

  .image-grid img,
  .page-banner img {
    height: 220px;
  }

  nav ul {
    gap: 0.35rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}


.hero-media-stack {
  display: grid;
  grid-template-rows: 1fr 0.72fr;
  gap: 1rem;
}

.hero-media--small img {
  min-height: 230px;
}

.hero-copy {
  max-width: 96%;
}
