/* Dawn Escape Reinigung – Monochrome Sophisticated Flexbox CSS
   Author: Professional CSS & UI Team
*/

/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #111;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border: none;
}

/* TYPOGRAPHY */
:root {
  --brand-primary: #111;
  --brand-secondary: #444;
  --brand-accent: #eaeaea;
  --brand-contrast: #fff;

  --brand-blue: #275969;
  --brand-mint: #A4D5C7;
  --brand-light: #F2F6F7;
  --shadow-elevate: 0 6px 32px 0 rgba(0,0,0,0.10), 0 1.5px 4px 0 rgba(0,0,0,0.10);

  --radius-large: 20px;
  --radius-mid: 12px;
  --radius-btn: 28px;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}
h1 {
  font-family: var(--font-display);
  color: #0e0e0e;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
  line-height: 1.15;
}
h2 {
  font-family: var(--font-display);
  color: #181818;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.17;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #212121;
}
p, li, ul, ol {
  font-family: var(--font-body);
  font-size: 1.07rem;
  color: #2a2a2a;
  line-height: 1.7;
  margin-bottom: 8px;
}
strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: #111;
}

/* GENERAL SPACING & CONTAINER */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADER STYLES */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  position: sticky;
  top: 0;
  z-index: 30;
}
.header-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-bar img {
  height: 44px;
  max-width: 140px;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: #222;
  padding: 5px 12px;
  position: relative;
  border-radius: 6px;
  transition: background-color .2s, color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #222;
  color: #fff;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.6px;
  padding: 10px 28px;
  background: #111;
  color: #fff;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: background .18s, color .2s, box-shadow .18s, transform .2s;
  cursor: pointer;
  border: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #333;
  color: #fff;
  transform: translateY(-1px) scale(1.025);
  box-shadow: 0 4px 14px rgba(0,0,0,0.11);
}
.cta-btn-wrapper {
  display: flex;
  flex-direction: row;
  gap: 18px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.3rem;
  color: #222;
  cursor: pointer;
  margin-left: 8px;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  right: 0;
  background: rgba(17,17,17, 0.97);
  color: #fff;
  z-index: 99;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  display: flex;
  flex-direction: column;
  padding: 30px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  font-size: 2.2rem;
  padding: 18px 18px 8px 8px;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: color .25s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A4D5C7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 30px 32px;
  margin-top: 14px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.17rem;
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  width: 100%;
  transition: color .15s, padding-left .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A4D5C7;
  padding-left: 18px;
}

/* HERO */
.hero {
  background: #fff;
  padding: 60px 0 44px 0;
  min-height: 350px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.hero h1 {
  color: #111;
  margin-bottom: 14px;
}
.hero p {
  color: #444;
  font-size: 1.19rem;
  max-width: 540px;
  margin-bottom: 18px;
}
.hero .cta-btn {
  margin: 0 auto;
}

/* FEATURES */
.features {
  background: #f9f9f9;
}
.features h2 {
  color: #141414;
}
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.features ul li {
  background: #fff;
  border-radius: var(--radius-mid);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 24px 22px 24px;
  min-width: 230px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
  border: 1px solid #ededed;
}
.features ul li img {
  height: 38px;
  width: 38px;
}
.features ul li:hover, .features ul li:focus-within {
  box-shadow: 0 8px 36px rgba(34,34,34,.11);
  transform: translateY(-2px) scale(1.01);
}
.features ul li strong {
  font-size: 1.13rem;
  margin-bottom: 2px;
  color: #181818;
}
.features ul li p {
  font-size: 1.03rem;
  color: #313131;
  margin-bottom: 0;
}

/* SERVICE LISTS */
.services, .services-overview, .home-services, .office-services, .custom-services, .custom-features {
  background: #fff;
}
.services ul, .services-overview ul, .home-services ul, .office-services ul, .custom-services ul, .custom-features ol {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 18px;
}
.services ul li, .services-overview ul li, .home-services ul li, .office-services ul li, .custom-services ul li, .custom-features ol li {
  background: #fafbfc;
  border-left: 4px solid #111;
  padding: 14px 16px;
  border-radius: 0 var(--radius-mid) var(--radius-mid) 0;
  font-size: 1.06rem;
  margin-bottom: 4px;
  color: #2f2f2f;
}
.services ul li a, .services-overview ul li a {
  color: #111;
  font-weight: 600;
  text-decoration: underline dotted;
  transition: color .2s;
}
.services ul li a:hover, .services-overview ul li a:hover {
  color: #275969;
  text-decoration: underline
}

/* CARD CONTAINERS AND CARDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-mid);
  box-shadow: 0 3px 16px rgba(17,17,17,0.07);
  padding: 28px 24px 20px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* TESTIMONIALS */
.testimonials {
  background: #f6f6f6;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonial-card {
  background: #fff;
  color: #191919;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 28px 28px 18px 28px;
  border-radius: var(--radius-mid);
  box-shadow: 0 6px 32px rgba(0,0,0,0.06);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 400px;
  transition: box-shadow .16s, transform .18s;
  font-style: italic;
  border: 1px solid #efefef;
}
.testimonial-card:hover{
  transform: scale(1.016) translateY(-1px) skewX(-0.5deg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.testimonial-card p{
  font-size: 1.14rem;
  color: #161616;
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.testimonial-card span{
  font-style: normal;
  font-size: 1.01rem;
  color: #767676;
  font-weight: 500;
  font-family: var(--font-display);
  text-align: right;
  align-self: flex-end;
}

/* CONTACT INFO */
.contact-info-block {
  background: #f8f8f8;
  border-radius: var(--radius-mid);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 30px 22px 18px 22px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 0 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-block ul{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-block li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #232323;
  font-size: 1.05rem;
}
.contact-info-block img{
  height: 24px;
  width: 24px;
  opacity: 0.84;
}

/* MAP PLACEHOLDER */
.map-placeholder {
  background: #f4f4f4;
  border-radius: var(--radius-mid);
  box-shadow: 0 1.5px 8px rgba(0,0,0,0.07);
  padding: 28px 20px 16px 20px;
  min-width: 220px;
  flex: 1 1 320px;
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  background: #111;
  color: #fff;
  padding: 44px 0 34px 0;
  font-size: 0.98rem;
  border-top: 3px solid #222;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
}
.footer-brand img{
  height: 36px;
  width: 36px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #aaa;
  transition: color .22s;
  padding: 3px 10px;
  border-radius: 5px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  background: #333;
}
.social-links {
  display: flex;
  gap: 17px;
  align-items: center;
}
.social-links a img {
  height: 28px;
  width: 28px;
  transition: filter .19s;
  filter: grayscale(100%) contrast(0.7);
}
.social-links a:hover img {
  filter: grayscale(0%) contrast(1.15);
}

/* CTA SECTIONS */
.cta {
  background: #2c2c2c;
  color: #fff;
  border-radius: var(--radius-large);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  margin-bottom: 60px;
  padding: 44px 0 36px 0;
}
.cta h2{
  color: #fff;
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.cta .cta-btn {
  background: #fff;
  color: #111;
  border: 1.5px solid #111;
  box-shadow: 0 1px 5px rgba(34, 34, 34, 0.04);
}
.cta .cta-btn:hover {
  background: #111;
  color: #fff;
}

/* CERTIFICATION ICONS */
.certification-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.certification-icons img {
  height: 36px;
  width: 36px;
  opacity: 0.93;
}

/* SPECIAL PAGES */
.privacy-policy, .gdpr-section, .terms-of-use, .cookie-policy, .thank-you {
  background: #fff;
  border-radius: var(--radius-large);
  box-shadow: 0 6px 32px rgba(0,0,0,0.07);
  margin-top: 50px;
  padding: 60px 0 40px 0;
}
.privacy-policy h1, .gdpr-section h1, .terms-of-use h1, .cookie-policy h1, .thank-you h1 {
  color: #111;
}

/* LISTS */
ul, ol {
  margin-left: 0;
  padding-left: 0;
}

/* GENERAL FLEX COMPONENTS: for custom layout alignment */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive Layout: Mobile-First */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
}
@media (max-width: 1000px) {
  .footer-brand, .footer-nav, .social-links {
    flex: 1 1 100%;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .features ul {
    flex-direction: column;
    gap: 20px;
  }
  .features ul li {
    min-width: 0;
    width: 100%;
  }
  .testimonial-card, .card {
    min-width: 180px;
    max-width: 99vw;
  }
}
@media (max-width: 860px) {
  .header-bar {
    padding: 0 8px;
  }
  .main-nav {
    gap: 11px;
  }
  .features .content-wrapper {
    gap: 22px;
  }
}
@media (max-width: 768px) {
  .header-bar {
    flex-direction: row;
    padding: 0 8px;
    min-height: 56px;
  }
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-brand img {
    height: 30px;
    width: 30px;
  }
  .container {
    padding: 0 7px;
  }
  .content-wrapper, .cta .content-wrapper {
    gap: 16px;
  }
  .testimonials .content-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .card-container, .content-grid {
    gap: 11px;
  }
  .card, .testimonial-card {
    padding: 20px 14px 14px 14px;
  }
  .features ul {
    gap: 12px;
    flex-direction: column;
  }
  .features ul li {
    padding: 18px 11px 14px 12px;
  }
  .hero {
    padding: 38px 0 24px 0;
    min-height: unset;
  }
  .hero h1{
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.38rem;
  }
  .footer-nav, .social-links {
    gap: 9px;
  }
  .section, section {
    margin-bottom: 32px;
    padding: 20px 0 20px 0;
  }
  .privacy-policy, .gdpr-section, .terms-of-use, .cookie-policy, .thank-you {
    margin-top: 18px;
    padding: 28px 0 14px 0;
  }
  .cta {
    padding: 26px 0 18px 0;
    margin-bottom: 34px;
    border-radius: 14px;
  }
  .map-placeholder, .contact-info-block {
    min-width: unset;
    padding: 12px 7px;
    border-radius: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.43rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  .hero p, .testimonial-card p {
    font-size: 1rem;
  }
  .cta-btn, .main-nav a, .mobile-nav a {
    font-size: 1rem;
    padding-left: 14px; padding-right: 14px;
  }
  .footer-brand {
    font-size: 1.01rem;
  }
  .privacy-policy, .gdpr-section, .terms-of-use, .cookie-policy, .thank-you {
    padding: 15px 0 8px 0;
    border-radius: 8px;
  }
}

/* Transitions & Micro-Interactions */
.card, .cta, .testimonial-card, .features ul li {
  transition: box-shadow .18s, transform .18s;
}
.card:hover, .card:focus-visible, .card:focus-within {
  box-shadow: 0 10px 30px rgba(34,34,34,0.10);
  transform: translateY(-2px) scale(1.015);
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #181818;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  padding: 22px 16px;
  z-index: 2000;
  font-size: 1rem;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
  border-radius: 22px 22px 0 0;
  animation: fadeInCookie 0.8s cubic-bezier(.7,.14,.39,1.01);
}
@keyframes fadeInCookie {
  0% { opacity: 0; transform: translateY(80px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner .cookie-text {
  flex: 1 1 300px;
  color: #e5e5e5;
  font-size: 1.06rem;
  margin-right: 22px;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  font-family: var(--font-display);
  font-weight: 500;
  border-radius: 24px;
  padding: 7px 22px;
  font-size: 1.09rem;
  cursor: pointer;
  border: none;
  transition: background .19s, color .14s;
  margin-bottom: 0;
}
.cookie-consent-banner .accept-btn {
  background: #fff;
  color: #181818;
  border: 1.5px solid #222;
}
.cookie-consent-banner .accept-btn:hover, .cookie-consent-banner .accept-btn:focus {
  background: #A4D5C7;
  color: #111;
}
.cookie-consent-banner .reject-btn {
  background: #222;
  color: #fff;
  border: 1.5px solid #aaa;
}
.cookie-consent-banner .reject-btn:hover, .cookie-consent-banner .reject-btn:focus {
  background: #444;
  color: #fff;
}
.cookie-consent-banner .settings-btn {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-consent-banner .settings-btn:hover { background: #222; }

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,30,30,0.92);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  animation: cookieModalIn .52s cubic-bezier(.75,-0.17,.41,.89) forwards;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #161616;
  border-radius: 13px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.27);
  padding: 36px 28px 26px 28px;
  min-width: 320px;
  max-width: 98vw;
  width: 370px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: slideModalIn .41s cubic-bezier(.78,-0.11,.6,1.24);
}
@keyframes slideModalIn {
  from { transform: translateY(90px) scale(0.97); }
  to   { transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.22rem;
  color: #111;
  margin-top: 0;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  right: 14px; top: 12px;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  color: #999;
  cursor: pointer;
}
.cookie-modal .close-modal-btn:hover {
  color: #333;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  user-select: none;
  cursor: pointer;
}
.cookie-modal input[type='checkbox'] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #555;
  border-radius: 6px;
  background: #fafafa;
  transition: border .17s, background .11s;
  margin-right: 2px;
  vertical-align: middle;
}
.cookie-modal input[type='checkbox']:checked {
  background: #222;
  border: 2px solid #222;
}
.cookie-modal .category-desc {
  margin-left: 34px;
  font-size: 0.99rem;
  color: #5a5a5a;
  margin-bottom: 6px;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .modal-btns button {
  font-family: var(--font-display);
  border-radius: 16px;
  padding: 7px 16px;
  font-size: 1rem;
  border: 1px solid #aaa;
  background: #fff;
  color: #222;
  margin-bottom: 0;
  cursor: pointer;
  transition: background .18s, color .13s, border .111s;
}
.cookie-modal .modal-btns .modal-accept {
  background: #111;
  color: #fff;
  border-color: #111;
}
.cookie-modal .modal-btns .modal-accept:hover {
  background: #222;
}
.cookie-modal .modal-btns .modal-save {
  background: #A4D5C7;
  color: #111;
  border-color: #A4D5C7;
}
.cookie-modal .modal-btns .modal-save:hover {
  background: #275969;
  color: #fff;
}
/* END Cookie Consent */

