:root {
  --bg-page: #f5f7f8;
  --bg-section: #ffffff;
  --bg-soft: #eef4f1;
  --brand: #40826d;
  --brand-strong: #356d5c;
  --secondary: #8d9297;
  --dark: #182333;
  --light: #f8f9fa;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 16px 30px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg-page) 55%, #f8fbff 100%);
  scroll-behavior: smooth;
  line-height: 1.65;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 5px 20px rgba(15, 23, 42, 0.04);
}

.navbar-light .navbar-brand,
.navbar-light .navbar-nav .nav-link {
  color: #1e293b;
  font-weight: 500;
}

.text-primary {
  color: var(--brand) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--brand-strong);
}

.hero-section {
  min-height: 92vh;
  padding-top: 7.5rem;
  padding-bottom: 5.5rem;
  background:
    linear-gradient(rgba(248, 251, 250, 0.84), rgba(241, 246, 243, 0.84)),
    url("images/main2.webp") center center / cover no-repeat;
  color: var(--text-main);
}

.inner-hero {
  padding-top: 7.2rem;
  padding-bottom: 3.2rem;
  background:
    linear-gradient(rgba(248, 251, 250, 0.86), rgba(241, 246, 243, 0.86)),
    url("images/main2.webp") center center / cover no-repeat;
  color: var(--text-main);
  border-bottom: 1px solid #e8f0fa;
}

.kicker,
.section-kicker {
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
}

.kicker,
.section-kicker {
  color: var(--brand-strong);
}

.hero-lead {
  color: #475569;
  max-width: 720px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

.hero-thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border: 1px solid #e2e8f0;
}

.service-points li {
  padding: 0.55rem 0;
  border-bottom: 1px solid #e2e8f0;
  color: #475569;
}

.service-points li:last-child {
  border-bottom: 0;
}

.section-spacing {
  padding: 5.4rem 0;
}

.section-intro {
  max-width: 680px;
}

.service-card,
.value-box,
.process-card,
.about-panel {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

.service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card h3 {
  color: #0f172a;
}

.service-card p,
.value-box p {
  color: var(--text-muted);
}

.service-list {
  padding-left: 1rem;
  color: var(--text-muted);
}

.service-list li {
  margin-bottom: 0.35rem;
}

.service-list li:last-child {
  margin-bottom: 0;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #c6d5cf;
}

.gallery-image,
.page-top-image,
.about-image,
.contact-image {
  width: 100%;
  object-fit: cover;
  border: 1px solid #e2e8f0;
}

.gallery-image {
  height: 200px;
}

.page-top-image {
  height: 210px;
}

.about-image {
  height: 360px;
}

.contact-image {
  height: 220px;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: #e6f1ed;
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.86rem;
}

.cta-wrap {
  background: linear-gradient(135deg, #e6f1ed 0%, #f4f8f6 100%);
  color: #0f172a;
  border: 1px solid #c8dbd3;
  border-radius: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
}

.btn-primary:hover {
  background-color: var(--brand-strong);
  border-color: var(--brand-strong);
}

.btn-outline-primary {
  border-color: #8fb6a8;
  color: var(--brand-strong);
}

.btn-outline-primary:hover {
  background: #e6f1ed;
  border-color: var(--brand);
  color: #2f6152;
}

.form-control,
.form-select {
  border-color: #cbd5e1;
  padding: 0.72rem 0.85rem;
  border-radius: 0.65rem;
}

.form-control:focus,
.form-select:focus {
  border-color: #8eb7a8;
  box-shadow: 0 0 0 0.2rem rgba(64, 130, 109, 0.17);
}

.contact-item a {
  color: var(--brand-strong);
}

.contact-item a:hover {
  color: #0369a1;
}

footer {
  background: #ffffff;
  border-color: #e5eef8 !important;
}

.footer-contact-line {
  color: var(--secondary);
}

.trust-strip {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.25rem;
}

.trust-strip p {
  color: #475569;
  font-weight: 500;
}

.mobile-quick-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #ffffff;
  border-top: 1px solid #d7e2dc;
  box-shadow: 0 -8px 20px rgba(15, 23, 42, 0.08);
}

.mobile-quick-cta a {
  text-align: center;
  padding: 0.9rem 0.4rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--brand-strong);
  border-right: 1px solid #e2e8f0;
}

.mobile-quick-cta a:last-child {
  border-right: 0;
}

.service-more {
  border: 1px solid #d8e4de;
  border-radius: 0.75rem;
  background: #f8fbf9;
  padding: 0.55rem 0.75rem;
}

.service-more summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--brand-strong);
  list-style: none;
}

.service-more summary::-webkit-details-marker {
  display: none;
}

.service-more summary::after {
  content: " +";
  font-weight: 700;
}

.service-more[open] summary::after {
  content: " -";
}

.service-more p {
  color: #526274;
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 6.6rem;
    padding-bottom: 4.8rem;
  }

  .about-image {
    height: 280px;
  }

  body {
    padding-bottom: 4.2rem;
  }
}
