/* =========================
   GlintPower Reisen: Modern Bold Theme 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;
}
/* Set core defaults */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #152A3A;
  background: #fff;
  line-height: 1.6;
  font-size: 1rem;
}
a {
  color: #205075;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #F4B400;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  background: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* =====================
   BRAND FONTS
   ===================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  color: #205075;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem; /* 36px */
  margin-bottom: 20px;
}
h2 {
  font-size: 1.875rem; /* 30px */
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem; /* 18px */
  margin-bottom: 8px;
}
p, li, blockquote, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #23435D;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}
blockquote {
  font-size: 1.25rem;
  color: #152A3A;
  margin: 0;
  font-style: italic;
  border-left: 6px solid #F4B400;
  padding-left: 18px;
}

/* =====================
   LAYOUT & CONTAINERS
   ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* MAIN SECTIONS LAYOUT */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 30px 10px;
    margin-bottom: 36px;
  }
}

/* FLEXBOX Pattern for Cards, Grids */
.card-container, .card-grid, .feature-grid, .feature-list, .service-grid, .benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .feature-grid, .service-grid, .content-grid, .feature-list, .benefits-grid, .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .card-container, .card-grid, .feature-grid, .feature-list, .service-grid, .benefits-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

.card {
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(32,80,117,0.09);
  border-radius: 18px;
  margin-bottom: 20px;
  padding: 24px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow .25s cubic-bezier(.4,0,.2,1), transform .25s cubic-bezier(.4,0,.2,1);
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(32,80,117,0.18);
  transform: translateY(-2px) scale(1.015);
}

/* Feature/Service List Items */
.service-list li, .feature-list > div, .benefits-grid > div {
  background: #fff;
  box-shadow: 0 2px 8px #e5eaf1;
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 22px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .22s cubic-bezier(.4,0,.2,1);    
  border-left: 6px solid #205075;
}
.service-list li strong {
  color: #F4B400;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  padding: 60px 0 40px 0;
  background: #205075;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
}
.hero .container {
  flex-direction: column;
}
.hero h1 {
  color: #fff;
  font-size: 2.75rem;
  margin-bottom: 18px;
  font-weight: 900;
}
.hero p {
  color: #f4f7fa;
  font-size: 1.18rem;
  margin-bottom: 32px;
  max-width: 660px;
}
.hero .button.primary {
  background: #F4B400;
  color: #205075;
  font-weight: 900;
}
.hero .button.primary:hover {
  background: #ffd359;
}
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 28px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
}


/* =====================
   NAVIGATION & HEADER
   ===================== */
header {
  width: 100%;
  background: #fff;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(32,80,117,.08);
  padding: 0;
  position: sticky;
  top: 0;
  min-height: 70px;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  height: 70px;
}
header .container > a img {
  height: 44px;
  width: auto;
  margin-right: 8px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  color: #205075;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 10px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background .14s linear, color 0.23s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F4B400;
  color: #205075;
}
/* Primary CTA in header */
header .button.primary {
  margin-left: 12px;
  display: inline-flex;
}

/* Hamburger menu styling */
.mobile-menu-toggle {
  display: none;
  background: #205075;
  color: #fff;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 1.8rem;
  font-weight: 900;
  border: none;
  transition: background .19s cubic-bezier(.4,0,.2,1);
  margin-left: 10px;
  align-items: center;
  z-index: 204;
}
.mobile-menu-toggle:hover {
  background: #F4B400;
  color: #205075;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 14px;
  }
  header .container {
    padding: 0 6px;
  }
}
@media (max-width: 900px) {
  .main-nav a {
    font-size: 0.97rem;
    padding: 7px 4px;
  }
}

@media (max-width: 768px) {
  .main-nav, header .button.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  header .container {
    gap: 10px;
    padding: 0 0.5em;
  }
}

/* =========================
   MOBILE MENU (overlay slide)
   ========================= */
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #205075;
  z-index: 300;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.55,0,.4,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 40px;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: #F4B400;
  border-radius: 7px;
  color: #205075;
  font-size: 2.1rem;
  font-weight: 900;
  padding: 6px 17px;
  margin-left: 20px;
  margin-bottom: 16px;
  border: none;
  align-self: flex-start;
  box-shadow: 0 1px 8px rgba(244,180,0,.09);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffd359;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  margin-top: 8px;
  padding-left: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  background: none;
  padding: 18px 0 14px 0;
  border-bottom: 1px solid #f7f7fa11;
  transition: color .20s, padding .18s, background .13s;
  border-radius: 5px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F4B400;
  background: #23435D44;
  padding-left: 12px;
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =========================
   BUTTONS & INTERACTIVE
   ========================= */
.button,
.button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92em 2.2em;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  background: #205075;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 3px 18px rgba(32,80,117,0.09);
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background .18s cubic-bezier(.4,0,.2,1), color .15s cubic-bezier(.4,0,.2,1), transform .14s cubic-bezier(.65,0,.45,1);
  margin: 10px 0;
  min-height: 48px;
}
.button.primary {
  background: #F4B400;
  color: #205075;
  font-weight: 900;
}
.button:hover,
.button:focus {
  background: #23435D;
  color: #fff;
  transform: translateY(-2px) scale(1.022);
}
.button.primary:hover, .button.primary:focus {
  background: #ffd359;
  color: #23435D;
}

/* =========================
   GENERIC CONTENT STYLES
   ========================= */
.text-section {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.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: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** TESTIMONIAL CARDS *****/
.testimonial-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  box-shadow: 0 5px 28px rgba(32,80,117,0.09);
  background: #fff;
  border-radius: 16px;
  margin-bottom: 22px;
  min-width: 230px;
  max-width: 600px;
  margin-top: 10px;
  border-left: 7px solid #F4B400;
  transition: box-shadow .20s cubic-bezier(.4,0,.2,1), transform .18s cubic-bezier(.4,0,.2,1);
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(32,80,117,0.13);
  transform: translateY(-2px) scale(1.018);
}
.testimonial-card blockquote {
  color: #205075;
  font-size: 1.10rem;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
.testimonial-author {
  color: #23435D;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.02em;
}

/***** QUICK FILTER NAV, FOOTER NAV *****/
.quick-filters {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 22px;
}
.quick-filters a, .footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 17px;
  background: #205075;
  color: #fff;
  border-radius: 8px;
  margin-right: 5px;
  transition: background .14s linear, color .14s;
  display: inline-block;
  letter-spacing: .02em;
}
.quick-filters a:hover, .footer-nav a:hover {
  background: #F4B400;
  color: #23435D;
}
.footer-nav {
  margin-top: 10px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 600px) {
  .quick-filters, .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
}

/***** CONTACT DETAILS *****/
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.contact-details a {
  color: #205075;
  font-weight: 700;
}

/***** FOOTER *****/
footer {
  background: #205075;
  color: #fff;
  padding: 34px 0 14px 0;
  position: relative;
  box-shadow: 0 -2px 15px rgba(32,80,117,0.08);
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.copyright {
  font-size: 0.95rem;
  margin-top: 12px;
  color: #fff;
}

/***** MISCELLANEOUS LAYOUT AIDS *****/
.feature-grid > div, .feature-list > div, .service-grid > div, .benefits-grid > div {
  flex: 1 1 230px;
  min-width: 240px;
  max-width: 100%;
}
.feature-grid img, .feature-list img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}

/***** SPACING BETWEEN MAJOR SECTIONS *****/
main section {
  margin-bottom: 60px;
  padding-top: 0;
  padding-bottom: 0;
}
main section:last-child {
  margin-bottom: 0;
}

/***** RESPONSIVE TWEAKS *****/
@media (max-width: 600px) {
  h1 {font-size: 1.45rem;}
  h2 {font-size: 1.14rem;}
  h3 {font-size: 1.08rem;}
  .container {padding: 0 6px;}
}

/* =========================
   ANIMATIONS & TRANSITIONS
   ========================= */
.button, .button.primary, .main-nav a, .footer-nav a, .card, .testimonial-card {
  transition: background .19s, color .20s, box-shadow .20s, transform .16s cubic-bezier(.43,0,.27,1);
}
.mobile-menu, .mobile-menu.active {
  transition: transform .38s cubic-bezier(.55,0,.4,1), visibility .14s, opacity .16s;
}

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 515;
  background: #205075;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 28px 16px 18px 16px;
  box-shadow: 0 -4px 28px rgba(32,80,117,0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  opacity: 1;
  transition: transform .35s cubic-bezier(.55,0,.4,1), opacity .14s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-banner-content {
  flex: 1 1 0%;
  max-width: 740px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
}
.cookie-banner .cookie-btn {
  background: #F4B400;
  color: #205075;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 999px;
  padding: 9px 22px;
  border: none;
  margin-left: 0;
  box-shadow: 0 3px 10px rgba(244,180,0,0.13);
  transition: background .17s, color .19s;
  outline: none;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #205075;
  border: 2px solid #F4B400;
  font-weight: 700;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #ffd359;
  color: #23435D;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 8px 14px 8px;
  }
  .cookie-banner .cookie-buttons {
    gap: 12px;
  }
}

/* ====== COOKIE PREFERENCES MODAL ====== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,80,117,0.69);
  z-index: 601;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.22s ease;
}
.cookie-modal-overlay.show {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 28px 38px 30px 38px;
  max-width: 470px;
  width: 96vw;
  box-shadow: 0 10px 44px rgba(32,80,117,0.17);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h3 {
  color: #205075;
  margin-bottom: 10px;
  font-size: 1.30rem;
  font-weight: 900;
}
.cookie-options-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #e8eff5;
}
.cookie-option-row:last-child {
  border-bottom: none;
}
.cookie-option-row label {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #205075;
}
.cookie-option-row .toggle-switch {
  min-width: 42px; height: 26px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #d7e1ea;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 5px #e9ecee;
}
.cookie-option-row input[type="checkbox"] {
  display: none;
}
.cookie-option-row .switch-slider {
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px #bccfe2;
  position: absolute;
  left: 1px; top: 1px;
  transition: left .18s cubic-bezier(.4,0,.2,1), background .18s;
}
.cookie-option-row input[type="checkbox"]:checked + .switch-slider {
  left: 17px;
  background: #F4B400;
}
.cookie-option-row input[type="checkbox"]:disabled + .switch-slider {
  background: #f3f7fa;
  opacity: 0.8;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  padding: 9px 20px;
}
.cookie-modal .cookie-btn.cancel {
  background: #fff;
  color: #205075;
  border: 2px solid #205075;
  font-weight: 700;
}
.cookie-modal .cookie-btn.save {
  background: #F4B400;
  color: #205075;
  font-weight: 800;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 18px 5vw 18px 5vw;
    max-width: 97vw;
  }
  .cookie-modal .modal-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
}

/* =========================
  UTILITY CLASSES (spacing, align)
========================= */
.mb-24 {margin-bottom: 24px;}
.mb-20 {margin-bottom: 20px;}
.mb-12 {margin-bottom: 12px;}
.mt-20 {margin-top: 20px;}
.mt-30 {margin-top: 30px;}
.mt-40 {margin-top: 40px;}
.gap-20 {gap: 20px;}
.text-center {text-align: center;}
.bold {font-weight: 800;}

/***** High-Contrast Accessibility for Testimonials & Reviews *****/
.testimonial-card, .testimonial-card blockquote {
  color: #23435D;
  background: #fff;
}

/***** Z-INDEX LAYERING FOR MENUS AND BANNERS *****/
header {z-index: 50;}
.mobile-menu, .mobile-menu.active {z-index: 300;}
.cookie-banner {z-index: 515;}
.cookie-modal-overlay {z-index: 601;}

/* ===============
 MICRO-INTERACTIONS 
================= */
.button:active, .button.primary:active, .cookie-btn:active {
  transform: scale(0.96);
}
.card:active, .testimonial-card:active {
  transform: scale(0.98);
  box-shadow: 0 1px 10px #e3e4ed;
}

/***** Decorative angles/shapes for BOLD modern visual flavor *****/
.hero:before {
  content: '';
  display: block;
  position: absolute;
  right: 0; top: 0;
  width: 210px;
  height: 220px;
  background: #F4B400;
  border-bottom-left-radius: 60px 110px;
  z-index: 2;
  opacity: .11;
}
@media (max-width: 500px) {
  .hero:before {
    width: 90px; height: 90px;
  }
}

/* ===============
   PRINT UTILITY (Minimal)
=================*/
@media print {
  header, footer, .cookie-banner, .mobile-menu {display: none;}
  .container {max-width: 100vw; padding: 0;}
}

/***** End CSS */
