:root {
  --green: #358c9c;
  --green-600: #2e7885;
  --orange: #f68716;
  --orange-600: #de780f;
  --text: #333;
  --muted: #6b7280;
  --bg: #fff;
  --bg-soft: #f9fafb;
  --ring: rgba(53, 140, 156, 0.35);
  --radius: 16px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #fcfcfc; /* Soft white */
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 70px 0;
}

.section-head {
  margin-bottom: 32px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 8px;
}

.subtitle {
  color: var(--muted);
  font-size: 16px;
}

.card, .form, .contact-card, .hero-card {
  background: var(--bg);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--orange);
  color: #fff;
}

.btn-accent:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
}

.map {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: var(--radius);
}
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 42px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.name {
  font-weight: 800;
  color: var(--green);
  font-size: 18px;
}

.tagline {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}

.menu a:hover {
  color: var(--green);
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  font-size: 26px;
  color: var(--text);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.mobile-menu a {
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.mobile-menu .btn {
  width: fit-content;
}

.hidden {
  display: none !important;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 16px;
  animation: slideDown 0.3s ease forwards;
  border-bottom: 1px solid #eee;
  z-index: 99;
}

.mobile-menu a {
  font-weight: 600;
  color: var(--green-600);
  text-decoration: none;
  font-size: 16px;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--orange);
}


/* Form container */
.form {
  background: var(--bg);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}

/* Labels and inputs */
.form label {
  display: block;
  font-weight: 600;
  margin: 18px 0 6px;
  font-size: 15px;
  color: var(--text);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  outline: none;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--ring);
}

/* Button row */
.form .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.formNote {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}



@media (max-width: 768px) {
  .cards, .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }
    .menu {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .mobile-menu {
    display: flex;
  }

    .form {
    padding: 20px;
  }

  .form label {
    font-size: 14px;
    margin-top: 14px;
  }

  .form input,
  .form select,
  .form textarea {
    font-size: 15px;
    padding: 12px 14px;
  }

  .form .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .form .btn {
    width: 100%;
    justify-content: center;
  }
}
