/* Orbit Fusion NATURE ORGANIC STYLE CSS - Mobile First, Flexbox-Only, Responsive, Modern, Nature Inspired */

/* === CSS RESET & BASELINE NORMALIZATION === */
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 {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background-color: #fbfaf8;
  color: #2e3d27;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
a:focus {
  outline: 2px solid #5EC2D9;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 1.2em;
  margin: 0 0 1rem 0;
}
li {
  margin-bottom: 0.5em;
}
button {
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* === TYPOGRAPHY (Nature Organic) === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  line-height: 1.15;
  font-weight: 700;
  color: #1d2c1a;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: .7em;
}
p, .subheadline, .testimonial-meta, address {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2e3d27;
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.18rem;
  font-style: italic;
  color: #3f5542;
}
strong {
  font-weight: 700;
  color: #256c38;
}

/* === BRAND COLOR PALETTE (Nature, Earth, Accent) === */
:root {
  --primary: #024059;
  --secondary: #5EC2D9;
  --accent: #F9D857;
  --earth1: #e3e0d6;
  --earth2: #c5b899;
  --earth3: #8b876d;
  --green-main: #3c6e4c;
  --green-light: #9dcfa2;
  --brown-soft: #a3876a;
  --nature-bg: #fbfaf8;
  --nature-bg-contrast: #f0ede5;
}

/* === LAYOUT CONTAINERS (Flexbox ONLY) === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 900px) {
  .content-wrapper {
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--nature-bg);
  border-radius: 24px;
  box-shadow: 0 4px 28px rgba(41,66,22,0.04);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 26px 8px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 420px;
  padding: 28px 22px;
  background: var(--nature-bg-contrast);
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(33,50,24,0.06);
  transition: box-shadow 0.23s, transform 0.23s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(33,50,24,0.13);
  transform: translateY(-3px) scale(1.025);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #f5fcef;
  margin-bottom: 20px;
  padding: 20px 24px;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(51,83,39,0.09);
  border: 1.5px solid #bcdabb;
  min-width: 240px;
  max-width: 500px;
  font-size: 1.1rem;
  color: #224022;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.18s;
}
.testimonial-card:hover {
  border-color: var(--green-main);
  box-shadow: 0 8px 28px rgba(39,68,26,0.13);
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #396033;
  margin-top: 10px;
  font-weight: 600;
  font-style: italic;
  text-align: right;
  width: 100%;
}

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

.feature {
  background: #eaf6e4;
  border-radius: 18px;
  padding: 20px 18px 18px 18px;
  box-shadow: 0 2px 9px rgba(69,110,77,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.19s, background 0.22s;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 210px;
  position: relative;
  margin-bottom: 20px;
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 4px rgba(25,51,28,0.09));
}
.feature:hover {
  background: #d3fadc;
  box-shadow: 0 10px 22px rgba(76,143,82,0.13);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature {
    max-width: 100%;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(120deg, #f6ffe5 60%, #deefd4 100%);
  position: relative;
  border-radius: 0 0 32px 32px;
  margin-bottom: 44px;
  padding: 48px 0 28px 0;
}
.hero h1 {
  color: var(--green-main);
}
.hero .cta-button {
  margin-top: 18px;
}

/* === BUTTONS === */
.cta-button {
  background: linear-gradient(100deg, #5EC2D9 65%, #3c6e4c 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.17rem;
  font-weight: 700;
  padding: 14px 34px;
  border: none;
  border-radius: 36px;
  box-shadow: 0 5px 22px rgba(28, 53, 36, 0.11);
  text-align: center;
  transition: background 0.21s, transform .15s, box-shadow .15s;
  display: inline-block;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  cursor: pointer;
}
.cta-button:hover,
.cta-button:focus {
  background: linear-gradient(100deg, #3c6e4c 40%, #5EC2D9 100%);
  transform: translateY(-3px) scale(1.045);
  box-shadow: 0 8px 28px rgba(43,82,39,0.16);
  color: #F9D857;
}

/* === HEADER & NAVIGATION === */
header {
  background: var(--nature-bg);
  box-shadow: 0 3px 18px rgba(34,54,30, 0.06);
  padding: 4px 0;
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.main-nav {
  display: none;
}
@media (min-width: 900px) {
  .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
  }
  .main-nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: #3c6e4c;
    font-size: 1.04rem;
    font-weight: 500;
    padding: 7px 5px;
    border-radius: 12px;
    transition: background 0.18s, color 0.18s;
  }
  .main-nav a:hover, .main-nav a:focus {
    color: #024059;
    background: #e3e0d6;
  }
}

header img {
  height: 48px;
  width: auto;
}
@media (max-width: 900px) {
  header img {
    height: 36px;
  }
}

/* Burger menu (mobile) */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  background: #eaf6e4;
  color: #256c38;
  border-radius: 50%;
  border: none;
  font-size: 2.1rem;
  box-shadow: 0 2px 13px rgba(25,51,28,.10);
  transition: background 0.19s, color 0.15s;
  z-index: 1201;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #256c38;
  color: #F9D857;
}
@media (min-width: 900px) {
  .mobile-menu-toggle { display: none; }
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: rgba(34,61,39, 0.86);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.83,0,0.17,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fffaff;
  color: #256c38;
  border-radius: 50%;
  margin: 18px 22px 0 0;
  font-size: 2.1rem;
  height: 44px;
  width: 44px;
  border: none;
  box-shadow: 0 2px 13px rgba(25,51,28,.15);
  transition: background .15s, color .13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #256c38;
  color: #F9D857;
}
.mobile-nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2px;
}
.mobile-nav a {
  width: 100%;
  display: block;
  padding: 20px 28px;
  font-size: 1.15rem;
  color: #f7fff2;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #24582e3b;
  transition: background 0.12s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #d3fadc;
  color: #256c38;
}

@media (min-width: 900px) {
  .mobile-menu { display: none !important; }
}

/* === FOOTER === */
footer {
  background: linear-gradient(100deg, #fbfaf8 80%, #e3e0d6 100%);
  color: #294d2b;
  border-radius: 26px 26px 0 0;
  padding-top: 44px;
  margin-top: 70px;
  position: relative;
  z-index: 1;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-nav a {
  font-size: 0.98rem;
  color: #2e5332;
  padding: 7px 10px;
  border-radius: 9px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  transition: background 0.11s, color .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #eaf6e4;
  color: #13794a;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-brand img {
  height: 38px;
  width: auto;
}
.footer-brand address {
  color: #3c6e4c;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.footer-social {
  display: flex;
  gap: 17px;
}
.footer-social img {
  width: 28px; height: 28px;
  filter: grayscale(.28) opacity(.77);
  transition: filter .12s, transform .12s;
  cursor: pointer;
}
.footer-social img:hover {
  filter: grayscale(0) opacity(1) drop-shadow(0 2px 4px #e3e0d6);
  transform: scale(1.13) rotate(-5deg);
}
footer small {
  color: #8b876d;
  font-size: 0.90rem;
  margin-top: 6px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

@media (min-width: 750px) {
  footer .container {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .footer-brand { order: 2; }
  .footer-nav { order: 1; }
  footer small { order: 3; }
}

/* === LEGAL SECTIONS === */
.legal {
  background: #f6ffe5;
  border-radius: 22px;
  padding: 40px 26px;
  box-shadow: 0 2px 14px rgba(44,83,36,0.07);
  margin-bottom: 40px;
}
.legal h1 {
  margin-bottom: 24px;
  color: #296733;
}

/* === CONFIRMATION PAGE === */
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-top: 46px;
  margin-bottom: 64px;
}

/* === CONTACT PAGE MAP PLACEHOLDER === */
.google-map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  width: 100%;
  background: #eaf6e4;
  border-radius: 12px;
  font-style: italic;
  color: #7f9579;
}

/* ========== Cookie Consent Banner ========== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 3000;
  background: #d8ecd7;
  color: #26502a;
  box-shadow: 0 -2px 18px rgba(111,133,102,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 18px 20px 18px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: transform 0.32s cubic-bezier(0.7,0.17,0.13,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(150%);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 24px;
  border: none;
  margin-left: 0;
  margin-right: 0;
  transition: background .14s, color .13s, box-shadow .14s;
  box-shadow: 0 2px 8px rgba(44,83,36,0.06);
}
.cookie-banner .accept {
  background: var(--green-main);
  color: #fffefa;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--accent);
  color: #26502a;
}
.cookie-banner .reject {
  background: #c5b899;
  color: #395024;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #8b876d;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff9e5;
  color: #3c6e4c;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #f1eaa6;
  color: #13794a;
}

/* Cookie modal (animated up) */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 48px;
  transform: translate(-50%, 24vh) scale(1);
  min-width: 290px;
  max-width: 98vw;
  background: #ecf5e3;
  box-shadow: 0 6px 38px rgba(34,70,32,0.19);
  border-radius: 16px 16px 16px 16px;
  padding: 36px 26px 24px 26px;
  z-index: 3100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s, transform 0.35s cubic-bezier(0.8,0,0.15,1);
}
.cookie-modal.open {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: all;
}
.cookie-modal h3 {
  margin-bottom: 1em;
  color: #13794a;
  font-size: 1.22rem;
}
.cookie-modal .cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 19px;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal .cookie-cat label {
  font-weight: 600;
}
.cookie-modal input[type=checkbox][disabled] {
  accent-color: #3c6e4c;
  cursor: not-allowed;
}
.cookie-modal input[type=checkbox]:not([disabled]) {
  accent-color: var(--green-main);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 22px;
}
.cookie-modal button {
  padding: 9px 22px;
  font-size: 1rem;
  border-radius: 19px;
  border: none;
  font-weight: 600;
  box-shadow: 0 2px 9px rgba(44,73,43,0.07);
  background: var(--green-light);
  color: #20391d;
  transition: background .14s, color .14s;
}
.cookie-modal button.accept {
  background: var(--green-main);
  color: #fff;
}
.cookie-modal button.accept:hover, .cookie-modal button.accept:focus {
  background: #256c38;
  color: #F9D857;
}
.cookie-modal button.reject {
  background: #c5b899;
  color: #294d2b;
}
.cookie-modal button.reject:hover, .cookie-modal button.reject:focus {
  background: #8b876d;
  color: #fff;
}

/* === SPACING, HIERARCHY, SHAPES === */
section, .section {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  section, .section {
    margin-bottom: 36px;
    padding: 18px 0 14px 0;
  }
}

/* Use modern, natural organic shapes for section backgrounds */
.section, .hero, .feature, .testimonial-card {
  border-radius: 26px 22px 36px 18px/24px 26px 14px 32px;
}

/* Organic highlight accent */
.hero:before, .hero:after {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
}
.hero:before {
  top: -74px; left: 28vw;
  width: 240px; height: 182px;
  background: radial-gradient(ellipse at center, #E3FFD5 65%, transparent 98%);
  opacity: .48;
}
.hero:after {
  right: -110px; top: 50px;
  width: 200px; height: 160px;
  background: radial-gradient(ellipse at center, #f6ffe5 65%, transparent 98%);
  opacity: .30;
}

/* === ANIMATIONS & TRANSITIONS === */
.cta-button, .feature, .card, .testimonial-card, .mobile-menu, .mobile-menu-close, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
  transition-timing-function: cubic-bezier(.8,.14,.13,1);
}

/* === LINKS === */
a {
  color: var(--primary);
  text-underline-offset: 2px;
  transition: color 0.14s;
}
a:visited {
  color: var(--primary);
}
a:hover, a:focus {
  color: var(--green-main);
  text-decoration: underline wavy var(--accent) 1.8px;
}

/* === LISTS === */
ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
ul li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(162,140,42,0.14);
}

/* === TABLES (in legal pages) === */
table {
  width: 100%;
  border-collapse: collapse;
  background: #eaf6e4;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
}
th, td {
  padding: 13px 7px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #c5b899;
  color: #fff;
  font-weight: 700;
}
td {
  background: #f6ffe5;
  color: #294d2b;
}

/* === FORMS (if present) === */
input, select, textarea {
  border: 1.2px solid #d1e5cd;
  border-radius: 7px;
  padding: 9px 12px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #f9fdf8;
  color: #294d2b;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: #256c38;
  outline: none;
  background: #eaf6e4;
}

/* Misc containers padding */
.text-section {
  gap: 12px;
}

/* ========== RESPONSIVE DESIGN (MOBILE-FIRST) ========== */
@media (min-width: 700px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  .hero {
    padding: 72px 0 52px 0;
    margin-bottom: 64px;
  }
}
@media (max-width: 600px) {
  .feature, .card, .testimonial-card {
    max-width: 98vw;
    width: 100%;
  }
  .footer-brand, .footer-nav {
    align-items: stretch;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 6vw;
  }
  header .container {
    gap: 15px;
    flex-direction: row;
  }
  .footer-brand, .footer-nav {
    width: 100%;
  }
}

/* Prevent overlapping */
.card, .feature, .testimonial-card, .section, .hero, .footer-brand, .content-wrapper, .container {
  margin-bottom: 20px;
}

/* === ACCESSIBILITY === */
button:focus-visible, .cta-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.cookie-banner button:focus-visible, .cookie-modal button:focus-visible {
  outline: 2px solid var(--green-main);
  outline-offset: 2px;
}

/* [END OF CSS] */
