/* --- 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F1F4F8;
  color: #213B59;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul, ol {
  padding-left: 24px;
}
a {
  color: #5CB8C5;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #213B59;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
}

/* --- BRAND FONTS (Montserrat+OpenSans via GoogleFonts recommended) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- HEADER --- */
header {
  background: #fff;
  border-bottom: 3px solid #5CB8C5;
  box-shadow: 0 2px 8px rgba(33,59,89,0.06);
  padding: 0;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
header a img {
  height: 48px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #213B59;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.2s;
  padding: 8px 6px;
}
header nav a:hover, header nav a.active {
  color: #5CB8C5;
}

/* CTA PRIME/SECONDARY */
.cta-primary {
  background: #5CB8C5;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  padding: 13px 28px;
  border-radius: 40px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  font-size: 18px;
  text-shadow: 0 1px 2px rgba(33,59,89,0.10);
  box-shadow: 0 4px 14px rgba(92,184,197,0.15);
  border: none;
  display: inline-block;
  margin-left: 16px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #213B59;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(33,59,89,0.19);
}
.cta-secondary {
  background: #213B59;
  color: #fff !important;
  border-radius: 40px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 26px;
  font-size: 16px;
  border: 2px solid #213B59;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  margin-top: 8px;
  margin-bottom: 10px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #fff;
  color: #213B59 !important;
  border-color: #5CB8C5;
}

/* --- MOBILE MENU BUTTON + LAYOUT --- */
.mobile-menu-toggle {
  display: none;
  background: #5CB8C5;
  color: #fff;
  font-size: 32px;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.22s, color 0.22s, box-shadow 0.19s;
  z-index: 1012;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #213B59;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #213B59;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  z-index: 2000;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.7,.24,.37,1.34), opacity 0.22s;
  padding: 36px 32px 24px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  color: #5CB8C5;
  background: none;
  border: none;
  align-self: flex-end;
  font-size: 42px;
  margin-bottom: 28px;
  margin-right: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #5CB8C5;
  color: #213B59;
}

/* --- MAIN SECTIONS & FLEX SPACING --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(33, 59, 89, 0.13);
  padding: 32px 24px;
  min-width: 300px;
  flex: 1 1 340px;
  transition: transform 0.16s, box-shadow 0.16s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(33,59,89,0.17);
  transform: translateY(-5px) scale(1.03);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 8px solid #5CB8C5;
  margin-bottom: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(33,59,89,0.07);
  flex-direction: column;
  max-width: 570px;
  transition: box-shadow 0.15s, border-color 0.14s;
}
.testimonial-card:hover {
  border-color: #213B59;
  box-shadow: 0 4px 28px rgba(33,59,89,0.14);
}
.testimonial-details {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #213B59;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FLEX UTILS FOR CONSISTENCY --- */
.flex-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #213B59;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
@media (min-width: 600px) {
  h1, .h1 {
    font-size: 48px;
  }
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 4px;
  color: #213B59;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #5CB8C5;
  margin-bottom: 3px;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #213B59;
  font-weight: 700;
  font-size: 16px;
}
p, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  margin-bottom: 13px;
  color: #213B59;
  letter-spacing: 0.015em;
}
@media (min-width: 600px) {
  h2, .h2 {
    font-size: 32px;
  }
  h3, .h3 {
    font-size: 24px;
  }
}
strong {
  font-weight: 900;
  color: #213B59;
}

/* --- ICONS --- */
img[alt^='icon-'] {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

/* --- FEATURE GRID / ROWS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  min-width: 230px;
  flex: 1 1 280px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(33,59,89,0.08);
  padding: 24px 18px 18px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.12s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px rgba(92,184,197,0.23);
  transform: translateY(-7px) scale(1.02);
}
.benefits-row, .quality-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.benefits-row > div, .quality-row > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(33,59,89,0.05);
  min-width: 180px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.benefits-row > div img, .quality-row > div img {
  width: 36px; height: 36px; margin-bottom: 7px;
}

/* --- SPECIALS --- */
.certifications, .quality-seal, .eco-info, .hygiene-standards, .map-hint, .contact-hint {
  background: #5CB8C5;
  color: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  box-shadow: 0 4px 18px rgba(92,184,197,0.16);
}
.certifications ul {
  margin-top: 12px;
}
.certifications img {
  width: 30px; vertical-align: middle; margin-right: 7px; margin-top: -2px;
}
.quality-seal {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
}
.quality-seal img {
  width: 36px;
  height: 36px;
}
.confirmation-message {
  background: #e9f7fb;
  color: #213B59;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(92,184,197,0.13);
  padding: 28px 30px;
  font-size: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
}

/* --- FORMS --- */
input, select, textarea {
  background: #fff;
  border: 2px solid #5CB8C5;
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 16px;
  margin-bottom: 18px;
  color: #213B59;
  width: 100%;
  transition: border-color 0.16s;
}
input:focus, select:focus, textarea:focus {
  border-color: #213B59;
}

/* --- FOOTER --- */
footer {
  background: #213B59;
  color: #fff;
  padding: 40px 0 0 0;
  position: relative;
  box-shadow: 0 -2px 16px rgba(33,59,89,0.09);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #5CB8C5;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 6px 4px;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #5CB8C5;
  color: #213B59;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 15px;
  align-items: flex-start;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  color: #fff;
  font-size: 15px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  filter: brightness(0) invert(1);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .container { max-width: 98vw; }
  .feature-grid, .benefits-row, .quality-row, .footer-contact { flex-wrap: wrap; }
  .feature-grid > div, .benefits-row > div, .quality-row > div { min-width: 170px; flex: 1 1 220px; }
}
@media (max-width: 900px) {
  header nav { gap: 15px; }
}
@media (max-width: 800px) {
  .feature-grid, .benefits-row, .quality-row { gap: 14px; }
  .feature-grid > div, .benefits-row > div, .quality-row > div { min-width: 145px; flex: 1 1 180px; }
  .footer-contact { flex-direction: column; gap: 2px; }
}
@media (max-width: 768px) {
  .container { max-width: 98vw; padding-left: 12px; padding-right: 12px; }
  .content-grid, .feature-grid, .benefits-row, .quality-row, .footer-contact { flex-direction: column; gap: 18px; }
  .content-grid > *, .feature-grid > div, .benefits-row > div, .quality-row > div { min-width: unset; flex: 1 1 100%; }
  .testimonial-card { max-width: 100%; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .card-container { flex-direction: column; }
  footer .container { flex-direction: column; gap: 28px; }
  .footer-nav { flex-direction: column; gap: 10px; }
  section, .section { padding: 27px 10px; }
  h1, .h1 { font-size: 32px; }
  h2, .h2 { font-size: 22px; }
  h3, .h3 { font-size: 18px; }
}
@media (max-width: 700px) {
  header .container { flex-direction: row; gap: 4px; }
  header nav { display: none; }
  .mobile-menu-toggle { display: flex !important; margin-left: auto; align-items: center; justify-content: center; }
}
@media (min-width: 701px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #213B59;
  color: #fff;
  z-index: 9500;
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 -2px 20px rgba(33,59,89,0.14);
  font-size: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.01em;
  animation: fadeInCookie 0.8s cubic-bezier(.4,.11,.58,1.18);
}
@keyframes fadeInCookie {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  border-radius: 50px;
  border: none;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  padding: 10px 24px;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: 0 2px 10px rgba(92,184,197,0.10);
  transition: background 0.17s, color 0.17s;
}
.cookie-banner .accept {
  background: #5CB8C5;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #213B59;
}
.cookie-banner .reject {
  background: #fff;
  color: #213B59;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #5CB8C5;
  color: #fff;
}
.cookie-banner .settings {
  background: none;
  border: 2px solid #5CB8C5;
  color: #5CB8C5;
  font-weight: 700;
  padding: 10px 18px;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #5CB8C5;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; padding: 16px 7px 12px 7px; gap: 12px; font-size: 15px; }
  .cookie-banner .cookie-buttons { flex-direction: column; gap: 7px; }
}

/* --- Cookie Settings Modal --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,59,89,0.75);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.28s;
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 64px rgba(33,59,89,0.24);
  width: 90vw;
  max-width: 410px;
  padding: 40px 30px 26px 30px;
  color: #213B59;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  animation: slideInCookieModal 0.28s cubic-bezier(.9,-0.07,.21,.98);
}
@keyframes slideInCookieModal {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #213B59;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F1F4F8;
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 10px;
}
.cookie-category.essential {
  opacity: 0.85;
}
.cookie-category label {
  font-size: 15px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #213B59;
  font-weight: 700;
}
.cookie-switch {
  position: relative;
  width: 44px;
  height: 26px;
  display: flex;
  align-items: center;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 44px;
  height: 26px;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: all;
  cursor: pointer;
}
.cookie-switch .slider {
  width: 44px;
  height: 26px;
  background: #5CB8C5;
  border-radius: 13px;
  transition: background 0.15s;
  position: relative;
}
.cookie-switch input:checked + .slider {
  background: #213B59;
}
.cookie-switch .slider:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.15s;
}
.cookie-switch input:checked + .slider:before {
  left: 22px;
  background: #5CB8C5;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: #213B59;
  font-size: 30px;
  cursor: pointer;
  z-index: 2;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #5CB8C5;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal-footer button {
  border-radius: 50px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  background: #5CB8C5;
  color: #fff;
  font-size: 17px;
  padding: 10px 26px;
  border: none;
  box-shadow: 0 1px 8px rgba(92,184,197,0.10);
  transition: background 0.14s, color 0.14s;
}
.cookie-modal-footer button:hover, .cookie-modal-footer button:focus {
  background: #213B59;
  color: #fff;
}

/* --- ACCESSIBILITY & HIGH CONTRAST IN TESTIMONIALS --- */
.testimonial-card p, .testimonial-details, .testimonial-card strong {
  color: #213B59;
}
.testimonial-card span {
  color: #FFD600; /* Gold for stars */
  font-size: 19px;
  letter-spacing: 3px;
}

/* --- GENERAL UTILS --- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.rounded { border-radius: 8px !important; }
.shadow { box-shadow: 0 3px 14px rgba(33,59,89,0.08); }
.text-center { text-align: center !important; }
.bold { font-weight: 900 !important; }

/* --- END --- */
