:root {
  --primary: #2a9d8f;
  --primary-dark: #1f7a6e;
  --accent: #e9f5f3;
  --text-dark: #1a2e2c;
  --text-muted: #5a6e6c;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
}

/* NAV */
.navbar {
  background: #fff;
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary) !important;
  letter-spacing: -.3px;
}
.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--accent) 0%, #fff 60%);
  padding: 100px 0 80px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
}
.hero .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 500px;
}

/* BUTTONS */
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
  padding: .65rem 1.6rem;
  border-radius: 8px;
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
  padding: .65rem 1.6rem;
  border-radius: 8px;
}
.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* TRUST BAR */
.trust-bar {
  background: var(--primary);
  color: #fff;
  padding: 18px 0;
  font-size: .95rem;
}
.trust-bar .col {
  text-align: center;
  font-weight: 600;
  letter-spacing: .2px;
}
.trust-bar .icon {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 4px;
}

/* SECTION TITLES */
.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.section-sub {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* SERVICE CARDS */
.service-card {
  border: none;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  height: 100%;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
}
.service-card .icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.service-card h5 {
  font-weight: 700;
  margin-bottom: .5rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: .95rem;
  margin: 0;
}

/* WHY US */
.why-section {
  background: var(--accent);
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.why-icon {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.why-item h6 {
  font-weight: 700;
  margin-bottom: .2rem;
}
.why-item p {
  color: var(--text-muted);
  font-size: .92rem;
  margin: 0;
}

/* ABOUT SNIPPET */
.about-photo {
  border-radius: 18px;
  object-fit: contain;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

/* CTA BAND */
.cta-band {
  background: var(--text-dark);
  color: #fff;
  padding: 60px 0;
}
.cta-band h2 {
  font-weight: 800;
  margin-bottom: .6rem;
}
.cta-band p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 32px 0;
  font-size: .9rem;
  color: var(--text-muted);
}
footer a {
  color: var(--primary);
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--accent) 0%, #fff 60%);
  padding: 60px 0 48px;
}
.page-hero h1 {
  font-weight: 800;
  font-size: 2.4rem;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* CONTACT */
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.contact-icon {
  background: var(--accent);
  color: var(--primary);
  border-radius: 12px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item h6 {
  font-weight: 700;
  margin-bottom: .15rem;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
}
.contact-item a, .contact-item span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
}
.contact-item a:hover {
  color: var(--primary);
}

/* ABOUT PAGE */
.team-photo {
  border-radius: 18px;
  width: 100%;
  object-fit: contain;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.value-pill {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: .88rem;
  border-radius: 100px;
  padding: .3rem .9rem;
  margin: .25rem .2rem;
}

/* SERVICES PAGE */
.service-detail-card {
  border: none;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  padding: 2rem;
  height: 100%;
}
.service-detail-card .badge-pill {
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: .8rem;
  border-radius: 100px;
  padding: .3rem .8rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.service-detail-card h4 {
  font-weight: 700;
  margin-bottom: .6rem;
}
.service-detail-card ul {
  color: var(--text-muted);
  font-size: .95rem;
  padding-left: 1.2rem;
  margin: 0;
}
.service-detail-card ul li {
  margin-bottom: .3rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 72px 0 60px; }
  .trust-bar .col { margin-bottom: 8px; }
}
