/* === CSS RESET & BASELINE === */
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;
}

/* Remove link underlines, form field backgrounds, etc. */
a {
  color: inherit;
  text-decoration: none;
}

body, button, input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1d2130;
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

:focus {
  outline: 2px solid #64A070;
  outline-offset: 2px;
}


/* === TYPOGRAPHY === */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #294871;
  margin-bottom: 20px;
}

h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #294871;
  margin-bottom: 20px;
}

h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #294871;
  margin-bottom: 10px;
}

p, li, span, .confirmation-message, .next-steps-info {
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  font-size: 1rem;
  line-height: 1.7;
}

strong, b {
  font-weight: 700;
}


/* === UTILITIES & CONTAINERS === */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(41,72,113,0.04);
  padding: 32px 24px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(41,72,113,0.11);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #F1ECE6;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(41,72,113,0.06);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 420px;
}
.testimonial-card p {
  color: #222;
  font-size: 1.05rem;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #294871;
}

.feature-item,
.usp-list li,
.feature-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  padding: 0 0 10px 0;
  font-size: 1.05rem;
}

/* Default USP/Feature lists */
.usp-list, .feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 0px;
}

.step-by-step {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.step-by-step li {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

/* Service/feature grid */
.feature-grid, .service-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature, .service {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(41,72,113,0.05);
  padding: 32px 20px 28px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature:hover, .service:hover {
  box-shadow: 0 6px 24px rgba(41,72,113,0.08);
}
.feature img,
.service img {
  width: 36px;
  height: 36px;
}

.map-placeholder {
  width: 100%;
  max-width: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F1ECE6;
  border-radius: 16px;
  padding: 30px 0;
}
.arrival-instructions {
  flex: 1;
  padding-left: 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-info-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  border-bottom: 1px solid #e8ebed;
  padding-top: 0px;
  position: relative;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  min-height: 70px;
}
.logo img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #294871;
  padding: 6px 0 0px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #64A070;
}

.btn-primary {
  background: #294871;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 11px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(41,72,113,0.07);
  transition: background 0.18s, box-shadow 0.22s, transform 0.16s;
  letter-spacing: 0.01em;
  display: inline-block;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #64A070;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(41,72,113,0.11);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2rem;
  color: #294871;
  padding: 8px;
  margin-left: 12px;
  cursor: pointer;
  z-index: 1101;
  border-radius: 8px;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F1ECE6;
  color: #64A070;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 15px rgba(41,72,113,0.07);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.96,.03,.17,.96);
  display: flex;
  flex-direction: column;
  padding: 0;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #294871;
  padding: 18px 22px 10px 0;
  cursor: pointer;
  z-index: 1102;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #64A070;
  background: #F1ECE6;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 0 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #294871;
  padding: 12px 0;
  width: 100%;
  border-radius: 7px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F1ECE6;
  color: #64A070;
}

/* === HERO SECTIONS === */
.hero {
  background: #F1ECE6;
  padding: 60px 0 40px 0;
  margin-bottom: 32px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.hero .content-wrapper {
  gap: 22px;
}
.hero p {
  font-size: 1.18rem;
  color: #222;
}

/* === ABOUT SHORT / AREA === */
.about-short, .about-area {
  background: #fff;
  margin-bottom: 40px;
  padding: 36px 0;
}

.contact-details {
  background: #F1ECE6;
  margin-bottom: 32px;
  padding: 38px 0;
}

.thank-you {
  background: #fff;
  padding: 60px 0 60px 0;
}
.thank-you .confirmation-message {
  font-size: 1.1rem;
  color: #294871;
}
.next-steps-info ul {
  padding-left: 1rem;
  margin-bottom: 16px;
}
.next-steps-info li {
  list-style-type: disc;
  margin-left: 16px;
}

/* === FOOTER === */
footer {
  background: #F1ECE6;
  padding: 34px 0 16px 0;
  margin-top: 60px;
  border-top: 1px solid #e8ebed;
  font-size: 0.98rem;
  color: #294871;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  flex: 0 0 auto;
  margin-bottom: 12px;
}
.footer-brand img {
  height: 35px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #294871;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .99rem;
  font-weight: 500;
  padding: 2px 0;
  transition: color 0.14s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #64A070;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #294871;
  font-size: .98rem;
  margin-bottom: 10px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social img {
  width: 24px;
  height: 24px;
  filter: grayscale(0) brightness(1) contrast(1.2);
  transition: filter 0.18s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: grayscale(0) brightness(1.3) contrast(1.5) drop-shadow(0 0 4px #64A07044);
}

/* === LEGAL SECTIONS (DSGVO etc.) === */
.legal {
  background: #fff;
  padding: 42px 0;
}
.legal .content-wrapper h1 { margin-bottom: 18px; }
.legal .content-wrapper h2 { margin: 32px 0 10px 0; font-size: 1.3rem; }
.legal .content-wrapper ul {
  padding-left: 1.3em;
  margin-bottom: 18px;
}
.legal .content-wrapper li {
  list-style-type: disc;
  margin-bottom: 8px;
}

/* === COOKIE BANNER & SETTINGS MODAL === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 5000;
  background: #fff;
  box-shadow: 0 -2px 14px rgba(41,72,113,0.08);
  border-top: 1px solid #e8ebed;
  padding: 26px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: cookie-banner-in 0.35s cubic-bezier(.73,0,.21,1) 1;
}
@keyframes cookie-banner-in {
  from { opacity: 0; transform: translateY(70px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #294871;
  font-size: 1.05rem;
  max-width: 700px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.cookie-banner button {
  background: #294871;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-right: 3px;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.cookie-banner button.cookie-reject {
  background: #F1ECE6;
  color: #294871;
  border: 1px solid #294871;
}
.cookie-banner button.cookie-settings {
  background: #64A070;
  color: #fff;
  margin-left: 1px;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #64A070;
  color: #fff;
}
.cookie-banner button.cookie-reject:hover,
.cookie-banner button.cookie-reject:focus {
  background: #294871;
  color: #fff;
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 5001;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(41,72,113,0.13);
}
.cookie-modal-overlay.visible {
  display: block;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  z-index: 5100;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 36px rgba(41,72,113,0.14);
  min-width: 310px;
  max-width: 96vw;
  width: 400px;
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-in 0.3s cubic-bezier(.76,.06,.2,.95) 1;
}
@keyframes cookie-modal-in {
  from { opacity: 0; transform: translate(-50%,-42%) scale(.92); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  color: #294871;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-category label {
  color: #294871;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
  width: 42px;
  height: 24px;
  background: #F1ECE6;
  border-radius: 20px;
  position: relative;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-toggle[aria-checked="true"] {
  background: #64A070;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(41,72,113,0.08);
  transition: left 0.14s;
}
.cookie-toggle[aria-checked="true"]::after {
  left: 21px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-btns button {
  padding: 8px 22px;
  border-radius: 23px;
  background: #294871;
  color: #fff;
  border: none;
}
.cookie-modal .cookie-modal-btns button:hover,
.cookie-modal .cookie-modal-btns button:focus {
  background: #64A070;
}

.cookie-modal .essential-only {
  opacity: 0.6;
  pointer-events: none;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #294871;
  position: absolute;
  right: 18px;
  top: 16px;
  cursor: pointer;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #64A070;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .container {
    max-width: 880px;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-grid, .service-list {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  .container {
    padding: 0 12px;
    max-width: 600px;
  }
  header .container {
    height: 56px;
    min-height: 56px;
  }
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    position: absolute;
    right: 12px;
    top: 10px;
  }
  .mobile-menu {
    visibility: hidden;
    transition: transform .35s cubic-bezier(.95,.01,.23,.99), visibility .1s .35s;
  }
  .mobile-menu.open {
    visibility: visible;
    transition: transform .35s cubic-bezier(.95,.01,.23,.99);
  }
  .feature-grid, .service-grid, .service-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    margin-bottom: 14px;
  }
  .map-placeholder {
    max-width: 100%;
    margin-bottom: 18px;
  }
  .about-short, .about-area, .contact-details, .legal {
    padding: 20px 0;
  }
}
@media (max-width: 480px) {
  .container {
    max-width: 99vw;
    padding: 0 6px;
  }
  h1, .hero h1 {font-size: 1.45rem;}
  h2 {font-size: 1.1rem;}
  .btn-primary {font-size: 0.96rem; padding: 10px 19px;}
}

/* === MICRO-INTERACTIONS & ACCESSIBILITY === */
a, button, .btn-primary, .mobile-nav a {
  transition: color 0.16s, background 0.17s, box-shadow 0.18s, border 0.15s, transform 0.13s;
}
.card, .feature, .service, .testimonial-card {
  transition: box-shadow 0.15s, transform 0.13s;
}
.card:active, .feature:active, .service:active {
  transform: scale(.98);
}

::-webkit-scrollbar {width: 0.6em; background: #F1ECE6;}
::-webkit-scrollbar-thumb {background: #ddd; border-radius: 8px;}

/* === SPECIAL SECTIONS === */
.contact-cta {
  background: #F1ECE6;
  padding: 50px 0;
  text-align: center;
  border-radius: 18px;
  margin-bottom: 32px;
}
.contact-cta h2 { margin-bottom: 12px; }

/* Hide cookie UI by default (activated via JS when needed) */
.cookie-banner, .cookie-modal-overlay, .cookie-modal { display: none; }
