:root {
  --brand-primary: #1f4e5f;
  --brand-secondary: #2f6f73;
  --brand-accent: #dff3f1;
  --brand-soft: #f7f9fb;
  --brand-text: #1f2933;
  --brand-muted: #5b6770;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--brand-text);
  line-height: 1.65;
  background: #ffffff;
}

.navbar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: saturate(180%) blur(10px);
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-primary) !important;
}

.nav-link {
  font-weight: 500;
}

.hero {
  background: linear-gradient(135deg, #f7fbfc 0%, #eef6f7 55%, #ffffff 100%);
  padding: 7rem 0 5rem;
}

.page-hero {
  background: linear-gradient(135deg, #f7fbfc 0%, #eef6f7 55%, #ffffff 100%);
  padding: 6rem 0 3rem;
}

.hero-badge {
  display: inline-block;
  background: var(--brand-accent);
  color: var(--brand-primary);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.display-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-primary);
}

.page-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-primary);
}

.lead {
  font-size: 1.15rem;
  color: var(--brand-muted);
  max-width: 760px;
}

.btn-brand {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  color:#fff;
}

.btn-brand:hover,
.btn-brand:focus {
  background: #163b47;
  border-color: #163b47;
  color:#fff;
}

.btn-outline-brand {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  padding: 0.85rem 1.25rem;
  font-weight: 600;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: var(--brand-soft);
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--brand-muted);
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 0.6rem;
}

.stat-card,
.service-card,
.process-card,
.contact-card,
.info-card {
  background: #fff;
  border: 1px solid rgba(31, 78, 95, 0.08);
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(31, 41, 51, 0.05);
  height: 100%;
}

.stat-card {
  padding: 1.5rem;
}

.stat-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 0.35rem;
}

.service-card,
.process-card,
.contact-card,
.info-card {
  padding: 1.75rem;
}

.service-card h3,
.process-card h3,
.contact-card h3,
.info-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--brand-primary);
}

.service-card p,
.process-card p,
.contact-card p,
.info-card p,
.muted {
  color: var(--brand-muted);
}

.quote-panel {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 14px 40px rgba(31, 78, 95, 0.18);
}

.quote-panel p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.8rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-secondary);
  font-weight: 700;
}

.cta {
  background: linear-gradient(135deg, #183c4a 0%, #1f4e5f 100%);
  color: #fff;
  border-radius: 1.75rem;
  padding: 3rem;
}

.cta .section-title,
.cta p,
.cta .mini-label {
  color: #fff;
}

footer {
  background: #102833;
  padding: 2rem 0;
  color: rgba(255, 255, 255, 0.88);
}

footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

footer a:hover {
  color: #ffffff;
}

.small-note {
  font-size: 0.95rem;
  color: var(--brand-muted);
}

.form-control,
.form-control:focus,
.form-select,
.form-select:focus {
  border-radius: 0.9rem;
  box-shadow: none;
}

.form-control,
.form-select {
  padding: 0.85rem 1rem;
}

textarea.form-control {
  min-height: 160px;
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 6.5rem;
  }

  .page-hero {
    padding-top: 5.5rem;
  }
}
