/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-primary: #3A6B35;
  --green-dark: #2A4F25;
  --green-deep: #1E3A1A;
  --green-light: #5A8A4A;
  --green-accent: #7CB342;
  --white: #FFFFFF;
  --cream: #F5F2EC;
  --text-dark: #333;
  --text-mid: #666;
  --font: 'Plus Jakarta Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* WordPress block alignment - full width sections */
.site-main > .alignfull,
.site-main > [class*="wp-block-mwp-"] {
  max-width: none;
  width: 100%;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #F7F3ED;
  border-bottom: 2px solid var(--green-primary);
  transition: box-shadow 0.4s;
}

.nav.nav-sticky {
  position: fixed;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
}

.nav-logo img {
  height: auto;
  width: 270px;
  aspect-ratio: 5 / 1;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

/* Active page link */
.nav-links a.active {
  color: var(--green-primary);
}

.nav-links a.active::after {
  width: 100%;
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown > a .chevron {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s;
}

.nav-dropdown:hover > a .chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  transform: translateX(-50%) translateY(8px);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--white);
}

/* Base nav link styles — must come first */
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s;
  position: relative;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-accent);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--green-primary);
}

/* Dropdown menu links — higher specificity overrides base */
.nav-dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(58,107,53,0.06);
  color: var(--green-primary);
  padding-left: 26px;
}

/* CTA button — .nav-links prefix for specificity */
.nav-links .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-primary);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: background 0.3s, transform 0.3s;
}

.nav-links .nav-cta:hover {
  background: var(--green-primary);
  color: var(--white);

  transform: translateY(-1px);
}

.nav-links .nav-cta::after { display: none; }

.nav-links .nav-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Slider layer */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease forwards;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 58, 26, 0.55) 0%,
    rgba(30, 58, 26, 0.7) 50%,
    rgba(30, 58, 26, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
  padding: 160px 24px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-indicator {
  width: 32px;
  height: 3px;
  border: none;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.4s, width 0.4s;
}

.hero-indicator.active {
  background: var(--green-accent);
  width: 48px;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
  animation: scrollBounce 2.5s ease infinite;
}

.hero-scroll:hover {
  color: rgba(255,255,255,0.8);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--green-accent);
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--green-accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  justify-content: center;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-ctas .btn-primary {
  background: var(--green-accent);
  color: var(--green-deep);
}

.hero-ctas .btn-primary:hover {
  background: var(--white);
  color: var(--green-deep);
}

/* ========================================
   BUTTONS (SHARED)
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-dark);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(58,107,53,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s;
  cursor: pointer;
  font-family: var(--font);
}

.btn-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--green-primary);
  transform: translateY(-2px);
}

/* ========================================
   SECTION HEADERS (SHARED)
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-title--white {
  color: var(--white);
}

/* ========================================
   SERVICES — ALTERNATING BANDS
   ======================================== */
.services {
  padding: 80px 0 0;
  background: var(--white);
}

.service-band {
  display: flex;
  min-height: 420px;
  overflow: hidden;
}

.service-band:nth-child(even) {
  flex-direction: row-reverse;
}

.service-visual {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.service-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.service-band:hover .service-visual img {
  transform: scale(1.04);
}

.service-visual--green {
  background: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual--dark {
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual--deep {
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-number {
  font-size: 12rem;
  font-weight: 800;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  position: absolute;
  right: 30px;
  bottom: 10px;
  user-select: none;
}

.service-visual--green .service-icon,
.service-visual--dark .service-icon,
.service-visual--deep .service-icon {
  width: 80px;
  height: 80px;
  fill: none;
  stroke: rgba(255,255,255,0.25);
  stroke-width: 1.5;
}

.service-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 70px;
}

.service-info-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 12px;
}

.service-info h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-info p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 500px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-primary);
  transition: gap 0.3s, color 0.3s;
}

.service-link:hover {
  gap: 14px;
  color: var(--green-accent);
}

.service-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  padding: 60px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(58,107,53,0.04);
}

.about-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-inner .section-tag {
  color: var(--green-primary);
}

.about-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.about-inner p {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.about-feature {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.about-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.about-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(58,107,53,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.about-feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--green-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-feature h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.about-feature p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ========================================
   PROCESS
   ======================================== */
.process {
  padding: 60px 0 80px;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.process .section-tag {
  color: var(--green-accent);
}

.process .section-title {
  color: var(--white);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: rgba(255,255,255,0.25);
  z-index: 0;
  border-radius: 2px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.process-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green-accent);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 4px solid var(--green-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.3s;
}

.process-step:hover .process-circle {
  background: var(--white);
  color: var(--green-dark);
  transform: scale(1.1);
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  max-width: 220px;
  line-height: 1.65;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 60px 0 80px;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 10px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  border-left: 5px solid var(--green-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: #F5A623;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: normal;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-loc {
  font-size: 0.82rem;
  color: var(--text-mid);
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
  padding: 60px 0 80px;
  background: var(--cream);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}

.contact-form h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-form > p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E8E8E8;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--white);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 4px rgba(58,107,53,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--green-primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--green-accent);
  transform: translateY(-2px);
}

/* CF7 Form Styling — match HTML mockup */
.contact-form .wpcf7 {
  margin-top: 0;
}

.contact-form .wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-form .wpcf7-form .form-group {
  margin-bottom: 20px;
}

.contact-form .wpcf7-form .form-row .form-group {
  margin-bottom: 0;
}

.contact-form .wpcf7-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form input[type="tel"],
.contact-form .wpcf7-form select,
.contact-form .wpcf7-form textarea,
.contact-form .wpcf7-form .wpcf7-form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E8E8E8;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--white);
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form .wpcf7-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form select:focus,
.contact-form .wpcf7-form textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 4px rgba(58,107,53,0.1);
}

.contact-form .wpcf7-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .wpcf7-form input[type="submit"],
.contact-form .wpcf7-form .wpcf7-submit,
.contact-form .wpcf7-form .form-submit {
  width: 100%;
  padding: 16px;
  background: var(--green-primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  margin-top: 8px;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form .wpcf7-form input[type="submit"]:hover,
.contact-form .wpcf7-form .wpcf7-submit:hover,
.contact-form .wpcf7-form .form-submit:hover {
  background: var(--green-accent);
  transform: translateY(-2px);
}

/* Reset CF7 default spacing & wrappers */
.contact-form .wpcf7-form p {
  margin: 0;
}

.contact-form .wpcf7-form br {
  display: none;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
}

.contact-form .wpcf7 .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.contact-form .wpcf7 .wpcf7-spinner {
  display: none;
}

.contact-form .wpcf7-form .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #dc3545;
  margin-top: 4px;
}

.contact-details h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-details > p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: rgba(58,107,53,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--green-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-item-value a {
  color: var(--green-primary);
  transition: color 0.3s;
}

.contact-item-value a:hover {
  color: var(--green-accent);
}

.contact-logos {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #E8E8E8;
}

.contact-logos img {
  height: 50px;
  width: auto;
  opacity: 0.8;
}

/* ========================================
   TRUST STATS (for service pages)
   ======================================== */
.trust {
  padding: 60px 0;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
}

.trust-stat-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-stat-label {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 500;
  max-width: 180px;
}

@media (max-width: 768px) {
  .trust-stats {
    gap: 32px;
  }

  .trust-stat-num {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .trust-stats {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
}

/* ========================================
   CTA BANNER (SHARED — for inner pages)
   ======================================== */
.cta-banner {
  padding: 60px 0 80px;
  background: var(--green-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(124,179,66,0.1);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  position: relative;
  z-index: 1;
  background: var(--white);
  color: var(--green-primary);
}

.cta-banner .btn-primary:hover {
  background: var(--green-accent);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ========================================
   PAGE HERO (SHARED — for inner pages)
   ======================================== */
.page-hero {
  position: relative;
  padding: 80px 0 80px;
  background: var(--green-dark);
  text-align: center;
  overflow: hidden;
}

body.sticky-header-enabled .page-hero {
  padding-top: 160px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/mwp-slide-1.webp') center center / cover no-repeat;
  opacity: 0.15;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero .section-tag {
  color: var(--green-accent);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumbs a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  color: var(--green-accent);
}

.breadcrumbs .sep {
  font-size: 0.7rem;
}

/* ========================================
   CONTENT SECTIONS (for service pages)
   ======================================== */
.content-section {
  padding: 60px 0 80px;
  overflow: hidden;
}

.content-section:nth-child(even) {
  background: var(--cream);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.content-grid > * {
  min-width: 0;
}

.content-grid--reverse {
  direction: rtl;
}

.content-grid--reverse > * {
  direction: ltr;
}

.content-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.content-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.content-text ul {
  margin: 20px 0;
  list-style: none;
}

.content-text ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.content-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-accent);
}

.content-image {
  position: relative;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.content-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-section {
  padding: 100px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 26, 0);
  transition: background 0.3s;
}

.gallery-item:hover::after {
  background: rgba(30, 58, 26, 0.25);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #F7F3ED;
  padding: 80px 0 0;
  color: var(--text-mid);
  border-top: 2px solid var(--green-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.footer-brand img,
.footer-brand .custom-logo {
  height: 110px;
  width: auto;
  max-width: 350px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-brand-logos {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand-logos img {
  height: 50px;
  width: auto;
  opacity: 0.85;
}

.footer h4,
.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul a {
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: color 0.3s, padding-left 0.3s;
}

.footer ul a:hover {
  color: var(--green-primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.footer-contact-item a {
  color: var(--green-primary);
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: var(--green-dark);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  fill: none;
  stroke: var(--green-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-mid);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   MOBILE OVERLAY
   ======================================== */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

.mobile-overlay.active {
  display: block;
}

/* ========================================
   RESPONSIVE — 1024px
   ======================================== */
@media (max-width: 1024px) {
  .service-info {
    padding: 40px;
  }

  .about-features {
    gap: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .content-grid {
    gap: 40px;
  }
}

/* ========================================
   RESPONSIVE — 768px
   ======================================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    height: calc(100vh - 80px);
    background: #F7F3ED;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 32px 28px 40px;
    gap: 0;
    display: none;
    z-index: 999;
    overflow-y: auto;
  }

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

  /* All top-level mobile links */
  .nav-links > a,
  .nav-dropdown > a {
    font-family: var(--font);
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: block;
    text-align: left;
    letter-spacing: -0.01em;
  }

  .nav-links > a:hover,
  .nav-dropdown > a:hover {
    color: var(--green-primary);
  }

  .nav-links > a::after {
    display: none;
  }

  .nav-links > a.active {
    color: var(--green-primary);
  }

  /* Mobile dropdown container */
  .nav-dropdown {
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .nav-dropdown > a {
    border-bottom: none;
    padding-bottom: 10px;
  }

  .nav-dropdown > a .chevron {
    display: none;
  }

  /* Mobile dropdown items — override desktop hover specificity */
  .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 12px 0;
    background: transparent;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu a {
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-mid);
    padding: 9px 0 9px 18px;
    text-align: left;
    border-left: 2px solid var(--green-accent);
    margin-left: 4px;
    white-space: normal;
  }

  .nav-dropdown-menu a:hover {
    padding-left: 22px;
    background: transparent;
    color: var(--green-primary);
  }

  /* Mobile CTA button */
  .nav-links .nav-cta,
  .nav-links .nav-cta:hover {
    align-self: center;
    margin-top: 24px;
    padding: 14px 36px;
    font-size: 0.95rem;
    border-bottom: none;
    border-radius: 50px;
    width: auto;
    justify-content: center;
    background: var(--green-primary);
    color: var(--white);
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding: 130px 24px 60px;
  }

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

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .service-band,
  .service-band:nth-child(even) {
    flex-direction: column;
  }

  .service-visual,
  .service-info {
    width: 100%;
  }

  .service-visual {
    min-height: 260px;
  }

  .service-info {
    padding: 40px 24px;
  }

  .about-features {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }

  .process-steps {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    padding-left: 40px;
  }

  .process-steps::before {
    top: 26px;
    bottom: 26px;
    left: 26px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    align-items: flex-start;
  }

  .process-circle {
    min-width: 52px;
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    position: relative;
    left: -40px;
  }

  .process-step p {
    max-width: 100%;
  }

  .process-step:last-child::after {
    content: '';
    position: absolute;
    top: 52px;
    left: -14px;
    bottom: 0;
    width: 3px;
    background: var(--green-dark);
    z-index: 1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:last-child {
    max-width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 28px 20px;
    overflow: hidden;
  }

  .contact-form h3 {
    font-size: 1.3rem;
  }

  .contact-form > p {
    font-size: 0.88rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-details {
    overflow: hidden;
    word-break: break-word;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-grid,
  .content-grid--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero {
    padding: 130px 20px 60px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .contact {
    padding: 40px 0 60px;
  }

  .contact-form .wpcf7-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   RESPONSIVE — 480px
   ======================================== */
@media (max-width: 480px) {
  .page-hero {
    padding: 100px 16px 50px;
  }

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

  .contact-form {
    padding: 24px 16px;
  }

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

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-num {
    font-size: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-primary, .btn-outline {
    justify-content: center;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-info h3 {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   LEGAL / POLICY PAGES
   ======================================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

body.sticky-header-enabled .legal-content {
  padding-top: 20px;
}

.legal-content .legal-updated {
  display: inline-block;
  background: rgba(58,107,53,0.08);
  color: var(--green-primary);
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.legal-content .legal-intro {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eee;
}

.legal-content h2 {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 48px 0 16px;
  padding-top: 16px;
  letter-spacing: -0.01em;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 28px 0 10px;
}

.legal-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin: 12px 0 20px 8px;
  padding-left: 20px;
}

.legal-content ul {
  list-style: none;
  padding-left: 0;
}

.legal-content ul li {
  position: relative;
  padding-left: 24px;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 8px;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-accent);
}

.legal-content ol li {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 8px;
  padding-left: 4px;
}

.legal-content ol li::marker {
  color: var(--green-primary);
  font-weight: 700;
}

.legal-content a {
  color: var(--green-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s;
}

.legal-content a:hover {
  color: var(--green-accent);
}

.legal-content strong {
  color: var(--text-dark);
  font-weight: 700;
}

.legal-content .legal-contact-box {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
}

.legal-content .legal-contact-box h3 {
  margin-top: 0;
}

.legal-content .legal-contact-box p {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 40px 20px 60px;
  }

  .legal-content h2 {
    font-size: 1.3rem;
    margin-top: 36px;
  }
}

