/* ========================
   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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #191919;
  font-family: 'Open Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #111;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #134D6D;
  outline-offset: 2px;
}

/* ========================
   TYPOGRAPHY
   ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #111;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }

p, li, table, th, td, label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
}
p { margin-bottom: 18px; }
ul, ol { padding-left: 22px; margin-bottom: 16px; }
li { margin-bottom: 8px; }
strong { color: #111; font-weight: 700; }

@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
}

/* ========================
   BASE & UTILITIES
   ======================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
}
@media (max-width: 900px) {
  .section {
    padding: 30px 10px;
    margin-bottom: 36px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  flex: 1 1 270px;
  min-width: 230px;
  background: #fafbfc;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  margin-bottom: 20px;
  padding: 26px 22px;
  transition: box-shadow 0.24s, transform 0.18s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(16,16,16,0.10);
  transform: translateY(-4px) scale(1.01);
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========================
   HEADER & NAVBAR
   ======================== */
header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  z-index: 102;
  box-shadow: 0 2px 12px 0 rgba(24,24,24,0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  height: 86px;
  min-height: 86px;
}
header img[alt="PaleBrook Reinigung"] {
  width: 160px;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1 1 auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #222;
  opacity: 0.85;
  padding: 3px 4px;
  position: relative;
  transition: color .22s, opacity .18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #111;
  opacity: 1;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 11px 32px;
  background: #191919;
  color: #fff;
  border-radius: 36px;
  font-size: 1.08rem;
  border: none;
  margin-left: 24px;
  box-shadow: 0 2px 8px 0 rgba(17,17,17,0.08);
  transition: background 0.20s, box-shadow 0.22s, color 0.18s;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #134D6D;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(17,17,17,0.13);
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #111;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 150;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus {
  background: #ececec;
  outline: 2px solid #134D6D;
}
@media (max-width: 950px) {
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header img[alt="PaleBrook Reinigung"] {
    width: 130px;
  }
}

/* ========================
   MOBILE MENU
   ======================== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(24,24,24,0.92);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(.6,0,.7,1);
  transform: translateX(-100vw);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 24px 24px 8px 0;
  cursor: pointer;
  z-index: 1010;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.19s;
}
.mobile-menu-close:focus {
  background: #292929;
  outline: 2px solid #A2C857;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  margin-top: 56px;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  color: #fff;
  opacity: 0.95;
  padding: 8px 0;
  transition: color 0.18s, opacity 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #A2C857;
  opacity: 1;
  outline: none;
}
@media (min-width: 951px) {
  .mobile-menu { display: none !important; }
}

/* ========================
   HERO SECTIONS
   ======================== */
.hero {
  background: #191919;
  color: #fff;
  padding: 60px 0 64px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  color: #fff;
  max-width: 720px;
}
.hero h1, .hero p, .hero h2 {
  color: #fff;
}
.hero h1 {
  margin-bottom: 18px;
  font-size: 2.5rem;
  font-weight: 800;
}
.hero p {
  font-size: 1.17rem;
  opacity: 0.95;
  margin-bottom: 27px;
}
.hero .cta-btn {
  background: #A2C857;
  color: #191919;
  margin-left: 0;
  font-size: 1.1rem;
  box-shadow: none;
}
.hero .cta-btn:hover,
.hero .cta-btn:focus {
  background: #134D6D;
  color: #fff;
}
@media (max-width: 900px) {
  .hero {
    padding: 36px 0 36px 0;
    margin-bottom: 42px;
  }
  .hero .content-wrapper {
    max-width: 100%;
  }
}

/* ========================
   FEATURES SECTION
   ======================== */
.features {
  background: #f7f8fa;
  border-radius: 12px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper {
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 30px;
}
.feature {
  background: #fff;
  border-radius: 10px;
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  box-shadow: 0 1px 6px 0 rgba(24,24,24,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.19s;
  cursor: default;
}
.feature img {
  width: 38px;
  margin-bottom: 16px;
}
.feature:hover {
  box-shadow: 0 6px 18px 0 rgba(24,24,24,0.10);
  transform: translateY(-2px) scale(1.02);
}
.feature h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.feature p {
  color: #222;
  opacity: 0.92;
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* ========================
   ABOUT & SERVICE PREVIEW
   ======================== */
.about-snippet, .about, .services-preview, .services-list, .benefits, .contact-info, .map-section, .thankyou-section, .legal-content {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.about-snippet a.inline-link,
.services-preview a.inline-link {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #134D6D;
  text-decoration: underline;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.about-snippet a.inline-link:hover,
.services-preview a.inline-link:hover {
  color: #A2C857;
}
@media (max-width: 900px) {
  .about-snippet, .about, .services-preview, .services-list, .benefits, .contact-info, .map-section, .thankyou-section, .legal-content {
    padding: 28px 8px;
    margin-bottom: 32px;
  }
}

/* ========================
   TESTIMONIALS
   ======================== */
.testimonial-snippet,
.testimonials {
  background: #fafbfc;
  border-radius: 12px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper {
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 28px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(24,24,24,0.07);
  margin-bottom: 23px;
  min-width: 220px;
  max-width: 540px;
  transition: box-shadow 0.22s, background 0.19s;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card:hover {
  background: #F6F9F8;
  box-shadow: 0 6px 24px 0 rgba(24,24,24,0.14);
}
.testimonial-card p {
  color: #191919;
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.5;
}
.testimonial-meta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.testimonial-author {
  font-weight: 600;
  color: #134D6D;
  font-size: 1rem;
  margin-right: 8px;
}
.testimonial-rating img {
  width: 22px;
  height: 22px;
  margin-right: 2px;
}
.testimonial-rating img:last-child {
  margin-right: 0;
}
@media (max-width: 900px) {
  .testimonials .content-wrapper, .testimonial-card {
    max-width: 100%;
  }
}
/* testimonial cards list */
.testimonials .testimonial-card {
  margin-bottom: 28px;
}

/* ========================
   FAQ & LEGAL CONTENT
   ======================== */
.faq, .faq-list, .price-faq {
  background: #fafbfc;
  border-radius: 12px;
  padding: 38px 20px;
  margin-bottom: 60px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 18px 18px 16px 18px;
  box-shadow: 0 1px 8px 0 rgba(24,24,24,0.05);
}
.faq-item h3 {
  color: #134D6D;
  font-size: 1.13rem;
}
.faq-item p {
  color: #222;
}

/* ========================
   CARDS & GRIDS
   ======================== */
.services-list ul, .benefits ul, .team-info ul, .price-table table {
  margin-top: 16px;
  margin-bottom: 16px;
}
.services-list li, .benefits li, .team-info li {
  margin-bottom: 18px;
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  background: #fff;
}
.price-table table th,
.price-table table td {
  border: 1px solid #e1e3e7;
  padding: 14px 12px;
  text-align: left;
  color: #222;
  font-size: 1.03rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.price-table table th {
  background: #F6F9F8;
}

/* ========================
   CTA BANNER
   ======================== */
.cta-banner {
  background: #222;
  color: #fff;
  border-radius: 12px;
  margin-bottom: 56px;
  padding: 52px 20px;
  text-align: center;
  box-shadow: 0 6px 14px 0 rgba(10,10,10,0.09);
}
.cta-banner .content-wrapper {
  align-items: center;
  justify-content: center;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 24px;
}
.cta-banner .cta-btn {
  background: #A2C857;
  color: #191919;
  font-size: 1.1rem;
}
.cta-banner .cta-btn:hover,
.cta-banner .cta-btn:focus {
  background: #134D6D;
  color: #fff;
}
@media (max-width: 900px) {
  .cta-banner {
    padding: 35px 10px;
    margin-bottom: 30px;
  }
}

/* ========================
   FOOTER
   ======================== */
footer {
  background: #111;
  color: #f6f9f8;
  padding: 52px 0 28px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  max-width: 250px;
}
.footer-branding img {
  width: 140px;
  filter: brightness(0) invert(1);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #f6f9f8;
  opacity: .85;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.18s, opacity 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #A2C857;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #d6d7d8;
  font-size: 0.98rem;
  max-width: 280px;
}
.footer-contact img {
  width: 18px;
  margin-right: 8px;
  vertical-align: middle;
  filter: brightness(0) invert(0.85);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}
.footer-social a img {
  width: 26px;
  filter: brightness(0) invert(1) grayscale(1);
  opacity: 0.86;
  transition: filter 0.14s, opacity 0.14s;
}
.footer-social a:hover img {
  filter: invert(59%) sepia(40%) saturate(940%) hue-rotate(49deg) brightness(1.01);
  opacity: 1;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .footer-branding img {
    width: 106px;
  }
}

/* ========================
   TEAM SECTION (About)
   ======================== */
.team-info {
  background: #fafbfc;
  border-radius: 10px;
  padding: 26px 22px;
  margin-top: 12px;
  box-shadow: 0 1px 8px 0 rgba(18,18,18,0.04);
}

/* ========================
   MAP-INFO (Contact)
   ======================== */
.map-info {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 16px;
}

/* ========================
   SPECIAL BUTTONS & LINKS
   ======================== */
.inline-link {
  color: #134D6D;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.19s;
  font-size: 1.03rem;
}
.inline-link:hover,
.inline-link:focus {
  color: #A2C857;
}

/* ========================
   PRICE TABLE
   ======================== */
.price-table th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #111;
  font-weight: 700;
}

/* ========================
   THANK YOU SECTION
   ======================== */
.thankyou-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 35vh;
  background: #fafbfc;
  border-radius: 12px;
  text-align: center;
}
.thankyou-section h1 {
  margin-bottom: 16px;
}

/* ========================
   MONOCHROME & ACCENTS
   ======================== */
/* All main backgrounds, cards, text follow monochrome/gray scale. Only CTA and links use accent. */

/* ========================
   RESPONSIVE LAYOUTS
   ======================== */
@media (max-width: 600px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .card-container,
  .feature-grid,
  .content-grid,
  .footer-social {
    gap: 14px;
  }
  .hero {
    padding: 23px 0 30px 0;
  }
}

/* ========================
   ANIMATION & MICRO-INTERACTIONS
   ======================== */
.cta-btn, .card,
.feature, .testimonial-card,
.footer-social a img, .mobile-menu,
.mobile-menu a, .inline-link {
  transition: all .19s cubic-bezier(.71,0,.3,1);
}

/* ========================
   COOKIE CONSENT BANNER
   ======================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #191919;
  color: #fafbfc;
  z-index: 2000;
  box-shadow: 0 -2px 12px 0 rgba(0,0,0,0.13);
  padding: 24px 18px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.25s, transform 0.32s;
}
.cookie-consent-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-consent-banner .cookie-btn {
  border: none;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 28px;
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-consent-banner .cookie-btn.accept {
  background: #A2C857;
  color: #191919;
}
.cookie-consent-banner .cookie-btn.reject {
  background: #FFF;
  color: #191919;
  border: 1px solid #D3D3D3;
}
.cookie-consent-banner .cookie-btn.settings {
  background: #134D6D;
  color: #fff;
}
.cookie-consent-banner .cookie-btn:hover, .cookie-consent-banner .cookie-btn:focus {
  opacity: .95;
  filter: brightness(0.95);
}
@media (max-width: 650px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 3vw 18px 3vw;
    font-size: 0.97rem;
  }
  .cookie-consent-banner .cookie-btn {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }
}

/* ========================
   COOKIE MODAL
   ======================== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.62);
  z-index: 2100;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.cookie-modal-overlay.visible {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: 14px;
  box-shadow: 0 8px 40px 0 rgba(32,32,32,0.19);
  max-width: 430px;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookie-modal-fadein 0.25s cubic-bezier(.7,0,.7,1);
}
@keyframes cookie-modal-fadein {
  0% { opacity: 0; transform: scale(0.97) translateY(30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #134D6D;
  cursor: pointer;
  padding: 4px 9px;
  border-radius: 5px;
  transition: background 0.18s;
}
.cookie-modal-close:focus {
  background: #F6F9F8;
  outline: 2px solid #A2C857;
}
.cookie-modal h3 {
  font-size: 1.36rem;
  color: #111;
  margin-bottom: 8px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1rem;
}
.cookie-modal-category label {
  color: #191919;
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 22px;
  background: #ececec;
  border-radius: 16px;
  position: relative;
  outline: none;
  transition: background 0.17s;
}
.cookie-toggle:checked {
  background: #A2C857;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  height: 16px; width: 16px;
  border-radius: 50%;
  background: #191919;
  transition: transform 0.23s cubic-bezier(.6,0,.7,1);
}
.cookie-toggle:checked:before {
  background: #fff;
  transform: translateX(14px);
}
.cookie-modal-category input[disabled] + label {
  color: #aaa !important;
  opacity: .72;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 520px) {
  .cookie-modal {
    max-width: 96vw;
    padding: 20px 6vw 20px 6vw;
  }
}

/* ========================
   MISC: GENERAL FORMATTING
   ======================== */
b, em, strong {
  font-weight: 700;
  color: #111;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: 1.3;
  background: none;
  outline: none;
  border-radius: 0;
}

::-webkit-scrollbar {
  width: 9px;
  background: #e7e8ea;
}
::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border-radius: 6px;
}

/* ========================
   PRINT STYLES
   ======================== */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cta-btn, .cookie-consent-banner, .cookie-modal-overlay {
    display: none !important;
  }
}
