:root {
  --brand-navy: #1f2f5f;
  --brand-green: #2f8f46;
  --brand-green-soft: #51b85d;
  --brand-text: #243047;
  --brand-light: #f7f8fb;
  --brand-border: #e4e8f0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--brand-text);
  background: #ffffff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: var(--brand-navy);
  color: white;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  flex-wrap: wrap;
}


.navbar {
  background: white;
  border-bottom: 1px solid var(--brand-border);
  position: sticky;
  top: 0;
  z-index: 20;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.brand img {
  width: 72px;
  border-radius: 10px;
}
.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-navy);
}
.brand-tag {
  font-size: 0.9rem;
  color: #5c677d;
}
.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  color: var(--brand-text);
}
.nav-links a:hover { color: var(--brand-green); }

.menu-toggle {
  display: none;
  border: 1px solid var(--brand-border);
  background: white;
  color: var(--brand-navy);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle:hover {
  border-color: var(--brand-green);
  color: var(--brand-green);
}


.btn {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}
.btn-primary {
  background: var(--brand-green);
  color: white;
}
.btn-primary:hover { background: #26743a; }
.btn-secondary {
  background: var(--brand-navy);
  color: white;
}
.btn-secondary:hover { background: #182549; }
.btn-outline {
  border: 2px solid var(--brand-navy);
  color: var(--brand-navy);
}
.btn-outline:hover {
  background: var(--brand-navy);
  color: white;
}

.hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--brand-navy);
}
.hero p {
  font-size: 1.1rem;
  color: #51607b;
  max-width: 680px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.hero-card {
  background: white;
  border: 1px solid var(--brand-border);
  border-radius: 22px;
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(25, 42, 80, 0.08);
}
.hero-card img {
  border-radius: 16px;
}
.badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.badge {
  background: white;
  border: 1px solid var(--brand-border);
  padding: 0.8rem 1rem;
  border-radius: 14px;
  font-weight: 600;
}

.section {
  padding: 4rem 0;
}
.section-alt {
  background: var(--brand-light);
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 0.8rem;
  color: var(--brand-navy);
}
.section-lead {
  max-width: 760px;
  color: #55637d;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.5rem;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card h3 {
  margin-top: 0;
  color: var(--brand-navy);
}
.card p, .card li {
  color: #55637d;
  line-height: 1.7;
}
.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(47, 143, 70, 0.12);
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.8rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-green);
  font-weight: 700;
}

.cta {
  background: linear-gradient(135deg, var(--brand-navy), #304479);
  color: white;
  border-radius: 24px;
  padding: 2rem;
}
.cta h2, .cta p { color: white; }

.form-shell {
  background: white;
  border: 1px solid var(--brand-border);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 10px 28px rgba(20, 35, 66, 0.06);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group.full { grid-column: 1 / -1; }
label {
  font-weight: 700;
  color: var(--brand-navy);
}
input, textarea, select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ccd4e2;
  border-radius: 14px;
  font-size: 1rem;
  font-family: inherit;
}
textarea { min-height: 140px; resize: vertical; }

.notice {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  margin-bottom: 1rem;
}
.notice-success {
  background: #eaf8ee;
  color: #14532d;
  border: 1px solid #b9e6c5;
}

.footer p, .footer li, .footer a {
  color: #dde5f6;
  line-height: 1.8;
}
.small-muted { color: #61708c; }

.page-hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}
.page-hero p {
  max-width: 760px;
  color: #55637d;
  line-height: 1.7;
}


@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .navbar-inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand img {
    width: 60px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tag {
    font-size: 0.82rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--brand-border);
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links a {
    font-size: 0.96rem;
  }

  .nav-links .btn {
    width: 100%;
    text-align: center;
  }

  .nav-links a.active::after {
    bottom: -0.2rem;
    width: 42px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 2.5rem;
  }
}

@media (max-width: 640px) {
  .topbar {
    display: none;
  }

  .navbar {
    position: static;
  }

  .navbar-inner {
    padding: 0.85rem 0;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand img {
    width: 52px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-tag {
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p,
  .section-lead,
  .page-hero p {
    font-size: 1rem;
  }

  .section,
  .hero,
  .page-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    padding: 0.85rem 1rem;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-icon {
    width: 32px;
    height: 32px;
    font-size: 1.05rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer {
    overflow-x: hidden;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions .btn {
    width: 100%;
    text-align: center;
  }
}

.reviews-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(47, 143, 70, 0.1);
  color: var(--brand-green);
  border: 1px solid rgba(47, 143, 70, 0.18);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.review-card {
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(31, 47, 95, 0.08);
  font-family: Georgia, serif;
}

.review-stars {
  color: #f4b400;
  font-size: 1.1rem;
  letter-spacing: 0.08rem;
  margin-bottom: 0.9rem;
}

.review-text {
  margin: 0 0 1.25rem;
  color: #55637d;
  line-height: 1.8;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-navy), #304479);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-name {
  margin: 0;
  font-size: 1rem;
  color: var(--brand-navy);
  font-weight: 700;
}

.review-service {
  margin: 0.2rem 0 0;
  color: #6b7891;
  font-size: 0.95rem;
}

.reviews-footer {
  text-align: center;
  margin-top: 2rem;
}

.reviews-note {
  color: #61708c;
  margin-bottom: 1rem;
}

.services-intro {
  margin-bottom: 2rem;
}

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

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(17, 27, 51, 0.08);
}

.services-extra {
  align-items: center;
}

.service-cta-block {
  padding: 1rem 0;
}

.about-grid,
.about-mission {
  align-items: center;
}

.about-values-card {
  margin-top: 1.5rem;
}

.about-image-card img {
  border-radius: 16px;
}

.contact-grid {
  align-items: center;
}

.contact-card-main p {
  margin-bottom: 0.9rem;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1rem;
}

.contact-note {
  margin-top: 1rem;
}

.contact-image-card img {
  border-radius: 16px;
}


.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #25d366;
  color: white;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  z-index: 50;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 1rem;
}

.whatsapp-text {
  white-space: nowrap;
}

.quote-layout {
  align-items: start;
}

.quote-form-card {
  padding: 1.75rem;
}

.quote-form-header {
  margin-bottom: 1.5rem;
}

.quote-form-header h3 {
  margin: 0 0 0.5rem;
  color: var(--brand-navy);
}




.quote-form-header p {
  margin: 0;
  color: #5c677d;
  line-height: 1.7;
}

.quote-submit-row {
  margin-top: 1.25rem;
}

.quote-side {
  display: grid;
  gap: 1.5rem;
}

.quote-info-card,
.quote-trust-card {
  min-height: 100%;
}

.quote-error {
  background: #fff1f2;
  color: #9f1239;
  border: 1px solid #fecdd3;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(47, 143, 70, 0.12);
}

.footer {
  background: linear-gradient(180deg, #101a34 0%, #0b1429 100%);
  color: #dde5f6;
  margin-top: 4rem;
}

.footer-top {
  padding: 2.5rem 0 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-block {
  max-width: 700px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 64px;
  border-radius: 12px;
}

.footer-brand-name {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-brand-tag {
  color: #b8c5e3;
  font-size: 0.92rem;
}

.footer-intro {
  max-width: 680px;
  color: #dde5f6;
  line-height: 1.8;
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0 1.5rem;
}

.footer h4 {
  color: white;
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.footer p,
.footer li,
.footer a {
  color: #dde5f6;
  line-height: 1.8;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1rem 0 1.5rem;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.card {
  background: white;
  border: 1px solid var(--brand-border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(17, 27, 51, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(17, 27, 51, 0.08);
  border-color: #d5dceb;
}

.nav-links a.active {
  color: var(--brand-green);
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 3px;
  background: var(--brand-green);
  border-radius: 999px;
}

.nav-links .btn.active-btn {
  background: #26743a;
  color: white;
}


.footer a,
.footer p,
.footer h4,
.contact-card-main p,
.contact-card-main a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-grid > div,
.contact-card-main {
  min-width: 0;
}

.footer-brand,
.footer-top,
.footer-grid,
.footer-bottom {
  max-width: 100%;
}

.contact-image-card,
.about-image-card,
.card img {
  max-width: 100%;
  height: auto;
}


.footer-grid {
  overflow: hidden;
}

