/* ------------------------
   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 { 
  font-size: 16px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after { box-sizing: inherit; }
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #232026;
  background-color: #FFFFFF;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: #177561;
  transition: color .2s cubic-bezier(.45,.05,.55,.95);
}
a:focus, a:hover {
  color: #219A82;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}
input[type="search"] {
  border: 1px solid #CBD2D9;
  border-radius: 6px;
  font-size: 1rem;
  padding: 10px 16px;
  width: 100%;
  margin: 16px 0;
  transition: border-color 0.2s;
}
input[type="search"]:focus {
  border-color: #219A82;
}

/* ------------------------
   BRAND PALETTE & FONTS
------------------------ */
:root {
  --primary: #232026;
  --secondary: #F9E9D0;
  --accent: #177561;
  --brand-accent-2: #219A82;
  --gray-light: #F6F8FA;
  --gray-medium: #CBD2D9;
  --gray-dark: #232026;
  --white: #FFFFFF;
  --error: #D81E25;
  --success: #219A82;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: var(--white);
  color: var(--gray-dark);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 24px; }
h2 { font-size: 1.5rem; font-weight: 600; margin-bottom: 18px; }
h3 { font-size: 1.125rem; font-weight: 500; margin-bottom: 10px; }
h4, h5, h6 { font-weight: 500; }
p, ul, ol, li, input {
  font-size: 1rem;
  color: var(--gray-dark);
}
strong { font-weight: 600; }

/* ------------------------------
   SPACING UTILS & FLEX LAYOUTS
------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--gray-light);
  border-radius: 16px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(35,32,38,0.09);
  padding: 28px 20px;
  flex: 1 1 300px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 6px 30px 0 rgba(33,154,130,0.10);
  transform: translateY(-2px) scale(1.02);
}
.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: var(--secondary);
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(35,32,38,0.05);
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--primary);
  min-width: 260px;
  max-width: 500px;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(33,154,130,.13);
  transform: translateY(-1px) scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 7px 0 rgba(35,32,38,0.10);
  min-width: 200px;
  margin-bottom: 20px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
}
.features ul li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(35,32,38,0.08);
  padding: 18px 16px;
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
}
.features ul li img {
  width: 44px;
  height: 44px;
}
/* Prevent overlapping in .content-wrapper */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* -----------------------------
   HEADER & NAVIGATION
------------------------------ */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px 0 rgba(35,32,38,0.04);
  padding: 0 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 64px;
  margin-left: 20px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
nav a {
  color: var(--primary);
  font-size: 1rem;
  padding: 10px 5px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
nav a:hover, nav a:focus {
  background: var(--accent);
  color: var(--white);
}
.cta-primary {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-left: 10px;
  font-size: 1.05rem;
  box-shadow: 0 2px 7px 0 rgba(33,154,130,0.10);
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--brand-accent-2);
  color: var(--white);
  box-shadow: 0 3px 18px 0 rgba(33,154,130,0.17);
  transform: translateY(-1px) scale(1.018);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--accent);
  background: none;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  margin-right: 20px;
  z-index: 103;
  transition: color .2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--brand-accent-2);
}
/* MOBILE NAV OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  background: rgba(35,32,38,0.97);
  transition: transform .33s cubic-bezier(.68,-0.55,.27,1.55) 0s;
  transform: translateX(100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  right: 0;
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  align-self: flex-end;
  margin: 18px 24px 2px 0;
  cursor: pointer;
  z-index: 10001;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-accent-2);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 36px 28px 0 40px;
  gap: 18px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 14px 0;
  border-radius: 7px;
  transition: color .18s, background .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: rgba(33,154,130,0.10);
}
/* Show/hide navigation based on device */
@media (max-width: 992px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {display: none !important;}
}

/* ------------------------------
     HERO BANNER
------------------------------ */
.hero {
  background: linear-gradient(115deg,#F9E9D0 60%,#FFFFFF 100%);
  border-bottom: 1px solid #F6F8FA;
  padding: 44px 0 44px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-height: 220px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding-top: 12px;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
}
.hero p {
  font-size: 1.12rem;
  color: #2D2A32;
  opacity: 0.95;
  margin-bottom: 8px;
}
.hero .cta-primary {
  margin-top: 14px;
  font-size: 1.08rem;
  padding: 11px 28px;
}

/* ---------------------
   FEATURES SECTION
---------------------- */
.features {
  background: var(--gray-light);
  border-radius: 0 0 24px 24px;
  margin-top: -8px;
}
.features h2 {
  margin-bottom: 18px;
}
.features ul {
  margin-top: 12px;
}
.features ul li h3 {
  margin-bottom: 5px;
}
.features ul li p {
  color: #49454F;
  font-size: .97rem;
  margin-top: 2px;
}

/* ------------------------
   HIGHLIGHTS & REVIEWS
------------------------ */
.highlights .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 6px;
  justify-content: flex-start;
}
.review-snippet {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(33,154,130,0.07);
  padding: 20px 20px 18px 20px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.review-snippet h3 {
  font-size: 1.08rem;
  margin-bottom: 2px;
}
.review-snippet .stars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 24px;
}
.review-snippet p {
  opacity: 0.93;
  font-size: .95rem;
  color: var(--primary);
  margin-bottom: 0;
}
.review-snippet a {
  color: var(--accent);
  font-weight: 500;
  margin-top: auto;
  align-self: flex-start;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color .18s;
}
.review-snippet a:hover {
  color: var(--brand-accent-2);
}

/* ---------------
   CTAS & BUTTONS
----------------- */
.section-cta {
  background: var(--accent);
  border-radius: 18px;
  color: var(--white);
  margin: 44px 0 32px 0;
  padding: 38px 0 36px 0;
}
.section-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-cta .content-wrapper {
  align-items: center;
  color: var(--white);
}
.section-cta h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 2rem;
}
.section-cta p {
  color: #E2F2EC;
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.section-cta .cta-primary {
  background: var(--white);
  color: var(--accent) !important;
  font-weight: 700;
}
.section-cta .cta-primary:hover {
  background: var(--secondary);
  color: var(--brand-accent-2) !important;
}
button, .btn {
  background: var(--accent);
  color: var(--white);
  border-radius: 7px;
  padding: 10px 23px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 7px 0 rgba(33,154,130,0.08);
  transition: background 0.15s, color 0.15s, transform 0.15s;
  margin-right: 10px;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: var(--brand-accent-2);
  color: var(--white);
  transform: translateY(-1px) scale(1.015);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--primary);
  border: 1px solid var(--accent);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--accent);
  color: var(--white);
}

/* ------------------
   REVIEW PAGES
-------------------- */
.review-summary, .menu-test, .ranking-item {
  background: var(--white);
  box-shadow: 0 2px 8px 0 rgba(35,32,38,0.07);
  border-radius: 10px;
  padding: 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-summary .stars, .menu-test .stars, .ranking-item .stars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 24px;
}
.review-summary h3, .menu-test h3 {
  font-size: 1.08rem;
  font-weight: 600;
}
.review-summary p, .menu-test p, .ranking-item p {
  color: var(--gray-dark);
  font-size: .97rem;
  margin-bottom: 0;
}
.review-summary a, .menu-test a {
  color: var(--accent);
  font-weight: 500;
  margin-top: auto;
  align-self: flex-start;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color .18s;
}
.review-summary a:hover, .menu-test a:hover {
  color: var(--brand-accent-2);
}
.ranking-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
}
.ranking-item .badge {
  background: var(--accent);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 7px;
  padding: 8px 16px;
  display: inline-block;
  margin-right: 14px;
}
.ranking-item h3 {
  font-size: 1.03rem;
  margin-bottom: 5px;
}

/* ---------------
   FILTER BUTTONS
----------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 19px;
  margin: 18px 0 10px 0;
}
.filters button {
  padding: 8px 20px;
  font-size: .98rem;
  border-radius: 7px;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  border: 1px solid var(--gray-medium);
  transition: background .16s, color .16s, border .12s;
}
.filters button:hover, .filters button:active {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--brand-accent-2);
}

/* ---------------
   SERVICE LISTS
----------------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.service-item {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(35,32,38,0.08);
  padding: 22px 20px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
}
.service-item strong {
  margin-top: 5px;
  color: var(--accent);
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}

/* -----------------------
   TEXT/IMAGE + MAP BLOCK
------------------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font-size: 1rem;
  color: var(--primary);
}
.map-embed img {
  width: 32px;
  height: 32px;
}

/* -------------------
   FOOTER STYLE
--------------------- */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 32px 0 24px 0;
  border-radius: 24px 24px 0 0;
  margin-top: 60px;
  width: 100%;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
  justify-content: center;
}
.footer-nav a {
  color: var(--gray-light);
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color .19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-accent-2);
}
.contact-data {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  justify-content: center;
  margin-bottom: 14px;
  font-size: .98rem;
  color: var(--gray-light);
}
.contact-data p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}
.contact-data img {
  width: 18px;
  height: auto;
  display: inline-block;
}
footer small {
  display: block;
  text-align: center;
  opacity: 0.77;
  margin-top: 14px;
  font-size: .93rem;
}

/* -------------
   UTILITIES
-------------- */
.bg-accent { background: var(--accent) !important; color: var(--white) !important; }
.bg-secondary { background: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.text-secondary { color: var(--secondary) !important; }
.radius-md { border-radius: 10px !important; }
.radius-lg { border-radius: 18px !important; }
.shadow {
  box-shadow: 0 7px 38px 0 rgba(33,154,130,0.15)!important;
}

/* ---------------------------
   RESPONSIVE DESIGN (MOBILE-FIRST)
---------------------------- */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 32px;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.17rem; }
  .hero .container,
  .section-cta .container { padding: 0 8px; }
  .hero { padding: 22px 0 22px 0; }
  .footer-nav { gap: 18px; }
  nav, .footer-nav {
    font-size: .96rem;
  }
  .features ul, .card-container, .service-list, .content-grid {
    flex-direction: column;
    gap: 16px !important;
  }
  .features ul li, .feature-item, .service-item {
    min-width: 0;
    max-width: 100%;
  }
  .content-wrapper {
    gap: 16px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .ranking-item {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .service-list, .card-container, .content-grid {
    gap: 16px !important;
  }
}
@media (max-width: 480px) {
  .hero .cta-primary, .section-cta .cta-primary, .cta-primary {
    width: 100%;
    text-align: center;
    padding: 13px 0;
    font-size: 1.03rem;
  }
}

/* ---------------------------
   COOKIE CONSENT BANNER & MODAL
---------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 90000;
  background: var(--gray-light);
  border-top: 2px solid var(--brand-accent-2);
  box-shadow: 0px -2px 22px rgba(33,154,130,0.07);
  padding: 24px 10px 18px 10px;
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  align-items: center;
  transition: transform .38s cubic-bezier(.55,0,.12,1);
}
.cookie-banner__text {
  flex: 1 1 300px;
  font-size: 1rem;
  color: var(--primary);
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-banner__btn {
  padding: 9px 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background .14s, color .13s;
  border: 0;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background: var(--brand-accent-2);
  color: var(--white);
}
.cookie-banner__btn--secondary {
  background: var(--secondary);
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.cookie-banner__btn--secondary:hover, .cookie-banner__btn--secondary:focus {
  background: var(--brand-accent-2);
  color: var(--white);
}
.cookie-banner__btn--settings {
  background: none;
  color: var(--accent);
  border: 0;
  text-decoration: underline;
  padding: 0 7px;
  font-weight: 500;
  transition: color .13s;
}
.cookie-banner__btn--settings:hover, .cookie-banner__btn--settings:focus {
  color: var(--brand-accent-2);
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 5px 12px 5px;
  }
  .cookie-banner__text { font-size: .97rem; }
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0;
  background: rgba(35,32,38,.83);
  z-index: 99998;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s;
}
.cookie-modal-overlay.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  margin-bottom: 38px;
  background: var(--white);
  border-radius: 22px;
  width: 99vw;
  max-width: 370px;
  box-shadow: 0 14px 44px rgba(33,154,130,0.17);
  padding: 34px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInUp .38s cubic-bezier(.45,0,.26,1);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 7px;
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal__category {
  padding: 13px 0;
  border-bottom: 1px solid var(--gray-medium);
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.cookie-modal__category:last-child {
  border-bottom: none;
}
.cookie-modal__category-title {
  font-weight: 600;
  font-size: 1.03rem;
}
.cookie-modal__toggle {
  margin-left: auto;
  flex-shrink: 0;
}
.cookie-modal__btns {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal__close {
  position: absolute;
  right: 22px;
  top: 12px;
  background: none;
  border: 0;
  font-size: 1.35rem;
  color: var(--primary);
  cursor: pointer;
}
.cookie-modal__close:hover { color: var(--brand-accent-2); }

/* Toggle Switch Styles */
.cookie-switch {
  position: relative;
  width: 38px;
  height: 22px;
  display: inline-block;
}
.cookie-switch input[type=checkbox] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute; left: 0; top: 0;
  width: 38px; height: 22px;
  background: var(--gray-medium);
  border-radius: 16px;
  transition: background .17s;
  cursor: pointer;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--accent);
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2.5px;
  width: 17px;
  height: 17px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .18s;
  box-shadow: 0 1px 5px rgba(33,154,130,0.13);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(15px);
}

/* -----------------------------
   ACCESSIBILITY OUTLINE/FOCUS
----------------------------- */
a:focus-visible, button:focus-visible, .cta-primary:focus-visible {
  outline: 2px dashed var(--brand-accent-2);
  outline-offset: 2px;
}

/* Hide visually but accessible for screen readers */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px; height: 1px;
  top: auto; overflow: hidden;
}

/* ---------------
   ANIMATIONS
----------------- */
.card, .testimonial-card, .review-snippet, .service-item, .feature-item, .menu-test, .review-summary {
  transition: box-shadow 0.23s cubic-bezier(.42,0,.58,1.0), transform 0.19s cubic-bezier(.42,0,.58,1.0);
}
.cta-primary, button, .cookie-banner__btn {
  transition: background .17s, box-shadow .18s, transform .12s;
}

/* -----------
   END
------------- */
