/* ============================================================
   Scandinavian Clean - WindWSCERV Umzüge - style.css
   Modern, functional, friendly – clean Scandinavian inspiration
   ============================================================ */
/*--- CSS Reset & Normalize ---*/
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
:focus {
  outline: 2px solid #F7B32B;
  outline-offset: 2px;
}

/*--- Body & Global Colors ---*/
body {
  background-color: #F7F9FB;
  color: #243444;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/*--- Typography - Heading Hierarchy ---*/
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #1a4368;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #1a4368;
  margin-bottom: 14px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #275786;
  margin-bottom: 10px;
}
h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a4368;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.1rem;
  color: #587392;
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
p, ul li, ol li {
  font-size: 1rem;
  margin-bottom: 14px;
}

/*--- Layout Containers & Spacing ---*/
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 14px 0 rgba(30,48,64,0.05);
}

/*--- Header & Navigation Styles ---*/
header {
  background: #ffffff;
  border-bottom: 1px solid #D9E3F0;
  padding: 0;
  box-shadow: 0 2px 8px 0 rgba(39,87,134,0.03);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  max-width: 180px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #243444;
  padding: 10px 8px;
  border-radius: 8px;
  position: relative;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #D9E3F0;
  color: #275786;
}
.cta-btn {
  background: #F7B32B;
  color: #1a4368;
  padding: 12px 26px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 2px 5px 0 rgba(39,87,134,0.07);
  transition: box-shadow 0.18s, background 0.15s, color 0.15s;
  cursor: pointer;
  display: inline-block;
  outline: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #275786;
  color: #fff;
  box-shadow: 0 6px 22px 0 rgba(247,179,43,0.12);
}

/*-- MOBILE BURGER MENU --*/
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #1a4368;
  cursor: pointer;
  margin-left: 10px;
  transition: background .16s;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #D9E3F0;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fafdff;
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform .35s cubic-bezier(.48,.06,.47,.97);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: 2px 0 16px 0 rgba(39,87,134,0.11);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #1a4368;
  font-size: 2.1rem;
  align-self: flex-end;
  padding: 18px 24px 0 0;
  border: none;
  cursor: pointer;
  transition: background 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #D9E3F0;
  border-radius: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 32px 0 32px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #1a4368;
  padding: 10px 6px;
  margin-bottom: 8px;
  width: 100%;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #D9E3F0;
  color: #275786;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
  }
  header .logo {
    max-width: 140px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ========================= MAIN PAGE LAYOUTS  ========================== */
/*-- Hero, Feature, Cards --*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 14px 0 rgba(30,48,64,0.05);
}
.feature-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.card-container, .card-grid {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(39,87,134,0.07);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 230px;
  flex: 1 1 260px;
  transition: box-shadow .17s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(39,87,134,0.15);
}
.feature-grid {
  flex-wrap: wrap;
  gap: 32px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F5F8FA;
  border-radius: 14px;
  box-shadow: 0 1px 4px 0 rgba(39,87,134,0.05);
  padding: 24px 18px 22px 18px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 345px;
  transition: box-shadow .18s;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}
.feature-item:hover {
  box-shadow: 0 6px 22px 0 rgba(247,179,43,0.11);
}

/*-- Text-Image / Two Column Section --*/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Testimonials */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #fff;
  min-width: 230px;
  border-radius: 14px;
  box-shadow:0 3px 16px 0 rgba(39,87,134,0.07);
  color: #233141;
  transition: box-shadow .15s;
  margin-bottom: 20px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 26px 0 rgba(39,87,134,0.11);
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: #1a4368;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-size: .95rem;
  color: #587392;
}
.brand-badge {
  background: #D9E3F0;
  color: #275786;
  border-radius: 7px;
  padding: 5px 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-right: 5px;
  font-size: 1rem;
}

/*-- Contact Block --*/
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-block ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 240px;
}
.contact-block ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
}
.map-info {
  flex: 1 1 260px;
  background: #F5F8FA;
  border-radius: 13px;
  padding: 18px 22px;
  font-size: 1rem;
  color: #1a4368;
}

/*-- Tables (Preise) --*/
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(39,87,134,0.04);
  margin-bottom: 18px;
  overflow: hidden;
}
thead th {
  background: #D9E3F0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1a4368;
  font-weight: 600;
  padding: 10px 8px;
  text-align: left;
  font-size: 1.05rem;
}
tbody td {
  padding: 10px 8px;
  font-size: 1rem;
  color: #233141;
  border-top: 1px solid #EFF4F9;
}
tbody tr:first-child td {
  border-top: none;
}

/* ======================= FOOTER ============================= */
footer {
  background: #F3F6F9;
  color: #233141;
  border-top: 1px solid #D9E3F0;
  margin-top: 80px;
  font-size: .98rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: space-between;
  padding: 40px 0 18px 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #1a4368;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 3px 0;
  border-radius: 4px;
  transition: background .13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #D9E3F0;
}
.footer-contact h4 {
  font-size: 1.07rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1a4368;
}
.footer-contact p {
  margin-bottom: 5px;
}
.footer-bottom {
  border-top: 1px solid #D9E3F0;
  text-align: center;
  padding: 16px 0 10px;
  color: #7a879b;
}

/* ======================= SCANDINAVIAN-DESIGN MICRO DETAILS ================ */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
@media (max-width: 900px) {
  .section, section {
    padding: 28px 0;
  }
}
/* Cards minimal shadow, soft border, lots of white and light blue spaces */
.card, .feature-item, .testimonial-card {
  border-radius: 13px;
  box-shadow: 0 3px 8px 0 rgba(39,87,134,0.05);
  border: 1px solid #EFF4F9;
}

/* ======================= BUTTONS, LINKS, INTERACTIONS ==================== */
button, .cta-btn {
  cursor: pointer;
  transition: background .17s, color .13s, box-shadow .17s;
}
button:active, .cta-btn:active {
  transform: scale(0.98);
}
a {
  transition: color .16s;
}

/* Table row highlight for hover */
tbody tr:hover td {
  background: #EFF4F9;
}

/* ======================= COOKIE CONSENT BANNER & MODAL ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #ffffff;
  color: #1a4368;
  box-shadow: 0 -3px 16px 0 rgba(39,87,134,0.08);
  padding: 25px 16px 24px 16px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  font-size: 1rem;
  animation: slideUpBanner .33s cubic-bezier(.36,.79,.36,1.01);
}
@keyframes slideUpBanner {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  padding: 10px 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  transition: background .15s, color .15s, box-shadow .18s;
  font-weight: 500;
}
.cookie-banner .accept-btn {
  background: #F7B32B;
  color: #1a4368;
}
.cookie-banner .accept-btn:hover {
  background: #275786;
  color: #fff;
}
.cookie-banner .reject-btn {
  background: #D9E3F0;
  color: #1a4368;
}
.cookie-banner .reject-btn:hover {
  background: #E2EDF7;
}
.cookie-banner .settings-btn {
  background: transparent;
  border: 1px solid #587392;
  color: #275786;
}
.cookie-banner .settings-btn:hover {
  background: #EFF4F9;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 36px 0 rgba(39,87,134,0.18);
  z-index: 3001;
  padding: 38px 18px 28px 18px;
  width: 97vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalPop .25s cubic-bezier(.46,.73,.42,1.04);
}
@keyframes cookieModalPop {
  from { opacity: 0; transform: translate(-50%,-40%) scale(0.93); }
  to   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.38rem;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}
.cookie-switch {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #D9E3F0;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .14s;
}
.cookie-switch:checked {
  background: #F7B32B;
}
.cookie-switch:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 3px;
  box-shadow: 0 1px 3px 0 rgba(23,34,46,0.05);
  transition: left .15s;
}
.cookie-switch:checked:before {
  left: 19px;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 18px;
  top: 16px;
  background: none;
  color: #1a4368;
  font-size: 1.8rem;
  cursor: pointer;
  border: none;
}
/* Mask for modal */
.cookie-modal-mask {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39, 87, 134, 0.15);
  z-index: 3000;
}

/* ==================== RESPONSIVE DESIGN / MOBILE FIRST ==================== */
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid, .testimonial-slider, .testimonial-list, .footer-top {
    gap: 18px;
  }
  .card, .feature-item, .testimonial-card {
    min-width: 180px;
    padding: 16px 10px;
  }
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.59rem;
  }
  h2 {
    font-size: 1.19rem;
  }
  .container {
    padding: 0 4vw;
    min-width: 0;
  }
  .section, section {
    margin-bottom: 32px;
    padding: 14px 0;
    border-radius: 8px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 14px;
  }
  .feature-item, .card, .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .testimonial-slider, .testimonial-list {
    gap: 12px;
    flex-direction: column;
  }
  .contact-block {
    flex-direction: column;
    gap: 16px;
  }
  .map-info {
    padding: 10px;
  }
  .footer-top {
    flex-direction: column;
    gap: 14px;
    padding: 18px 0;
  }
}
@media (max-width: 540px) {
  h1, h2, h3, h4 {
    font-size: 1.08rem;
  }
  .cta-btn,
  .cookie-banner button { font-size: 0.98rem; padding: 10px 12px; }
  footer {
    font-size: .9rem;
  }
}

/* Scandi Touch: whitespace & light border, gentle shadow everywhere for separation */
.section,
.card, .feature-item, .testimonial-card, .map-info, .contact-block {
  border-radius: 13px;
  border: 1px solid #ECEFF2;
}

/* ==================== UTILITY CLASSES ======================= */
.hide { display: none !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.w-100 { width: 100%; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }

/* ==================== OTHER HTML ELEMENT STYLING =============== */
ul, ol {
  margin-left: 1.1em;
  padding-left: 0;
  margin-bottom: 14px;
  color: #233141;
}
ul > li, ol > li {
  margin-bottom: 8px;
  position: relative;
}
ul > li:before, ol > li:before {
  content: '';
  width: 6px;
  height: 6px;
  background: #D9E3F0;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
ul > li b, ol > li b {
  color: #1a4368;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ==================== Z-INDEX LAYERING ============= */
header { z-index: 50; }
.mobile-menu { z-index: 1200; }
.cookie-banner { z-index: 2000;}
.cookie-modal-mask { z-index: 3000;}
.cookie-modal { z-index: 3001;}

/* ==================== MICRO-INTERACTIONS ======================= */
.card, .feature-item, .testimonial-card {
  transition: box-shadow .18s, border .2s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  border-color: #D9E3F0;
  box-shadow: 0 8px 24px rgba(247,179,43,0.08);
}

.cta-btn:active {
  background: #F7B32B;
  color: #fff;
  box-shadow: none;
}

/* ==================== FORM ELEMENTS, LABELS (if any) =========== */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid #D9E3F0;
  background: #F7F9FB;
  transition: border-color .17s;
  padding: 10px 7px;
  margin-bottom: 12px;
  width: 100%;
  box-sizing: border-box;
}
input:focus, select:focus, textarea:focus {
  border-color: #F7B32B;
  background: #fff;
}

label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1a4368;
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}

/* ======================== END OF CSS ========================== */
