:root {
  --primary:       #3d8b85;
  --primary-dark:  #2a5f5a;
  --primary-light: #e8f5f4;
  --accent:        #5ba8a2;
  --text:          #333333;
  --bg:            #ffffff;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* ── Navbar ── */
.navbar {
  background-color: var(--primary-dark) !important;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff !important;
}
.navbar-brand img {
  height: 40px;
  width: auto;
}
.nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-size: 0.95rem;
}
.nav-link:hover,
.nav-link.active {
  color: #fff !important;
  text-decoration: underline;
}
.navbar-toggler {
  border-color: rgba(255,255,255,0.4);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  text-align: center;
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hero .tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}
.hero p {
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  opacity: 0.92;
  line-height: 1.7;
}
.btn-hero {
  background: #fff;
  color: var(--primary-dark);
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-hero:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* ── Section ── */
.section {
  padding: 4rem 0;
}
.section-alt {
  background: var(--primary-light);
}
.section-title {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin-top: 0.5rem;
}

/* ── Service Cards ── */
.service-card {
  border: none;
  border-left: 4px solid var(--primary);
  background: #fff;
  border-radius: 6px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.service-card .bi {
  color: var(--primary);
  margin-right: 0.5rem;
}

/* ── Contact Info ── */
.contact-box {
  background: #fff;
  border-radius: 8px;
  padding: 1.8rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.contact-box .bi {
  color: var(--primary);
  font-size: 1.2rem;
  margin-right: 0.5rem;
}
.contact-box a {
  color: var(--primary-dark);
  text-decoration: none;
}
.contact-box a:hover {
  text-decoration: underline;
}

/* ── Form ── */
.form-label {
  font-weight: 600;
  color: var(--primary-dark);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(61,139,133,0.25);
}
.btn-primary-custom {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 0.7rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ── Footer ── */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 2rem 0;
  font-size: 0.9rem;
}
footer a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ── Map ── */
.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 8px;
}

/* ── Alert ── */
.alert-success-custom {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid var(--primary);
  border-radius: 6px;
  padding: 1rem 1.5rem;
}
