/* Jungly Haven Energie – style.css (creative_artistic, flexbox-only, responsive, brand-compliant) */

/*--- 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,
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;
}
footer p {
  color: white;
}
html {
  font-size: 16px;
  height: 100%;
  background: #FFF;
  color: #174025;
}

body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #174025;
  background: #FFFFFF;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

*, *:before, *:after {
  box-sizing: inherit;
}

a {
  color: #205C36;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #FCA311;
}
a:hover {
  color: #FCA311;
}

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  color: #174025;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  text-shadow: 2px 3px 12px #D8EAE0;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
  color: #205C36;
}

h3 {
  font-size: 1.25rem;
  color: #FCA311;
  margin-bottom: 12px;
}

p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #205C36;
}

/*--- Container and Section Layouts ---*/
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}

.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 8px 32px 0 #D8EAE033;
}

@media (max-width: 950px) {
  .section,
  section {
    margin-bottom: 40px;
    padding: 28px 8px;
    border-radius: 16px;
  }
}
@media (max-width: 620px) {
  .section,
  section {
    padding: 22px 4px;
    margin-bottom: 28px;
  }
}

/*--- Header/Navigation ---*/
header {
  background: #205C36;
  color: #fff;
  width: 100%;
  box-shadow: 0 4px 28px #205c3630;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}
header img {
  height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.main-nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #D8EAE0;
  border-radius: 10px;
  padding: 4px 14px;
  transition: color 0.18s, background 0.18s;
  font-weight: 500;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #FCA311;
  color: #174025;
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FCA311;
  color: #205C36;
  font-weight: 700;
  border-radius: 18px;
  padding: 10px 28px;
  font-size: 1.05rem;
  margin-left: 18px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px #FCA31133;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
  border: none;
  cursor: pointer;
  outline: none;
  text-align: center;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #205C36;
  color: #fff;
  transform: translateY(-2px) scale(1.06) rotate(-1deg);
  box-shadow: 0 6px 18px #17402522;
}

/*--- Mobile Navigation ---*/
.mobile-menu-toggle {
  display: none;
  background: #FCA311;
  border: none;
  font-size: 2.2rem;
  border-radius: 16px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #205C36;
  box-shadow: 0 4px 10px #FCA31144;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.16s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FCA311;
}
.mobile-menu-toggle:hover {
  background: #205C36;
  color: #fff;
  transform: rotate(-14deg) scale(1.1);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #205C36;
  color: #fff;
  z-index: 900;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.8, 0.06, 0.08, 1);
  display: flex;
  flex-direction: column;
  padding-top: 18px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #FCA311;
  border: none;
  color: #205C36;
  font-size: 2.2rem;
  border-radius: 12px;
  margin: 16px 18px 0 0;
  align-self: flex-end;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.18s;
}
.mobile-menu-close:hover {
  background: #205C36;
  color: #fff;
  transform: rotate(9deg) scale(1.1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  margin-top: 30px;
  padding-left: 24px;
}
.mobile-nav a {
  font-size: 1.23rem;
  padding: 14px 0;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 1px solid #D8EAE044;
  width: 100%;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
  font-weight: 600;
  outline: none;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #FCA311;
  color: #205C36;
}

/*--- HERO Section ---*/
.hero {
  background: linear-gradient(96deg, #D8EAE0 68%, #FCA31144 100%);
  margin-top: 0;
  position: relative;
}
.hero h1 {
  font-size: 2.8rem;
  background: linear-gradient(90deg,#174025 60%,#FCA311 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: #205C36;
  font-size: 1.13rem;
  margin-bottom: 20px;
}
.hero .cta-btn {
  margin-top: 10px;
}

@media (max-width: 650px) {
  .hero h1 {
    font-size: 2rem;
  }
}

/*--- Features Sections ---*/
.features ul,
.features-overview ul,
.solar-features ul,
.workshop-benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  align-items: flex-start;
  justify-content: flex-start;
}
.features li,
.features-overview li,
.solar-features li,
.workshop-benefits li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 260px;
  min-width: 220px;
  background: #D8EAE0;
  border-radius: 18px;
  padding: 28px 22px 22px 22px;
  box-shadow: 0 3px 19px #205C3620;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.15s, box-shadow 0.16s;
}
.features li img,
.solar-features li img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 2px 6px #205C361E);
  margin-bottom: 4px;
}
.features li:hover, .features li:focus-within,
.solar-features li:hover, .solar-features li:focus-within {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 8px 38px #FCA31133;
  z-index: 1;
}

@media (max-width: 950px) {
  .features ul,
  .features-overview ul,
  .solar-features ul,
  .workshop-benefits ul {
    gap: 16px;
  }
  .features li,
  .features-overview li,
  .solar-features li,
  .workshop-benefits li {
    padding: 18px 10px 10px 10px;
    border-radius: 13px;
  }
}
@media (max-width: 550px) {
  .features ul,
  .features-overview ul,
  .solar-features ul,
  .workshop-benefits ul {
    flex-direction: column;
    gap: 8px;
  }
  .features li,
  .features-overview li, .solar-features li, .workshop-benefits li {
    min-width: 0;
  }
}

/*--- Service Sections ---*/
.services ul,
.services-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.services li,
.services-detail li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  flex: 1 1 260px;
  background: #fff;
  border-radius: 17px;
  margin-bottom: 20px;
  padding: 26px 20px 22px 20px;
  box-shadow: 0 4px 14px #17402512;
  position: relative;
  border-left: 6px solid #FCA311;
  transition: transform 0.16s, box-shadow 0.16s;
}
.services li:hover,
.services-detail li:hover {
  transform: translateY(-4px) scale(1.015) rotate(-1.2deg);
  box-shadow: 0 12px 42px #205C3619;
  z-index: 2;
}
.price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #205C36;
  background: #D8EAE0;
  border-radius: 10px;
  padding: 4px 12px;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  display: inline-block;
}
.services .cta-btn,
.services-detail .cta-btn {
  margin-top: 8px;
}

@media (max-width: 950px) {
  .services ul, .services-detail ul {
    gap: 10px;
  }
  .services li, .services-detail li {
    padding: 14px 8px 10px 12px;
    border-radius: 11px;
  }
}
@media (max-width: 700px) {
  .services ul, .services-detail ul {
    flex-direction: column;
  }
}

/*--- Testimonial Sections ---*/
.testimonials {
  background: #F7F7F3;
  border-radius: 22px;
  box-shadow: 0 4px 18px #D8EAE0aa;
  margin-bottom: 60px;
  padding: 32px 0px;
}
.testimonials .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 12px #1740251C;
  min-width: 220px;
  max-width: 480px;
  border-left: 5px solid #FCA311;
  font-size: 1.07rem;
  color: #205C36;
  transition: box-shadow 0.18s, transform 0.13s;
}
.testimonial-card p {
  color: #205C36;
}
.testimonial-card strong {
  color: #174025;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 24px #FCA31118;
  transform: scale(1.025) translateY(-2px) rotate(-0.5deg);
}

@media (max-width: 700px) {
  .testimonial-card {
    max-width: 100%;
  }
}

/*--- About & Legal Text Sections ---*/
.about .text-section,
.team .text-section,
.legal .text-section,
.contact-details .text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.about .text-section ul,
.team .text-section ul,
.legal .text-section ul {
  gap: 8px;
  margin-bottom: 8px;
  padding-left: 10px;
}
.about .text-section li,
.team .text-section li,
.legal .text-section li {
  font-size: 1rem;
  color: #205C36;
  margin-left: 8px;
  margin-bottom: 5px;
  position: relative;
}
.about .text-section li:before {
  content: '•';
  color: #FCA311;
  font-size: 1.1em;
  margin-right: 5px;
}

.legal h1, .legal h2, .legal h3 {
  color: #205C36;
}
.legal h1 {
  margin-bottom: 13px;
}
.legal h2 {
  margin-top: 18px;
}
.legal h3 {
  color: #FCA311;
  margin-top: 13px;
}

/*--- Cards & Card Containers ---*/
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  background: #D8EAE0;
  padding: 22px 18px;
  box-shadow: 0 4px 18px #205c3635;
  flex: 1 1 220px;
  min-width: 200px;
  transition: box-shadow 0.19s, transform 0.14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 14px 36px #FCA31128;
  transform: scale(1.022) translateY(-5px) rotate(-0.7deg);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

@media (max-width: 620px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 8px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

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

/*--- CTA Section ---*/
.cta {
  background: #205C36;
  background: linear-gradient(97deg, #205C36 65%, #FCA311 120%);
  border-radius: 22px;
  color: #fff;
  box-shadow: 0 8px 36px #205C3622;
  padding: 44px 20px;
}
.cta h2 {
  color: #fff;
}
.cta p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.cta .cta-btn {
  background: #fff;
  color: #205C36;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #FCA311;
  color: #174025;
}

/*--- Footer ---*/
footer {
  background: #205C36;
  color: #fff;
  padding: 34px 0 20px 0;
}
.footer-nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #D8EAE0;
  font-size: 1rem;
  padding: 2px 9px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #FCA311;
  color: #205C36;
}
.footer-info {
  text-align: center;
  color: #FFFFFF;
  font-size: 0.97rem;
  margin-top: 10px;
}

/*--- Cookie Consent Banner ---*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #174025;
  color: #fff;
  box-shadow: 0 -4px 24px #205C3660;
  z-index: 910;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  gap: 26px;
  transition: transform 0.35s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  animation: fadeInBanner 0.45s ease 0s 1;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .banner-text {
  font-size: 1rem;
  color: #fff;
  max-width: 530px;
}
.cookie-banner .banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FCA311;
  color: #174025;
  border-radius: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow 0.19s;
  font-size: 1rem;
  box-shadow: 0 2px 8px #FCA31126;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #174025;
  box-shadow: 0 4px 18px #FCA31119;
  outline: 2px solid #FCA311;
}
.cookie-btn.reject {
  background: #D8EAE0;
  color: #174025;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FCA311;
  color: #fff;
  outline: 2px solid #205C36;
}
.cookie-btn.settings {
  background: transparent;
  color: #FCA311;
  border: 1.5px solid #FCA311;
  padding: 7px 16px;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FCA311;
  color: #205C36;
}

/*--- Cookie Settings Modal ---*/
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -52%) scale(0.93);
  background: #fff;
  color: #205C36;
  z-index: 990;
  box-shadow: 0 14px 68px #205C3682;
  padding: 40px 26px 26px 26px;
  border-radius: 22px;
  min-width: 340px;
  max-width: 94vw;
  max-height: 96vh;
  display: none;
  flex-direction: column;
  gap: 18px;
  animation: fadeInModal 0.48s cubic-bezier(0.25,1,0.32,1) 1;
}
.cookie-modal.active {
  display: flex;
  animation: fadeInModal 0.2s cubic-bezier(0.4, 0, 0.2, 1) 1;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translate(-50%, -54%) scale(0.88); }
  to { opacity: 1; transform: translate(-50%, -52%) scale(1); }
}
.cookie-modal h2 {
  color: #174025;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.05rem;
}
.cookie-category label {
  font-weight: 600;
  color: #205C36;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
  width: 36px; height: 22px;
  border-radius: 16px;
  background: #D8EAE0;
  position: relative;
  cursor: pointer;
  transition: background 0.21s;
}
.cookie-toggle[data-enabled="true"] {
  background: #FCA311;
}
.cookie-toggle .toggle-knob {
  position: absolute;
  left: 2px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-toggle[data-enabled="true"] .toggle-knob {
  left: 18px;
  background: #205C36;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.cookie-modal-close {
  background: #D8EAE0;
  color: #174025;
  border-radius: 10px;
  border: none;
  font-size: 1.2rem;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  margin-right: -18px;
  margin-top: -18px;
  transition: background 0.16s, color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FCA311;
  color: #fff;
}

@media (max-width: 550px) {
  .cookie-modal {
    min-width: 92vw;
    padding: 16px 8px 18px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 8px;
  }
}

/*--- Thank You Section ---*/
.thank-you-status {
  background: #D8EAE0;
  border-radius: 18px;
  box-shadow: 0 4px 18px #17402512;
  margin: 44px 0 44px 0;
  padding: 44px 20px 44px 20px;
  text-align: center;
}
.thank-you-status h1 {
  color: #FCA311;
  margin-bottom: 18px;
  font-size: 2.2rem;
}
.thank-you-status p {
  color: #174025;
  font-size: 1.11rem;
}
.thank-you-status .cta-btn {
  margin-top: 20px;
}

/*--- Miscellaneous Classes, Utilities, Responsive ---*/

::-webkit-scrollbar {
  width: 7px;
  background: #D8EAE0;
}
::-webkit-scrollbar-thumb {
  background: #205C36;
  border-radius: 5px;
}

input, textarea, select {
  border-radius: 11px;
  border: 1px solid #D8EAE0;
  padding: 11px;
  margin-bottom: 18px;
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border-color: #FCA311;
  outline: none;
}

/*--- Animations and Micro-interactions ---*/
@media (hover: hover) {
  .cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .footer-nav a, .main-nav a {
    transition: background 0.18s, color 0.18s, box-shadow 0.19s, transform 0.16s;
  }
}

/*--- Artistic Details / Unique Elements ---*/
section, .card, .cta, .testimonial-card, .thank-you-status {
  position: relative;
}
section::before, .cta::before {
  content: '';
  position: absolute;
  display: block;
  z-index: 0;
  pointer-events: none;
}
/* Subtle artistic 'paint' elements for creative_artistic style */
section::before {
  top: 0; left: -20px;
  width: 66px;
  height: 34px;
  border-radius: 16px 22px 18px 8px;
  background: #fca31133;
  opacity: 0.5;
}
.cta::before {
  top: -14px; left: 30%;
  width: 74px; height: 20px;
  background: #D8EAE0aa;
  border-radius: 14px 12px 6px 11px;
  opacity: 0.3;
}

@media (max-width: 550px) {
  section::before, .cta::before {
    left: -8px;
    width: 33px; height: 17px;
  }
}

/*--- Responsive Typography Scaling ---*/
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
}
@media (max-width: 650px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1.02rem; }
  .thank-you-status h1 { font-size: 1.4rem; }
}

/*--- End of style.css ---*/
