:root {
  --bg: #ffffff;
  --ink: #0b1f3a;
  --muted: #4b5563;
  --brand: #00b3a4;
  --brand-700: #009b8e;
  --surface: #f7fafc;
  --border: #e5e7eb;
  --shadow: 0 12px 36px rgba(11, 31, 58, .12);
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: var(--brand);
  text-decoration: none
}

a:hover {
  text-decoration: underline
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto
}

.section {
  padding: 72px 0
}

.section.alt {
  background: var(--surface)
}

.title-xl {
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.15;
  margin: 0 0 8px
}

.title-lg {
  font-size: clamp(22px, 2.6vw, 32px);
  margin: 0 0 6px
}

.title-md {
  font-size: clamp(18px, 2vw, 24px);
  margin: 0 0 6px
}

.kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: 8px
}

.lead {
  color: #fff;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px
}

@media(min-width:960px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr
  }

  .grid-3 {
    grid-template-columns: 1.2fr 1fr 1fr
  }
}

.hero-figure {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

/* Header / Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid var(--border)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative
}

.nav-icon {
  width: 18px;
  height: 18px;
  opacity: .85
}

.chev {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  transition: transform .2s ease;
  opacity: .85
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #111827;
  display: block
}

.nav-toggle span+span {
  margin-top: 5px
}

.nav-list {
  list-style: none;
  padding: 8px;
  margin: 0;
  display: none;
  position: fixed;
  inset: 70px 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  flex-direction: column;
  gap: 6px;
  z-index: 90
}

.nav.open .nav-list {
  display: flex
}

.nav a,
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  /* border-radius: 12px; */
  color: var(--ink);
   background: none;
   outline: none;
   border: none;
}

.nav a:hover,
.dropdown-trigger:hover {
  background: var(--surface);
  text-decoration: none
}

.has-dropdown {
  position: relative;

}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow);
  list-style: none;

}

.menu-icon {
  width: 16px;
  height: 16px;
  opacity: .85;
  margin-right: 6px
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px
}

.dropdown a:hover {
  background: var(--surface);
  text-decoration: none
}

.has-dropdown.open>.dropdown {
  display: block
}

.has-dropdown.open>.dropdown-trigger .chev {
  transform: rotate(180deg)
}

@media(max-width:1039px) {
  .dropdown {
    position: static;
    inset: auto;
    min-width: unset;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px;
    margin: 4px 0 0 12px;
    box-shadow: none
  }
}

@media(min-width:1040px) {
  .nav-toggle {
    display: none
  }

  .nav-list {
    display: flex !important;
    position: static;
    background: transparent;
    box-shadow: none;
    border: 0;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 0
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff
}

.btn:hover {
  text-decoration: none;
  border-color: #cbd5e1
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand-700)
}

.btn-primary:hover {
  background: var(--brand-700)
}

/* Lists */
.feature-list {
  padding-left: 20px
}

.feature-list li {
  margin: 8px 0
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0
}

.icon {
  width: 22px;
  height: 22px
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .06)
}

.card-body {
  padding: 18px
}

/* Banner / overlay for better readability */
.banner {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border)
}

.banner img {
  width: 100%;
  height: clamp(300px, 44vw, 440px);
  object-fit: cover;
  object-position: center
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .55) 85%)
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -140px 160px rgba(0, 0, 0, .55);
  pointer-events: none
}

.banner-cap {
  position: absolute;
  inset: auto 0 0 0;
  color: #fff;
  padding: 26px 0
}

/* Slider */
.hero-slider {
  position: relative;
  overflow: hidden
}

.hero-slider .slides {
  white-space: nowrap;
  font-size: 0;
  transition: transform .6s ease
}

.hero-slider .slide {
  display: inline-block;
  width: 100%;
  position: relative;
  font-size: initial
}

.hero-slider img {
  width: 100%;
  height: clamp(360px, 56vw, 700px);
  object-fit: cover;
  object-position: center
}

.slide-cap {
  position: absolute;
  inset: auto 0 8% 0;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35)
}

.slider-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none
}

.slider-nav button {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: #fff
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .7)
}

.dots button[aria-selected="true"] {
  background: #fff
}

/* Maps */
.map-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0
}

.map-actions {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--border)
}

/* Forms */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 10px 0
}

input,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font: inherit
}

.form-actions {
  margin-top: 12px
}

/* Footer (full section in #0b1f3a) */
          .list-plain {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .list-plain li {
      margin-bottom: 4px;
    }

    /* Footer (full section in #0b1f3a) */
    .site-footer {
      background: #0b1f3a;
      color: #fff;
      padding: 40px 0 24px;
      margin-top: 40px;
    }

    .site-footer h4 {
      color: #fff;
      margin: 0 0 8px;
      font-size: 18px;
    }

    .site-footer p {
      margin: 0 0 6px;
      font-size: 14px;
    }

    .site-footer a {
      color: #c0e9e5;
      text-decoration: none;
    }

    .site-footer a:hover {
      text-decoration: underline;
    }

    /* Responsive grid layout for footer columns */
    .footer-grid {
      display: grid;
      gap: 24px;
      /* 4 columns on large screens */
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    /* Tablet: 2 columns */
    @media (max-width: 900px) {
      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    /* Mobile: 1 column */
    @media (max-width: 600px) {
      .site-footer {
        padding-top: 28px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
    }

    /* Fine print bottom row */
    .site-footer .fineprint {
      font-size: 13px;
      color: #cbd5e1;
      padding-top: 12px;
      border-top: 1px dashed rgba(255, 255, 255, 0.18);
      margin-top: 16px;
      text-align: center;
    }

    /* WhatsApp Floating Button */
    .wa-float {
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 120;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: #fff;
      border-radius: 999px;
      padding: 10px 14px;
      box-shadow: 0 10px 20px rgba(37, 211, 102, 0.35);
      font-size: 14px;
    }

    .wa-float img {
      display: block;
      width: 22px;
      height: 22px;
      filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
    }

    .wa-float span {
      font-weight: 500;
    }

    .wa-float:hover {
      text-decoration: none;
      transform: translateY(-1px);
    }

    /* Optional: skip link for accessibility */
    .skip-link {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .skip-link:focus {
      left: 8px;
      top: 8px;
      width: auto;
      height: auto;
      background: #111;
      color: #fff;
      padding: 8px 10px;
      border-radius: 6px;
      z-index: 200;
    }