:root {
  --primary: #0c4a6e;
  --primary-dark: #082f49;
  --accent: #1d9bf0;
  --surface: #ffffff;
  --surface-soft: #f3f8fc;
  --text: #102033;
  --muted: #5d6b7b;
  --border: #d8e4ef;
  --shadow: 0 20px 45px rgba(8, 47, 73, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #eef5fa;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--primary-dark);
  color: #dcedf7;
  font-size: 0.95rem;
}

.topbar-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 228, 239, 0.9);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--border);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  font-size: 1.1rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--primary-dark);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a.active,
.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--surface-soft);
  color: var(--primary-dark);
}

.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 47, 73, 0.86), rgba(12, 74, 110, 0.54)),
    url("images/11.jpg") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 47, 73, 0.12), rgba(8, 47, 73, 0.3));
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 640px;
  display: grid;
  align-items: center;
  padding: 96px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.08;
}

.hero p,
.page-hero p {
  font-size: 1.05rem;
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.2s ease;
}

.button-primary {
  background: #fff;
  color: var(--primary-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-1px);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card,
.info-card,
.service-card,
.contact-card,
.stat-card,
.value-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  border: 1px solid rgba(216, 228, 239, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
}

.hero-card h2,
.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.15;
}

.hero-card ul,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card li,
.check-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 12px;
  color: var(--muted);
}

.hero-card li::before,
.check-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 9px;
}

.section {
  padding: 84px 0;
}

.section-light {
  background: #fff;
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.stats-grid,
.services-grid,
.about-grid,
.values-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: 26px;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--primary-dark);
}

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

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  overflow: hidden;
}

.service-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-body {
  padding: 24px;
}

.service-body h3,
.contact-card h3,
.value-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.service-body p,
.contact-card p,
.value-card p,
.about-copy p,
.info-card p {
  margin: 0;
  color: var(--muted);
}

.about-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
}

.about-image img,
.page-hero-image img {
  width: 100%;
  min-height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.info-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
}

.info-band .info-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.info-band .info-card p,
.info-band .check-list li {
  color: rgba(255, 255, 255, 0.88);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.info-card {
  padding: 24px;
}

.page-hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 47, 73, 0.88), rgba(12, 74, 110, 0.55)),
    url("images/slideshow-image2.jpg") center/cover;
}

.page-hero.contact-hero {
  background:
    linear-gradient(90deg, rgba(8, 47, 73, 0.88), rgba(12, 74, 110, 0.55)),
    url("images/slideshow-image3.jpg") center/cover;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 88px 0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 32px;
  align-items: center;
}

.page-hero-copy {
  max-width: 720px;
}

.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  padding: 24px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 20px;
}

.contact-card {
  padding: 24px;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.contact-list strong,
.footer-column strong {
  display: block;
  margin-bottom: 4px;
}

.map-frame {
  width: 100%;
  min-height: 480px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #071c2b;
  color: #d6e6f0;
  padding: 28px 0;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.35);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: start;
}

.footer-column p,
.footer-column a {
  color: #d6e6f0;
  opacity: 0.9;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(214, 230, 240, 0.14);
  font-size: 0.92rem;
  color: rgba(214, 230, 240, 0.8);
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .page-hero-grid,
  .contact-grid,
  .services-grid,
  .values-grid,
  .info-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 72px 0;
  }

  .page-hero-inner {
    padding: 72px 0;
  }

  .service-card img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: none;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .topbar-inner {
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}
