/*--- Luminae Power Style.css ---*/
/* 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,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, 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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F6F5F2;
  color: #203040;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  margin: 0;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #355C3A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ED9F2A;
  outline: none;
}

/* FONTS FROM GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #203040;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.25rem; /* 36px */
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.625rem; /* 26px */
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 10px;
}
p {
  margin-bottom: 18px;
  font-size: 1rem;
  color: #38483A;
}
strong {
  font-weight: 700;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
  box-shadow: 0 3px 18px rgba(32,48,64,0.07);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 28px 12px;
  }
}

/* FLEXBOX - CONTENT CONTAINERS */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(72, 92, 80, 0.08);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  flex: 1 1 270px;
  min-width: 240px;
  max-width: calc(50% - 12px);
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #E9E7E2;
  transition: box-shadow 0.24s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(32,48,64,0.16);
  transform: translateY(-3px) scale(1.015);
}
@media (max-width: 768px) {
  .card {
    max-width: 100%;
    min-width: 100%;
  }
}

.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: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F8F9F5;
  border-left: 8px solid #A3B18A;
  border-radius: 13px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(60,99,60,0.09);
  color: #19281E;
  position: relative;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(77, 108, 69, .17);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #394D36;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #618158;
  font-weight: 700;
}
.testimonial-card em {
  font-style: italic;
  font-weight: 400;
  color: #9E6C3F;
  margin-left: 6px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 7px rgba(32,48,64,.04);
  padding: 18px 14px;
  border-left: 5px solid #BFD5A0;
  margin-bottom: 20px;
}

.text-section {
  background: #F6F6ED;
  border-radius: 24px;
  padding: 28px 18px;
}

/* --- HEADER --- */
header {
  background: #E9E7E2;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 9px 0 rgba(136,150,130,0.03);
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 6px 10px 6px;
}
header nav img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}
header nav ul li a {
  color: #355C3A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
header nav ul li a:hover, header nav ul li a:focus {
  background: #D8E3D1;
  color: #234124;
}
header nav .btn-primary {
  margin-left: 28px;
}
header .mobile-menu-toggle {
  display: none;
  background: #A3B18A;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 0 14px;
  height: 44px;
  cursor: pointer;
}
/* Responsive nav */
@media (max-width: 980px) {
  header nav ul {
    gap: 8px;
  }
  header nav .btn-primary {
    margin-left: 8px;
  }
}
@media (max-width: 768px) {
  header nav ul,
  header nav .btn-primary {
    display: none;
  }
  header .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44, 55, 30, 0.94);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.6,.22,.33,1.16);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  color: #fff;
  background: none;
  border: none;
  font-size: 2.5rem;
  margin: 28px 28px 0 0;
  cursor: pointer;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 60px 0 0 0;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.23rem;
  font-weight: 700;
  padding: 12px 36px;
  border-radius: 14px;
  transition: background 0.18s, color 0.18s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #83B060;
  color: #EDD6B2;
}

@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-close { display: none; }
}

/* --- BUTTON STYLES --- */
.btn-primary,
.btn-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: inline-block;
  font-size: 1.10rem;
  padding: 13px 33px 13px 30px;
  border-radius: 24px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.17s, transform 0.11s;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(32,48,64,.06);
  letter-spacing: .02em;
}
.btn-primary {
  background: #87A96B;
  color: #fff;
  box-shadow: 0 2px 6px rgba(95,130,78,.07);
  border: 2px solid #87A96B;
}
.btn-primary:hover, .btn-primary:focus {
  background: #618158;
  color: #fff;
  box-shadow: 0 6px 18px rgba(113, 150, 90, 0.14);
  transform: scale(1.04);
}
.btn-secondary {
  background: #fff;
  color: #618158;
  border: 2px solid #87A96B;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E6EFD7;
  color: #3D532F;
  border-color: #618158;
}
:focus {
  outline: 2px dashed #ED9F2A;
  outline-offset: 2px;
}

/* --- LINKS --- */
a {
  transition: color 0.14s, text-decoration 0.1s;
}
a:active {
  color: #C97315;
}

/* --- LISTS & FORMATTED TEXT --- */
ul li, ol li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  color: #294E32;
  font-size: 1.04rem;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #A3B18A;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 10.5px;
}
ol li {
  padding-left: 0;
  margin-left: 18px;
  color: #4C4628;
}
@media (max-width: 768px) {
  ul li, ol li {
    font-size: 0.98rem;
    margin-bottom: 7px;
  }
}

/* --- FOOTER --- */
footer {
  background: #E9E7E2;
  padding: 38px 0 24px 0;
  box-shadow: 0 -2px 10px rgba(120,135,115,.035);
}
footer .container {
  max-width: 1080px;
}
footer .content-wrapper {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
}
footer img {
  height: 36px;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: 0.98rem;
  align-items: center;
  justify-content: center;
}
footer nav a {
  color: #4F5B3E;
  text-decoration: underline;
  padding: 2px 8px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background .16s, color .13s;
}
footer nav a:hover, footer nav a:focus {
  background: #BFD5A0;
  color: #234124;
}
footer p {
  margin-top: 3px;
  color: #7A7B64;
  font-size: 0.91rem;
}

/* --- SPECIAL PAGES: TEXT-CONTENT --- */
.text-section {
  background: #FAF9F3;
  border-radius: 24px;
  padding: 32px 28px;
  margin-top: 12px;
}
@media (max-width: 600px) {
  .text-section { padding: 22px 9px; }
}
.text-section h1,
.text-section h2,
.text-section h3 {
  color: #466646;
}
.text-section p,
.text-section ul li,
.text-section ol li {
  color: #5B654F;
}

/* --- SPACING & UTILITIES --- */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }

/* --- ORGANIC DECORATIVE ELEMENTS (Subtle) --- */
.section::after {
  content: '';
  display: block;
  width: 96px;
  height: 64px;
  position: absolute;
  right: 22px;
  bottom: 18px;
  background: url('../assets/organic-shape1.svg') no-repeat center/contain;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .section::after { display: none; }
}

/* --- ORGANIC BUTTON ANIMATION --- */
.btn-primary, .btn-secondary {
  position: relative;
  overflow: visible;
}
.btn-primary::after {
  content: '';
  position: absolute;
  left: 8px; top: 8px;
  width: 12px; height: 12px;
  background: #ED9F2A;
  border-radius: 50%;
  opacity: 0.14;
  transition: transform 0.18s, opacity 0.18s;
  pointer-events: none;
}
.btn-primary:hover::after, .btn-primary:focus::after {
  transform: scale(2.1);
  opacity: 0.22;
}

/* --- COLOR PALETTE --- */
:root {
  --brand-primary: #203040;
  --brand-secondary: #E9E7E2;
  --brand-accent: #ED9F2A;
  --organic-dark-green: #355C3A;
  --organic-medium-green: #618158;
  --organic-leaf: #87A96B;
  --organic-beige: #FAF9F3;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 850px) {
  .container {
    max-width: 96vw;
    padding: 0 8px;
  }
}
@media (max-width: 600px) {
  header nav img {
    height: 38px;
  }
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.13rem; }
  .card { padding: 14px; }
  .container { padding: 0 3px; }
  .testimonial-card { padding: 13px; }
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.btn-primary, .btn-secondary, .testimonial-card, .card {
  transition: box-shadow 0.22s, background 0.19s, transform 0.14s;
}
.testimonial-card {
  transition: box-shadow 0.19s, background 0.19s;
}
.card:hover, .testimonial-card:hover {
  outline: none;
  box-shadow: 0 8px 30px rgba(60,99,60,.13), 0 1px 3px rgba(0,0,0,.04);
}

/* --- FORMS & INPUTS --- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 12px;
  border: 1.5px solid #BFD5A0;
  background: #F6F6ED;
  padding: 10px 16px;
  margin-bottom: 14px;
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #87A96B;
  outline: none;
  background: #FFF;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #355C3A;
  color: #fff;
  padding: 22px 18px 18px 18px;
  z-index: 9900;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 1rem;
  box-shadow: 0 -3px 20px rgba(37,48,22,0.13);
  animation: cookieFadeIn 0.45s;
}
@media (max-width: 850px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.98rem;
  }
}
@keyframes cookieFadeIn {
  from { transform: translateY(64px); opacity: 0; } to {transform: none; opacity: 1;}
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #87A96B;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 21px;
  margin-left: 12px;
  margin-right: 4px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.11s, color 0.11s, box-shadow 0.13s;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(32, 48, 64,.08);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #ED9F2A;
  color: #3D3A30;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: #fff;
  color: #618158;
  border: 1.5px solid #A3B18A;
}
.cookie-banner .cookie-btn.cookie-settings:hover, .cookie-banner .cookie-btn.cookie-settings:focus {
  background: #BFD5A0;
  color: #284028;
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  background: #fdf9f2;
  color: #203040;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(44, 55, 30, 0.21);
  z-index: 9902;
  width: 94vw;
  max-width: 390px;
  padding: 28px 22px 20px 22px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(.33,1.09,.48,1.18), opacity 0.2s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -54%);
}
.cookie-modal h3 {
  font-size: 1.18rem;
  color: #355C3A;
  margin-bottom: 16px;
}
.cookie-modal ul {
  margin-bottom: 22px;
}
.cookie-modal li {
  font-size: 1rem;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-switch {
  width: 38px;
  height: 22px;
  background: #E9E7E2;
  border-radius: 16px;
  position: relative;
  transition: background 0.22s;
  cursor: pointer;
  border: 1.1px solid #A3B18A;
}
.cookie-switch[aria-checked="true"] {
  background: #87A96B;
}
.cookie-switch .cookie-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s;
}
.cookie-switch[aria-checked="true"] .cookie-slider {
  left: 18px;
  background: #ED9F2A;
}

.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #87A96B;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 7px 22px;
  font-weight: 700;
  font-size: 1em;
  transition: background 0.13s, color 0.11s;
  cursor: pointer;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: #ED9F2A;
  color: #37432A;
}

.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #7B8364;
  cursor: pointer;
}

/* --- ORGANIC - NATURE ACCENTS --- */
.section, .text-section {
  box-shadow: 0 3px 14px 0 rgba(121,140,92,.07);
  border-left: 7px solid #A3B18A;
}

.card {
  border-left: 5px solid #BFD5A0;
  background: #fffbed;
}

/* --- ACCESSIBLE CONTRAST FOR TESTIMONIALS --- */
.testimonial-card p, .testimonial-card span {
  color: #203040;
}

/* --- Hide content-overlap, maintain spacing --- */
section + section {
  margin-top: 40px;
}
@media (max-width: 600px) {
  section + section { margin-top: 24px; }
}

/* --- MISCELLANEOUS --- */
::-webkit-input-placeholder { color: #7B8364; }
::-moz-placeholder { color: #7B8364; }
:-ms-input-placeholder { color: #7B8364; }
::placeholder { color: #7B8364; }

/* END CSS */
