/* ----------------------
   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,
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 {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F5F7EB;
  color: #206743;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #3389A6;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #206743;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* --------------
   BRAND COLORS
---------------- */
:root {
  --primary: #206743;
  --secondary: #3389A6;
  --accent: #F5F7EB;
  --yellow: #FFD600;
  --orange: #FA8231;
  --pink: #F85076;
  --light-blue: #57C7FB;
  --bright-green: #95DF9D;
  --shadow: rgba(51,137,166,0.05);
  --card-shadow: 0 6px 24px rgba(51,137,166,0.12), 0 1.5px 6px rgba(248,80,118,0.09);
  --radius: 16px;
}

/* --------------------------
   TYPOGRAPHY & TEXT STYLES
--------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #206743;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
  line-height: 1.1;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
  line-height: 1.15;
}
h3 {
  font-size: 1.17rem;
  margin-bottom: 10px;
  color: #3389A6;
}
h4 {
  font-size: 1.07rem;
}
p, ul li, ol li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #206743;
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.15rem;
  }
}

/* PLAYFUL FONT VARIATION for delight */
h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
}
h1 .highlight, h2 .highlight {
  color: var(--yellow);
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ----------------------
   GENERAL LAYOUT AND SPACING
---------------------- */
.container {
  max-width: 1160px;
  padding: 0 18px;
  margin: 0 auto;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FLEX LAYOUTS */
.card-container, .feature-grid, .feature-list, .service-grid, .workshop-benefits, .event-types ul, .installation-process-steps, .workflow-list, .project-stages ul, .upcoming-sessions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.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;
}

/* Vertical stacking on mobile */
@media (max-width: 768px) {
  .card-container, .feature-grid, .feature-list, .service-grid, .workshop-benefits, .event-types ul, .installation-process-steps, .workflow-list, .project-stages ul, .upcoming-sessions {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* Adequate spacing for all content blocks */
.section > *, .content-wrapper > * {
  margin-bottom: 16px;
}
.section > *:last-child, .content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* ----------------
   HEADER & NAV
----------------- */
header {
  background: #fff;
  box-shadow: 0 8px 28px var(--shadow);
  border-radius: 0 0 18px 18px;
  position: sticky;
  top: 0;
  z-index: 222;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 67px;
  gap: 15px;
}
.logo {
  display: flex;
  align-items: center;
  height: 48px;
}
.logo img{
  max-height: 36px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 600;
  padding: 10px 6px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--yellow);
  color: #206743;
  transform: translateY(-2px) scale(1.06);
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg,#3389A6,#95DF9D 80%,#FFD600 100%);
  color: #206743;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 36px;
  box-shadow: var(--card-shadow);
  margin-left: 8px;
  cursor: pointer;
  border: none;
  transition: background 0.22s, box-shadow 0.22s, color 0.12s, transform 0.16s;
  position: relative;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg,#FFD600 40%,#3389A6 90%);
  color: #206743;
  box-shadow: 0 3px 16px #fae06c60;
  transform: scale(1.07) rotate(-1deg);
}

/* ------------
   HAMBURGER
------------- */
.mobile-menu-toggle {
  background: var(--yellow);
  color: var(--primary);
  border-radius: 50%;
  border: none;
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: box-shadow 0.15s, background 0.15s;
  box-shadow: 0 3px 8px #FFD60040;
}
.mobile-menu-toggle:active {
  background: #FA8231;
  color: #fff;
}
@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* -----------
   MOBILE MENU
------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 1005;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.87,0.1,0.13,1.03);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: 0 0 64px 0 #00000026;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2rem;
  background: #fff;
  border-radius: 50%;
  color: var(--secondary);
  box-shadow: 0 2px 12px var(--shadow);
  width: 42px;
  height: 42px;
  border: none;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--yellow);
  color: #206743;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 88px 36px 32px 36px;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 11px 18px;
  transition: background 0.12s, color 0.13s;
  width: 100%;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--bright-green);
  color: #fff;
}
@media (min-width: 1081px) {
  .mobile-menu {
    display: none !important;
  }
}
/* Make hamburger and mobile menu higher than overlays */
.mobile-menu, .mobile-menu-toggle {
  z-index: 1005;
}

/* -------------------
   HERO / CTA SECTIONS
--------------------- */
.hero {
  background: linear-gradient(93deg, #F5F7EB 78%, #FFD600 103%);
  padding: 56px 0 40px 0;
  position: relative;
  box-shadow: 0 4px 32px var(--shadow);
  animation: herobounce 2.2s 1 cubic-bezier(0.23,0.74,0.42,1.01);
}
@keyframes herobounce {
  0% {transform: scaleY(0.94); opacity:0.3;}
  70% {transform: scaleY(1.04); opacity:1;}
  100% {transform: scaleY(1); opacity:1;}
}
.cta {
  background: #3389A6;
  color: #fff;
  border-radius: var(--radius);
  margin: 50px 0 40px 0;
  box-shadow: var(--card-shadow);
  animation: ctabounce 1.7s 1 cubic-bezier(0.21,0.71,0.56,1.01);
}
@keyframes ctabounce {
  0% {transform: scale(0.92); opacity:0.3;}
  60% {transform: scale(1.04); opacity:1;}
  100% {transform: scale(1); opacity:1;}
}
.cta .content-wrapper h2, .cta .content-wrapper p {
  color: #fff;
}

/* ---------------------
   FEATURES, LISTS, CARDS
---------------------- */
.feature-grid, .feature-list {
  gap: 24px;
}
.feature-item, .feature-grid > div, .feature-list > div {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  padding: 28px 21px 23px 21px;
  min-width: 220px;
  max-width: 337px;
  flex: 1 1 210px;
  transition: box-shadow 0.23s, transform 0.23s;
  position: relative;
}
.feature-item:hover, .feature-grid > div:hover, .feature-list > div:hover {
  box-shadow: 0 2px 24px #FFD60077,0 4px 28px #3389A630;
  transform: translateY(-5px) scale(1.04) rotate(-0.3deg);
  z-index: 2;
}
.feature-item img, .feature-grid img, .feature-list img {
  width: 46px;
  height: 46px;
  margin-bottom: 5px;
  filter: drop-shadow(0 1.5px 2px #FFD60033);
}
.workshop-benefits li {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  padding: 16px 17px;
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 0;
}

/* ----------------------
   SERVICE GRID
---------------------- */
.service-grid {
  gap: 24px;
}
.service-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 22px 21px 20px 21px;
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.19s;
  position: relative;
}
.service-item:hover {
  box-shadow: 0 4px 24px #FFD60077,0 7px 32px #3389A630;
  transform: translateY(-4px) scale(1.035);
  z-index: 2;
}
.service-item h3 {
  color: var(--secondary);
}
.service-price {
  margin-top: 11px;
  font-size: 1.12rem;
  color: #FA8231;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 5px 12px;
  border-radius: 20px;
  background: #FFD60022;
  letter-spacing: 0.04em;
}

/* -------------------------------
   TESTIMONIALS & REVIEW CARDS
-------------------------------- */
.testimonials {
  margin: 60px 0 0 0;
  padding: 0 0 40px 0;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 22px #3389A610;
  margin-bottom: 26px;
  transition: box-shadow 0.19s, transform 0.19s;
  flex-direction: column;
  align-items: flex-start;
  min-width: 260px;
  max-width: 540px;
  width: 100%;
  gap: 9px;
}
.testimonial-card:hover {
  box-shadow: 0 9px 38px #FFD60044,0 4px 32px #3389A616;
  transform: scale(1.01) rotate(-0.5deg);
}
.testimonial-card p {
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #206743;
  margin-bottom: 3px;
}
.testimonial-meta {
  font-size: 0.99rem;
  color: #3389A6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  display: flex;
  gap: 8px;
  align-items: center;
}
.stars {
  color: #FFD600;
  font-size: 1.13em;
  letter-spacing: 1.5px;
}

/* Ensure contrast in testimonial sections */
.testimonials, .testimonial-card {
  color: #206743;
  background: #fff;
}

/* --------------------------
   FORMS (for future proofing)
--------------------------- */
input, textarea, select {
  width: 100%;
  padding: 11px 13px;
  margin-bottom: 18px;
  font-size: 1rem;
  color: var(--primary);
  border-radius: 10px;
  border: 1.5px solid #D2E2D5;
  background: #F5F7EB;
  box-shadow: 0 0 0 0 #fff;
  transition: border 0.17s, box-shadow 0.19s;
}
input:focus, textarea:focus {
  border-color: #3389A6;
  background: #fff;
  box-shadow: 0 2px 16px #3389A624;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

/* ----------------------
   CARDS & UTILITY BLOCKS
----------------------- */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 27px 24px 20px 24px;
  min-width: 220px;
  max-width: 380px;
  transition: box-shadow 0.19s, transform 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.card:hover {
  box-shadow: 0 7px 28px #FFD60055,0 7px 32px #3389A630;
  transform: translateY(-4px) scale(1.028);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* About, workflow, project stages, legal */
.workflow-list li, .project-stages ul li, .installation-process-steps li, .upcoming-sessions li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.99rem;
  padding: 12px 0 12px 28px;
  margin-bottom: 6px;
  position: relative;
  color: var(--secondary);
}
.workflow-list li:before, .project-stages ul li:before, .installation-process-steps li:before, .upcoming-sessions li:before {
  content: '\2022';
  color: #FFD600;
  font-size: 1.6em;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 4px;
  margin: 26px 0 0 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 21px #3389A616;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
}
.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 2px solid #F5F7EB;
}
.comparison-table th {
  background: #3389A6;
  color: #fff;
}
.comparison-table td {
  background: #fff;
  color: #206743;
  font-weight: 500;
  font-size: 0.99rem;
}

/* -------------
   USP List
-------------- */
.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}
.usp-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1 1 180px;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--card-shadow);
  color: var(--primary);
}
.usp-list img {
  width: 25px;
  height: 25px;
  filter: drop-shadow(0 1.5px 2px #FFD60022);
}

/* Map-embed placeholder */
.map-embed {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFD60022;
  border-radius: 16px;
  padding: 30px;
  min-height: 110px;
  margin-bottom: 18px;
}

.contact-information {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.contact-information div {
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 17px;
  box-shadow: 0 2px 8px #95DF9D26;
  min-width: 170px;
}

/* Legal content blocks */
.legal {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  margin: 40px 0 50px 0;
  padding: 38px 20px;
}
.legal h1, .legal h2 {
  color: var(--primary);
}

/* Pricing note */
.pricing-note, .energy-savings, .environmental-impact, .registration-info, .pricing {
  background: #FFD60022;
  color: #206743;
  border-radius: 10px;
  padding: 11px 20px;
  margin-top: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 540;
  box-shadow: 0 2px 12px #FFD60016;
}

/* Thank-you section */
.thank-you .content-wrapper {
  align-items: center;
  justify-content: center;
}
.thank-you ul {
  margin: 14px 0;
}
.thank-you li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px #95DF9D26;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 18px;
  margin-bottom: 8px;
}

/* -------------------
   FOOTER
------------------- */
footer {
  background: #206743;
  color: #fff;
  padding: 28px 0 0 0;
  border-radius: 20px 20px 0 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
}
footer a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  transition: color 0.17s;
}
footer a:hover, footer a:focus {
  color: #FFD600;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
  align-items: center;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.99rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #F5F7EB;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 9px;
}
footer img {
  max-height: 44px;
  margin-bottom: 10px;
}

/* ---------------
   RESPONSIVE
---------------- */
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
  .feature-grid, .service-grid, .card-container, .content-grid {
    gap: 16px;
  }
  .feature-item, .service-item, .card {
    min-width: 180px;
    max-width: 98vw;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .section {
    margin-bottom: 36px;
    padding: 15px 6px;
  }
  .hero {
    padding: 34px 0 20px 0;
  }
  .feature-item, .service-item, .card, .testimonial-card {
    border-radius: 14px;
    padding: 18px 12px 15px 12px;
  }
  .usp-list {
    flex-direction: column;
    gap: 11px;
  }
  .testimonial-card {
    padding: 13px 8px 17px 8px;
  }
  .footer-contact span {
    font-size: 0.96rem;
  }
  .footer-nav {
    gap: 9px;
    font-size: 0.97rem;
  }
}

/* ----------------
   PLAYFUL DECORATIVE
----------------- */
.feature-item:before, .service-item:before {
  content: '';
  display: block;
  width: 19px;
  height: 19px;
  background: var(--yellow);
  border-radius: 50%;
  position: absolute;
  top: -13px;
  right: 18px;
  opacity: 0.23;
  z-index: 0;
  animation: bounceCircle 2.4s infinite alternate cubic-bezier(.62,.13,.19,.99);
}
@keyframes bounceCircle {
  0%{ transform: translateY(0) scale(1); }
  85%{ transform: translateY(10px) scale(1.18); }
  100%{ transform: translateY(-3px) scale(1.11); }
}
.cta:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background: #FFD60066;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  opacity: 0.34;
  z-index: 0;
  filter: blur(6px);
}

/* Micro-interactions */
.btn-primary:active {
  background: #FFD600;
  color: #206743;
  transform: scale(0.98) rotate(0.5deg);
}

/* ---------------
   COOKIE CONSENT
---------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #206743;
  z-index: 10000;
  box-shadow: 0 -4px 21px #3389A618;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4em;
  padding: 22px 16px 15px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  animation: cookieslideIn 0.7s cubic-bezier(0.12, 0.8, 0.44, 1.02);
}
@keyframes cookieslideIn {
  0% { transform: translateY(130%); opacity: 0.1; }
  90% { transform: translateY(-3%); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 17px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--yellow);
  color: #206743;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 22px;
  padding: 8px 24px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 1.5px 6px #FFD60066;
  margin: 0 0 2px 0;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #FA8231;
  color: #fff;
  box-shadow: 0 4px 16px #FA8231a6;
}
.cookie-btn-settings {
  background: #3389A6;
  color: #fff;
}
.cookie-btn-settings:focus, .cookie-btn-settings:hover {
  background: #206743;
  color: #FFD600;
}

/* Cookie Modal Overlay */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10005;
  width: 100vw;
  height: 100vh;
  background: rgba(33, 103, 67, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalin 0.22s cubic-bezier(0.52,0.01,0.37,1.04);
}
@keyframes modalin {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #206743;
  border-radius: 18px;
  box-shadow: 0 8px 32px #3389A630;
  padding: 34px 32px 28px 32px;
  min-width: 260px;
  max-width: 97vw;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeinModal 0.36s cubic-bezier(0.73,0.14,0.39,1.06);
}
@keyframes fadeinModal {
  0% { transform: scale(0.94) translateY(38px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
  margin-bottom: 19px;
  font-size: 1.32rem;
  color: #3389A6;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 9px 0 7px 0;
  font-size: 1.08rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: #3389A6;
  width: 22px;
  height: 22px;
  margin-left: 10px;
}
.cookie-category .always-on {
  color: #95DF9D;
  font-weight: 700;
  margin-left: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: #FFD600;
  color: #206743;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FA8231;
  color: #fff;
}

/* -------------------
   MISC
------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #F5F7EB;
}
::-webkit-scrollbar-thumb {
  background: #95DF9D;
  border-radius: 16px;
}
::-webkit-scrollbar-thumb:active {
  background: #3389A6;
}

@media (max-width:480px){
  .cookie-modal-content { padding: 19px 6px; }
}

/* Utility classes */
.hide { display: none !important; }
.show { display: flex !important; }

/* Animate .show utility on mobile menu and modals */
.mobile-menu.show, .cookie-modal.show {
  animation: fadeinModal 0.28s cubic-bezier(0.52,0.01,0.37,1.04);
}

/* Playful waves decoration — option for future
.hero:after, .cta:after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0;
  bottom: -24px;
  height: 28px;
  background: url('data:image/svg+xml,%3Csvg width="100%25" height="100%25" viewBox="0 0 400 30" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath fill="%23FFD600" fill-opacity="0.17" d="M0 21C60 5 130 39 200 21C270 3 340 31 400 21V30H0V21Z"/%3E%3C/svg%3E');
  background-repeat: repeat-x;
}
*/
