/* ====================================================== */
/* 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%; }
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFFFFF;
  color: #264038;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-secondary, #FFFFFF);
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
img {
  border-style: none;
  max-width: 100%;
  display: block;
}
button, input, optgroup, select, textarea {
  font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0;}
button { background: none; border: none; cursor: pointer; }

/* ====================================================== */
/* BRAND COLOR VARIABLES                                 */
/* ====================================================== */
:root {
  --color-primary: #385248;
  --color-primary-dark: #264038;
  --color-secondary: #FFFFFF;
  --color-accent: #BB7431;
  --color-accent-hover: #98441f;
  --color-bg-alt: #FFF9EF;
  --color-highlight: #D6C7B5;
  --color-electric-1: #29C5F6; /* vibrant blue */
  --color-electric-2: #E53D6F; /* vibrant pink */
  --color-electric-3: #FEBA05; /* vibrant yellow */
  --shadow-strong: 0 8px 24px rgba(34, 34, 34, 0.10);
  --shadow-clean: 0 2px 8px rgba(80,50,30, 0.07);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

/* ====================================================== */
/* TYPOGRAPHY                                            */
/* ====================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

body {
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-primary-dark);
  background: var(--color-secondary);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.1;
}
h1 { font-size: 2.7rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
}
p, ul, ol, li, span, em {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-primary-dark);
}
strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-accent);
}
em { font-style: italic; }
.price { font-weight: bold; color: var(--color-electric-3)!important; letter-spacing: 0.01em; }

/* ====================================================== */
/* LAYOUT & CONTAINERS                                   */
/* ====================================================== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex; flex-direction: column; gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  transition: box-shadow 0.25s;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 40px;
  }
}

/* Flex cards container patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-clean);
  padding: 24px;
  min-width: 260px;
  flex: 1 1 300px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 48px rgba(34,34,34, 0.2);
  transform: translateY(-8px) scale(1.02);
  z-index: 2;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .card {
    min-width: unset;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF9EF;
  color: #333;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  margin-bottom: 20px;
  min-width: 260px;
  min-height: 80px;
  flex: 1 1 280px;
}
.testimonial-card p {
  color: #111;
  font-size: 1.08rem;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--color-electric-2);
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-clean);
  margin-bottom: 20px;
}

.text-section {
  font-size: 1rem;
  color: var(--color-primary-dark);
  margin-bottom: 18px;
}

/* Home feature list (
.index.html etc) */
ul, ol {
  margin-left: 0;
  padding-left: 1.2em;
  margin-bottom: 8px;
}
li {
  margin-bottom: 12px;
  line-height: 1.6;
  list-style: disc;
}
strong {
  font-weight: 700;
  color: var(--color-accent);
}

/* BUTTONS & CTA */
.cta, button {
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.05em;
  background: var(--color-electric-1);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(41,197,246,0.11);
  transition: background 0.17s, color 0.21s, transform 0.18s, box-shadow 0.17s;
  outline: none;
  margin-right: 12px;
  margin-bottom: 12px;
}
.cta.primary {
  background: linear-gradient(90deg, var(--color-accent), var(--color-electric-2) 90%);
  color: #fff;
  box-shadow: 0 1px 14px 0 rgba(187,116,49, 0.13);
  border: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, var(--color-electric-2) 35%, var(--color-accent) 100%);
  color: #FFF;
  box-shadow: 0 4px 24px 0 rgba(229,61,111, 0.24);
  transform: scale(1.05);
}
.cta.secondary {
  background: var(--color-electric-3);
  color: #222;
}
button {
  background: var(--color-electric-2);
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 11px 19px;
  margin-right: 0;
}
button:hover, button:focus {
  background: var(--color-electric-1);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* HEADER/NAVIGATION */
header {
  background: linear-gradient(90deg, #FFF, #FEBA05 15%, #FFF 50%, #E53D6F 100%);
  box-shadow: var(--shadow-clean);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  color: var(--color-primary-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  transition: background 0.14s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-electric-2);
  color: #fff;
}
header img {
  height: 40px;
  width: auto;
  margin-right: 16px;
}

@media (max-width: 900px) {
  header nav{
    gap: 12px;
  }
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: var(--color-electric-2);
  color: #fff;
  font-size: 2.1rem;
  border-radius: var(--radius-lg);
  padding: 4px 18px 4px 12px;
  margin-left: 12px;
  border: none;
  z-index: 99;
  transition: background 0.15s, color 0.15s, transform 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-electric-1);
  color: #fff;
  transform: scale(1.06);
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(101deg, #FFF 75%, var(--color-electric-2) 150%);
  box-shadow: 0 16px 48px rgba(41, 197, 246, 0.18);
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.34s cubic-bezier(.6,.12,.86,1.01), opacity 0.29s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--color-electric-2);
  background: transparent;
  border: none;
  align-self: flex-end;
  padding: 17px 30px 10px 0;
  margin-right: 3px;
  transition: color 0.2s;
  z-index: 115;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 0;
  margin-top: 25px;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  background: transparent;
  padding: 17px 0 13px 0;
  margin-bottom: 5px;
  width: 100%;
  transition: background 0.17s, color 0.16s;
  border-radius: var(--radius-md);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-electric-2);
  color: #FFF;
}

@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ====================================================== */
/* FOOTER                                                */
/* ====================================================== */
footer {
  background: #fffbe1;
  border-top: 3px solid var(--color-accent);
  box-shadow: 0 -2px 48px 0 rgba(187,116,49, 0.11);
  margin-top: 50px;
  padding: 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 20px;
}
footer nav {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 18px;
}
footer nav a {
  color: var(--color-primary-dark);
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.18s, background 0.13s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-accent);
  color: #FFF;
}
footer img {
  height: 36px;
  width: auto;
}

/* ====================================================== */
/* RESPONSIVE ADJUSTMENTS                                */
/* ====================================================== */
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  footer .container { flex-direction: column; align-items: flex-start; gap: 10px; padding: 22px 8px; }
}

/* ====================================================== */
/* COOKIE CONSENT BANNER & COOKIE MODAL                   */
/* ====================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: #fffbe1;
  border-top: 3px solid var(--color-electric-2);
  box-shadow: 0 -2px 44px 0 rgba(229,61,111,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  font-size: 1rem;
  min-height: 60px;
  gap: 20px;
  animation: bannerSlideUp 0.52s cubic-bezier(.7,.16,.46,1.08);
}
@keyframes bannerSlideUp {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--color-primary-dark);
  flex: 1 1 200px;
  margin-bottom: 0;
  margin-right: 12px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  box-shadow: none;
  padding: 9px 18px;
  background: var(--color-electric-1);
  color: #fff;
  border: none;
}
.cookie-banner .accept-all {
  background: var(--color-accent);
  color: #FFF;
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: var(--color-electric-2);
  color: #fff;
}
.cookie-banner .reject-all {
  background: var(--color-electric-2);
  color: #fff;
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: var(--color-electric-3);
  color: #222;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  box-shadow: none;
  transition: background 0.14s, color 0.14s;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: var(--color-electric-1);
  color: #fff;
  border-color: var(--color-electric-2);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-right: 18px;
  }
}

.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 260;
  background: rgba(35,35,35,0.44);
  align-items: center;
  justify-content: center;
  transition: opacity 0.29s;
}
.cookie-modal.active { display: flex; animation: modalShow 0.45s cubic-bezier(.74,.04,.51,.97); }
@keyframes modalShow {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fffbe1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  max-width: 380px;
  width: 98%;
  padding: 32px 28px 18px 28px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.45rem;
  margin-bottom: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: var(--color-accent);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.cookie-essential {
  color: #f22c2c;
  font-weight: bold;
  font-size: 1rem;
  margin-left: 7px;
}
.cookie-modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 21px;
  font-size: 1.7rem;
  color: var(--color-electric-2);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover { color: var(--color-electric-1); }

/* ====================================================== */
/* MICRO INTERACTIONS & ANIMATIONS                        */
/* ====================================================== */
a, button, .cta, .mobile-menu-toggle, .mobile-menu-close {
  transition: color 0.17s, background 0.13s, box-shadow 0.15s, transform 0.14s;
}
.card, .testimonial-card, .feature-item, .section {
  transition: box-shadow 0.22s, background 0.21s, transform 0.15s;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 8px 52px 0 rgba(187,116,49,0.13), 0 2px 18px 0 rgba(41, 197, 246, 0.10);
  transform: translateY(-2px) scale(1.016);
}

/* ====================================================== */
/* ACCESSIBILITY STYLES                                   */
/* ====================================================== */
:focus {
  outline: 2.5px solid var(--color-electric-1);
  outline-offset: 2.5px;
}

/* ====================================================== */
/* UTILITY STYLES                                        */
/* ====================================================== */
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
/* for alignment help */
.flex { display: flex; }
.flex-column { flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

/* BLANK STATE */
.blank-state {
  padding: 44px 18px;
  text-align: center;
  font-size: 1.21rem;
  color: var(--color-electric-2);
}

/* ====================================================== */
/* VIBRANT ENERGETIC DECORATIVE ELECTRIC EFFECTS (icons)  */
/* ====================================================== */
.section,
.card,
.testimonial-card,
.feature-item {
  border-left: 5px solid var(--color-electric-2);
  /* on hover, alt electric */
}
.card:hover, .feature-item:hover {
  border-left-color: var(--color-electric-1);
}

/* ====================================================== */
/* FORMS & INPUTS (for newsletter, search etc.)           */
/* ====================================================== */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 2px solid var(--color-electric-1);
  border-radius: var(--radius-md);
  padding: 11px 12px;
  margin-bottom: 13px;
  background: #FFF;
  color: var(--color-primary-dark);
  transition: border 0.19s;
  box-shadow: 0 1px 7px 0 rgba(41,197,246,0.05);
  width: 100%;
  max-width: 320px;
}
input:focus, textarea:focus {
  border: 2.5px solid var(--color-electric-2);
  outline: none;
}

/* Checkbox/radio for cookie modal (minimal, custom would be handled by JS) */
input[type="checkbox"] {
  accent-color: var(--color-electric-2);
  margin-left: 1px;
  margin-right: 6px;
}

/* ====================================================== */
/* ERROR/INFO/SUCCESS BANNER                              */
/* ====================================================== */
.info-banner {
  background: var(--color-electric-1);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}

.success-banner {
  background: var(--color-accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}
.error-banner {
  background: var(--color-electric-2);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
}

/* ====================================================== */
/* PRINT (MINIMAL) */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body, .container, main, .section {
    background: #fff;
    color: #222;
    box-shadow: none;
    border: none;
  }
}


/* ====================================================== */
/* THEME - Vibrant Energetic                             */
/* ====================================================== */
.section {
  border-left: 7px solid var(--color-electric-1);
  background: linear-gradient(115deg, #FFF 65%, #FEBA05 116%);
}
.card {
  border-left: 8px solid var(--color-electric-2);
}
.card:hover { border-left-color: var(--color-electric-1); }
.testimonial-card {
  border-left: 8px solid var(--color-electric-3);
  background: #FFF9EF;
}
.testimonial-card strong {
  color: var(--color-electric-2);
}
.cta.primary {
  box-shadow: 0 2px 18px 0 rgba(229,61,111, .13), 0 4px 24px 0 rgba(41,197,246,0.12);
}

/* ====================================================== */
/* Z-INDEX LAYERING                                      */
/* ====================================================== */
header { z-index: 30; }
footer { z-index: 30; }
.mobile-menu { z-index: 110; }
.cookie-banner { z-index: 200; }
.cookie-modal { z-index: 260; }

/* ====================================================== */
/* END OF styles                                         */
/* ====================================================== */
