/* =========================
   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, font, 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #232324;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 16px;
}
ul:last-child, ol:last-child { margin-bottom: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #274281;
  line-height: 1.13;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4, h5, h6 {
  font-size: 1rem;
}
p {
  margin-bottom: 14px;
  color: #232324;
}
strong, b {
  font-weight: 700;
  color: #274281;
}

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

.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/********************************
    FLEXBOX LAYOUTS
*********************************/
.feature-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 -12px;
}
.feature-grid > div, .card, .testimonial-card, .text-section {
  flex: 1 1 280px;
  margin: 12px 0;
}
.card-container > .card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  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: center;
  gap: 16px;
  padding: 24px 20px;
  background: #F5F8FA;
  box-shadow: 0 2px 16px rgba(39,66,129,.07);
  border-radius: 12px;
  min-width: 260px;
  max-width: 370px;
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 9px rgba(39,66,129,.04);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 240px;
  color: #232324;
}

/********************************
     HEADER & NAVIGATION
*********************************/
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e3e7ee;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  color: #274281;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 7px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  background: #F5F8FA;
  color: #AAC943;
}
header nav a.cta {
  background: #AAC943;
  color: #fff;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 24px;
  margin-left: 18px;
  transition: background 0.2s, color 0.2s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(170,201,67,.09);
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #274281;
  color: #fff;
}
header img[alt="Blooming Ekspert"] {
  height: 38px;
  width: auto;
}

/********************************
     MOBILE MENU (BURGER NAV)
*********************************/
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #274281;
  margin-left: 20px;
  cursor: pointer;
  z-index: 205;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(39,66,129,.94);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.86,.06,.17,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 2000;
  padding-top: 40px;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin: 20px 24px 18px 14px;
  cursor: pointer;
  align-self: flex-end;
  z-index: 2010;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #AAC943;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-left: 30px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 13px 0;
  border-radius: 0 22px 22px 0;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #AAC943;
  color: #274281;
}
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 980px) {
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 981px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/********************************
   HERO, BUTTONS, CARDS, CTA
*********************************/
.cta, a.cta {
  display: inline-block;
  background: #AAC943;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  border: none;
  border-radius: 24px;
  padding: 12px 34px;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(170,201,67,.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.25s, transform 0.12s;
  text-align: center;
}
.cta:hover, .cta:focus {
  background: #274281;
  color: #fff;
  box-shadow: 0 7px 32px rgba(39,66,129,.12);
  transform: translateY(-2px) scale(1.03);
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(39,66,129,.07);
  padding: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  transition: box-shadow 0.16s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(39,66,129,.10);
}

/********************************
        TESTIMONIAL CARDS
*********************************/
.testimonial-card {
  background: #F5F8FA;
  border-radius: 11px;
  color: #232324;
  box-shadow: 0 3px 20px rgba(39,66,129,.07);
  font-size: 1.10rem;
  position: relative;
  padding: 24px 22px;
  margin-bottom: 20px;
  min-height: 137px;
  margin-right: 0;
  transition: box-shadow 0.16s;
}
.testimonial-card strong {
  color: #274281;
  font-size: 1rem;
  margin-top: 3px;
  font-weight: 700;
}
.testimonial-card span {
  color: #AAC943;
  font-weight: 500;
  font-size: 1.1em;
  letter-spacing: 1px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(170,201,67,.13);
}

/********************************
      FOOTER & SOCIAL LINKS
*********************************/
footer {
  background: #fff;
  border-top: 1px solid #e3e7ee;
  color: #232324;
}
footer .container {
  padding: 25px 20px 8px 20px;
}
footer .content-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 16px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  color: #274281;
  font-size: 0.97rem;
  padding: 4px 0;
  transition: color 0.17s;
}
footer nav a:hover { color: #AAC943; }
.quick-contact p,
.quick-contact img {
  display: inline;
  vertical-align: bottom;
  color: #232324;
  font-size: 0.98rem;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.social-links a {
  display: flex;
  align-items: center;
  background: #F5F8FA;
  padding: 7px;
  border-radius: 8px;
  transition: background 0.14s, box-shadow 0.18s;
  box-shadow: 0 1px 6px rgba(39,66,129,.03);
}
.social-links a:hover {
  background: #AAC943;
  box-shadow: 0 4px 16px rgba(170,201,67,.09);
  filter: brightness(0.96);
}
.legal-info {
  font-size: 0.92em;
  color: #BBC3D6;
  padding-top: 8px;
  border-top: 1px solid #e3e7ee;
  text-align: center;
}

/********************************
         COOKIE BANNER
*********************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #F5F8FA;
  color: #232324;
  box-shadow: 0 -5px 34px 0 rgba(39,66,129,.12);
  padding: 24px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 3333;
  border-radius: 16px 16px 0 0;
  font-size: 1rem;
  transition: transform 0.34s cubic-bezier(.86,.06,.17,1), opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 7px;
}
.cookie-banner button {
  padding: 9px 19px;
  border: none;
  border-radius: 20px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #AAC943;
  color: #fff;
  transition: background 0.17s, color 0.17s, box-shadow 0.23s;
  box-shadow: 0 2px 10px rgba(170,201,67,.10);
}
.cookie-banner button.cookie-reject {
  background: #fff;
  color: #274281;
  border: 1px solid #AAC943;
}
.cookie-banner button.cookie-settings {
  background: #274281;
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #274281;
  color: #fff;
}
.cookie-banner button.cookie-reject:hover {
  background: #F5F8FA;
  color: #AAC943;
}

.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(39,66,129, .55);
  align-items: center;
  justify-content: center;
  z-index: 3336;
  transition: background 0.27s;
}
.cookie-modal.open {
  display: flex;
  animation: fadeIn 0.35s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal .cookie-modal-box {
  background: #fff;
  color: #232324;
  padding: 34px 28px 26px 28px;
  border-radius: 18px;
  box-shadow: 0 4px 34px rgba(39,66,129,.14);
  min-width: 280px;
  max-width: 94vw;
  max-height: 89vh;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  font-size: 1.07rem;
  z-index: 3340;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 9px;
  right: 13px;
  background: transparent;
  border: none;
  font-size: 1.45rem;
  color: #274281;
  cursor: pointer;
  z-index: 3341;
}
.cookie-modal h3 {
  font-size: 1.18rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1.04rem;
  color: #232324;
}
.cookie-toggle {
  appearance: none;
  width: 34px;
  height: 19px;
  border-radius: 50px;
  background: #F5F8FA;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
  border: 1px solid #AAC943;
}
.cookie-toggle:checked {
  background: #AAC943;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2.5px;
  top: 2px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.20s;
}
.cookie-toggle:checked::before {
  left: 16px;
}
.cookie-category .essential {
  color: #274281;
  font-weight: 600;
  font-size: 1rem;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 8px 21px;
  border-radius: 20px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #AAC943;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.19s;
}
.cookie-modal .cookie-modal-actions button.secondary {
  background: #fff;
  color: #274281;
  border: 1px solid #AAC943;
}
.cookie-modal .cookie-modal-actions button.secondary:hover,
.cookie-modal .cookie-modal-actions button.secondary:focus {
  background: #F5F8FA;
  color: #AAC943;
}
.cookie-modal .cookie-modal-actions button:hover,
.cookie-modal .cookie-modal-actions button:focus {
  background: #274281;
  color: #fff;
}

/********************************
     RESPONSIVE DESIGN
*********************************/
@media (max-width: 1100px) {
  .container { max-width: 970px; }
  .feature-grid, .content-grid { gap: 16px; }
  .testimonial-card { max-width: 100%; }
}
@media (max-width: 890px) {
  footer .content-wrapper { flex-direction: column; align-items: flex-start; gap: 12px; }
  .feature-grid, .content-grid { flex-direction: column; }
}
@media (max-width: 768px) {
  html { font-size: 97%; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.05rem; }
  .main, .section { padding: 28px 8px; }
  .container { padding: 0 8px; }
  .content-wrapper { gap: 12px; }
  .feature-grid, .content-grid { flex-direction: column; gap: 14px; }
  .card, .testimonial-card { min-width: unset; max-width: 100%; padding: 20px 10px; }
  .text-image-section { flex-direction: column; gap: 20px; }
  .cookie-modal .cookie-modal-box { padding: 16px 7px 12px 7px; font-size: 0.98rem; }
}
@media (max-width: 480px) {
  .section { padding: 17px 4px; }
  h1 { font-size: 1.13rem; }
  .cta, a.cta { font-size: 0.98rem; padding: 9px 14px; }
  .testimonial-card, .card { padding: 13px 5px; }
  .mobile-nav a { font-size: 1.12rem; }
}
/********************************
   MISCELLANEOUS
*********************************/
::-webkit-scrollbar {
  width: 9px; background: #F5F8FA;
}
::-webkit-scrollbar-thumb {
  background: #e3e7ee;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: #AAC943;
}
input, textarea, select, button {
  font-family: inherit;
}
/* Remove blue tap for iOS */
input:focus, textarea:focus, select:focus, button:focus {
  outline: 1.5px solid #AAC943;
  outline-offset: 1.3px;
}
/********************************
   SPECIAL: LISTS / ICONS
*********************************/
ul li, ol li {
  margin-bottom: 3px;
  list-style: disc inside;
}
.content-wrapper ul li strong {
  color: #274281;
}
.text-section h3 {
  color: #274281;
  font-size: 1.15rem;
  margin-bottom: 2px;
}
/********************************
  ANIMATIONS & MICROINTERACTIONS
*********************************/
.card, .testimonial-card, .feature-item {
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover, .feature-item:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 40px rgba(39,66,129, .10); }
.testimonial-card:hover { box-shadow: 0 10px 38px rgba(170,201,67,.13); }

/********************************
     VISUAL HIERARCHY & SPACING
*********************************/
.section + .section {
  margin-top: 0;
}
.content-wrapper :not(:last-child) { margin-bottom: 0; } /* We'll use gap for spacing */
/* Utility spacing class for 20px+ every card */
.card, .testimonial-card, .feature-item {
  margin-bottom: 24px;
}
.feature-grid > div:not(:last-child), .content-grid > div:not(:last-child) {
  margin-right: 0;
}

/********************************
    ACCESSIBILITY (FOCUS)
*********************************/
a:focus, button:focus, .cta:focus {
  outline: 2px solid #AAC943;
  outline-offset: 2px;
}

/********************************
 CSS VARIABLES Fallbacks
*********************************/
:root {
  --color-primary: #274281;
  --color-secondary: #AAC943;
  --color-accent: #F5F8FA;
}

/* END OF STYLE */
