/* CSS RESET AND 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,
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #FFFFFF;
  color: #176255;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  min-height: 100vh;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #176255;
  line-height: 1.2;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  border-left: 5px solid #F5B841;
  padding-left: 16px;
}
h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
h4 {
  font-size: 1rem;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #176255;
  line-height: 1.6;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
ul li, ol li {
  font-size: 1rem;
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
  color: #16796F;
}
a {
  color: #176255;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4,0,0.2,1);
}
a:hover, a:focus {
  color: #F5B841;
  outline: none;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #FFFFFF;
  border-bottom: 2px solid #ECECEC;
  position: sticky;
  top: 0;
  z-index: 900;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}
header img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.main-nav a {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-bottom 0.22s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F5B841;
  border-bottom: 2px solid #F5B841;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  background: #F5B841;
  border: none;
  color: #16796F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.03rem;
  text-transform: uppercase;
  border-radius: 28px 4px 28px 4px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(245, 184, 65, 0.09);
  letter-spacing: 0.07em;
  margin-left: 10px;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  outline: none;
  border-bottom: 3px solid #ECECEC;
}
.cta:hover, .cta:focus {
  background: #176255;
  color: #FFFFFF;
  box-shadow: 0 3px 12px rgba(22,121,111,0.15);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  padding: 10px 20px;
  background: #F5B841;
  border: none;
  border-radius: 8px;
  color: #176255;
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.2s;
  z-index: 950;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23, 98, 85, 0.94);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.5,0.1,0.25,1);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F5B841;
  font-size: 2.2rem;
  margin: 28px 0 0 18px;
  cursor: pointer;
  align-self: flex-start;
  z-index: 1200;
  transition: color 0.24s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FFFFFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 45px;
  width: 100%;
  gap: 0;
  padding-left: 0;
}
.mobile-nav a {
  color: #F5B841;
  background: none;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  padding: 22px 34px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s, color 0.2s, padding-left 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(245,184,65,0.1);
  color: #FFFFFF;
  padding-left: 44px;
}

/* SHOW BURGER ON MOBILE */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* ENSURE .cta IS VISIBLE */
@media (max-width: 768px) {
  header .cta {
    display: none;
  }
}

/* LAYOUT STRUCTURE */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  position: relative;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  align-items: flex-start;
  max-width: 720px;
  margin: 0 auto;
}

.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: 22px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #ECECEC;
  border-radius: 16px 4px 16px 4px;
  box-shadow: 0 4px 14px rgba(22,121,111,0.09);
  padding: 28px 24px;
  min-width: 246px;
  max-width: 420px;
  flex: 1 1 280px;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 2.5px solid #ECECEC;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 28px rgba(22,121,111,0.19);
  transform: translateY(-4px) scale(1.015);
  border: 2.5px solid #F5B841;
  z-index: 10;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* FEATURES, SERVICES, TESTIMONIALS */
ul.feature-grid, .features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}
ul.feature-grid li, .features-list div {
  background: #FFFFFF;
  border-radius: 14px 4px 14px 4px;
  box-shadow: 0 2px 8px rgba(22,121,111,0.05);
  padding: 18px 16px;
  min-width: 128px;
  min-height: 74px;
  font-size: 1.02rem;
  color: #176255;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #ECECEC;
  flex: 1 1 170px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.18s;
}
ul.feature-grid li:hover,
.features-list div:hover {
  box-shadow: 0 7px 32px rgba(22,121,111,0.13);
  border: 1.5px solid #F5B841;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 6px;
}
.service-item {
  background: #F5F5F5;
  border-radius: 12px 2px 12px 2px;
  box-shadow: 0 3px 12px rgba(22,121,111,0.08);
  border: 1.6px solid #ECECEC;
  padding: 26px 22px 22px 22px;
  width: 240px;
  min-width: 166px;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.18s;
}
.service-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.service-item h3 {
  font-size: 1.03rem;
  color: #176255;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
}
.service-item p {
  font-size: 0.98rem;
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #F5B841;
  letter-spacing: 0.04em;
  margin-top: 8px;
}
.service-item:hover {
  box-shadow: 0 7px 32px rgba(22,121,111,0.15);
  border: 1.6px solid #F5B841;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #ECECEC;
  border-radius: 16px 4px 16px 4px;
  min-width: 260px;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(22,121,111,0.10);
  border: 2px solid #ECECEC;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #176255;
  transition: box-shadow 0.2s, border 0.2s;
}
.testimonial-card strong {
  color: #16796F;
  font-size: 0.92rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  border: 2px solid #F5B841;
  box-shadow: 0 7px 32px rgba(22,121,111,0.16);
}

/* CONTACT */
.contact-info {
  background: #FFFFFF;
  border-radius: 10px 2px 10px 2px;
  box-shadow: 0 2px 12px rgba(22,121,111,0.05);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 1rem;
}
.contact-cta,
.service-cta {
  margin-top: 22px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}

/* FOOTER */
footer {
  width: 100%;
  background: #ECECEC;
  color: #176255;
  font-family: 'Open Sans', Arial, sans-serif;
  border-top: 2px solid #16796F;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-top: 30px;
  margin-bottom: 16px;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-menu a {
  color: #176255;
  font-weight: 600;
  font-size: 0.98rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border 0.2s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #F5B841;
  border-bottom: 2px solid #F5B841;
}
.social-links {
  display: flex;
  gap: 20px;
}
.social-links a img {
  width: 28px;
  height: 28px;
  transition: filter 0.16s, transform 0.18s;
  filter: grayscale(0.25);
}
.social-links a:hover img, .social-links a:focus img {
  filter: grayscale(0) drop-shadow(0 3px 8px #F5B84150);
  transform: scale(1.14);
}
.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.newsletter-signup h3 {
  font-size: 1.04rem;
  color: #16796F;
  font-family: 'Montserrat', Arial, sans-serif;
}
.newsletter-signup p {
  font-size: 0.95rem;
  color: #176255;
  margin-bottom: 0;
}
.footer-bottom {
  padding: 10px 0;
  border-top: 2px solid #ECECEC;
  text-align: center;
  font-size: 0.96rem;
  color: #176255;
  opacity: 0.85;
}

/* STORE-LIST LAYOUT */
.store-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 28px;
}
.store-details {
  background: #F5F5F5;
  border-radius: 10px 2px 10px 2px;
  box-shadow: 0 2px 8px rgba(22,121,111,0.04);
  padding: 18px 22px;
  min-width: 220px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.store-map {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.store-map img {
  width: 94%;
  max-width: 360px;
  min-width: 180px;
  border-radius: 2px 22px 2px 22px;
  border: 2px solid #F5B841;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #16796F;
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 20px 32px;
  z-index: 1300;
  box-shadow: 0 -4px 24px rgba(22,121,111, 0.2);
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(0.46,0.03,0.52,0.96);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner p {
  color: #FFFFFF;
  margin-bottom: 0;
  flex: 1 1 300px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  background: #F5B841;
  color: #16796F;
  border: none;
  border-radius: 8px 4px 8px 4px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 18px;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.18s, color 0.18s;
  outline: none;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #176255;
  color: #FFF;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22,121,111,0.64);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.24s;
}
.cookie-modal {
  background: #FFFFFF;
  color: #16796F;
  padding: 40px 32px 28px 32px;
  max-width: 360px;
  border-radius: 22px 5px 22px 5px;
  box-shadow: 0 8px 64px rgba(22,121,111,0.25);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
  border: 2.5px solid #F5B841;
  position: relative;
}
.cookie-modal h2 {
  color: #176255;
  font-size: 1.3rem;
  border-left: 4px solid #F5B841;
  padding-left: 6px;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.category-toggle {
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #ECECEC;
  border: none;
  position: relative;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.2s;
}
.category-toggle[aria-checked="true"] {
  background: #F5B841;
}
.category-toggle .thumb {
  display: block;
  width: 19px;
  height: 19px;
  background: #16796F;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 1.5px;
  transition: left 0.22s cubic-bezier(0.4,0,0.2,1);
}
.category-toggle[aria-checked="true"] .thumb {
  left: 17px;
  background: #176255;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  color: #16796F;
  font-size: 1.7rem;
  position: absolute;
  right: 12px;
  top: 10px;
  cursor: pointer;
  padding: 0;
  transition: color 0.18s;
}
.cookie-modal .close-modal:hover {
  color: #F5B841;
}
/* --- END COOKIE --- */

/* VISUAL ELEMENTS & MICRO-INTERACTIONS */
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input[type="submit"], input[type="button"] {
  font-family: inherit;
  border: none;
  outline: none;
}

/* BADGES, TABS, ETC - not present, but utility */
.badge {
  background: #F5B841;
  color: #176255;
  border-radius: 16px 4px 16px 4px;
  font-size: 0.88rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 3px 10px;
  margin-left: 10px;
}

/* GEOMETRIC SHAPES FOR DECOR - only decorative, not content */
.shape-triangle {
  position: absolute;
  width: 40px;
  height: 40px;
  background: transparent;
  border-left: 40px solid #F5B841;
  border-bottom: 40px solid transparent;
  top: -24px;
  right: 16px;
  z-index: 1;
  opacity: 0.18;
}
@media (max-width: 768px) {
  .shape-triangle {
    display: none;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }
  .footer-top {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .services-list {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  section {
    padding: 28px 6px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .service-item, .card, .testimonial-card, .store-details {
    min-width: 90%;
    max-width: 100%;
    padding: 17px 10px 13px 14px;
  }
  ul.feature-grid, .features-list, .store-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-slider {
    gap: 12px;
    flex-direction: column;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 8px;
    font-size: 0.97rem;
  }
}

/* UTILITIES */
.hide-xs {
  display: none !important;
}
@media (min-width: 769px) {
  .hide-md {
    display: none !important;
  }
}

/* ACCESSIBILITY FOCUS OUTLINE FOR KEYBOARD */
a:focus, button:focus {
  outline: 2.5px solid #F5B841;
  outline-offset: 2px;
  z-index: 18;
}

/* GEOMETRIC BUTTONS */
button, .cta {
  border-radius: 28px 4px 28px 4px;
}

/* MISC */
::-webkit-input-placeholder { color: #6C7A7A; }
::-moz-placeholder { color: #6C7A7A; }
:-ms-input-placeholder { color: #6C7A7A; }
::placeholder { color: #6C7A7A; }

/* PREVENT ABSOLUTE POSITIONING EXCEPT DECORATIVE SHAPES AND COOKIE MODAL */
.card, .testimonial-card, .service-item {
  position: relative;
  z-index: 1;
}

/* SPACING FOR SECTION & CARDS (MANDATORY)*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Extra: Hide scroll on open mobile menu */
body.menu-open {
  overflow: hidden;
}
