/* --- CSS RESET AND BASE STYLES --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  background: linear-gradient(135deg, #F4F4F6 0%, #e0e6ea 100%);
  color: #2B3440;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
:focus {
  outline: 2px solid #229494;
  outline-offset: 2px;
}
a {
  color: #229494;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #166c6b;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.2em;
  margin: 0 0 24px 0;
}
li {
  margin-bottom: 12px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
  color: #2B3440;
}
h1 { font-size: 2.2rem; letter-spacing: -0.5px; }
h2 { font-size: 1.5rem; letter-spacing: -0.5px; }
h3 { font-size: 1.18rem; }
p { margin: 0 0 20px 0; }
strong { font-weight: 700; }

/* --- FLEX CONTAINER HELPERS --- */
.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(35,43,54,0.06), 0 1.5px 3.5px rgba(50, 100, 100, 0.05);
}

/* --- HEADER & NAVIGATION --- */
header {
  background: linear-gradient(90deg, #2B3440 70%, #229494 100%);
  box-shadow: 0 2px 8px rgba(35,43,54,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 8px 16px;
  gap: 16px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F4F4F6;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 6px 4px;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.22s, color 0.22s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: rgba(49,168,166, 0.13);
  color: #fff;
}
.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg, #229494 60%, #31A8A6 100%);
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 32px;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(35,43,54,0.05);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.22s, transform 0.17s, box-shadow 0.17s;
  display: inline-block;
}
.cta-primary:hover,
.cta-primary:focus {
  background: linear-gradient(90deg, #166c6b 60%, #229494 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(49,168,166,0.17);
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 1210;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  background: linear-gradient(115deg, #2b3440 93%, #229494 100%);
  transition: transform 0.36s cubic-bezier(.69,.17,.44,1), background 0.22s;
  transform: translateX(-100%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 0 999px rgba(40,50,60,0.36);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 22px;
  right: 32px;
  z-index: 1300;
  cursor: pointer;
  transition: opacity 0.2s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
  margin-left: 38px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 12px;
  width: fit-content;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(49,168,166, 0.25);
  color: #31A8A6;
}

/* Show/hide desktop/mobile nav */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none!important;
  }
}

/* --- HERO SECTION --- */
.hero {
  margin-bottom: 60px;
  padding: 60px 0 48px 0;
  background: linear-gradient(106deg, #31A8A6 4%, #F4F4F6 170%);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  gap: 22px;
}
.hero h1 {
  color: #2B3440;
  font-size: 2.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
  line-height: 1.23;
}
.hero p {
  color: #25303c;
  font-size: 1.13rem;
  margin-bottom: 21px;
}
.hero .cta-primary {
  font-size: 1.09rem;
  padding: 12px 38px;
}

/* --- FEATURES SECTION --- */
.features {
  margin-bottom: 60px;
}
.features .content-wrapper > ul,
.features .content-wrapper > ol {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 0 0 18px 0;
  padding: 0;
  list-style: none;
}
.features .content-wrapper > ul li,
.features .content-wrapper > ol li {
  display: flex;
  align-items: center;
  background: #F4F4F6;
  border-radius: 12px;
  margin-bottom: 0;
  padding: 13px 17px;
  gap: 16px;
  font-size: 1.04rem;
  box-shadow: 0 2px 10px rgba(49,168,166,0.035);
}
.features .content-wrapper > ul li img,
.features .content-wrapper > ol li img {
  width: 30px;
  height: 30px;
  margin-right: 4px;
}

/* --- SERVICES SECTION --- */
.services {
  margin-bottom: 60px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: center;
}
.service-card {
  flex: 1 1 240px;
  min-width: 230px;
  max-width: 340px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(43,52,64,0.07);
  padding: 28px 22px 26px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 6px 30px rgba(49,168,166,0.11);
  transform: translateY(-3px) scale(1.015);
  z-index: 2;
}
.service-card img {
  width: 44px;
  height: 44px;
}
.service-card h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  margin: 0 0 9px 0;
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 8px;
  background: #229494;
  color: #fff;
  border-radius: 24px;
  padding: 5px 18px;
  font-weight: 600;
  font-size: 1.01rem;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

/* --- TESTIMONIALS --- */
.testimonials {
  margin-bottom: 60px;
}
.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(49,168,166,0.07);
  padding: 28px 26px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 400px;
  flex: 1 1 260px;
  transition: box-shadow 0.18s, transform 0.18s;
  color: #2B3440;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 36px rgba(49,168,166,0.11);
  transform: translateY(-3px) scale(1.01);
  z-index: 2;
}
.testimonial-card p {
  color: #222e3d;
  font-size: 1.06rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin: 0;
  line-height: 1.7;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #229494;
  font-size: 0.98rem;
}
.testimonial-rating {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #229494;
}

/* --- CARD AND GRID HELPERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(43,52,64,0.07);
  padding: 22px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 34px rgba(49,168,166,0.13);
  transform: translateY(-2px) scale(1.01);
  z-index: 2;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- CATEGORY CARDS (for recenzje-sprzetu) --- */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #F4F4F6;
  border-radius: 14px;
  padding: 24px 16px 18px 16px;
  min-width: 110px;
  max-width: 160px;
  box-shadow: 0 2px 8px rgba(49,168,166,0.04);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  color: #2B3440;
  transition: box-shadow 0.15s, transform 0.17s;
}
.category-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.category-card:hover, .category-card:focus {
  box-shadow: 0 5px 20px #22949422;
  background: #fff;
  transform: translateY(-2px) scale(1.035);
  z-index: 2;
}

/* --- FILTER/OPTION BUTTONS --- */
.filter-options, .category-filters {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 13px;
  flex-wrap: wrap;
}
.filter-options button, .category-filters button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #229494;
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 7px 23px;
  font-size: 0.97rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.19s, color 0.19s, box-shadow 0.16s;
}
.filter-options button:hover, .filter-options button:focus,
.category-filters button:hover, .category-filters button:focus {
  background: #166c6b;
  color: #fff;
  box-shadow: 0 2px 11px #22949422;
}
.product-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
}
.product-tags span {
  background: #22949411;
  color: #229494;
  border-radius: 10px;
  padding: 3px 11px;
  font-size: 0.98rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- CALLOUT/INFO BOXES --- */
.callout-box {
  background: #e8fbfa;
  border-radius: 14px;
  padding: 20px 20px 18px 20px;
  box-shadow: 0 2px 9px #22949418;
  margin-bottom: 20px;
}
.info-box {
  background: #F4F4F6;
  border-radius: 12px;
  padding: 17px 20px 14px 20px;
  font-size: 1.05rem;
  color: #145e5e;
}
.booking-info {
  margin-top: 10px;
  background: #fafbfa;
  border-radius: 10px;
  padding: 10px 15px;
  color: #229494;
  font-size: 1.01rem;
}
.trust-signals {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
  color: #229494;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* --- ADDRESS & MAP BLOCKS (kontakt.html) --- */
.address-block {
  background: #F4F4F6;
  border-radius: 12px;
  padding: 14px 20px 11px 20px;
  margin-bottom: 16px;
  font-size: 1.04rem;
}
.map {
  background: #e8fbfa;
  color: #229494;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
}

/* --- FOOTER --- */
footer {
  background: #2B3440;
  color: #F4F4F6;
  padding: 32px 0 16px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: space-between;
  align-items: flex-start;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.07rem;
  color: #F4F4F6;
}
.brand-info img {
  height: 40px;
  width: 40px;
}
.footer-menu {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  margin: 12px 0;
}
.footer-menu a {
  color: #F4F4F6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.17s;
  padding: 2px 4px;
  border-radius: 6px;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #31A8A6;
  background: rgba(49,168,166, 0.08);
}
.contact-info {
  color: #b6bdc4;
  font-size: 0.96rem;
  margin-top: 4px;
}
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-links img {
  width: 26px;
  height: 26px;
  cursor: pointer;
  transition: filter 0.18s, transform 0.16s;
  filter: grayscale(0.2);
  border-radius: 6px;
  background: #22949411;
  padding: 2px;
}
.social-links img:hover, .social-links img:focus {
  filter: none;
  background: #22949422;
  transform: scale(1.09);
}

/* --- LEGAL SECTIONS (policy, RODO, terms) --- */
.legal {
  margin-bottom: 60px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px #2B344010;
  padding: 40px 22px 32px 22px;
}
.legal h1, .legal h2, .legal h3 {
  color: #229494;
}

/* --- QUICK LINKS (kontakt.html) --- */
.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quick-links a {
  color: #229494;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 0;
  border-radius: 6px;
  transition: color 0.13s, background 0.15s;
}
.quick-links a:hover,
.quick-links a:focus {
  background: #e8fbfa;
  color: #166c6b;
}

/* --- SEARCH INPUT (recenzje-sprzetu.html) --- */
input[type="search"] {
  width: 100%;
  max-width: 340px;
  background: #F4F4F6;
  border: 1.2px solid #22949440;
  border-radius: 9999px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.01rem;
  padding: 12px 22px;
  margin: 0 0 14px 0;
  color: #2B3440;
  outline: none;
  box-shadow: 0 1px 3px #22949408 inset;
  transition: border 0.17s, box-shadow 0.2s;
}
input[type="search"]:focus {
  border: 1.5px solid #229494;
  box-shadow: 0 1px 9px #22949466;
}

/* --- MODAL OVERLAYS (cookie, mobile nav, etc) --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(35,43,54,0.48);
  z-index: 1999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.26s;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -4px 20px #22949418;
  padding: 22px 26px 20px 26px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
}
.cookie-banner .cookie-text {
  color: #2B3440;
  font-size: 1rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner .btn-accept, .cookie-banner .btn-reject {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 99px;
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.19s, color 0.16s, transform 0.16s;
}
.cookie-banner .btn-accept {
  background: #229494;
  color: #fff;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #166c6b;
  color: #fff;
}
.cookie-banner .btn-reject {
  background: #e0e6ea;
  color: #229494;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #f4f4f6;
  color: #166c6b;
}
.cookie-banner .btn-settings {
  background: transparent;
  border: 1.5px solid #229494;
  color: #229494;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-left: 8px;
  cursor: pointer;
  transition: border 0.19s, color 0.16s, background 0.13s;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #22949411;
  color: #166c6b;
  border-color: #166c6b;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 34px 32px 26px 32px;
  box-shadow: 0 8px 38px #22949433;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 2010;
  animation: modalIn 0.34s cubic-bezier(.78,-0.09,.51,1.65);
}
@keyframes modalIn {
  0% { opacity:0; transform: scale(0.9) translateY(60px); }
  80% { opacity:1; transform: scale(1.03) translateY(-6px); }
  100% { opacity:1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  color: #229494;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0 0 8px 0;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-modal label {
  cursor: pointer;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.04rem;
  color: #2B3440;
}
.cookie-toggle {
  width: 38px;
  height: 20px;
  background: #e8fbfa;
  border-radius: 20px;
  position: relative;
  margin-left: 10px;
  margin-right: 8px;
  transition: background 0.22s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle span {
  display: block;
  width: 20px;
  height: 20px;
  background: #229494;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transition: left 0.22s, background 0.18s;
}
.cookie-toggle input:checked + span {
  left: 18px;
  background: #31A8A6;
}
.cookie-modal .cookie-category.essential .cookie-toggle {
  opacity: 0.65;
  pointer-events: none;
}
.cookie-modal .cookie-buttons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.cookie-modal .btn-save {
  background: #229494;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 8px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-modal .btn-save:hover, .cookie-modal .btn-save:focus {
  background: #166c6b;
}
.cookie-modal .btn-cancel {
  background: none;
  color: #229494;
  border: 1px solid #229494;
  border-radius: 12px;
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: normal;
  font-size: 1.03rem;
  cursor: pointer;
  transition: border 0.16s, color 0.18s;
}
.cookie-modal .btn-cancel:hover, .cookie-modal .btn-cancel:focus {
  background: #22949411;
  color: #166c6b;
  border: 1px solid #166c6b;
}

/* --- RESPONSIVE DESIGN (MOBILE FIRST) --- */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .service-cards, .testimonial-slider, .category-grid {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 5px;
    max-width: 99vw;
  }
  .section, .legal {
    padding: 25px 6px 26px 8px;
    margin-bottom: 30px;
  }
  .hero {
    padding: 36px 2vw 22px 2vw;
    min-height: 180px;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
  .features .content-wrapper > ul,
  .features .content-wrapper > ol {
    gap: 10px;
  }
  .features .content-wrapper > ul li,
  .features .content-wrapper > ol li {
    padding: 10px 8px;
    gap: 10px;
    font-size: 0.98rem;
  }
  .service-cards {
    flex-direction: column;
    gap: 15px;
  }
  .service-card {
    max-width: none;
    padding: 18px 10px 16px 11px;
    border-radius: 10px;
    font-size: 1rem;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    padding: 18px 10px;
    min-width: 0;
    font-size: 0.97rem;
  }
  .category-grid {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 10px;
  }
  .category-card {
    padding: 16px 5vw 12px 5vw;
    min-width: 78px;
    max-width: 120px;
  }
  .callout-box {
    padding: 13px 5px 10px 9px;
    border-radius: 8px;
    font-size: 0.99rem;
    margin-bottom: 7px;
  }
  .content-grid, .card-container { gap: 10px; }
  .footer-menu { gap: 12px; }
  footer .container {
    flex-direction: column;
    gap: 15px;
    padding: 0 4px;
  }
  .brand-info {
    gap: 10px;
    font-size: 0.97rem;
  }
  .social-links {
    gap: 8px;
  }
  .content-wrapper {
    gap: 11px;
  }
  .testimonial-card, .card {
    border-radius: 9px;
    min-width: 0;
    font-size: 1rem;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .footer-menu { flex-direction: column; gap: 5px; align-items: flex-start; }
  .brand-info img { height: 30px; width: 30px; }
  .cookie-banner { padding: 17px 7px 15px 9px; font-size: 0.98rem; }
  .cookie-modal { padding: 17px 7px 15px 8px; font-size: 0.98rem; }
}

/* --- ANIMATION, TRANSITIONS, MICROINTERACTIONS --- */
a,
.cta-primary,
.main-nav a,
.footer-menu a,
.filter-options button,
.category-filters button,
.service-card,
.testimonial-card,
.social-links img,
.category-card {
  transition: box-shadow 0.16s, color 0.15s, background 0.18s, transform 0.16s;
}

/* --- PRINT FRIENDLY --- */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal, header, footer { display: none !important; }
  .container, .section, .legal { box-shadow: none; background: #fff; color: #000; }
}

/* --- END OF CSS --- */
