/* 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 { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; }
ol, ul { list-style: none; }
img { border: 0; max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
table { border-collapse: collapse; border-spacing: 0; }

/* FONT IMPORTS -------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

/* ROOT VARIABLES ------------------------------------------------------ */
:root {
  --brand-primary: #236944;
  --brand-secondary: #C6DFB8;
  --brand-accent: #FAF3E6;
  --brand-dark: #181C22;
  --brand-neon: #16F08F;
  --brand-neon-blue: #48DFFF;
  --brand-bg: #181C22;
  --font-display: 'Quicksand', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius: 10px;
  --shadow-elevate: 0 4px 24px rgba(16,67,48, 0.14), 0 1.5px 6px rgba(44,255,205,0.03);
  --shadow-card: 0 4px 12px rgba(71,255,193,0.10), 0 2px 6px rgba(20,40,80,0.04);
  --transition: 0.25s cubic-bezier(.55, .2, .5, 1);
  --z-fixed: 9999;
}

/* FOCUS OUTLINE ------------------------------------------------------- */
:focus { outline: 2px solid var(--brand-neon-blue); outline-offset: 2px; }

/* BODY & BACKGROUND --------------------------------------------------- */
body {
  background: linear-gradient(135deg, #17222e 0%, #236944 85%, #29895C 100%);
  min-height: 100vh;
  color: #eafcf7;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* LAYOUT WRAPPERS ----------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-container, .services-list, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.card {
  background: #222a33;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px) scale(1.018);
  box-shadow: 0 6px 30px #19f0b6aa, 0 2px 8px var(--brand-neon-blue);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER -------------------------------------------------------------- */
header {
  background: rgba(24,28,34,0.86);
  box-shadow: 0 2px 10px rgba(22,240,143,0.10);
  position: relative;
  z-index: 20;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 24px;
}
.logo-link img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 3px 16px #16f08f58);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: #eafcf7;
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover,
.main-nav a:focus {
  background: #223e33;
  color: var(--brand-neon);
}
.button-primary {
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: var(--radius-xl);
  padding: 10px 28px;
  margin-left: 14px;
  box-shadow: 0 0 1px #19f0b6, 0 2px 12px #19f0b611;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
  cursor: pointer;
  position: relative;
  text-shadow: 0 1px 10px #16f08f33;
}
.button-primary:hover,
.button-primary:focus {
  background: #16f08f;
  color: #192d25;
  box-shadow: 0 4px 32px #19f0b677, 0 2px 8px #29895c70;
}
.button-secondary {
  background: var(--brand-neon-blue);
  color: #152115;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  border: none;
  border-radius: var(--radius-xl);
  padding: 8px 28px;
  margin-top: 18px;
  box-shadow: 0 2px 12px #48dfff50;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.button-secondary:hover,
.button-secondary:focus {
  background: #15e8b7;
  color: #103323;
  box-shadow: 0 4px 32px #48dfff78;
}
.button-tertiary {
  background: #fff;
  color: var(--brand-primary);
  border: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-display);
  border-radius: var(--radius-lg);
  padding: 8px 24px;
  margin-top: 16px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 0.5px 2px #2369441a;
}
.button-tertiary:hover,
.button-tertiary:focus {
  background: var(--brand-neon);
  color: #192d25;
  box-shadow: 0 3px 18px #16f08f55;
}

/* MOBILE BURGER MENU -------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background var(--transition);
  cursor: pointer;
  z-index: 110;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #223e33;
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  position: fixed;
  background: linear-gradient(120deg, #181C22 60%, #223e33 100%);
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: var(--z-fixed);
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.33,.14,.15,1.29);
  box-shadow: 2px 0 18px #16f08f38;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 14px 24px 24px 0;
  font-size: 32px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #223e33;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 8px 0 0 40px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #eafcf7;
  padding: 12px 0 12px 0;
  border-bottom: 1px solid #223e33;
  min-width: 200px;
  transition: color 0.17s, background 0.17s;
  border-radius: 0 16px 16px 0;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--brand-neon);
  background: #223e33;
}

/* TYPOGRAPHY ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 18px #16f08f12;
}
h1 { font-size: 2.8rem; margin-bottom: 10px; }
h2 { font-size: 2.1rem; margin-bottom: 10px; }
h3 { font-size: 1.4rem; margin-bottom: 8px; }
h4 { font-size: 1.15rem; margin-bottom: 6px; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.64rem; }
  h3 { font-size: 1.12rem; }
}
p, ul, ol, li, span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #eafcf7;
}
opcode, code {
  font-family: 'Menlo', 'Fira Code', 'Consolas', monospace;
  background: #223e33;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 95%;
}
strong { color: var(--brand-neon); font-weight: 700; }

/* LIST STYLES --------------------------------------------------------- */
ul, ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
ul li::marker { color: var(--brand-neon); }
.text-section ul li, .services-list ul li, .program-benefits ul li, .package-options ul li, .discount-info ul li, .faq-list li {
  margin-bottom: 8px;
  padding-left: 1px;
}
.services-list > div {
  background: #192923;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px 24px 16px 24px;
  flex: 1 1 250px;
  min-width: 240px;
  max-width: 340px;
  color: #eafcf7;
  margin-bottom: 20px;
  border: 1px solid #19f0b610;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.services-list > div:hover {
  box-shadow: 0 8px 32px #16f08f2a;
  border-color: #48dfff55;
  transform: translateY(-2px) scale(1.012);
}

/* TESTIMONIALS -------------------------------------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #FAF3E6;
  color: #191f18;
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px #16f08f22;
}
.testimonial-card blockquote {
  font-size: 1.15rem;
  color: #191f18;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.7;
}
.testimonial-footer {
  font-size: 0.97rem;
  color: #236944;
  font-weight: 600;
}

/* PRICING TABLE ------------------------------------------------------- */
.price-table {
  margin: 28px 0 18px 0;
}
.price-table table {
  width: 100%;
  background: #181C18;
  color: #eafcf7;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.price-table th, .price-table td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid #223e33;
}
.price-table th {
  background: #192923;
  color: #16f08f;
  font-size: 1.12em;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  border-radius: var(--radius) var(--radius) 0 0;
  font-weight: 700;
}
.price-table tr:last-child td { border-bottom: none; }
@media (max-width: 600px) {
  .price-table th, .price-table td { padding: 10px 6px; font-size: 0.95em; }
}

/* LOCATION MAP -------------------------------------------------------- */
.location-map {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: #eafcf7;
  font-size: 1rem;
}
.location-map img {
  width: 38px;
  height: 38px;
}

/* FOOTER -------------------------------------------------------------- */
footer {
  background: #192923;
  color: #eafcf7;
  margin-top: 80px;
  border-top: 2px solid #16f08f35;
}
.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding: 38px 24px 18px 24px;
  gap: 22px;
}
.footer-bar img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 1px 4px #16f08f33);
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #eafcf7;
  font-size: 1rem;
  font-family: var(--font-body);
  padding: 6px 0;
  border-radius: 6px;
  transition: color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--brand-neon);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.99rem;
  color: #8bf9bb;
}

/* CARD STYLES --------------------------------------------------------- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* FAQ ----------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list li {
  background: #222a33;
  padding: 18px 20px;
  border-radius: 12px;
  color: #eafcf7;
  font-size: 1.08rem;
  box-shadow: 0 1.5px 4.5px #16f08f14;
  transition: background var(--transition);
}
.faq-list li strong {
  color: var(--brand-neon);
}
.faq-list li:hover {
  background: #223e33;
}

/* COOKIE CONSENT BANNER ----------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  width: 100vw;
  bottom: 0;
  z-index: var(--z-fixed);
  background: linear-gradient(90deg, #223e33 60%, #181C22 100%);
  color: #eafcf7;
  box-shadow: 0 -1.5px 18px #16f08f35;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 24px 36px;
  font-size: 1rem;
  animation: cookie-slide-in 0.66s cubic-bezier(.65,.2,.2,.94);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0.4; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  padding: 8px 22px;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 1.5px 6px #19f0b667;
}
.cookie-banner .accept {
  background: var(--brand-neon);
  color: #192d25;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #48dfff;
  color: #181c22;
}
.cookie-banner .reject {
  background: #ffe1c4;
  color: #184323;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #ffaf80;
  color: #181c22;
}
.cookie-banner .settings {
  background: #222932;
  color: #16f08f;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #16f08f;
  color: #181c22;
}

/* COOKIE MODAL -------------------------------------------------------- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,28,34,0.84);
  z-index: calc(var(--z-fixed) + 2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modalFadeIn 0.3s;
}
@keyframes cookie-modalFadeIn {
  from { opacity: 0.3; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #223e33;
  border-radius: 20px;
  max-width: 440px;
  width: 92vw;
  color: #eafcf7;
  padding: 42px 32px 24px 32px;
  box-shadow: 0 16px 64px #16f08f88, 0 2px 8px #192d253a;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: cookie-modalContentIn 0.34s cubic-bezier(.48, 1.6, .51, 1);
}
@keyframes cookie-modalContentIn {
  from { transform: translateY(100px) scale(0.8); opacity: 0.5; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  margin-left: 8px;
  line-height: 1;
  border-radius: 8px;
  padding: 2px 8px 2px 8px;
}
.cookie-modal-close:focus,
.cookie-modal-close:hover {
  background: #16f08f22;
}
.cookie-modal-categories {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal-categories .category {
  display: flex;
  align-items: center;
  background: #192923;
  border-radius: 12px;
  padding: 10px 14px 10px 10px;
  justify-content: space-between;
  gap: 12px;
}
.cookie-modal-categories .category span {
  font-weight: 600;
  font-size: 1.05em;
}
.cookie-modal-categories .toggle {
  margin-left: 12px;
}
.cookie-modal-categories input[type=checkbox] {
  width: 24px;
  height: 24px;
  accent-color: #16f08f;
  cursor: pointer;
}
.cookie-modal-categories .essential {
  color: #16f08f;
  font-style: italic;
}

.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 8px;
}
.cookie-modal-actions .button-primary {
  padding: 10px 20px;
}

/* RESPONSIVE/MOBILE STYLES -------------------------------------------- */
@media (max-width: 1100px) {
  .container { max-width: 94vw; }
  .footer-bar { flex-direction: column; gap: 26px; align-items: flex-start; }
  .main-nav { gap: 18px; }
}
@media (max-width: 900px) {
  .services-list > div,
  .card-container > .card,
  .content-grid > .card {
    min-width: 96vw;
    max-width: 100vw;
    flex: 1 1 100%;
  }
}
@media (max-width: 820px) {
  .content-wrapper { gap: 20px; }
  .section { padding: 25px 10px; }
}
@media (max-width: 768px) {
  .header-bar { padding: 0 10px; }
  .footer-bar { flex-direction: column; gap: 18px; padding: 18px 8px 12px 8px; }
  .section { padding: 18px 3vw; margin-bottom: 36px; }
  .content-wrapper { gap: 16px; }
  .content-grid, .card-container, .services-list { flex-direction: column; gap: 18px; }
  .text-image-section { flex-direction: column; gap: 16px; }
  .location-map img { width: 28px; height: 28px; }
  .cookie-banner { flex-direction: column; gap: 18px; padding: 18px 10px; }
}
@media (max-width: 440px) {
  .cookie-modal-content { padding: 24px 3vw 16px 3vw; }
}
@media (max-width: 380px) {
  .cookie-banner { font-size: 0.91rem; }
  .footer-contact, .footer-nav a { font-size: 0.91rem; }
}

/* ANIMATIONS & TRANSITIONS -------------------------------------------- */
.button-primary, .button-secondary, .button-tertiary, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
a, button {
  transition: color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

/* SCROLLBAR STYLES --------------------------------------------------- */
::-webkit-scrollbar               { width: 7px; background: #223e33; }
::-webkit-scrollbar-thumb         { background: #16f08f44; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover   { background: #16f08f; }

/* FORMS & MISC ------------------------------------------------------- */
input, textarea, select {
  border-radius: var(--radius);
  border: 1.5px solid #223e33;
  font-size: 1rem;
  font-family: var(--font-body);
  padding: 8px 14px;
  margin: 7px 0;
  background: #181C22;
  color: #fff;
  transition: border-color var(--transition), background var(--transition);
}
input:focus, textarea:focus, select:focus {
  border-color: #16f08f;
  background: #223e33;
}
label { font-weight: 500; color: #eafcf7; margin-bottom: 3px; display: block; }

/* CONTACT DETAILS ----------------------------------------------------- */
.contact-details p, .contact-detail-summary ul, .text-section ul, .text-section li {
  color: #eafcf7;
  padding-left: 0;
}
.contact-details a {
  color: var(--brand-neon);
  text-decoration: underline;
}

/* SPECIAL: TABLES IN DARK/LIGHT ----------------------------------------*/
table, th, td { border: none; }
table th, table td { text-align: left; }

/* Special: Make text readable on testimonials (dark text on light bg) */
.testimonial-card, .price-table th, .cookie-banner, .cookie-modal-content, .cookie-modal-categories .category {
  color: #191f18;
  font-family: var(--font-body);
}
.testimonial-card blockquote, .testimonial-card .testimonial-footer {
  color: #191f18;
}

/* OTHER: MISC ------------------------------------------------------- */
.program-benefits ul, .package-options ul, .discount-info ul  {
  margin-left: 0;
  padding-left: 18px;
}

/* Prevent overlap for all element types */
.card, .content-wrapper > *, .services-list > *, .testimonial-card, .faq-list li {
  margin-bottom: 20px;
}
