:root {
  --primary: #1b5e20;
  --secondary: #1565c0;
  --accent: #43a047;
  --bg-light: #f5f7fa;
  --text-dark: #263238;
  --text-muted: #607d8b;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --logo-color: #C26D36;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section { padding: 100px 0; }
.bg-light { background: var(--bg-light); }
.center-text { text-align: center; }

.section-tag,
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(67, 160, 71, 0.08);
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
}

h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 18px;
}

h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

p { color: var(--text-muted); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8edf2;
  transition: all 0.3s ease;
  padding: 15px 0px 22px 0px;
}

.header.scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.4px;
  
}

.logo-mark {
  width: 177px;
  height: 80px;
  border-radius: 14px;
  /*background: linear-gradient(135deg, var(--primary), var(--accent));*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  /*box-shadow: 0 10px 24px rgba(27, 94, 32, 0.22);*/
}



.logo span,
.footer-logo span {
  color: var(--logo-color);
  line-height: 0.99;
}

.nav {
  display: flex;
  gap: 32px;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a.active,
.nav a:hover {
  color: var(--primary);
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: var(--white);
  border: 1px solid #dbe3ea;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(27, 94, 32, 0.18);
}

.btn-primary:hover { transform: translateY(-3px); }

.btn-secondary {
  background: var(--white);
  border: 1px solid #dbe3ea;
}

.btn-light {
  background: var(--white);
  color: var(--primary);
}
.quoteCta {
  margin: 20px 0px;
}
/* Hero */
.hero {
  padding: 40px 0 80px;
  background: linear-gradient(180deg, #fff 0%, #f8fbf9 100%);
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin: 28px 0;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-image-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(15, 23, 42, 0.12);
}

.hero-image-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.floating-stat {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.96);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.floating-stat h3 { font-size: 34px; }

/* Trust */
.trust-strip {
  background: var(--bg-light);
  border-top: 1px solid #e8edf2;
  border-bottom: 1px solid #e8edf2;
  padding: 26px 0;
}

.trust-grid,
.card-grid,
.process-grid,
.mini-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.trust-grid { grid-template-columns: repeat(4, 1fr); }

.trust-item,
.mini-card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  font-weight: 700;
}

.image-block img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.check-list {
  margin: 24px 0;
  padding-left: 20px;
}

.check-list li { margin-bottom: 12px; }

.text-link {
  font-weight: 700;
  color: var(--primary);
}

/* Cards */
.services-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.card {
  background: var(--white);
  padding: 32px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.card p { margin-top: 10px; }

/* Process */
.process-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
}

.process-card {
  background: var(--white);
  padding: 32px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.process-card span,
.timeline-item span {
  display: inline-flex;
  aspect-ratio: 1/1;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 18px;
}

/* CTA */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #134e1b, #1b5e20);
  color: var(--white);
}

.cta-section p,
.cta-section .section-tag.light {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

/* Page hero */
.page-hero {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #fff 0%, #f8fbf9 100%);
}

.page-hero h1 { max-width: 900px; }
.page-hero p { max-width: 780px; }

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

/* Contact */
.contact-grid { align-items: flex-start; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 24px 0;
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #d8e1e8;
  border-radius: 16px;
  font-size: 15px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
}

.full-width { grid-column: span 2; }

.map-placeholder {
  margin-top: 24px;
  height: 320px;
  border-radius: 28px;
  background: linear-gradient(135deg, #dbeafe, #dcfce7);
}

/* Footer */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 0;
}

.footer-grid { grid-template-columns: repeat(3, 1fr); }

.footer h4 {
  color: var(--white);
  margin-bottom: 14px;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a:hover { color: var(--white); }

.card ul {
  list-style: disc;
  color: var(--primary);
}

.card ul li {
  color: var(--text-muted);
  margin-left: 20px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.card ul li strong,
.card ul li b {
  color: var(--text-dark);
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}