/* === 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #113421;
  background: #F8F6F0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #225F3B;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* === BRANDING VARIABLES === */
:root {
  --color-primary: #225F3B;
  --color-secondary: #409E5C;
  --color-accent: #F8F6F0;
  --color-electric-green: #45FF5B;
  --color-electric-blue: #1DB3F7;
  --color-electric-yellow: #FFE94D;
  --color-electric-purple: #A259F7;
  --color-electric-orange: #FF7F1B;
  --color-dark: #113421;
  --color-light: #F8F6F0;
  --color-contrast: #000;
  --color-white: #FFF;
}

/* === TYPOGRAPHY === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Open+Sans:400,600,700&display=swap');
h1, .hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  color: var(--color-primary);
  letter-spacing: -2px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.13;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  color: var(--color-secondary);
  letter-spacing: -1px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.18;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 10px;
}
p, ul li, ol li, blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}
blockquote {
  font-style: italic;
  color: var(--color-secondary);
  margin-bottom: 8px;
  border-left: 5px solid var(--color-electric-green);
  padding-left: 16px;
}

/* === CONTAINER & LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(34, 95, 59, 0.10);
}

/* === FLEXBOX LAYOUTS === */
.feature-grid,
.programme-grid,
.package-grid,
.service-highlights,
.workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.feature-grid > div,
.programme-grid > div,
.package-grid > div,
.service-highlights > div,
.workshop-list > div {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(29, 179, 247, 0.13);
  padding: 24px 20px 20px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 2px solid transparent;
}
.feature-grid > div:hover,
.programme-grid > div:hover,
.package-grid > div:hover,
.service-highlights > div:hover,
.workshop-list > div:hover {
  border-color: var(--color-electric-green);
  box-shadow: 0 8px 32px rgba(255, 233, 77, 0.18);
  transform: translateY(-6px) scale(1.02);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(162,89,247,0.11);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.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;
  background: #FFF;
  color: var(--color-dark);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(64,158,92,0.13);
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 300px;
  transition: box-shadow .2s, background .2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(29,179,247,0.24);
  background: var(--color-electric-yellow);
  color: #222;
  z-index: 3;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER & NAVIGATION === */
header {
  background: #FFF;
  box-shadow: 0 2px 16px 0 rgba(34,95,59,0.09);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2px;
  padding: 6px 0;
  color: var(--color-primary);
  border-bottom: 3px solid transparent;
  transition: color .18s, border-color .18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-electric-blue);
  border-color: var(--color-electric-blue);
}

.btn-primary {
  display: inline-flex;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  border-radius: 100px;
  padding: 10px 36px;
  font-size: 1.08rem;
  letter-spacing: 0.2px;
  background: linear-gradient(93deg, #45FF5B 40%, #1DB3F7 100%);
  background-color: var(--color-secondary);
  color: #111;
  box-shadow: 0 4px 18px 0 rgba(29,179,247,0.11);
  border: none;
  cursor: pointer;
  margin-left: 22px;
  margin-right: 8px;
  transition: box-shadow .18s, background .19s, color .12s;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(93deg, #FFE94D 5%, #A259F7 90%);
  color: var(--color-primary);
  box-shadow: 0 8px 32px 0 rgba(69,255,91, 0.27);
}

/* --- Burger Menu Icon --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-electric-green);
  padding: 8px 10px;
  margin-left: 16px;
  border-radius: 8px;
  transition: background .15s, color .13s;
  z-index: 202;
}
.mobile-menu-toggle:hover {
  background: var(--color-electric-green);
  color: #145024;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,95,59,0.92);
  z-index: 201;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.82,0,.45,1);
  overflow-y: auto;
  padding: 0;
  /* Hidden by default, shown with class .open */
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 2px 0px 54px 0 rgba(32,255,85,0.16);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #FFE94D;
  color: #222;
  font-size: 2.2rem;
  border-radius: 50px;
  margin: 24px 26px 0 0;
  padding: 6px 18px 6px 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background .18s, color .13s;
}
.mobile-menu-close:hover {
  background: #45FF5B;
  color: #166234;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 48px 32px 32px 40px;
}
.mobile-nav a {
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #FFF;
  text-shadow: 0 2px 8px rgba(29,179,247,0.11);
  letter-spacing: 0.5px;
  line-height: 1.2;
  transition: color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFE94D;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(97deg, #45FF5B 20%, #1DB3F7 80%);
  padding: 68px 0 60px 0;
  margin-bottom: 50px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 12px 48px 0 rgba(29,179,247,0.18);
}
.hero .container {
  align-items: flex-start;
}
.hero h1, .hero p {
  color: #113421;
  text-shadow: 0 1px 8px rgba(248,246,240,0.12);
}
.hero p {
  font-size: 1.28rem;
  margin-bottom: 22px;
  font-weight: 600;
}
.hero .btn-primary {
  margin-top: 6px;
  font-size: 1.11rem;
  letter-spacing: 0.1px;
}

/* === LIST STYLES === */
ul {
  list-style: none;
  margin-bottom: 24px;
}
ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #225F3B;
}
ul li:before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 12px;
  background: linear-gradient(90deg, #45FF5B, #A259F7);
  border-radius: 3px 9px 7px 3px/8px 10px 7px 10px;
}

/* === FOOTER === */
footer {
  background: #0D1F18;
  color: #FFF;
  padding: 44px 0 32px 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -6px 32px 0 rgba(34,95,59,0.13);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
  flex-wrap: wrap;
}
.footer-branding {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  flex: 2 2 320px;
}
.footer-branding img {
  height: 48px;
}
.footer-branding span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  color: #FFF;
}
.footer-links, .footer-menu, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-links a, .footer-menu a {
  font-size: 1rem;
  color: #FFF;
  opacity: 0.88;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
  transition: color .15s, opacity .13s;
}
.footer-links a:hover, .footer-menu a:hover {
  color: #45FF5B;
  opacity: 1;
}
.footer-social {
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}
.footer-social a img {
  height: 30px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 2px #A259F7);
  transition: filter .12s;
}
.footer-social a:hover img {
  filter: brightness(2) saturate(180%) drop-shadow(0 0 6px #1DB3F7);
}

/* === TESTIMONIALS & CARDS === */
.testimonial-card {
  background: #FFF;
  color: #113421;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(34,95,59,0.13);
  margin-bottom: 20px;
  padding: 20px;
  flex: 1 1 300px;
  min-width: 220px;
  max-width: 600px;
}
.testimonial-card p {
  color: var(--color-primary);
  margin-left: 8px;
  font-style: normal;
}

/* === ICON ROWS === */
.feature-icons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin: 16px 0;
}
.feature-icons img {
  height: 42px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 300;
  background: linear-gradient(97deg, #FFE94D 10%, #A259F7 60%, #FFF 100%);
  color: #113421;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 18px 26px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  box-shadow: 0 -4px 38px 0 rgba(29,179,247,0.15);
  opacity: 1;
  transition: opacity .25s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .consent-buttons {
  display: flex;
  gap: 12px;
  margin-left: 12px;
}
.consent-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 25px;
  padding: 8px 24px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  margin-left: 2px;
  margin-right: 2px;
  background: var(--color-electric-green);
  color: #146032;
  box-shadow: 0 1px 7px rgba(69,255,91,0.17);
  transition: background .13s, color .13s;
}
.consent-btn:hover, .consent-btn:focus {
  background: #1DB3F7;
  color: #FFF;
}
.consent-btn.reject {
  background: #A259F7;
  color: #FFF;
}
.consent-btn.reject:hover {
  background: #FFE94D;
  color: #225F3B;
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0; top: 0;
  z-index: 401;
  backdrop-filter: blur(3px);
  background: rgba(45,20,70,0.16);
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-dialog {
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 6px 44px rgba(162,89,247,0.25);
  padding: 38px 34px 22px 34px;
  max-width: 440px;
  width: 95%;
  color: #225F3B;
  animation: popIn .18s cubic-bezier(.48,.45,.71,1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@keyframes popIn {
  0% { transform: scale(.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.category-control {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}
.category-control label {
  font-weight: 600;
}
.category-control input[type="checkbox"]:not(:checked) + .toggle-switch {
  background: #DDD;
}
.category-control input[type="checkbox"]:checked + .toggle-switch {
  background: var(--color-electric-green);
}
.toggle-switch {
  width: 44px; height: 24px;
  border-radius: 18px;
  display: inline-block;
  position: relative;
  background: #DDD;
  transition: background .13s;
}
.toggle-switch:after {
  content: '';
  display: block;
  width: 20px; height: 20px;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 2px;
  transition: left .13s;
}
.category-control input[type="checkbox"]:checked + .toggle-switch:after {
  left: 22px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .consent-btn {
  min-width: 90px;
}

/* === ANIMATIONS & TRANSITIONS === */
.btn-primary, a.btn-primary, .consent-btn {
  transition: background 0.18s, color 0.13s, box-shadow 0.14s;
}
.card, .testimonial-card, .feature-grid > div, .service-highlights > div {
  transition: box-shadow 0.18s, transform 0.15s, border 0.13s;
}
.hero, .section {
  transition: box-shadow 0.15s;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
  }
  header .container,
  footer .container {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 16px;
  }
  .footer-menu {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 12px;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 38px;
  }
  .hero {
    padding: 40px 0 20px 0;
    border-radius: 0 0 22px 22px;
  }
  .content-wrapper {
    gap: 10px;
  }
  .feature-grid,
  .programme-grid,
  .package-grid,
  .service-highlights,
  .workshop-list,
  .footer .container {
    flex-direction: column;
    gap: 20px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-branding {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .footer-menu, .footer-links, .footer-social {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: 10px;
  }
  .section {
    margin-bottom: 28px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

@media (max-width: 530px) {
  .cookie-modal-dialog {
    padding: 18px 10px 16px 10px;
    border-radius: 18px;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
  h2 { font-size: 1.12rem; }
}

/* === UTILITIES === */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.w-100 { width: 100%; }
.text-center { text-align: center; }
.inline-block { display: inline-block; }

/* === SPECIFIC LAYOUT FIXES === */
.section ul li { margin-bottom: 10px; }
footer .footer-links, footer .footer-menu { margin-bottom: 12px; }
.section ul { margin-bottom: 18px; }

/* === HIGH CONTRAST IN TESTIMONIAL/REVIEW CARDS === */
.testimonial-card, .testimonial-card p, .testimonial-card blockquote {
  color: #113421;
}
.testimonial-card:hover, .testimonial-card:focus {
  background: #FFE94D;
  color: #222;
}
.testimonial-card:hover blockquote, .testimonial-card:hover p { color: #222; }

/* === Z-INDEX/OVERLAY LAYERS === */
.mobile-menu,
.cookie-modal {
  z-index: 401;
}
header, .cookie-consent-banner { z-index: 401; }

/* === MODAL/CLOSE BUTTON FORCE ON TOP === */
.cookie-modal .consent-btn.close {
  background: #EEE;
  color: #225F3B;
  position: absolute;
  top: 8px; right: 8px;
  padding: 4px 12px;
  font-size: 1.1rem;
  border-radius: 25px;
  min-width: 0;
}
.cookie-modal .consent-btn.close:hover {
  background: #FFE94D;
}

/* === ACCESSIBILITY === */
:focus-visible {
  outline: 3px dashed #A259F7;
  outline-offset: 1.5px;
}

/* === END OF CSS === */
