/* ----------------------------
   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, main, 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; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; min-height: 100vh; font-size: 16px; background: #F7F9FB; color: #293649; }
ul, ol { list-style: disc inside; }
img, picture, video, canvas, svg { display: inline-block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; }
button { background: none; border: none; cursor: pointer; }

/* -------------------------------------------
   BRAND COLORS & VIBRANT/ENERGETIC PALETTE
-------------------------------------------- */
:root {
  --primary: #293649;
  --secondary: #BAC8D3;
  --accent: #FFBE40;
  --electric-blue: #1B82F5;
  --electric-pink: #FF3EBE;
  --electric-green: #00E6A8;
  --light-bg: #F7F9FB;
  --white: #fff;
  --dark: #181E28;
  --shadow: 0 4px 24px rgba(51,52,114,0.13);
}

/* ----------------------------------------------
   TYPOGRAPHY: HEADERS, BODY, BUTTONS
----------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--light-bg);
  color: var(--primary);
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 16px;
}
h1 { font-size: 2.6rem; line-height: 1.1; color: var(--electric-blue); text-shadow: 0 2px 14px #65e6fc24; }
h2 { font-size: 2rem; color: var(--electric-pink); }
h3 { font-size: 1.28rem; color: var(--primary); }
h4, h5, h6 { font-size: 1rem; }

p, ul, ol, li, a, span, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
}

strong {
  font-weight: 700;
  color: var(--electric-pink);
}

/* ----------------------------------------
   GLOBAL LAYOUT CONTAINER STYLES
----------------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}
.section:hover { box-shadow: 0 8px 32px rgba(27,130,245,0.14); }

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Responsive content wrappers */
@media (max-width: 900px) {
  .container { padding: 0 12px; }
  .section { padding: 32px 8px; }
}
@media (max-width: 768px) {
  .content-wrapper,
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
  .section { padding: 24px 4px; margin-bottom: 32px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
}

/* ---------------------------------------------
   HEADER, NAVIGATION, LOGO
------------------------------------------------ */
header {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(41,54,73,0.10);
  position: sticky; z-index: 20; top: 0;
  padding: 0; margin-bottom: 0;
}
.logo {
  display: flex; align-items: center;
  height: 68px; float: left;
  padding-left: 8px;
}
.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.25s;
}
.logo img:hover {
  transform: scale(1.08) rotate(-4deg);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-left: 40px;
  height: 68px;
}
.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--electric-blue);
  background: var(--white);
  outline: none;
}
.mobile-menu-toggle {
  display: none;
  background: var(--electric-pink);
  color: var(--white);
  font-size: 2rem;
  padding: 6px 14px;
  border-radius: 9px;
  margin-left: auto;
  position: relative; top: 8px;
  box-shadow: 0 2px 16px #FF3EBE09;
  z-index: 101;
  transition: background 0.22s, color 0.22s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--primary); 
}
/* Hide main nav, show burger on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* -----------------------------
   MOBILE MENU OVERLAY
------------------------------ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.37,1.1,.73,1.02);
  z-index: 9999;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20px;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 36px;
  background: var(--electric-pink);
  color: var(--white);
  font-size: 2.3rem;
  border-radius: 50%;
  padding: 6px 18px;
  z-index: 10001;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--accent);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 68px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 18px 30px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Only show on mobile view */
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* ---------------------------------------------
   HERO SECTION (Landing, Workshops, etc.)
---------------------------------------------- */
.hero {
  background: linear-gradient(99deg, var(--electric-pink) 0%, var(--electric-blue) 80%, var(--accent) 100%);
  color: var(--white);
  padding: 74px 0 60px 0;
  width: 100%;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero .content-wrapper h1 {
  font-size: 2.9rem;
  line-height: 1.08;
  letter-spacing: 0.8px;
  color: var(--white);
  margin-bottom: 16px;
}
.hero .content-wrapper p {
  color: var(--secondary);
  font-size: 1.18rem;
  margin-bottom: 22px;
}
@media (max-width: 900px) {
  .hero { padding: 52px 0 32px 0; }
  .hero .content-wrapper h1 { font-size: 2rem; }
}

/* ---------------------------------------------
 CTA BUTTON STYLES - Vibrant & Energetic
---------------------------------------------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', Arial, sans-serif;
  padding: 13px 36px 13px 36px;
  border-radius: 23px;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 12px 0;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px #1B82F512;
  outline: none;
  transition: background 0.20s, color 0.20s, box-shadow 0.22s, transform 0.13s;
}
.cta.primary {
  background: var(--accent);
  color: var(--primary);
}
.cta.secondary {
  background: var(--white);
  color: var(--electric-blue);
  border: 2px solid var(--electric-blue);
}
.cta:hover,
.cta:focus {
  background: var(--electric-pink);
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px #FFBE4013, 0 0px 0px #fff;
}

/* ---------------------------------------------
   FEATURE GRID & CARDS
---------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  background: var(--secondary);
  border-radius: 18px;
  padding: 22px 20px 20px 20px;
  box-shadow: 0 8px 24px #BAC8D313;
  min-height: 180px;
  flex: 1 1 220px;
  max-width: 325px;
  transition: background 0.15s, box-shadow 0.19s, transform 0.17s;
  margin-bottom: 20px;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
}
.feature-item:hover {
  background: var(--electric-green);
  transform: translateY(-2px) scale(1.036);
  box-shadow: 0 14px 32px #00e6a819;
}
@media (max-width: 1200px) {
  .feature-grid { gap: 20px; }
  .feature-item { min-width: 170px; }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* -------------------------------
   SERVICE CARDS (e.g. Workshop)
-------------------------------- */
.service-cards, .workshop-listings, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 22px;
  padding: 28px 22px 22px 22px;
  min-width: 230px;
  margin-bottom: 20px;
  box-shadow: 0 6px 24px #1B82F50a, 0 2px 8px #29364910;
  flex: 1 1 210px; max-width: 315px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.17s, transform 0.14s;
  position: relative;
  border: 2px solid var(--secondary);
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px #ffbe4066, 0 4px 16px #29364928;
  transform: translateY(-2px) scale(1.034);
}
@media (max-width: 900px) {
  .service-cards, .workshop-listings, .service-list { gap: 14px; }
  .service-card { min-width: 150px; max-width: 100%; }
}
@media (max-width: 600px) {
  .service-cards, .workshop-listings, .service-list {
    flex-direction: column;
    gap: 8px;
  }
}

/* ------------------------------
   TESTIMONIAL SECTION & CARDS
------------------------------- */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #fffbea;
  border-radius: 18px;
  box-shadow: 0 6px 18px #ffd67144;
  min-width: 220px;
  max-width: 410px;
  margin-bottom: 20px;
  border-left: 6px solid var(--accent);
  transition: box-shadow 0.19s, transform 0.16s, border-color 0.13s;
}
.testimonial-card strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
}
.testimonial-card .stars {
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--electric-pink);
  font-size: 1.15rem;
  margin-left: 11px;
}
.testimonial-card p {
  color: var(--dark);
  font-size: 1.05rem;
}
.testimonial-card:hover {
  box-shadow: 0 14px 36px #FFBE405a, 0 2px 8px #181e2814;
  border-color: var(--electric-blue);
  transform: translateY(-2px) scale(1.027);
}
@media (max-width: 950px) {
  .testimonial-cards { gap: 14px; }
}
@media (max-width: 700px) {
  .testimonial-cards, .testimonial-card {
    flex-direction: column;
    align-items: stretch;
    min-width: unset;
    max-width: 100%;
  }
}

/* -----------------------------------
   CONTACT INFO / MAP / FOOTER SECTIONS
------------------------------------- */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 16px 0;
  align-items: flex-start;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: var(--dark);
  border-radius: 7px;
  padding: 5px 0;
}
.contact-info img {
  width: 26px;
  height: 26px;
  margin: 0;
}
.map-embed {
  margin: 18px 0;
  padding: 12px 0 0 4px;
  display: flex;
  flex-direction: row;
}
@media (max-width: 700px) {
  .contact-info { flex-direction: column; gap: 14px; }
  .map-embed { padding: 0; }
}

/* ------------------------------------------
   FOOTER
------------------------------------------- */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 52px 0 18px 0;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.footer-nav nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.footer-nav a {
  color: var(--accent);
  font-weight: 500;
  padding: 6px 10px;
  font-size: 0.97rem;
  border-radius: 6px;
  transition: background 0.20s, color 0.20s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--electric-pink);
  color: var(--white);
}
.social-icons {
  display: flex;
  flex-direction: row;
  gap: 19px;
  align-items: center;
  margin-bottom: 10px;
}
.social-icons img {
  width: 30px; height: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px #1b82f530;
  background: #fffbea;
  transition: transform 0.16s;
}
.social-icons a:hover img {
  transform: scale(1.11) rotate(-6deg);
  background: var(--electric-blue);
}
.copyright {
  font-size: 0.87rem;
  color: var(--secondary);
  margin-top: 12px;
}
@media (max-width: 800px) {
  .footer-nav {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ------------------------------------------
   PRICING & LISTS
------------------------------------------- */
.pricing-overview, .pricing-tiers, .advisory-services, .pricing-info {
  margin: 12px 0 18px 0;
}
.pricing-info strong {
  color: var(--electric-blue);
  font-size: 1.13rem;
}
ul {
  margin: 12px 0 12px 24px;
  padding: 0;
  font-size: 1rem;
}
ol {
  margin: 10px 0 12px 28px;
}
ul li, ol li {
  margin-bottom: 8px;
  color: var(--primary);
}
.faq-preview {
  margin-top: 16px;
  background: var(--secondary);
  border-radius: 9px;
  padding: 16px 14px 12px 14px;
}
.faq-preview h3 {
  font-size: 1.1rem;
  margin-bottom: 7px; color: var(--electric-pink);
}

/* -----------------------------------
   MODALS, BANNERS, COOKIES
------------------------------------ */
/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 22px 18px 16px 18px;
  text-align: left;
  z-index: 12000;
  box-shadow: 0 -6px 32px #1b82f51c;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.1rem;
  animation: cookie-slide-in 0.7s cubic-bezier(.42,0,0,1.74);
}
@keyframes cookie-slide-in {
  from { transform: translateY(200px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  padding: 10px 28px;
  border-radius: 30px;
  border: none;
  margin-top: 0;
  cursor: pointer;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  transition: background 0.13s, color 0.13s, box-shadow 0.17s;
  box-shadow: 0 2px 8px #ffbe4035;
}
.cookie-btn.reject {
  background: var(--electric-pink);
  color: var(--white);
}
.cookie-btn.settings {
  background: var(--electric-blue);
  color: var(--white);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 6px 16px #ffbe4045;
}
/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 12345;
  background: rgba(41,54,73, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.32s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: var(--light-bg);
  color: var(--primary);
  border-radius: 22px;
  box-shadow: 0 8px 44px #ffbe4019;
  padding: 36px 30px 28px 32px;
  max-width: 440px;
  width: 93vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  color: var(--electric-pink);
  font-size: 1.37rem;
}
.cookie-modal-close {
  position: absolute; top: 19px; right: 24px;
  background: var(--electric-pink);
  color: #fff; border-radius: 50%; font-size: 2.1rem;
  width: 39px; height: 39px;
  line-height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--accent); color: var(--primary);
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin: 8px 0;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
}
.cookie-switch {
  appearance: none;
  width: 36px;
  height: 18px;
  background: var(--secondary);
  border-radius: 15px;
  outline: none;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-switch:checked {
  background: var(--electric-blue);
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--white);
  transition: left 0.19s;
}
.cookie-switch:checked:before {
  left: 21px;
}
/* Always enabled cookies (gray and locked) */
.cookie-category.essential label { color: #757575; }
.cookie-switch[disabled] {
  background: #E5E5E5;
  cursor: not-allowed;
}

/* -----------------------------------
   ANIMATIONS & MICRO INTERACTIONS
------------------------------------ */
.card, .service-card, .feature-item, .testimonial-card, .cta, .cookie-btn, .mobile-nav a {
  transition: box-shadow 0.19s, background 0.13s, color 0.13s, transform 0.13s, border-color 0.17s;
}

/* -----------------------------------
   UTILITIES & MISC
------------------------------------ */
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }
.bold { font-weight: 700; }
.round { border-radius: 50%; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Hide scroll when modal/menu open */
body.menu-open, body.cookie-modal-open {
  overflow-y: hidden;
}

/* -----------------------------------
   FLEXBOX SPECIFIC: FORBID GRID
------------------------------------ */
/*
  All layout containers use display: flex with appropriate properties.
  display: grid, grid-*, columns, etc. are NOT used anywhere in this file.
  Only standard flex utilities.
*/

/* ------------------------
   END OF CSS
------------------------- */