/* Lush Stocks Modern Bold CSS - style.css */
/* ======================================================= */
/* ============ CSS RESET & NORMALIZE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: #F7F7F2; color: #18344D; font-family: 'Roboto', Arial, sans-serif; line-height: 1.6; min-height: 100vh; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
img[alt] { font-size: 0; }
a { color: #36A085; text-decoration: none; transition: color 0.18s; }
a:hover, a:focus { color: #18344D; }
ul, ol { list-style: none; padding-left: 0; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; line-height: 1.2; color: #18344D; text-wrap: balance; }
h1 { font-size: 2.5rem; letter-spacing: -2px; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
blockquote { font-style: italic; quotes: none; margin: 0 0 8px 0; }

/* ======================================================= */
/* ================== LAYOUT STRUCTURE =================== */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

main { min-height: 60vh; }
.section { margin-bottom: 60px; padding: 40px 20px; background: #fff; border-radius: 20px; box-shadow: 0 2px 18px 0 rgba(24,52,77,0.04); }

.content-wrapper,
.card-container,
.card-grid,
.content-grid,
.service-list,
.service-cards,
.benefit-grid,
.sector-grid,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-wrapper { flex-direction: column; }

.card-container, .card-grid, .content-grid, .service-list, .service-cards, .benefit-grid, .sector-grid, .feature-list {
  gap: 24px;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .container { padding: 0 10px; }
  .section { padding: 28px 9px; }
}
@media (max-width: 768px) {
  .section { margin-bottom: 32px; padding: 22px 7px; }
  .container { padding: 0 7px; }
  .content-wrapper,
  .card-container,
  .card-grid,
  .content-grid,
  .service-list,
  .service-cards,
  .benefit-grid,
  .sector-grid,
  .feature-list {
    flex-direction: column;
    gap: 18px;
  }
}

.text-section { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
}

.map-embed { background: #e9f3ef; border-radius: 13px; padding: 20px; font-size: 1rem; }

/* =================================================== */
/* ================= HEADER & NAV ==================== */
header { background: #fff; border-bottom: 3px solid #18344D20; padding: 0; }
header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 20px; min-height: 82px; }
header nav { display: flex; align-items: center; gap: 18px; }
header nav a { font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; color: #18344D; text-transform: uppercase; font-size: 1rem; padding: 8px 0; border-bottom: 3px solid transparent; position: relative; transition: color 0.18s, border-bottom 0.23s; }
header nav a:hover, header nav a:focus { color: #36A085; border-bottom: 3px solid #36A085; }
header .btn-primary { margin-left: 14px; }

/* Hamburger Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #18344D;
  cursor: pointer;
  padding: 7px;
  margin-left: 13px;
  z-index: 1102;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover { color: #36A085; }

@media (max-width: 1110px) {
  .container { max-width: 99vw; }
  header nav { gap: 12px; }
  header .btn-primary { margin-left: 0; }
}
@media (max-width: 900px) {
  header .btn-primary { display: none; }
}
@media (max-width: 820px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 420px) {
  header .container img { max-width: 135px; }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; width: 100vw;
  height: 100dvh;
  background: rgba(24,52,77,0.97);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.77,0,.18,1);
  z-index: 2000;
  padding: 0;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  background: none;
  color: #FFF;
  border: none;
  font-size: 2.3rem;
  margin: 36px 24px 14px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover { color: #36A085; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-right: 24px;
  margin-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 2px;
  transition: color 0.16s, background 0.18s;
  padding: 15px 0 9px 0;
  border-bottom: 2px solid transparent;
  border-radius: 0 0 6px 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #36A085;
  background: #fff2;
  border-bottom: 2.5px solid #36A085;
}

/* ================= BUTTONS ======================= */
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  background: #36A085;
  color: #fff;
  padding: 12px 32px;
  border-radius: 12px;
  border: 0;
  box-shadow: 0 4px 28px 0 #18344D0c;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.18s, box-shadow 0.22s, transform 0.16s;
  display: inline-block;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: #18344D;
  color: #fff;
  box-shadow: 0 7px 22px 0 #18344D29;
  transform: translateY(-2px) scale(1.04);
}

/* ======================================================= */
/* ================== FLEX UTILS & CARDS ================= */
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 #18344D14;
  margin-bottom: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 11px;
  min-width: 235px;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.card img, .feature-grid img, .benefit-grid img, .sector-grid img, .feature-list img, .value-bullets img, .testimonial-card img, .text-section img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  border-radius: 17px;
  box-shadow: 0 2px 8px 0 #36A08514;
}

.feature-grid, .benefit-grid, .sector-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 14px;
}
.feature-grid > div, .benefit-grid > div, .sector-grid > div, .feature-list > div, .service-list > div, .service-cards > div {
  background: #F7F7F2;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 #36A08510;
  padding: 22px 18px 22px 22px;
  min-width: 210px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  transition: box-shadow 0.22s, transform 0.19s;
  margin-bottom: 20px;
}
.feature-grid > div:hover, .benefit-grid > div:hover, .sector-grid > div:hover, .feature-list > div:hover, .service-cards > div:hover {
  box-shadow: 0 8px 36px 0 #18344D18;
  transform: translateY(-3px) scale(1.025);
}

@media (max-width: 768px) {
  .feature-grid > div, .benefit-grid > div, .sector-grid > div, .feature-list > div, .service-cards > div {
    min-width: 110px;
    padding: 17px 9px 17px 11px;
  }
}

/*********** Testimonial Cards ***********/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 28px 0 #18344D16;
  gap: 14px;
  margin-bottom: 20px;
  padding: 30px 22px 22px 22px;
  border-left: 6px solid #36A085;
  transition: box-shadow 0.22s, border 0.21s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 #36A08522;
  border-left: 6px solid #18344D;
}
.testimonial-card blockquote {
  color: #18344D;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 6px;
  line-height: 1.4;
}
.testimonial-card span {
  font-size: 1rem;
  color: #36A085;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/************ List Bullets ************/
ul.benefit-bullets, ul.value-bullets, ul.sector-benefits, ul.resource-list, ul.guide-descriptions {
  margin-top: 16px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.06rem;
  color: #18344D;
}
ul.benefit-bullets li, ul.value-bullets li, ul.sector-benefits li, ul.resource-list li, ul.guide-descriptions li {
  padding-left: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
}
ul.value-bullets img, ul.sector-benefits img, ul.resource-list img { margin-right: 10px; width: 32px; height: 32px; }

/********** Insight preview cards *********/
.insight-preview {
  background: #36A08512;
  border-radius: 13px;
  padding: 21px 16px;
  margin-bottom: 18px;
  border-left: 4px solid #36A085;
  box-shadow: 0 3px 18px 0 #36A08512;
  transition: box-shadow 0.17s;
}
.insight-preview:hover {
  box-shadow: 0 8px 20px 0 #36A08524;
}

/********* Content/Section Spacing *********/
.section, .card, .feature-grid > div, .benefit-grid > div, .sector-grid > div, .testimonial-card, .insight-preview {
  margin-bottom: 20px;
}

/********* Map Embed *********/
.map-embed { font-size: 1.06rem; margin-top: 14px; }

/* =================================================== */
/* =================== FOOTER ======================== */
footer {
  background: #18344D;
  color: #fff;
  padding: 38px 0 0 0;
  margin-top: 70px;
}
footer .container { display: flex; flex-direction: column; gap: 18px; align-items: center; }
footer nav { display: flex; gap: 28px; margin-bottom: 14px; }
footer nav a { color: #36A085; font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; text-transform: uppercase; font-size: 1rem; letter-spacing: 1.2px; }
footer nav a:hover { color: #fff; }
.brand-footer { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.brand-footer img { width: 38px; height: 38px; border-radius: 12px; background: #fff; padding: 5px; margin-right: 2px; }
.brand-footer span { font-size: 1rem; color: #fff; font-weight: 500; letter-spacing: 0.03em; max-width: 100vw; }
@media (max-width: 600px) {
  footer nav { gap: 11px; flex-wrap: wrap; font-size: .92rem; }
  .brand-footer span { font-size: .9rem; }
}

/* ============================================================ */
/* =============== COOKIE CONSENT BANNER ======================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #18344D;
  color: #fff;
  z-index: 3500;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 20px 14px;
  box-shadow: 0 -5px 24px 0 #18344D55;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  transition: transform 0.35s cubic-bezier(.7,0,.21,1);
}
.cookie-banner.hide { transform: translateY(110%); }
.cookie-banner-message { font-size: 1.05rem; font-family: 'Roboto', Arial, sans-serif; font-weight: 500; max-width: 440px; }
.cookie-banner-buttons { display: flex; gap: 13px; align-items: center; }
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  padding: 9px 20px;
  cursor: pointer;
  margin-right: 0;
  transition: background 0.17s, color 0.16s, box-shadow 0.12s;
}
.cookie-btn.accept { background: #36A085; color: #fff; }
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #fff; color: #36A085; }
.cookie-btn.reject { background: #fff; color: #18344D; border: 2px solid #36A085; }
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #36A085; color: #fff; }
.cookie-btn.settings { background: transparent; color: #36A085; border: 2px solid #36A085; }
.cookie-btn.settings:hover, .cookie-btn.settings:focus { background: #36A085; color: #fff; }

/* Cookie Settings Modal */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: #18344Dcc;
  z-index: 3600;
  animation: fadeInB 0.3s;
}
.cookie-modal-backdrop.open { display: flex; justify-content: center; align-items: center; }
@keyframes fadeInB { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  color: #18344D;
  max-width: 440px;
  width: 90vw;
  border-radius: 18px;
  padding: 38px 28px 28px 28px;
  box-shadow: 0 7px 58px 0 #18344D2a;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: modalBump 0.38s cubic-bezier(.65,-0.37,.08,1.63);
}
@keyframes modalBump { from { transform: scale(.8); opacity:0; } to { transform: scale(1); opacity:1; } }
.cookie-modal-close {
  position: absolute;
  right: 21px; top: 13px;
  background: none;
  color: #18344D;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal-close:hover { color: #36A085; }
.cookie-modal h3 {
  font-size: 1.28rem; margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.12rem;
  margin-bottom: 7px;
}
.cookie-switch {
  position: relative;
  width: 40px; height: 22px;
  background: #e7e7e7;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-switch input { display: none; }
.cookie-switch span {
  display: block;
  width: 18px; height: 18px;
  background: #36A085;
  position: absolute;
  left: 2px; top: 2px;
  border-radius: 50%;
  transition: left 0.18s, background 0.16s;
}
.cookie-switch input:checked + span { left: 20px; background: #18344D; }
.cookie-category label { font-family: 'Roboto', Arial, sans-serif; }
.cookie-essential { color: #18344D; font-weight: 700; }
.cookie-modal-actions { display: flex; gap: 13px; justify-content: flex-end; }

@media (max-width: 490px) {
  .cookie-modal { padding: 22px 7px 13px 8px; }
  .cookie-modal h3 { font-size: 1.1rem; }
}

/* =================================================== */
/* ================= MODERN BOLD: TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #18344D;
}
body, .text-section, .map-embed, p, li, nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}

/* Typography scale */
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
@media (max-width: 900px) {
  h1 { font-size: 2.08rem; }
  h2 { font-size: 1.38rem; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 1.07rem; }
}

/* ================================================ */
/* ======= MICRO-INTERACTIONS & TRANSITIONS ======= */
section a:not(.btn-primary):hover, section a:not(.btn-primary):focus { text-decoration: underline; text-underline-offset: 2px; color: #36A085; }
.card, .feature-grid > div, .benefit-grid > div, .sector-grid > div, .testimonial-card, .insight-preview {
  transition: box-shadow 0.20s, transform 0.17s;
}

/* ================================================ */
/* ======= ACCESSIBILITY & SELECTION ============== */
:focus { outline: 2px solid #36A085; outline-offset: 2px; }
::selection { background: #36A085; color: #fff; }

/* ================================================ */
/* ============ ACCESSORY CLASSES ================= */
.small { font-size: .89rem; letter-spacing: 0.01em; }
.bold { font-weight: bold; }
.text-accent { color: #36A085; }

/* ================================================ */
/* =============== END OF STYLE =================== */
