:root {
  --color-forest: #0b3d2e;
  --color-forest-dark: #06261c;
  --color-charcoal: #121212;
  --color-sand: #f3f0e6;
  --color-lime: #8ee085;
  --color-copper: #f0a500;
  --color-cloud: #e0e7e9;
  --color-white: #ffffff;
  --color-mist: rgba(255, 255, 255, 0.8);
  --shadow-soft: 0 15px 35px rgba(12, 34, 23, 0.25);
  --shadow-card: 0 20px 45px rgba(8, 26, 18, 0.2);
  --max-width: 1200px;
  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --header-height: 82px;
  --transition-base: all 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

  html {
    overflow-x: hidden;
  }

body {
  font-family: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-charcoal);
  color: var(--color-sand);
  line-height: 1.6;
  min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

main {
  overflow-x: hidden;
  width: 100%;
}

.container {
  max-width: var(--max-width);
  width: 100%;
  padding-left: 3.25rem;
  padding-right: 3.25rem;
  margin-inline: auto;
}

.hero {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(142, 224, 133, 0.35), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(240, 165, 0, 0.25), transparent 45%),
    linear-gradient(145deg, #0b3d2e, #071c14 55%);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 7% 5%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: -1;
  top: 95px;
}

.hero-grid {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.88;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-block: 2rem 2.5rem;
}

.badge {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  background: var(--color-lime);
  color: var(--color-forest);
  transition: var(--transition-base);
  box-shadow: 0 10px 25px rgba(142, 224, 133, 0.35);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(142, 224, 133, 0.45);
}

.btn.secondary {
  background: transparent;
  color: var(--color-sand);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}


.metrics-grid .metric-card {
  height: 100%;
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.metric-card span {
  font-family: "Space Mono", "IBM Plex Mono", monospace;
  font-size: 2rem;
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color-lime);
}

.section {
  padding-block: 4rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading span {
  color: var(--color-lime);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.4rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  align-items: stretch;
}

.card {
  background: rgba(5, 16, 12, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
}

.card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(142, 224, 133, 0.25), transparent 45%);
  opacity: 0;
  transition: var(--transition-base);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.card:hover::before {
  opacity: 1;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 99;
  transition: background 200ms ease;
}

nav.scrolled {
  background: rgba(6, 24, 15, 0.95);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

/* Location Maps Gallery */
.locations-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.location-card {
  background: rgba(5, 16, 12, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  cursor: pointer;
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(5, 16, 12, 0.8);
}

.location-map-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(11, 61, 46, 0.3);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.location-map-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.location-card:hover .location-map-preview img {
  transform: scale(1.05);
}

.location-info {
  padding: 1.25rem;
}

.location-info h3 {
  color: var(--color-lime);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.location-info p {
  font-size: 0.9rem;
  color: rgba(243, 240, 230, 0.7);
  margin: 0;
  line-height: 1.5;
}

.location-type {
  display: inline-block;
  background: rgba(142, 224, 133, 0.1);
  color: var(--color-lime);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.navbar {
  width: min(100% - 2.5rem, var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo span {
  color: var(--color-lime);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a {
  font-size: 0.95rem;
  opacity: 0.8;
  transition: color 200ms ease, opacity 200ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--color-lime);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--color-copper);
  color: var(--color-charcoal);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  align-items: center;
  justify-content: center;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 500ms ease;
}

.testimonial {
  min-width: 100%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.testimonial strong {
  color: var(--color-lime);
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
}

.slider-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-sand);
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px dashed rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 1.75rem;
}

.timeline-item h4 {
  color: var(--color-lime);
  margin-bottom: 0.35rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
  bottom: 0;
  width: 12px;
  border-radius: 50px;
  background: linear-gradient(var(--color-lime), transparent);
}

.service-section {
  margin-bottom: 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.service-section:nth-child(even) .service-visual {
  order: 2;
}

.service-visual {
  min-height: 260px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(142, 224, 133, 0.25), rgba(11, 61, 46, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
}

.feature-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
}

.feature-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-lime);
  margin-right: 0.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-card small {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-card a {
  color: var(--color-lime);
  font-weight: 600;
}

.form-card {
  background: rgba(5, 16, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

form {
  display: grid;
  gap: 1rem;
}

label {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.25);
  color: var(--color-sand);
  font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-lime);
  border-color: transparent;
}

footer {
  background: #050f0a;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.85rem;
  opacity: 0.75;
}

.tagline {
  font-size: 1.35rem;
  font-weight: 600;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.map-placeholder {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(240, 165, 0, 0.3), rgba(11, 61, 46, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 280px;
  position: relative;
}

.map-placeholder iframe {
  border: 0;
  border-radius: inherit;
}

.scroll-indicator {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--color-lime);
  color: var(--color-forest);
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: 0 20px 35px rgba(142, 224, 133, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
}

.scroll-indicator.active {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.table-like {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.table-like th,
.table-like td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.table-like th {
  width: 40%;
  color: rgba(255, 255, 255, 0.75);
}

#quote,
#downloads,
section[id],
[data-form] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.card{
    color: var(--color-white);
}

/* ── Dropdown navigation ─────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  font-size: 0.95rem;
  opacity: 0.8;
  transition: color 200ms ease, opacity 200ms ease;
  background: none;
  border: none;
  color: var(--color-sand);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  font-family: inherit;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  opacity: 1;
  color: var(--color-lime);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(4, 12, 9, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.4rem;
  min-width: 210px;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  padding: 0.55rem 0.85rem;
  border-radius: calc(var(--radius-md) - 4px);
  white-space: nowrap;
  font-size: 0.9rem;
  opacity: 0.85;
  display: block;
}

.nav-dropdown-menu a:hover {
  background: rgba(142, 224, 133, 0.1);
  opacity: 1;
  color: var(--color-lime);
}

/* ── Service visual images ───────────────────────────── */
.service-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 400ms ease, transform 500ms ease;
}

.service-section:hover .service-visual img {
  opacity: 0.65;
  transform: scale(1.04);
}


