/* =============================================================
   CSS Reset & Normalize – Mobile First Approach
   ============================================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: #FAF9F6;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F7F8F5;
  color: #2C2C2C;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1A365D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #72B01D;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
th, td {
  border: 1px solid #D9E1CC;
  padding: 10px 12px;
  text-align: left;
}
th {
  background: #EFF1E9;
  color: #1A365D;
  font-weight: 700;
}

/* =============== Brand Fonts =================== */
h1, h2, h3, h4, h5, h6, .button, .primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #1A365D;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1A365D;
  line-height: 1.2;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: #3D5A33;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #517537;
}
.text-section h2, .text-section h3, .text-section h4 {
  margin-top: 16px;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #2C2C2C;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}

/* ================================================
   LAYOUT WRAPPERS
   ================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FCFBF7;
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(122,150,94,0.07);
}

/* Card containers: FLEXBOX only, never grid */
.card-container, .features-grid, .faq-list, .testimonial-slider, .pricing-table, .major-cities-grid, .certification-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  background: #FAF9F6;
  border-radius: 18px;
  box-shadow: 0 1px 8px 0 rgba(47,73,36,0.06);
  padding: 24px 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .features-grid>div:hover, .pricing-table>div:hover {
  box-shadow: 0 8px 32px 0 rgba(80,126,44,0.13);
  transform: translateY(-4px) scale(1.02);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.certification-badges {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.major-cities-grid>div, .features-grid>div, .pricing-table>div {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 300px;
  background: #F6F9F1;
  border-radius: 16px;
  padding: 22px 16px;
  box-shadow: 0 2px 10px 0 rgba(38,71,30,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.23s, background 0.22s;
}
.features-grid>div:hover, .major-cities-grid>div:hover {
  background: #E8F4D9;
  box-shadow: 0 8px 26px 0 rgba(80,140,44,0.14);
}

/***** Visual Spacing for Section Content *****/
section {
  margin-bottom: 60px;
  padding-bottom: 0;
}

/***** Responsive spacing enforced by gap: 20px+ everywhere *****/

/***** Testimonial styles *****/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F7FBEA;
  border: 1.5px solid #C3D4AD;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px 0 rgba(41,78,19,0.08);
  max-width: 350px;
  min-width: 240px;
  transition: box-shadow 0.19s;
}
.testimonial-card p {
  color: #2C2C2C;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #36612A;
  font-weight: 500;
}
.testimonial-card strong {
  color: #4D7B36;
}

/**** FAQ & Process ****/
.faq-list>div, .process-overview>div {
  flex: 1 1 260px;
  min-width: 200px;
  background: #F6F9F1;
  border-radius: 14px;
  padding: 18px 14px;
  margin-bottom: 18px;
  box-shadow: 0 1px 7px rgba(120,150,80,.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

/******** Feature Items ********/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/******** PRICE TABLE *********/
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 30px;
}
.pricing-table>div {
  transition: box-shadow 0.2s, transform 0.19s;
}
.pricing-table>div p {
  margin-top: 15px;
  margin-bottom: 0;
  color: #58842A;
  font-size: 1.09rem;
}
/******* Thank You Message ******/
.thank-you-message {
  background: #F6F9F1;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.thank-you-message ul {
  margin-top: 8px;
}
/***** Map and Coverage Styles *****/
.coverage-map {
  background: #F9F8F2;
  border-radius: 12px;
  padding: 16px 12px;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 1px 5px rgba(71,110,40,.04);
}
.map {
  background: #F7FDE1;
  border-radius: 16px;
  padding: 16px 12px;
  margin-top: 12px;
}

/**************************************************
   HEADER & NAVIGATION
***************************************************/
header {
  background: #FAF9F6;
  box-shadow: 0 2px 24px 0 rgba(64,130,17,0.06);
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-left: 36px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #355A2D;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E6F3D9;
  color: #72B01D;
}
.button.primary {
  background: #72B01D;
  color: #fff;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 15px 0 rgba(80,150,44,0.08);
  cursor: pointer;
  transition: background 0.18s, transform 0.17s, box-shadow 0.13s;
  margin-left: 32px;
  outline: none;
  display: inline-block;
}
.button.primary:hover, .button.primary:focus {
  background: #507721;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px 0 rgba(110,200,52,0.12);
}
.button {
  background: #EFF8DE;
  color: #355A2D;
  border: none;
  border-radius: 7px;
  padding: 13px 22px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;
  transition: background 0.14s, color 0.13s, box-shadow 0.12s, transform 0.12s;
  box-shadow: 0 1px 6px 0 rgba(100,140,44,0.08);
}
.button:hover, .button:focus {
  background: #C3D4AD;
  color: #1A365D;
  transform: translateY(-1.5px) scale(1.03);
}

/**************************************************
   MOBILE MENU
***************************************************/
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E6F3D9;
  color: #355A2D;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  padding: 6px 12px;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #C3D4AD;
  color: #4A892B;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(243,247,234,0.97);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.79,.24,.16,.93);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 12px 0;
  font-size: 2rem;
  background: none;
  border: none;
  color: #4D7B36;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #1A365D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 36px;
  margin-top: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #355A2D;
  border-radius: 5px;
  padding: 12px 10px;
  transition: background 0.14s, color 0.13s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D1E8FF;
  color: #1A365D;
}

/**************************************************
   HERO, CTA, AND BANNERS
***************************************************/
.hero {
  background: linear-gradient(120deg, #EFF8DE 70%, #D1E8FF 100%);
  border-radius: 0 0 36px 36px;
  padding: 56px 0 40px 0;
  margin-bottom: 48px;
  box-shadow: 0 4px 32px 0 rgba(77, 123, 54, 0.09);
}
.hero .content-wrapper {
  gap: 22px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.4rem;
  color: #1A365D;
}
.hero p {
  font-size: 1.15rem;
  color: #355A2D;
  max-width: 520px;
}

.cta-banner {
  background: #1A365D;
  color: #fff;
  border-radius: 22px;
  margin-bottom: 0;
  padding: 32px 20px;
  box-shadow: 0 4px 16px 0 rgba(90,140,70,0.13);
}
.cta-banner h2, .cta-banner p { color: #fff; margin-bottom: 18px; }
.cta-banner .button, .cta-banner .button.primary {
  background: #72B01D;
  color: #fff;
}
.cta-banner .button:hover, .cta-banner .button.primary:hover {
  background: #1A365D;
  color: #fff;
  border: 2px solid #72B01D;
}

/**************************************************
   FOOTER STYLES
***************************************************/
footer {
  background: #F6F9F1;
  color: #284B26;
  border-top: 2.5px solid #E6F3D9;
  margin-top: 65px;
  font-size: 1rem;
  width: 100%;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0 18px 0;
  border-bottom: 1px solid #E2EBDF;
}
.footer-top img {
  height: 48px;
  margin-bottom: 18px;
}
.footer-nav,.legal-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a, .legal-nav a {
  color: #284B26;
  font-size: 1rem;
  border-radius: 3px;
  padding: 5px 0 5px 0;
  transition: color 0.12s, background 0.10s;
}
.footer-nav a:hover, .legal-nav a:hover, .footer-nav a:focus, .legal-nav a:focus {
  color: #72B01D;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding: 16px 0 14px 0;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.99rem;
  color: #284B26;
}
.contact-info span img {
  width: 20px;
  margin-right: 7px;
  vertical-align: middle;
}
.social-media {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
.social-media img {
  height: 28px;
  width: auto;
  filter: grayscale(35%) brightness(1.12);
  opacity: 0.82;
  transition: filter 0.2s, opacity 0.13s, transform 0.15s;
  cursor: pointer;
}
.social-media img:hover, .social-media img:focus {
  filter: none;
  opacity: 1;
  transform: scale(1.11);
}

/**************************************************
   COOKIE CONSENT BANNER
***************************************************/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FDFCFA;
  color: #243C1B;
  border-top: 1.5px solid #D5E3B7;
  box-shadow: 0 -2px 30px 0 rgba(80,140,44,.15);
  padding: 18px 22px 18px 22px;
  z-index: 1500;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  font-size: 1rem;
}
.cookie-consent-message {
  flex: 1;
  color: #243C1B;
}
.cookie-consent-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-btn {
  border: none;
  border-radius: 7px;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-btn.accept {
  background: #72B01D;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #507721;
}
.cookie-btn.reject {
  background: #EFEFEF;
  color: #1A365D;
}
.cookie-btn.reject:hover {
  background: #E2EBDF;
}
.cookie-btn.settings {
  background: #FAF9F6;
  color: #355A2D;
  border: 1.5px solid #D1E8FF;
}
.cookie-btn.settings:hover {
  background: #EFF8DE;
}

/**** Cookie Modal Styles ****/
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 95vw;
  max-width: 420px;
  background: #FAF9F6;
  border: 2px solid #D5E3B7;
  box-shadow: 0 2px 24px 0 rgba(32,62,25,0.17);
  border-radius: 16px;
  transform: translate(-50%, -50%) scale(1.02);
  z-index: 1550;
  padding: 28px 24px 22px 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.8,.24,.16,.93);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h3 {
  font-size: 1.19rem;
  color: #355A2D;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-toggle {
  display: inline-block;
  width: 40px;
  height: 22px;
  border-radius: 22px;
  background: #C7E2B0;
  position: relative;
  transition: background 0.15s;
  margin-left: 10px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle span {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 99px;
  background: #fff;
  box-shadow: 0 1px 5px rgba(40,80,24,0.05);
  transition: left 0.22s;
}
.cookie-toggle input:checked + span {
  left: 21px;
  background: #71AE23;
}
.cookie-modal .cookie-btn {
  margin-top: 12px;
}
.cookie-modal .cookie-btn.settings {
  background: #EFF8DE;
  color: #507721;
  border: none;
  font-weight: 700;
}
.cookie-modal .cookie-btn.reject {
  background: #EFEFEF;
}
.cookie-modal .cookie-btn.accept {
  background: #72B01D;
}

/**************************************************
   ORGANIC DESIGN ELEMENTS
***************************************************/
section, .card, .faq-list>div, .features-grid>div, .process-overview>div, .testimonial-card, .major-cities-grid>div, .cta-banner, .pricing-table>div {
  border-radius: 18px 38px 24px 12px / 19px 26px 25px 32px;
  /* Subtle uneven radius for organic touch */
}
.certification-badges img, .certification-logos img {
  filter: drop-shadow(0 2px 2px rgba(120,160,50,0.06));
  height: 32px;
  width: auto;
}

/**************************************************
   RESPONSIVE (MOBILE FIRST)
***************************************************/
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.22rem; }
  .container {
    padding: 0 12px;
  }
  .main-nav {
    display: none;
  }
  .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .major-cities-grid, .features-grid, .faq-list, .testimonial-slider, .pricing-table, .process-overview {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid, .certification-logos {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 7px 13px 10px;
    font-size: 0.96rem;
  }
}
@media (max-width: 480px) {
  h1, h2, h3, h4 { font-size: 1rem; }
  .section, section {
    padding: 14px 3px;
    margin-bottom: 32px;
  }
  .card, .major-cities-grid>div, .features-grid>div, .pricing-table>div, .faq-list>div, .process-overview>div, .testimonial-card { padding: 10px 7px; }
  .cookie-modal {
    padding: 10px 3px 10px 7px;
    max-width: 98vw;
  }
}

/**************************************************
   GENERAL UTILITIES (Spacing & Hiding)
***************************************************/
.hide {
  display: none !important;
}
.mt-2 { margin-top: 16px !important; }
.mt-4 { margin-top: 24px !important; }
.mb-2 { margin-bottom: 12px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }

/**************************************************
   OTHER MICRO-INTERACTIONS
***************************************************/
.card, .features-grid>div, .pricing-table>div, .major-cities-grid>div, .faq-list>div, .testimonial-card {
  cursor: pointer;
  will-change: transform, box-shadow;
}

::-webkit-scrollbar {
  width: 10px;
  background: #EFF8DE;
}
::-webkit-scrollbar-thumb {
  background: #C3D4AD;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #AEC294;
}

/**************************************************
   PRINT SAFE: Skip nav, mobile, banner
***************************************************/
@media print {
  header, .mobile-menu, .cookie-consent-banner, .cta-banner, nav, footer { display: none !important; }
}
