:root {
  --background: #ffffff;
  --foreground: #0f2d35;
  --muted: #f2f6f7;
  --muted-strong: #d9e4e7;
  --primary: #0c5a64;
  --primary-dark: #063941;
  --primary-foreground: #f5fbfb;
  --primary-light: #1f7c87;
  --secondary: #5ac287;
  --secondary-dark: #369763;
  --secondary-foreground: #042b1a;
  --accent: #e4f3ff;
  --border: #e1eaed;
  --shadow: 0 20px 45px rgba(9, 72, 82, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 80px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 45, 53, 0.08);
  z-index: 999;
  box-shadow: 0 5px 20px rgba(9, 72, 82, 0.05);
}

.nav-bar {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  height: 52px;
  width: auto;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-wordmark {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
}

.brand-wordmark::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(12, 90, 100, 0.15), rgba(90, 194, 135, 0.35));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--foreground);
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary);
  opacity: 1;
}

.nav-services {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-services-toggle {
  border: none;
  background: transparent;
  font: inherit;
  color: var(--foreground);
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  padding: 0;
}

.nav-services:hover .nav-services-toggle,
.nav-services.active .nav-services-toggle {
  color: var(--primary);
  opacity: 1;
}

.nav-services-chevron {
  font-size: 0.8rem;
}

.nav-services-menu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(9, 72, 82, 0.16);
  padding: 0.75rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 1000;
}

.nav-services:hover .nav-services-menu,
.nav-services:focus-within .nav-services-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-services-menu a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.95rem;
  color: var(--foreground);
  text-decoration: none;
  white-space: nowrap;
}

.nav-services-menu a:hover {
  background: rgba(12, 90, 100, 0.06);
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: rgba(12, 90, 100, 0.06);
  border: 1px solid rgba(12, 90, 100, 0.12);
  padding: 0.45rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--foreground);
  box-shadow: 0 6px 18px rgba(9, 72, 82, 0.12);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.menu-toggle svg {
  display: block;
}

.menu-toggle:hover {
  background: rgba(12, 90, 100, 0.12);
  border-color: rgba(12, 90, 100, 0.25);
  box-shadow: 0 10px 24px rgba(9, 72, 82, 0.2);
  transform: translateY(-1px);
}

.menu-toggle:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(9, 72, 82, 0.18);
}

.mobile-drawer {
  display: none;
  flex-direction: column;
  padding: 1rem 0 2rem;
  gap: 0.75rem;
  border-top: 1px solid rgba(15, 45, 53, 0.08);
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--background);
  box-shadow: 0 18px 45px rgba(9, 72, 82, 0.16);
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-drawer[hidden] {
  display: none !important;
}

.mobile-drawer a {
  padding: 0.65rem 0.25rem;
  font-weight: 600;
  opacity: 0.9;
  border-radius: 999px;
  padding-inline: 0.75rem;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    opacity 0.15s ease,
    transform 0.12s ease;
}

.mobile-drawer .btn {
  width: 100%;
}

.mobile-drawer a:hover {
  background: rgba(12, 90, 100, 0.06);
  color: var(--primary);
  transform: translateX(2px);
}

.mobile-services-group {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(15, 45, 53, 0.08);
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.mobile-services-toggle {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.35rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-services-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(15, 45, 53, 0.7);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mobile-services-chevron {
  font-size: 0.8rem;
  color: rgba(15, 45, 53, 0.6);
  transition: transform 0.2s ease;
}

.mobile-services-toggle[aria-expanded="true"] .mobile-services-chevron {
  transform: rotate(180deg);
}

.mobile-services-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-services-links[hidden] {
  display: none;
}

.mobile-services-links a {
  font-weight: 500;
  opacity: 0.9;
}

.hero {
  position: relative;
  padding: 8rem 0 4rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0c5a64, #19758c, #5ac287);
  color: var(--primary-foreground);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.125rem;
  max-width: 540px;
  opacity: 0.9;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.media-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.media-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 57, 65, 0) 0%, rgba(6, 57, 65, 0.35) 100%);
  z-index: 1;
}

main {
  flex: 1;
  padding-top: 80px;
}

section {
  padding: 5rem 0;
}

.section-muted {
  background-color: var(--muted);
}

.section-gradient {
  background: linear-gradient(135deg, rgba(12, 90, 100, 0.08), rgba(90, 194, 135, 0.08));
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.section-heading p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(15, 45, 53, 0.75);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(15, 45, 53, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(15, 45, 53, 0.15);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(12, 90, 100, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.card p {
  color: rgba(15, 45, 53, 0.65);
  margin: 0 0 1.25rem 0;
}

.card p:last-child {
  margin-bottom: 0;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial footer {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  font-weight: 600;
}

.testimonial footer span {
  display: block;
  font-weight: 400;
  color: rgba(15, 45, 53, 0.65);
  font-size: 0.95rem;
}

.stars {
  color: var(--secondary);
  font-size: 1.1rem;
}

.steps {
  position: relative;
  gap: 2rem;
}

.step-card {
  position: relative;
  padding: 2rem 1.75rem;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--secondary);
  color: var(--secondary-foreground);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(90, 194, 135, 0.3);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(12, 90, 100, 0.15);
}

textarea {
  resize: vertical;
  min-height: 160px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 0.95rem 1.8rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(12, 90, 100, 0.25);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 12px 25px rgba(12, 90, 100, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-light);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: 0 12px 25px rgba(90, 194, 135, 0.35);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--secondary-dark);
}

.btn-outline {
  border: 2px solid var(--primary-foreground);
  color: var(--primary);
  background: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(12, 90, 100, 0.1);
  color: white;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.role-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(15, 45, 53, 0.08);
}

.role-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(90, 194, 135, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--secondary-dark);
}

.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.category-pill {
  padding: 1rem;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(15, 45, 53, 0.06);
}

.success-message {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: rgba(90, 194, 135, 0.15);
  color: var(--secondary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(90, 194, 135, 0.3);
}

footer {
  background: var(--primary);
  color: var(--primary-foreground);
  margin-top: auto;
}

.footer-top {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-grid h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-grid li {
  font-size: 0.95rem;
  opacity: 0.85;
}

.footer-grid a:hover {
  opacity: 1;
}

.contact-line {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-line span {
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 251, 251, 0.2);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.85;
}

.footer-bottom a {
  color: var(--primary-foreground);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-bottom a:hover {
  opacity: 1;
  text-decoration: underline;
}

.map-placeholder {
  border-radius: var(--radius);
  border: 1px dashed var(--muted-strong);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(228, 243, 255, 0.5);
}

.map-placeholder p {
  margin: 0.35rem 0 0;
  color: rgba(15, 45, 53, 0.6);
}

.not-found {
  padding: 8rem 0 5rem;
  text-align: center;
}

.not-found h1 {
  font-size: clamp(3rem, 10vw, 5rem);
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-drawer {
    display: flex;
  }

  .hero {
    padding-top: 7rem;
  }

  section {
    padding: 4rem 0;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .card,
  .role-item {
    padding: 1.25rem;
  }
}

/* Accordion Styles */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.accordion-item:hover {
  box-shadow: 0 5px 15px rgba(15, 45, 53, 0.1);
}

.accordion-header {
  width: 100%;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.accordion-trigger:hover {
  background: rgba(12, 90, 100, 0.04);
  color: var(--primary);
}

.accordion-trigger[aria-expanded="true"] {
  color: var(--primary);
  background: rgba(12, 90, 100, 0.06);
}

.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.accordion-content[aria-hidden="true"] {
  max-height: 0;
  padding: 0 1.5rem;
}

.accordion-content[aria-hidden="false"] {
  max-height: 1000px;
  padding: 0 1.5rem 1.5rem;
}

.accordion-content-inner {
  padding-top: 0.5rem;
  color: rgba(15, 45, 53, 0.75);
  line-height: 1.7;
}

.accordion-content-inner p {
  margin: 0 0 1rem;
}

.accordion-content-inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .accordion-trigger {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .accordion-content {
    padding: 0 1.25rem;
  }

  .accordion-content[aria-hidden="false"] {
    padding: 0 1.25rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

