/* RESET & NORMALIZATION */
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.6;
  font-family: 'Roboto', Arial, sans-serif;
  color: #e9ecef;
  background: #181f2a;
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
  font-size: inherit;
}

/* BRAND VARIABLES (FALLBACKS ONLY) */
:root {
  --color-primary: #263247;
  --color-secondary: #6B9A8C;
  --color-accent: #FFA938;
  --color-background: #181f2a;
  --color-bg-soft: #232e43;
  --color-surface: #212532;
  --color-panel: #263247;
  --color-text: #e9ecef;
  --color-text-dark: #222b34;
  --color-highlight: #19FFD2;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow-md: 0 4px 24px 0 rgba(25,255,210,0.08), 0 2px 6px 0 rgba(0,0,0,0.09);
  --shadow-hover: 0 2px 32px 3px rgba(255,169,56,0.15), 0 6px 32px 0 rgba(27,255,244,0.06);
}

/* TYPOGRAPHY */
h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--color-accent);
  margin-bottom: 18px;
  line-height: 1.15;
  text-shadow: 0 4px 16px rgba(255, 169, 56, 0.11);
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-highlight);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-secondary);
  font-weight: 500;
}
p, li, label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 10px;
}
strong {
  color: var(--color-accent);
  font-weight: 700;
}
small {
  font-size: 0.9rem;
  color: #adb5bd;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 22px;
  transition: transform .18s cubic-bezier(.14,1.19,.87,1.11), box-shadow .14s;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px) scale(1.03);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff81;
  color: var(--color-text-dark);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 24px 0 rgba(38, 50, 71, 0.06);
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid var(--color-accent);
}
.testimonial-card span {
  color: var(--color-accent);
  font-size: 1.3em;
  vertical-align: middle;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO STYLES */
.hero, .workshop-hero, .events-hero, .thank-you-section {
  background: linear-gradient(110deg, #263247 60%, #1b2838 100%);
  padding: 64px 0 60px 0;
  margin-bottom: 48px;
}
.hero .container, .workshop-hero .container, .events-hero .container, .thank-you-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1, .workshop-hero h1, .events-hero h1, .thank-you-section h1 {
  color: var(--color-highlight);
  font-size: 2.6rem;
}
.hero p, .workshop-hero p, .events-hero p, .thank-you-section p {
  font-size: 1.17rem;
  color: #fff;
  max-width: 650px;
}

/* NAVIGATION */
header {
  width: 100%;
  background: var(--color-panel);
  box-shadow: 0 1px 8px #0617260a;
  position: sticky;
  top: 0;
  z-index: 200;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 26px;
  background: none;
  width: 100%;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav li {
  margin: 0;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: .05em;
  color: #ddd;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background .18s, color .13s;
  position: relative;
}
.main-nav a.active,
.main-nav a:hover,
.main-nav a:focus {
  background: #212a40;
  color: var(--color-accent);
}
.main-nav img {
  max-height: 44px;
  margin-right: 20px;
}
.cta-button {
  font-family: var(--font-display);
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 24px;
  border: none;
  box-shadow: 0 1px 12px 0 #ffa93834;
  transition: background .19s cubic-bezier(.39,1,.24,1), color .19s, box-shadow .21s;
  letter-spacing: .07em;
  margin-left: 16px;
}
.cta-button:hover, .cta-button:focus {
  background: #fff3e4;
  color: var(--color-accent);
  box-shadow: var(--shadow-hover);
  filter: brightness(1.08);
}

/* BURGER MENU / MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: var(--color-highlight);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: var(--color-primary);
  margin-left: 16px;
  align-items: center;
  justify-content: center;
  z-index: 210;
  box-shadow: 0 2px 8px 0 #00ffbe26;
  transition: background .15s, box-shadow .15s;
  border: none;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: var(--shadow-hover);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 22, 29, 0.96);
  z-index: 999;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.41,1.33,.37,1.01);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 24px 0 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-bottom: 28px;
  font-size: 2rem;
  color: var(--color-accent);
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 6px 0 #FF9F3F13;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .12s, color .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-highlight);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.23rem;
  font-weight: 600;
  letter-spacing: .06em;
  border-radius: 7px;
  padding: 13px 18px;
  background: none;
  transition: background .14s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* RESPONSIVE NAVIGATION */
@media (max-width: 1024px) {
  .main-nav ul {
    gap: 22px;
  }
  .main-nav {
    padding: 0 10px;
  }
  .cta-button {
    margin-left: 6px;
    padding: 12px 22px;
  }
}
@media (max-width: 900px) {
  .main-nav ul,
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* LAYOUT & SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  width: 100%;
}
section:last-child {
  margin-bottom: 0;
}

/* LISTS / FEATURES */
.features ul, .services-overview ul, .services-section ul, .workshop-list ul, .workshop-benefits ul, .values ul,
.event-list ul, .showcase-projects ul, .faq-preview ul, .cookie-policy ul, .contact-faq .faq-accordion,
.gdpr-policy ul, .terms-of-service ul, .thank-you-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 24px;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 26px;
}
.features li, .services-overview li, .workshop-list li, .workshop-benefits li, .values li, 
.event-list li, .showcase-projects li, .faq-preview li, .thank-you-section li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-surface);
  padding: 18px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 0;
  box-shadow: 0 2px 12px 0 #44ffe21a;
}
.services-overview li, .services-section li {
  flex: 1 1 280px;
  border-left: 4px solid var(--color-accent);
  min-width: 220px;
  background: var(--color-bg-soft);
  transition: box-shadow .13s, border-color .12s;
}
.services-overview li:hover, .services-section li:hover {
  box-shadow: 0 3px 22px 0 #ffad381c, 0 1.5px 24px 0 #19ffd215;
  border-color: var(--color-highlight);
}
.showcase-projects li, .event-list li {
  padding: 16px 16px;
  border-bottom: 1px solid #343e5360;
  background: var(--color-bg-soft);
  border-radius: var(--radius-sm);
}

.price {
  display: inline-block;
  background: #212532;
  color: var(--color-highlight);
  font-weight: bold;
  margin-top: 10px;
  padding: 5px 18px;
  border-radius: 28px;
  font-size: 1.06rem;
  letter-spacing: .03em;
  box-shadow: 0 2px 5px 0 #19ffd21a;
}

/* ICONS IN LISTS */
.features img, .values img, .workshop-benefits img, .faq-preview img, .services-section img, .showcase-projects img, .event-list img, .process img {
  width: 34px;
  height: 34px;
  margin-right: 12px;
  filter: drop-shadow(0 0 5px var(--color-highlight));
}

/* SECTION-SPECIFIC STYLES */
.about-vision, .team, .values,
.cookie-policy, .privacy-policy, .gdpr-policy, .terms-of-service {
  background: var(--color-panel);
  border-radius: var(--radius);
}

.process ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: column;
  margin: 20px 0;
}
.process li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #232e43;
  box-shadow: 0 1px 9px 0 #19ffd210;
  border-radius: var(--radius-sm);
  padding: 20px 14px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #222532;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 6px #FFA93811;
}
.faq-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--color-accent);
}

.contact-info-card, .contact-details {
  background: var(--color-bg-soft);
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px 0 #19ffd21a;
}
.contact-info-card a, .contact-details a {
  color: var(--color-highlight);
  font-weight: 600;
  text-decoration: underline;
}

.text-section {
  background: none;
  border-radius: var(--radius-sm);
  padding: 0;
}

.input-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin: 16px 0 8px 0;
}

/* FOOTER */
footer {
  width: 100%;
  background: var(--color-panel);
  padding: 44px 0 18px 0;
  text-align: center;
  margin-top: 36px;
}
.footer-nav {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer-nav a {
  color: var(--color-highlight);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin: 0 6px;
  transition: color .14s;
}
.footer-nav a:hover {
  color: var(--color-accent);
}

/* COOKIE CONSENT */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #1c243a;
  color: #fff;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 34px;
  box-shadow: 0 -4px 32px 0 #19ffd210;
  gap: 30px;
  animation: slideInCookieBanner 0.6s cubic-bezier(.8,1.7,.8,1.2);
}
@keyframes slideInCookieBanner {
  from { transform: translateY(100%); opacity: 0.1; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1rem;
  max-width: 600px;
  flex: 1 1 300px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  padding: 10px 22px;
  border-radius: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  cursor: pointer;
  border: none;
  transition: background .18s, color .13s;
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner button.accept {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner button.reject {
  background: #2e364d;
  color: #fff;
}
.cookie-banner button.settings {
  background: var(--color-highlight);
  color: var(--color-primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  filter: brightness(1.08);
  box-shadow: 0 2px 13px 0 #ffa93840;
}

/* COOKIE MODAL (for preferences) */
.cookie-modal {
  position: fixed;
  z-index: 2510;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(26,29,39,0.87);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.28s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .modal-content {
  background: #232e43;
  border-radius: var(--radius);
  padding: 38px 34px 34px 34px;
  box-shadow: 0 6px 64px 0 #19ffd24c;
  min-width: 320px;
  max-width: 92vw;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  color: var(--color-accent);
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-toggle label {
  flex: 1 1 180px;
  color: #fff;
  font-size: 1.02rem;
}
.cookie-toggle input[type=checkbox] {
  accent-color: var(--color-accent);
  width: 20px;
  height: 20px;
}
.cookie-category-essential input[type=checkbox] {
  accent-color: #aaaaaa;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  background: #2e364d;
  color: #fff;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 4px;
}
.cookie-modal .close-modal:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* ACCESSIBILITY FOCUS */
a:focus, button:focus, .cta-button:focus, input:focus, textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* MICRO-INTERACTIONS */
a, .cta-button, button, .card, .testimonial-card {
  transition: box-shadow .18s, background .17s, color .14s, border-color .16s, filter .14s, transform .16s;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
  section {
    padding: 34px 0;
    margin-bottom: 38px;
  }
  .hero, .workshop-hero, .events-hero, .thank-you-section {
    padding: 46px 0 32px 0;
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .footer-nav {
    gap: 18px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.27rem;
  }
  .main-nav img {
    max-height: 36px;
    margin-right: 6px;
  }
  .container {
    padding: 0 4vw;
  }
  .content-grid, .card-container, .features ul, .services-overview ul, .workshop-benefits ul, .workshop-list ul, .showcase-projects ul, .values ul, .event-list ul {
    flex-direction: column !important;
    align-items: stretch;
    gap: 18px !important;
  }
  .section {
    margin-bottom: 28px;
    padding: 24px 4px;
  }
  .testimonial-card {
    padding: 14px;
    margin-bottom: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .process ol {
    gap: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 10px 16px 10px;
    gap: 10px;
    font-size: .93rem;
  }
  .cookie-banner .cookie-actions {
    gap: 6px;
  }
}
@media (max-width:500px) {
  .main-nav img {
    max-height: 30px;
  }
  .cta-button, .cookie-banner button {
    font-size: 1em;
    padding: 11px 18px;
  }
}

/* Z-INDEX MANAGEMENT for overlays */
.mobile-menu,
.cookie-modal,
.cookie-banner {
  z-index: 2500 !important;
}

/* UTILITIES */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.hide-mobile {
  display: block;
}
@media (max-width:600px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Specific spacing for cards/sections */
.card, .testimonial-card, .feature-item, .faq-item, .contact-info-card, .contact-details {
  margin-bottom: 20px !important;
}

/* Prevent overlap */
section, .container, .content-wrapper, .card-container, .services-section, .about-vision, .card, .testimonial-card {
  position: relative;
  z-index: 1;
}

/* Subtle futuristic NEON ACCENT lines for headings */
h1, h2 {
  position: relative;
}
h1::after, h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-highlight) 100%);
  box-shadow: 0 1px 11px #19ffd230;
  border-radius: 2px;
  margin-top: 8px;
  margin-bottom: 0;
}

/* BUTTON & LINK ANIMATION */
.cta-button, .cookie-banner button, .mobile-menu-toggle {
  box-shadow: 0 2px 16px 0 #19ffd215;
}
.cta-button:active {
  transform: scale(.97);
  filter: brightness(.99);
}

/* Animations for testimonials, overlays, etc. */
.testimonial-card {
  animation: fadeInTestimonial .7s cubic-bezier(.57,1.3,.38,1.01);
}
@keyframes fadeInTestimonial {
  from { opacity: .7; transform: scale(.95) translateY(22px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Fallback font-faces (Google Fonts) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
