/* Pure Glisten Umzüge - Scandinavian Clean Design System */
/* CSS RESET & BASE -------------------------------------------- */
html {
  box-sizing: border-box;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F4F7FB;
  color: #1a2730;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #165770;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E09A00;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
th, td {
  padding: 16px 14px;
  border-bottom: 1px solid #e4ebf1;
  font-family: 'Roboto', Arial, sans-serif;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  background: #F4F7FB;
  color: #165770;
}
td {
  color: #1a2730;
  background: #FFF;
}
tr:last-child td {
  border-bottom: none;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: #165770;
  margin-bottom: 10px;
}

/* TYPOGRAPHY SCALE ---------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #165770;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 32px; line-height: 1.18; }
h2 { font-size: 24px; line-height: 1.2; }
h3 { font-size: 20px; line-height: 1.25; }
@media (min-width:600px) {
  h1 { font-size: 48px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
}
p, li, td, th, span, a {
  font-size: 16px;
}
strong {
  font-weight: 600;
}

/* LAYOUTS: FLEXBOX ONLY ----------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 18px rgba(22,87,112,0.06);
  padding: 26px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  flex: 1 1 270px;
  border: 1px solid #e8edf3;
  transition: box-shadow 0.16s, border 0.16s;
}
.card:hover {
  box-shadow: 0 4px 32px rgba(22,87,112,0.16);
  border: 1.5px solid #165770;
}
.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: 24px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FFFFFF;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(22,87,112,0.07);
  border: 1px solid #e4ebf1;
  flex-direction: column;
  position: relative;
  max-width: 560px;
}
@media (min-width: 768px) {
  .testimonial-card {
    flex-direction: row;
  }
}
.testimonial-card span {
  color: #1a2730;
  font-size: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F4F7FB;
  border-radius: 8px;
  padding: 6px 12px;
  margin-left: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* MAIN NAVIGATION & HEADER -------------------------------------- */
header {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(22,87,112,0.04);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 18px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #165770;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F0B906;
  color: #fff;
}
.cta-primary {
  background: #165770;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 28px;
  border: none;
  box-shadow: 0 2px 10px rgba(22,87,112,0.06);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #E09A00;
  color: #fff;
  box-shadow: 0 4px 20px rgba(22,87,112,0.19);
}
.cta-secondary {
  background: #F0B906;
  color: #165770 !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 28px;
  border: none;
  margin-top: 18px;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #165770;
  color: #fff !important;
}

/* MOBILE NAVIGATION --------------------------------------------- */
.mobile-menu-toggle {
  display: inline-block;
  background: #fff;
  color: #165770;
  border: none;
  font-size: 30px;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 13px 8px 13px;
  transition: background 0.2s, color 0.2s;
  z-index: 121;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F0B906;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: 0 10px 36px rgba(22,87,112,0.10);
  z-index: 2000;
  padding: 28px 32px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.8, .17, .37, 1);
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.26s cubic-bezier(.82, .22, .25, 1);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #165770;
  font-size: 30px;
  align-self: flex-end;
  margin-bottom: 12px;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 6px;
  transition: color 0.22s, background 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F0B906;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #165770;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #e4ebf1;
  transition: color 0.23s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E09A00;
  outline: none;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex;
  }
  .cta-primary {
    display: inline-block;
  }
}

/* FOOTER --------------------------------------------- */
footer {
  background: #F4F7FB;
  border-top: 1.5px solid #e4ebf1;
  padding: 40px 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: #165770;
  background: #fff;
  border-radius: 5px;
  padding: 7px 13px;
  margin-bottom: 5px;
  font-size: 15px;
  transition: background 0.17s, color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  background: #165770;
  color: #fff;
}
.footer-contact {
  flex: 1 0 240px;
  color: #465564;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact a {
  color: #165770;
  text-decoration: underline;
}
.footer-contact a:hover { color: #E09A00; }
.footer-branding {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-branding img {
  height: 38px;
}
.footer-branding span {
  font-size: 15px;
  color: #8A99A5;
}
@media (min-width: 900px) {
  footer .container {
    flex-direction: row;
    align-items: flex-end;
    gap: 48px;
  }
  .footer-contact, .footer-branding, footer nav {
    margin-bottom: 0;
  }
}

/* UL/OL LISTS FOR FEATURES etc --------------------------------- */
ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #35404B;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.7;
}
ul li img {
  height: 24px;
  width: 24px;
  margin-right: 8px;
  flex-shrink: 0;
}

/* BUTTONS ---------------------------------------------- */
button, input[type=submit], input[type=button], .cta-primary, .cta-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.19s, color 0.18s, box-shadow 0.16s, border 0.15s;
}
button:active, .cta-primary:active, .cta-secondary:active {
  opacity: 0.91;
}

/* QUICK-LINKS -------------------------------------- */
.quick-links {
  background: #F4F7FB;
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 26px;
  color: #165770;
  font-size: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 1px 6px rgba(22,87,112,0.045);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quick-links ul {
  flex-direction: row;
  gap: 32px;
}
.quick-links a {
  color: #165770;
  font-weight: 500;
  text-decoration: underline;
}
.quick-links a:hover { color: #E09A00; }

/* SPECIAL CONTENT ELEMENTS ------------------------------ */
.contact-info, .location-map, .note {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(22,87,112,0.05);
  padding: 24px 19px 14px 19px;
  margin-bottom: 20px;
  border: 1px solid #e8edf3;
}
.location-map img {
  margin-bottom: 10px;
  height: 32px;
}
.note p {
  font-size: 17px;
  color: #35404B;
  font-style: italic;
}

/* universal margins between major content cards/blocks */
.main > section .container, main > section > .container {
  margin-bottom: 40px;
}
h1, h2, h3, h4, h5, h6, .cta-primary, .cta-secondary, table, .card, .testimonial-card, .contact-info, .location-map, .note {
  margin-bottom: 20px;
}

/* RESPONSIVE DESIGN ----------------------------------------- */
@media (max-width: 768px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .section, .main > section, main > section {
    padding: 32px 8px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 16px 10px;
    flex-direction: column;
    gap: 10px;
  }
  footer .container {
    gap: 22px;
  }
}

/* ANIMATIONS & MICROINTERACTIONS ------------------------ */
.card, .testimonial-card, .content-wrapper, .contact-info, .location-map, .note, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.19s, border 0.12s, background 0.18s, transform 0.18s;
}
.cta-primary, .cta-secondary, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a {
  transition: background 0.21s, color 0.18s, box-shadow 0.19s, border 0.16s, transform 0.16s;
}

/* COOKIE BANNER (FIXED BOTTOM) ------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #165770;
  box-shadow: 0 -2px 18px rgba(22,87,112,0.12);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  animation: slideUp 0.5s cubic-bezier(.63,.41,.27,1);
}
@media(min-width: 600px){
  .cookie-banner {
    flex-direction: row;
    justify-content: center;
    gap: 36px;
    padding: 24px 40px;
  }
}
@keyframes slideUp {
  0% {transform: translateY(100%); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #165770;
  margin-bottom: 5px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .cta {
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 500;
  border: none;
}
.cookie-banner .accept {
  background: #165770;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #E09A00;
}
.cookie-banner .reject {
  background: #F0B906;
  color: #165770;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #fff;
  color: #165770;
  border: 1px solid #F0B906;
}
.cookie-banner .settings {
  background: #fff;
  color: #165770;
  border: 1px solid #E09A00;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F0B906;
  color: #fff;
  border: 1px solid #F0B906;
}

/* COOKIE MODAL ------------------------------------------- */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,87,112,0.13);
  z-index: 3200;
  align-items: center;
  justify-content: center;
  transition: background 0.24s;

}
.cookie-modal.open {
  display: flex;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 42px rgba(22,87,112,0.16);
  max-width: 420px;
  padding: 36px 26px 26px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: popIn 0.37s cubic-bezier(.64,.36,.31,1);
}
@keyframes popIn {
  0% {transform: scale(0.85); opacity: 0;}
  60% {transform: scale(1.06); opacity: 1;}
  100% {transform: scale(1); opacity: 1;}
}
.cookie-modal .modal-title {
  font-size: 22px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #165770;
  margin-bottom: 6px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  background: transparent;
  color: #165770;
  border: none;
  border-radius: 5px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.16s, color 0.15s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #F0B906;
  color: #fff;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
}
.cookie-modal .cookie-category label {
  color: #165770;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #165770;
  width: 18px;
  height: 18px;
}
.cookie-modal .description {
  font-size: 15px;
  color: #43545D;
  margin-bottom: 8px;
}
.cookie-modal .modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 16px;
}
.cookie-modal .modal-actions button {
  border-radius: 7px;
  padding: 10px 22px;
  font-size: 15px;
  border: none;
  color: #fff;
  background: #165770;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.19s;
}
.cookie-modal .modal-actions button.save {
  background: #E09A00;
  color: #FFFFFF;
}
.cookie-modal .modal-actions button.save:hover {
  background: #165770;
  color: #fff;
}
.cookie-modal .modal-actions button.cancel {
  background: #fff;
  color: #165770;
  border: 1px solid #E09A00;
}
.cookie-modal .modal-actions button.cancel:hover {
  background: #F0B906;
  color: #fff;
  border: 1px solid #F0B906;
}
.cookie-modal .cookie-category input[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ACCENT / BRAND UTILITIES ------------------------- */
.bg-primary {
  background: #165770;
  color: #fff;
}
.bg-secondary {
  background: #F4F7FB !important;
  color: #165770;
}
.bg-accent {
  background: #F0B906;
  color: #165770;
}
.text-primary {
  color: #165770 !important;
}
.text-accent {
  color: #F0B906 !important;
}
.rounded-10 { border-radius: 10px; }
.shadow-1 { box-shadow: 0px 2px 12px rgba(22,87,112,0.09); }

/* HIDE FOCUS OUTLINES FOR MOUSE, KEEP FOR KEYBOARD --------- */
:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
:focus-visible {
  outline: 2px solid #F0B906;
  outline-offset: 2px;
}

/* Hide required elements for accessibility only */
.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0,0,0,0);
}

/* PRINTING TABLES --------------------------------  */
@media print {
  body {
    background: #fff !important;
    color: #111 !important;
  }
  .card, .testimonial-card, .contact-info, .location-map, .note {
    box-shadow: none !important;
    border: 1px solid #BEBEBE !important;
  }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
}


/* END OF STYLE SHEET */
