/* ===================================================
   EauClair Média — style.css
   Tech Futuristic · Mobile First · Flexbox Only
   =================================================== */
/* ======= 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 {
  scroll-behavior: smooth;
  background: #10192b;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #10192b 0%, #19556B 80%, #10192b 100%);
  color: #F3F4F6;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: var(--accent, #758D4B);
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #C3FF6B;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font: inherit;
  outline: none;
  border: none;
}
button {
  cursor: pointer;
  background: none;
}
:root {
  --primary: #19556B;
  --primary-light: #21759b;
  --secondary: #F3F4F6;
  --secondary-dark: #1b2438;
  --accent: #758D4B;
  --brand-dark: #10192b;
  --brand-neon: #C3FF6B;
  --card-bg: #162536;
  --border: #214356;
  --input-bg: #172B3C;
  --shadow: 0 4px 32px 0 rgba(34,71,123,0.10);
}

/* ======= TYPOGRAPHY ======= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 {
  font-size: 2rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px var(--brand-neon, #C3FF6B50);
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--brand-neon, #C3FF6B);
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--secondary, #F3F4F6);
}
.subheadline, .tagline {
  color: #C3FF6B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.015em;
  margin-bottom: 18px;
}
p, blockquote {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #F3F4F6;
}
blockquote {
  color: #10192b;
  background: #C3FF6B;
  border-radius: 12px;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 12px;
  padding: 16px 20px;
}
cite {
  font-size: 1rem;
  font-weight: bold;
  color: #19556B;
  margin-left: 4px;
}
label {
  font-size: 1rem;
  color: #C3FF6B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
}

/* ======= LAYOUT & CONTAINER ======= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 0 0 0;
  gap: 24px;
}
.section,
section:not(.hero):not(.cta-section) {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width:768px){
  .section,
  section:not(.hero):not(.cta-section) {
    margin-bottom: 40px;
    padding: 30px 8px;
  }
}

/* ======= HEADER & NAVIGATION ======= */
header {
  width: 100%;
  background: rgba(16,25,43,0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 2px 18px 0 rgba(34,86,123,0.06);
  transition: background 0.25s cubic-bezier(.4,0,.2,1);
}
.logo-header {
  flex-shrink: 0;
  margin-left: 24px;
  display: flex;
  align-items: center;
  z-index: 112;
}
.logo-header img {
  height: 48px;
  filter: drop-shadow(0 0 20px #758D4B70);
  transition: filter 0.3s cubic-bezier(.4,0,.2,1);
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-left: 24px;
}
.main-nav a {
  color: var(--secondary, #F3F4F6);
  font-size: 1rem;
  position: relative;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.22s, background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #C3FF6B;
  background: #213d47;
}
.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(90deg,#19556B 0% , #758D4B 90%);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 30px;
  border: 0;
  font-weight: 700;
  transition: background 0.2s, box-shadow .25s, color .25s, transform 0.16s;
  box-shadow: 0 2px 12px 0 #19556B40;
  margin-left: 22px;
  margin-right: 24px;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #758D4B 0%, #C3FF6B 100%);
  color: #19556B;
  box-shadow: 0 0 24px #C3FF6B55, 0 2px 14px #758D4B45;
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  header {
    flex-wrap: wrap;
    padding: 10px 0;
  }
  .cta-button {
    padding: 10px 24px;
    font-size: 0.98rem;
    margin-left: 12px;
    margin-right: 10px;
  }
  .logo-header {
    margin-left: 12px;
  }
}

/* ======= BURGER MENU (MOBILE NAVIGATION) ======= */
.mobile-menu-toggle {
  position: fixed;
  top: 18px;
  right: 16px;
  z-index: 120;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  background: #1b2438;
  color: #C3FF6B;
  border: 1.5px solid #758D4B;
  box-shadow: 0 2px 8px #10192b50;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.16s, box-shadow 0.23s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #C3FF6B;
  color: #19556B;
  box-shadow: 0 0 26px #C3FF6B70;
}
@media (max-width: 991px) {
  .main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* MOBILE MENU OVERLAY  */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 140;
  background: rgba(16,25,43,0.91);
  backdrop-filter: blur(2px);
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
  transform: translateX(-100vw);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 22px 0 0 22px;
  background: none;
  border: none;
  color: var(--brand-neon);
  font-size: 2rem;
  align-self: flex-start;
  z-index: 141;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: background 0.2s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #C3FF6B;
  color: #19556B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0 0 34px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  padding: 8px 0;
  border-radius: 8px;
  transition: color 0.18s, background 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #C3FF6B;
  background: #214356;
}
@media (max-width:655px){
  .mobile-nav{
    margin-left: 18px;
  }
  .mobile-menu-close {
    margin-left: 12px;
  }
}

/* ======= HERO SECTION ======= */
.hero {
  min-height: 48vh;
  background: linear-gradient(115deg, #162536 75%, #758D4B 300%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding: 60px 0 30px 0;
  border-bottom: 2.5px solid #758D4B20;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
  padding-top: 0px;
}
.hero h1 {
  font-size: 2.2rem;
  text-align: center;
  color: #C3FF6B;
  text-shadow: 0 2px 18px #758D4B90, 0 2px 40px #C3FF6B30;
}
.hero .subheadline {
  font-size: 1.13rem;
  text-align: center;
}
@media (max-width: 600px) {
  .hero {
    padding: 24px 2vw 14px 2vw;
  }
  .hero .content-wrapper {
    padding-top: 0;
    gap: 12px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
}

/* ======= FEATURES GRID & CARDS ======= */
.features .content-wrapper {
  gap: 30px;
}
.feature-grid,
.category-grid,
.reasons-grid,
.value-grid,
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid li,
.category-grid > div,
.reasons-grid li,
.value-grid li,
.tips-grid > div {
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: 0 4px 24px 0 #19556B30;
  padding: 22px 18px 18px 18px;
  flex: 1 1 230px;
  min-width: 200px;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  border: 1.7px solid #19556B35;
  transition: box-shadow 0.24s, border 0.17s, transform 0.18s;
}
.feature-grid li:hover,
.category-grid > div:hover,
.value-grid li:hover,
.tips-grid > div:hover {
  box-shadow: 0 2px 36px 0 #C3FF6B55, 0 2px 18px #758D4B26;
  border: 2px solid #C3FF6B;
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}
.feature-grid img, .category-grid img, .value-grid img, .reasons-grid img, .tips-grid img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 10px #C3FF6B55) drop-shadow(0 4px 9px #758D4B30);
}
.feature-grid h3, .category-grid h3, .reasons-grid h3, .value-grid strong {
  color: #C3FF6B;
  font-size: 1.08rem;
  font-weight: bold;
  margin-top: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 950px){
  .feature-grid,
  .category-grid,
  .reasons-grid,
  .value-grid,
  .tips-grid{
    gap: 14px;
  }
  .feature-grid li,
  .category-grid > div,
  .reasons-grid li,
  .value-grid li,
  .tips-grid > div {
    min-width: 145px;
    max-width: 98vw;
    padding: 18px 8px 16px 12px;
  }
}
@media (max-width:600px){
  .feature-grid,
  .category-grid,
  .reasons-grid,
  .value-grid,
  .tips-grid{
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
}

/* ======= CARD & CARD-CONTAINER ======= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: 0 4px 24px 0 #19556B1A;
  padding: 0;
  transition: box-shadow 0.2s, border 0.17s;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 20px 18px 14px 18px;
}

/* ======= SERVICES LIST & ORDERING STEPS ======= */
.services-list,
.service-list,
.ordering-steps,.article-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 14px;
}
.services-list li,
.service-list li,
.ordering-steps li, .article-list li {
  background: rgba(25,85,107,0.24);
  padding: 16px 16px 12px 22px;
  border-radius: 12px;
  color: #fff;
  position: relative;
  border: 1.1px solid #758D4B36;
  font-size: 1rem;
  margin-bottom: 4px;
  line-height: 1.5;
  transition: background 0.15s;
}
.services-list li strong,
.service-list li strong,
.ordering-steps li strong {
  color: #C3FF6B;
  font-weight: 700;
}
.services-list li .price, .service-list li .price {
  float: right;
  color: #758D4B;
  font-size: 0.96rem;
  font-weight: 700;
}
.ordering-steps li strong:first-child {
  margin-right: 7px;
}
.ordering-steps {
  padding-left: 5px;
}

/* ======= TESTIMONIALS ======= */
.testimonials .content-wrapper {
  gap: 22px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F3F4F6;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 #19556B18;
  border: 1.5px solid #758D4B22;
  color: #10192b;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  flex-wrap: wrap;
}
.testimonial-card blockquote {
  background: transparent;
  color: #19556B;
  margin-bottom: 0;
  font-style: italic;
  font-size: 1.08rem;
  padding: 0;
}
.testimonial-card cite {
  color: #758D4B;
  font-size: 1rem;
  font-style: normal;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 10px;
  }
}

/* ======= CTA SECTION ======= */
.cta-section {
  background: linear-gradient(90deg,#19556B 60% , #C3FF6B 240%);
  border-radius: 18px;
  box-shadow: 0 2px 36px #758D4B22;
  margin-bottom: 60px;
  padding: 44px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section .content-wrapper {
  align-items: center;
  gap: 13px;
}
.cta-section h2 {
  color: #fff;
  text-shadow: 0 3px 22px #758D4B60;
  margin-bottom: 10px;
}

/* ======= CONTACT INFO & FORM ======= */
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 14px;
}
.contact-info li strong {
  color: #C3FF6B;
  font-weight: 700;
}
.map-neutral {
  background: #172B3C;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 8px;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 2px 14px #19556B18;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}
.contact-form input[type=text], 
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
  background: var(--input-bg);
  padding: 13px 14px;
  border-radius: 8px;
  font-size: 1rem;
  color: #b7e1fc;
  border: 1.5px solid #19556B40;
  transition: border 0.18s;
}
.contact-form input:focus, 
.contact-form textarea:focus {
  border: 2px solid #C3FF6B;
  color: #fff;
}
.contact-form button[type=submit] {
  background: linear-gradient(90deg,#758D4B 0%, #C3FF6B 100%);
  color: #19556B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  padding: 13px;
  border-radius: 26px;
  font-weight: bold;
  transition: background 0.2s, color 0.18s, box-shadow 0.2s, transform 0.14s;
  box-shadow: 0 1px 8px #758D4B25;
  border: none;
}
.contact-form button[type=submit]:hover, .contact-form button[type=submit]:focus {
  background: linear-gradient(90deg,#19556B 0%, #758D4B 100%);
  color: #C3FF6B;
  box-shadow: 0 2px 18px #C3FF6B50;
  transform: translateY(-2px) scale(1.025);
}

/* ======= LEGAL / TEXT SECTIONS ======= */
.legal .text-section {
  background: #162536;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 18px;
  color: #b7e1fc;
  font-size: 1.05rem;
  box-shadow: 0 2px 14px #19556B14;
  border: 1.2px solid #19556B30;
}
.text-section {
  margin-bottom: 20px;
}
.text-section h2, .community-impact h3 {
  margin-top: 0;
  color: #C3FF6B;
}

/* ==== SECTION AND FLEX STRUCTURE PATTERNS ==== */
.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;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/* ======= FOOTER ======= */
footer {
  width: 100%;
  background: #10192b;
  color: #C3FF6B;
  border-top: 2px solid #758D4B22;
  box-shadow: 0 -2px 26px #19556B22;
  padding: 40px 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 64px;
  font-size: 1rem;
  align-items: center;
}
.footer-logo {
  margin-bottom: 10px;
}
.footer-logo img {
  height: 38px;
  filter: drop-shadow(0 0 15px #C3FF6B20);
}
.footer-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 0 0 14px 0;
}
.footer-nav a {
  color: #C3FF6B;
  font-family: 'Montserrat';
  font-size: 1rem;
  opacity: 0.8;
  padding: 3px 9px;
  border-radius: 5px;
  transition: color 0.18s, background 0.15s;
}
.footer-nav a:hover {
  color: #10192b;
  background: #C3FF6B;
}
.footer-contact {
  text-align: center;
  color: #F3F4F6;
  line-height: 1.5;
}
.footer-contact address {
  font-style: normal;
  color: #C3FF6B;
  font-size: 1.02rem;
  margin-bottom: 7px;
}
footer p {
  color: #758D4B;
}
@media (max-width: 768px) {
  footer {
    padding: 26px 0 10px 0;
    font-size: 0.94rem;
  }
  .footer-nav {
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.92rem;
  }
}

/* ===== COOKIE BANNER (FIXED) & MODAL ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #162536;
  color: #fff;
  box-shadow: 0 -2px 24px #10192b77;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 22px 24px 17px 24px;
  z-index: 2000;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(.5,1,.3,1);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 9px;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 7px;
}
.cookie-button {
  padding: 9px 23px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 20px;
  font-weight: bold;
  border: none;
  background: #C3FF6B;
  color: #19556B;
  box-shadow: 0 2px 8px #C3FF6B33;
  margin: 0 7px;
  transition: background 0.18s, color 0.18s, box-shadow 0.13s;
}
.cookie-button.reject {
  background: #19556B;
  color: #C3FF6B;
  border: 1.4px solid #C3FF6B;
}
.cookie-button.settings {
  background: #758D4B;
  color: #fff;
}
.cookie-button:hover, .cookie-button:focus {
  background: #C3FF6B;
  color: #19556B;
  box-shadow: 0 0 16px #C3FF6B70;
}
.cookie-button.reject:hover, .cookie-button.reject:focus {
  background: #C3FF6B;
  color: #19556B;
  border-color: #758D4B;
}
.cookie-button.settings:hover, .cookie-button.settings:focus {
  background: #C3FF6B;
  color: #758D4B;
}
/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 60px;
  transform: translate(-50%,80px) scale(0.96);
  min-width: 320px;
  max-width: 98vw;
  width: 430px;
  background: #172B3C;
  color: #fff;
  z-index: 2100;
  border-radius: 18px;
  box-shadow: 0 6px 36px #758D4B90;
  padding: 30px 26px 18px 26px;
  opacity: 0;
  pointer-events: none;
  transition: 
    opacity 0.23s,
    transform 0.38s cubic-bezier(.18,1,.22,.99);
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,0) scale(1);
}
.cookie-modal h3 {
  color: #C3FF6B;
  font-size: 1.16rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #10192b;
  padding: 10px 16px;
  border-radius: 12px;
  color: #C3FF6B;
  font-size: 1rem;
}
.cookie-option input[type=checkbox] {
  accent-color: #C3FF6B;
  width: 16px;
  height: 16px;
  margin-right: 2px;
}
.cookie-option.essential {
  opacity: 0.6;
  font-style: italic;
}
.cookie-modal .modal-actions {
  margin-top: 21px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-button {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width:550px) {
  .cookie-modal {
    width: 97vw;
    min-width: 0;
    padding: 18px 5vw 13px 5vw;
    left: 2vw;
    transform: translate(0,60px) scale(.96);
  }
}

/* ======= SEARCH BAR (Catalogue) ======= */
.search-bar {
  margin: 16px 0 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-bar input[type=text] {
  background: var(--input-bg);
  color: #b7e1fc;
  border-radius: 9px;
  padding: 11px 13px;
  font-size: 1rem;
  width: 320px;
  max-width: 65vw;
  border: 1.4px solid #19556B22;
  transition: border 0.16s;
}
.search-bar input[type=text]:focus {
  border: 2px solid #C3FF6B;
  color: #fff;
}
.search-bar button {
  background: linear-gradient(90deg, #758D4B 0%, #C3FF6B 140%);
  color: #19556B;
  border-radius: 22px;
  font-weight: bold;
  font-size: 1.03rem;
  padding: 11px 22px;
  box-shadow: 0 2px 8px #758D4B22;
  border: none;
  transition: background 0.13s, color 0.10s, transform 0.11s;
}
.search-bar button:hover, .search-bar button:focus {
  background: #C3FF6B;
  color: #758D4B;
  transform: translateY(-2px) scale(1.06);
}
@media (max-width:500px) {
  .search-bar input[type=text] {
    width: 75vw;
    max-width: 100%;
  }
  .search-bar button {
    padding: 10px 11vw;
  }
}

/* ======= GENERAL UTILITIES ======= */
::-webkit-scrollbar {
  width: 9px;
  background: #162536;
}
::-webkit-scrollbar-thumb {
  background: #19556B;
  border-radius: 10px;
}
@media (max-width:480px){
  h1 {
    font-size: 1.2rem;
  }
  h2 {
    font-size:1.06rem;
  }
  .section {
    margin-bottom: 32px;
    padding: 18px 3px;
  }
}

/* ======= Z-INDEX SAFETY ======= */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 100;
}

/* ======= ANIMATIONS & MICRO-INTERACTIONS ======= */
.cta-button, .cookie-button, .card, .feature-grid li, .mobile-menu, .cookie-modal {
  transition: all 0.2s cubic-bezier(.42,0,.35,1);
}
.card:hover {
  box-shadow: 0 2px 36px 0 #C3FF6B33, 0 2px 22px #758D4B20;
  border: 2px solid #C3FF6B;
}
input[type=text], input[type=email], textarea {
  transition: border 0.14s, color 0.18s;
}

/* ======= MEDIA QUERIES FOR RESPONSIVE MOBILE ======= */
@media (max-width:700px){
  h1 { font-size:1.18rem; }
  .content-wrapper { gap: 10px; padding: 18px 0 0 0; }
  .section, section:not(.hero):not(.cta-section){ padding:18px 2px; }
}

/* ===== Spacing safety for all flex/card patterns ===== */
.card-container { gap:24px; }
.card { margin-bottom:20px; }
.content-grid, .text-image-section { gap:20px; }
.section, section { margin-bottom:60px; padding:40px 20px; }
.feature-item { gap:15px; }
.testimonial-card { gap:20px; margin-bottom:20px; padding:20px; }

/* ======= END ======= */