@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --green: #7A9A22;
  --green-dark: #183B2A;
  --green-deep: #0F2C20;
  --green-soft: #EEF5E3;
  --yellow: #F5B51B;
  --yellow-soft: #FFF3CC;
  --cream: #FBF8EF;
  --white: #FFFFFF;
  --ink: #12201A;
  --muted: #647069;
  --border: #E3E9DC;
  --shadow: 0 16px 40px rgba(15, 44, 32, 0.06), 0 4px 12px rgba(15, 44, 32, 0.02);
  --shadow-hover: 0 32px 64px rgba(15, 44, 32, 0.12), 0 8px 24px rgba(15, 44, 32, 0.04);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1180px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* Header & Utility Bar */
.topbar {
  background: var(--green-deep);
  color: #dcebd6;
  font-size: 14px;
  font-weight: 550;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.topbar-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-links a:hover {
  color: var(--yellow);
}

.topbar strong {
  color: var(--yellow);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251, 248, 239, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(227, 233, 220, 0.8);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 225px;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: var(--transition);
}

.brand:hover img {
  transform: rotate(-5deg) scale(1.05);
}

.brand-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--green-deep);
  font-size: 18px;
}

.brand-title span {
  display: block;
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 3px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--green-deep);
  font-size: 16px;
}

.navlinks a {
  position: relative;
  padding: 4px 0;
}

.navlinks a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--yellow);
  transition: var(--transition);
}

.navlinks a:hover:after,
.navlinks a.active:after {
  width: 100%;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 120;
}

.hamburger-btn span {
  width: 100%;
  height: 3px;
  background: var(--green-deep);
  border-radius: 9px;
  transition: var(--transition);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 99px;
  padding: 14px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(122, 154, 34, 0.25);
}

.btn-primary:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 44, 32, 0.2);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--green-deep);
  box-shadow: 0 10px 24px rgba(245, 181, 27, 0.2);
}

.btn-secondary:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 44, 32, 0.2);
}

.btn-light {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--border);
  box-shadow: 0 4px 12px rgba(15, 44, 32, 0.02);
}

.btn-light:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green-deep);
  transform: translateY(-3px);
}

/* Redesigned Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: radial-gradient(circle at 85% 15%, rgba(245, 181, 27, 0.22), transparent 35%),
              radial-gradient(circle at 15% 85%, rgba(122, 154, 34, 0.1), transparent 30%),
              linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

.hero:before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 154, 34, 0.08) 0%, transparent 70%);
  right: -100px;
  top: -150px;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 99px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(122, 154, 34, 0.15);
}

.eyebrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245, 181, 27, 0.25);
  animation: pulsePulse 2s infinite;
}

@keyframes pulsePulse {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(245, 181, 27, 0.4); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(245, 181, 27, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(245, 181, 27, 0); }
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
  margin: 0;
  color: var(--green-deep);
  letter-spacing: -.03em;
}

h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
}

h2 {
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1.15;
}

h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  margin: 24px 0 32px;
  max-width: 680px;
  color: #4a5550;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 680px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(227, 233, 220, 0.7);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-weight: 700;
  color: var(--green-deep);
  font-size: 14px;
  transition: var(--transition);
}

.trust-item:hover {
  background: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
}

.check {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
}

/* Hero Stats Section */
.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1;
}

.stat-number span {
  color: var(--green);
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.3;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-backdrop-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 181, 27, 0.28) 0%, rgba(122, 154, 34, 0.12) 50%, transparent 70%);
  filter: blur(24px);
  z-index: 0;
  animation: floatSlow 8s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(5deg); }
}

.image-shell {
  position: absolute;
  inset: 15px 0 0 15px;
  border-radius: 40px;
  background: linear-gradient(145deg, var(--green-soft), #e4f0d3);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 1;
}

.image-shell img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.hero-visual:hover .image-shell img {
  transform: translateX(-50%) scale(1.03);
}

.float-card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 240px;
  transition: var(--transition);
}

.float-card:hover {
  transform: scale(1.03);
  background: var(--white);
}

.float-card.top {
  right: -10px;
  top: 40px;
  animation: floatCardY 4s ease-in-out infinite alternate;
}

.float-card.bottom {
  left: -10px;
  bottom: 40px;
  animation: floatCardY 4s ease-in-out infinite alternate-reverse;
}

@keyframes floatCardY {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-soft);
  display: grid;
  place-items: center;
  font-size: 20px;
}

.float-card strong {
  display: block;
  color: var(--green-deep);
  font-size: 15px;
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
}

.float-card span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* Quick Actions Strip */
.quick-actions {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.quick-card {
  padding: 28px;
  border-right: 1px solid var(--border);
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  transition: var(--transition);
}

.quick-card:last-child {
  border-right: 0;
}

.quick-card:hover {
  background: var(--green-soft);
}

.quick-card small {
  font-weight: 800;
  color: var(--green);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
}

.quick-card h3 {
  font-size: 20px;
  font-weight: 800;
}

.quick-card a {
  font-weight: 800;
  color: var(--green-deep);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.quick-card a:after {
  content: "→";
  transition: transform 0.25s;
}

.quick-card:hover a:after {
  transform: translateX(4px);
}

/* Sections */
section {
  padding: 90px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-end;
  margin-bottom: 44px;
}

.section-head p {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.6;
}

.kicker {
  font-weight: 800;
  color: var(--green);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
  display: block;
}

/* Service Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  min-height: 240px;
  overflow: hidden;
  transition: var(--transition);
}

.service-card:after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(245, 181, 27, 0.08);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green);
}

.service-card:hover:after {
  transform: scale(1.4);
  background: rgba(122, 154, 34, 0.08);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--green-soft);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--yellow);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 800;
}

.service-card p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--muted);
}

/* Split Content Grid */
.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.05fr .95fr;
}

.media-card {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  min-height: 500px;
  background: var(--green-soft);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.media-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.media-card.contain img {
  object-fit: contain;
  background: linear-gradient(145deg, var(--yellow-soft), var(--green-soft));
  padding: 36px;
}

.media-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 16px 20px;
  max-width: 280px;
  box-shadow: var(--shadow);
  font-weight: 700;
  color: var(--green-deep);
  font-size: 14px;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.answer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  transition: var(--transition);
}

.answer-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--green);
}

.answer-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
}

.answer-card p {
  font-size: 14px;
}

.rich-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.rich-list li {
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 16px;
  color: #34423b;
  font-weight: 600;
  transition: var(--transition);
}

.rich-list li:hover {
  background: var(--white);
  border-color: var(--green);
  transform: translateX(4px);
}

/* Process Steps */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  min-height: 220px;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}

.step:before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  margin-bottom: 24px;
  font-size: 16px;
  transition: var(--transition);
}

.step:hover:before {
  background: var(--yellow);
  color: var(--green-deep);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 800;
}

.step p {
  font-size: 14px;
}

/* CTA Band */
.cta-band {
  padding: 0;
}

.cta-inner {
  background: linear-gradient(135deg, var(--green-deep), #1b4530);
  border-radius: 36px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.cta-inner:after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 181, 27, 0.18) 0%, transparent 70%);
  right: -100px;
  bottom: -150px;
  z-index: 0;
}

.cta-inner h2, .cta-inner p {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-inner p {
  opacity: .9;
  margin-top: 16px;
  font-size: 18px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  justify-content: flex-end;
}

/* FAQ accordion */
.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-bottom: 12px;
  padding: 20px 24px;
  transition: var(--transition);
}

details[open] {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

summary {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--green-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 17px;
}

summary::-webkit-details-marker {
  display: none;
}

summary:after {
  content: "+";
  color: var(--green);
  font-size: 24px;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
  transition: transform 0.25s;
}

details[open] summary:after {
  content: "−";
  transform: rotate(180deg);
}

details p {
  padding-top: 14px;
  font-size: 15px;
  border-top: 1px solid var(--border);
  margin-top: 14px;
}

/* Locations & Maps */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}

.location-img {
  height: 180px;
  background: linear-gradient(135deg, var(--green-soft), var(--yellow-soft));
  display: grid;
  place-items: center;
  font-size: 48px;
}

.location-card .body {
  padding: 24px;
}

.location-card strong {
  display: block;
  font-size: 18px;
  color: var(--green-deep);
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}

.location-card p {
  font-size: 14px;
}

.map-wrapper {
  margin-top: 24px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
}

/* Contact Grid & Form */
.contact-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  text-align: center;
}

.contact-hero .lead {
  margin-inline: auto;
}

.contact-hero .hero-actions {
  justify-content: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.contact-panel, .form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-row {
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  background: #fffdf9;
  transition: var(--transition);
}

.contact-row:hover {
  border-color: var(--green);
  background: var(--white);
}

.contact-row span {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-soft);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex: 0 0 auto;
  transition: var(--transition);
}

.contact-row:hover span {
  background: var(--yellow);
  color: var(--green-deep);
}

.contact-row strong {
  display: block;
  color: var(--green-deep);
  font-family: 'Outfit', sans-serif;
}

.contact-row p, .contact-row a {
  font-size: 14px;
  font-weight: 500;
}

form {
  display: grid;
  gap: 16px;
}

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

label {
  font-weight: 700;
  color: var(--green-deep);
  font-size: 14px;
  display: flex;
  flex-direction: column;
}

input, select, textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  font: inherit;
  background: #fffdf9;
  color: var(--ink);
  transition: var(--transition);
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(122, 154, 34, 0.08);
}

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

.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.checkbox input {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Interactive Button Loading Spinner */
.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn-loading:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn-secondary.btn-loading:after {
  border: 3px solid rgba(15, 44, 32, 0.2);
  border-top-color: var(--green-deep);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Modals & Glassmorphic success screens */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 44, 32, 0.55);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 40px;
  width: min(540px, calc(100% - 32px));
  box-shadow: var(--shadow-hover);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow-y: auto;
  max-height: 90vh;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-soft);
  border: none;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--yellow);
  color: var(--green-deep);
  transform: scale(1.08);
}

.success-popup {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.success-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  font-size: 32px;
  color: var(--green);
  animation: popCheck 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

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

.success-popup h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--green-deep);
}

.success-popup p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.success-summary {
  background: var(--green-soft);
  border-radius: 16px;
  padding: 16px;
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(122, 154, 34, 0.1);
  text-align: left;
  font-size: 13.5px;
  color: var(--green-deep);
}

.success-summary strong {
  color: var(--green-dark);
}

.success-summary div {
  margin-bottom: 6px;
}

.success-summary div:last-child {
  margin-bottom: 0;
}

/* Footer & Sticky Mobile Bar */
.footer {
  background: var(--green-deep);
  color: #dcebd6;
  padding: 70px 0 30px;
  margin-top: 90px;
}

.footer .brand-title, .footer h3 {
  color: var(--white);
}

.footer a, .footer p {
  color: #dcebd6;
}

.footer a:hover {
  color: var(--yellow);
}

.footer ul {
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer li {
  list-style: none;
  font-size: 14.5px;
  font-weight: 550;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
}

.sticky-mobile {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(227, 233, 220, 0.8);
  padding: 12px 16px 20px; /* Safe padding for bottom notches */
  z-index: 990;
  box-shadow: 0 -8px 24px rgba(15, 44, 32, 0.08);
  gap: 12px;
}

.sticky-mobile a {
  flex: 1;
  padding: 14px;
  border-radius: 99px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(15, 44, 32, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sticky-mobile a:first-child {
  background: var(--green);
  color: #fff;
}

.sticky-mobile a:last-child {
  background: var(--yellow);
  color: var(--green-deep);
}

.note {
  font-size: 13px;
  color: var(--muted);
  background: #fffdf9;
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 16px;
  margin-top: 20px;
  font-weight: 500;
}

/* Media Queries */
@media(max-width: 1040px) {
  .hero-grid, .split, .split.reverse, .cta-inner, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 480px;
  }
  .image-shell {
    left: 0;
  }
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-card:nth-child(2) {
    border-right: 0;
  }
  .quick-card {
    border-bottom: 1px solid var(--border);
  }
  .card-grid, .location-grid, .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-actions {
    justify-content: flex-start;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .navlinks {
    display: none;
  }
}

@media(max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--container));
  }
  .topbar .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .topbar-links {
    gap: 12px;
  }
  .nav-cta {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .navlinks {
    display: none !important;
    position: fixed;
    inset: 0;
    background: rgba(251, 248, 239, 0.98);
    backdrop-filter: blur(24px);
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 22px;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .navbar.nav-active .navlinks {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
  }
  .navbar.nav-active .hamburger-btn span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar.nav-active .hamburger-btn span:nth-child(2) {
    opacity: 0;
  }
  .navbar.nav-active .hamburger-btn span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hero-stats-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .brand-title {
    font-size: 16px;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .hero {
    padding: 50px 0 30px;
  }
  .hero-grid {
    gap: 36px;
  }
  h1 {
    font-size: 38px;
  }
  .lead {
    font-size: 16px;
  }
  .trust-list, .quick-grid, .card-grid, .location-grid, .answer-grid, .form-grid, .steps, .footer-grid {
    grid-template-columns: 1fr;
  }
  .quick-card {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .quick-card:last-child {
    border-bottom: 0;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 12px;
  }
  section {
    padding: 60px 0;
  }
  .hero-visual {
    min-height: 400px;
  }
  .float-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 12px 0;
    width: 100%;
  }
  .image-shell {
    position: relative;
    inset: auto;
    min-height: 360px;
    width: 100%;
  }
  .media-card {
    min-height: 340px;
  }
  .cta-inner {
    padding: 40px 24px;
    border-radius: 28px;
  }
  .sticky-mobile {
    display: flex;
  }
  .footer {
    padding-bottom: 90px;
  }
}

/* Promotional Modal Styles */
.promo-modal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 0;
  width: min(840px, calc(100% - 32px));
  box-shadow: var(--shadow-hover);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  max-height: 90vh;
  z-index: 1010;
}

.modal-overlay.active .promo-modal-card {
  transform: translateY(0);
}

.promo-modal-image {
  position: relative;
  background: var(--green-soft);
  min-height: 440px;
}

.promo-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.promo-modal-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-deep);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
  z-index: 1020;
}

.promo-modal-close:hover {
  background: var(--yellow);
  color: var(--green-deep);
  transform: scale(1.08);
}

@media(max-width: 768px) {
  .promo-modal-card {
    grid-template-columns: 1fr;
  }
  .promo-modal-image {
    min-height: 240px;
    height: 240px;
  }
  .promo-modal-content {
    padding: 28px;
  }
}

/* Floating Promo Badge */
.promo-badge-floating {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--yellow);
  color: var(--green-deep);
  padding: 14px 20px;
  border-radius: 99px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  box-shadow: var(--shadow-hover);
  z-index: 70;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: var(--transition);
  animation: pulseBadge 3s infinite;
}

.promo-badge-floating:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: scale(1.05) translateY(-3px);
}

@keyframes pulseBadge {
  0% { transform: scale(1); box-shadow: 0 8px 24px rgba(245, 181, 27, 0.25); }
  50% { transform: scale(1.03); box-shadow: 0 12px 32px rgba(245, 181, 27, 0.45); }
  100% { transform: scale(1); box-shadow: 0 8px 24px rgba(245, 181, 27, 0.25); }
}

@media(max-width: 768px) {
  .promo-badge-floating {
    bottom: 86px;
    left: 16px;
    padding: 10px 16px;
    font-size: 13px;
  }
}

