/* =====================
   CSS RESET & NORMALIZE
   ===================== */
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, caption, 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 {
  height: 100%;
  font-size: 100%;
}
body {
  min-height: 100vh;
  background: #F5F7FA;
  color: #1A361F;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  vertical-align: middle;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1A3665;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  font-weight: 700;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
}
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
}

/* ==============
   BRAND COLORS & ORGANIC ACCENTS
   ============== */
:root {
  --primary: #1A3665;
  --secondary: #118D46;
  --accent: #F5F7FA;
  --earth-brown: #967259;
  --earth-green: #4D7857;
  --earth-sand: #E8E2D6;
  --forest-light: #F3F7F1;
  --call-to-action: #118D46;
  --cta-dark: #096330;
  --surface: #ffffff;
  --shadow: 0 4px 16px 0 rgba(90,110,85,0.08);
  --card-radius: 20px;
  --section-radius: 36px;
}

/* ===============
   CONTAINER & CONTENT WRAPPER
   =============== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}


/* ===============
   HEADER & NAVIGATION
   =============== */
header {
  width: 100%;
  background: var(--surface);
  box-shadow: 0 2px 12px 0 rgba(90,110,85,0.06);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.logo img {
  height: 40px;
  border-radius: 12px;
  background: var(--forest-light);
  padding: 4px 8px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--earth-green);
  padding: 6px 16px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--earth-sand);
  color: var(--secondary);
}
.cta-button {
  display: inline-flex;
  align-items: center;
  background: var(--call-to-action);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 40px;
  padding: 12px 30px;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  outline: none;
  text-align: center;
  text-decoration: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--cta-dark);
  box-shadow: 0 8px 32px 0 rgba(90,110,85,0.14);
  transform: translateY(-2px) scale(1.04);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--earth-green);
  cursor: pointer;
  z-index: 101;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--earth-sand);
}

/* ===============
   MOBILE MENU
   =============== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  max-width: 100vw;
  background: rgba(44, 55, 48, 0.98);
  box-shadow: -2px 0 18px 0 rgba(22,22,22, 0.12);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.9,.01,.21,.95);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #fff;
  background: transparent;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin: 28px 20px 0 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 60px 30px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 6px;
  transition: color 0.18s;
  border-bottom: 1.5px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  border-bottom: 1.5px solid var(--secondary);
}

/* ===============
   RESPONSIVE HEADER NAV
   =============== */
@media (max-width: 960px) {
  .main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 961px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===============
   SECTIONS
   =============== */
.section,
.hero,
.features,
.cta,
.testimonials,
.locations,
.services,
.pricing,
.schedule,
.updates,
.history,
.about,
.confirmation,
.faq,
.legal,
.contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--forest-light);
  border-radius: var(--section-radius);
  box-shadow: 0 2px 16px 0 rgba(91,105,85,0.09);
  position: relative;
}
.hero {
  background: linear-gradient(135deg, var(--forest-light) 70%, var(--earth-sand) 100%);
  border-radius: 0 0 var(--section-radius) var(--section-radius);
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0px 2.5px 16px 0 rgba(56,84,36,0.045);
}
.features {
  background: var(--earth-sand);
}
.cta {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 36px 0 rgba(16,70,20,0.09);
  border-radius: calc(var(--section-radius) / 1.2);
}
.cta h2, .cta p {
  color: #fff;
  text-shadow: 0 1.5px 6px rgba(39,70,38,0.11);
}
/* ===============
   CARDS & CONTAINERS
   =============== */
.card-container, .feature-grid, .offer-list, .location-list, .location-grid, .testimonial-list, .content-grid, .pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.card,
.feature,
.offer,
.location,
.membership-option,
.testimonial-card,
.faq-item {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 20px;
  min-width: 220px;
  flex: 1 1 254px;
  position: relative;
  gap: 8px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover,
.feature:hover,
.offer:hover,
.location:hover,
.membership-option:hover,
.testimonial-card:hover,
.faq-item:hover {
  box-shadow: 0 10px 34px 0 rgba(16,70,19,0.13);
  transform: translateY(-3px) scale(1.025);
}

.testimonial-card {
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  color: #27402b;
  border-left: 7px solid var(--secondary);
  font-size: 1.07rem;
  margin-right: 8px;
}
.testimonial-card p {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #27402b;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: var(--earth-green);
}

/* Feature/Service Items in Flex (nature_organic shape accents) */
.feature img, .offer img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  filter: grayscale(0.2) brightness(0.86) hue-rotate(-12deg) saturate(1.25); /* soft natural look */
  background: var(--forest-light);
  border-radius: 14px 34px 17px 31px/25px 13px 29px 30px;
  padding: 7px;
}
.feature h3, .offer h3 {
  color: var(--secondary);
  font-size: 1.14rem;
  margin-bottom: 5px;
}

/* ===============
   FLEX LAYOUTS
   =============== */
.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;
}
.testimonial-card, .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============
   TABLES
   =============== */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 1rem;
}
.schedule-table th,
.schedule-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--earth-sand);
}
.schedule-table th {
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.schedule-table tr:last-child td {
  border-bottom: none;
}
.schedule-download {
  display: inline-block;
  margin-top: 14px;
  color: var(--secondary);
  font-weight: bold;
  text-decoration: underline;
  font-size: 1.05rem;
  transition: color 0.17s;
}
.schedule-download:hover {
  color: var(--primary);
}
.date-tag {
  background: var(--earth-green);
  color: #fff;
  border-radius: 12px;
  font-size: 0.76rem;
  padding: 3px 13px;
  margin-right: 10px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .03em;
  font-weight: 600;
}

/* ===============
   FAQ DROPDOWN
   =============== */

.faq-item {
  cursor: pointer;
  background: var(--surface);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow 0.16s;
}
.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 5px;
  color: var(--secondary);
}
.faq-answer {
  display: none;
  font-size: 0.99rem;
  color: var(--earth-green);
  margin-top: 5px;
}
.faq-item.open .faq-answer {
  display: block;
  animation: fadeInFaq 0.32s;
}
@keyframes fadeInFaq {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: none; }
}

/* ===============
   PRICING TABLE
   =============== */
.pricing-table, .membership-option {
  gap: 24px;
}
.membership-option {
  background: var(--forest-light);
  border: 1.5px solid var(--earth-sand);
  padding: 26px 22px;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(92,129,70,0.09);
  color: var(--primary);
}
.membership-option ul {
  margin-top: 9px;
  padding-left: 0;
}
.membership-option li {
  color: var(--earth-green);
  margin-bottom: 5px;
  font-size: 1rem;
  line-height: 1.5;
}
.membership-option b {
  color: var(--secondary);
}
.trial-offer {
  margin-top: 22px;
  background: var(--surface);
  padding: 13px 18px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  color: var(--earth-green);
}

/* ===============
   FOOTER
   =============== */
footer {
  background: var(--primary);
  color: #edf6ef;
  padding-top: 32px;
  padding-bottom: 32px;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.98rem;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-direction: row;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #c9e7d0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 6px 10px;
  margin-bottom: 6px;
  border-radius: 9px;
  transition: background 0.18s, color 0.18s;
  font-size: 0.97rem;
}
.footer-nav a:hover {
  background: var(--secondary);
  color: #fff;
}
.footer-contact {
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  color: #edf6ef;
  min-width: 228px;
  gap: 3px;
  font-size: 0.99rem;
}
.footer-contact img {
  width: 16px;
  margin-right: 6px;
  opacity: 0.87;
}
.footer-newsletter {
  min-width: 190px;
  max-width: 210px;
  color: #e2ffe4;
  font-size: 0.98rem;
}
.footer-newsletter h4 {
  color: #fff;
  font-size: 1.12rem;
  margin-bottom: 5px;
}
.footer-social {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 6px;
}
.footer-social a img {
  width: 30px;
  height: 30px;
  filter: grayscale(0.11) brightness(1.15);
  border-radius: 7px;
  transition: filter 0.16s, transform 0.11s;
  background: #daf7e3;
}
.footer-social a:hover img {
  filter: brightness(1.23) drop-shadow(0 1.5px 1px #118D46ee);
  transform: scale(1.1);
}

/* ===============
   COOKIE CONSENT BANNER
   =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: rgba(244, 252, 240, 0.98);
  border-top: 3px solid var(--earth-green);
  box-shadow: 0 -4px 28px 0 rgba(51,70,44,0.11);
  padding: 20px 16px 20px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 1rem;
  transition: transform 0.33s cubic-bezier(.98,.02,.18,1.02), opacity 0.25s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-text {
  flex: 1 1 200px;
  color: #191E13;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.19s, box-shadow 0.18s, transform 0.12s;
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 1px 8px 0 rgba(16,70,19,0.08);
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--primary);
  color: #e5ffea;
  transform: translateY(-2px) scale(1.04);
}
.cookie-btn.secondary {
  background: #a9c7aa;
  color: var(--secondary);
}
.cookie-btn.secondary:hover,
.cookie-btn.secondary:focus {
  background: var(--earth-green);
  color: #e5ffe5;
}
/* ===============
   COOKIE MODAL
   =============== */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 20001;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,50,24,0.45);
  justify-content: center;
  align-items: center;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 64px 0 rgba(22,52,19,0.19);
  min-width: 300px;
  max-width: 96vw;
  padding: 36px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: modalAppear 0.38s cubic-bezier(.98,.02,.26,.98);
}
@keyframes modalAppear {
  0% { transform: scale(0.95) translateY(18px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 2rem;
  color: var(--earth-green);
  border: none;
  background: transparent;
  cursor: pointer;
}
.cookie-modal h2 {
  margin-bottom: 6px;
  color: var(--secondary);
  font-size: 1.25rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-category-label {
  font-weight: 500;
  color: var(--primary);
  font-size: 1rem;
}
.cookie-category-toggle {
  border: 2px solid var(--earth-green);
  background: var(--forest-light);
  border-radius: 16px;
  width: 36px;
  height: 22px;
  position: relative;
  transition: border-color 0.16s;
  cursor: pointer;
  margin-left: 7px;
}
.cookie-category-toggle[data-enabled="true"] {
  background: var(--earth-green);
  border-color: var(--secondary);
}
.cookie-category-toggle:after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.17s, background 0.17s;
}
.cookie-category-toggle[data-enabled="true"]:after {
  left: 17px;
  background: var(--primary);
}
.cookie-category-desc {
  color: #515a53;
  font-size: 0.98rem;
  margin-left: 8px;
}
.cookie-category.essential .cookie-category-toggle {
  opacity: 0.6; pointer-events: none; background: #e0e0d2; border: 1.5px solid #c1c1b2;
}

.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}

/* ===============
   ORGANIC DECORATIVE SHAPES (only for non-content accent - e.g. hero backgrounds)
   =============== */
.organic-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  filter: blur(3.5px);
}

/* ===============
   TYPOGRAPHY & LINKS
   =============== */
a {
  color: var(--secondary);
  text-decoration: underline;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: var(--cta-dark);
}
section a.cta-button {
  text-decoration: none;
  margin-top: 6px;
}

/* ===============
   SPACING & FLEX LAYOUT CORRECTIONS
   =============== */
.section,
.hero,
.features,
.cta,
.testimonials,
.locations,
.services,
.pricing,
.schedule,
.updates,
.history,
.about,
.confirmation,
.faq,
.legal,
.contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============
   ORGANIC BUTTONS, SHADOWS, INTERACTIONS
   =============== */
button,
input[type="button"],
input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 28px;
  padding: 10px 26px;
  cursor: pointer;
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 2.5px 12px 0 rgba(40,90,52,0.05);
  transition: background 0.16s, box-shadow 0.12s, transform 0.12s;
}
button:hover, button:focus {
  background: var(--primary);
  color: #ebffe5;
  box-shadow: 0 7px 22px 0 rgba(16,70,19,0.13);
  transform: translateY(-2px) scale(1.04);
}

/* ===============
   MEDIA QUERIES: RESPONSIVE DESIGN
   =============== */
@media (max-width: 1200px) {
  .container { max-width: 990px; }
}
@media (max-width: 992px) {
  .container { max-width: 790px; }
  .content-wrapper, .footer .content-wrapper { flex-direction: column; gap: 24px; }
  .footer-nav { gap: 10px; }
  .footer-social { margin-bottom: 14px; }
}
@media (max-width: 768px) {
  section, .section, .hero, .features, .cta, .testimonials, .locations, .services, .pricing, .schedule, .updates, .history, .about, .confirmation, .faq, .legal, .contact {
    padding: 24px 6px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 20px;
  }
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.13rem; }
  .main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
  .card-container, .feature-grid, .offer-list, .location-list, .location-grid, .testimonial-list, .content-grid, .faq-list, .pricing-table {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .card, .feature, .offer, .location, .membership-option, .faq-item {
    min-width: unset;
    max-width: 100%;
    flex: 1 1 100%;
    padding: 19px 12px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-contact, .footer-newsletter, .footer-social {
    min-width: unset;
    margin-bottom: 14px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 20px;
    align-items: flex-start;
  }
  .mobile-nav {
    margin: 30px 10px 0 18px;
    gap: 20px;
  }
  .hero {
    min-height: 180px;
    flex-direction: column;
    padding: 34px 6px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 3vw 16px 3vw;
    font-size: 0.97rem;
  }
}
@media (max-width: 600px) {
  .container { max-width: 99vw; padding: 0 4px; }
  .footer .container, .footer .content-wrapper {
    padding: 0 2vw;
  }
  .cookie-modal {
    min-width: 60vw;
    padding: 17px 6vw 14px 5vw;
  }
}

/* ===============
   LOADING FONT FAMILIES (SAFEGUARD, fallback is handled by browser if missing)
   =============== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* END OF CSS */
