/* OCEANIC FLUTE MOBILITÄT - GEOMETRIC STRUCTURED STYLE.CSS */

/* RESET & BASELINE NORMALIZATION */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1B325A;
  background: #F7FBFD;
  line-height: 1.6;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #1B325A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #5BA1C2;
  outline-offset: 3px;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 1rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1B325A;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

/* TYPOGRAPHY SCALE FOR RESPONSIVE */
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  body, html { font-size: 15px; }
}

/* STRUCTURED CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(27, 50, 90, 0.05);
  padding: 32px 24px;
  margin-bottom: 32px;
}

/* SECTION SPACING - CRITICAL REQUIREMENT */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 700px) {
  section { padding: 32px 8px; }
  .text-section { padding: 20px 8px; margin-bottom: 20px; }
}

/* HEADER (DESKTOP + MOBILE) */
header {
  background: #fff;
  border-bottom: 4px solid #5BA1C2;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(27, 50, 90, 0.09);
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 20px;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}
header nav ul li {
  display: flex;
  align-items: center;
}
header nav ul li a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 6px;
  padding: 6px 14px;
  transition: background 0.18s, color 0.18s;
}
header nav ul li a:hover,
header nav ul li a:focus {
  background: #5BA1C2;
  color: #fff;
}
header nav a.cta.primary {
  background: #1B325A;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  padding: 9px 24px;
  margin-left: 16px;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 12px 2px 12px 2px;
  box-shadow: 0 2px 8px rgba(91,161,194,0.13);
  transition: background 0.2s, box-shadow 0.2s;
  display: inline-block;
  border: none;
  position: relative;
}
header nav a.cta.primary:hover, header nav a.cta.primary:focus {
  background: #5BA1C2;
  color: #fff;
  box-shadow: 0 4px 12px rgba(27, 50, 90, 0.14);
}
/* Hide the burger on desktop */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1020px) {
  header nav ul {
    gap: 12px;
  }
  header nav a.cta.primary { margin-left: 8px; }
}

@media (max-width: 900px) {
  header nav ul {
    display: none;
  }
  header nav a.cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    background: #5BA1C2;
    color: #fff;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    border-radius: 8px;
    border: none;
    margin-left: auto;
    cursor: pointer;
    transition: background 0.2s;
  }
  .mobile-menu-toggle:hover {
    background: #1B325A;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F7FBFD;
  box-shadow: 0 10px 32px rgba(27,50,90,0.26);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.7,0,0.25,1);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #1B325A;
  font-size: 2.2rem;
  padding: 18px 18px 8px 18px;
  align-self: flex-end;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #5BA1C2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 20px 40px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.35rem;
  color: #1B325A;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #5BA1C2;
  color: #fff;
}

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

/* HERO SECTION GEOMETRY */
.hero {
  background: linear-gradient(120deg, #F7FBFD 65%, #5BA1C2 100%);
  border-radius: 0 0 56px 0 / 0 0 72px 0;
  box-shadow: 0 10px 36px rgba(91,161,194, 0.08);
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 36px;
  padding-bottom: 36px;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: #1B325A;
  letter-spacing: 0.02em;
  margin-bottom: 15px;
  text-shadow: 0 1px 0 #fff, 0 2px 10px #F7FBFD;
}
.hero p {
  font-size: 1.23rem;
  color: #1B325A;
  max-width: 660px;
  margin-bottom: 22px;
}

@media (max-width:700px) {
  .hero { border-radius: 0 0 24px 0 / 0 0 36px 0; margin-bottom: 32px; }
  .hero .container { padding-top: 18px; padding-bottom: 18px; }
}

/* FLEX STRUCTURE UTILS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px 2px 16px 2px;
  box-shadow: 0 2px 16px rgba(27, 50, 90, 0.07), 0 1.5px 0 #5BA1C2;
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  transition: box-shadow 0.15s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(27, 50, 90, 0.11);
  transform: translateY(-3px) scale(1.014);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.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: stretch;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
}

/* FEATURES & SERVICES */
.features, .services {
  background: #fff;
  border-radius: 28px 8px 28px 8px;
  box-shadow: 0 2.5px 14px rgba(91,161,194, 0.08);
}
.features ul, .services ul {
  margin-top: 10px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* visually separate each li but not using grid */
.features li, .services li {
  position: relative;
  padding-left: 27px;
  font-size: 1.09rem;
  font-weight: 500;
}
.features li:before, .services li:before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  background: #5BA1C2;
  border-radius: 2px 10px 2px 10px;
  display: block;
}
.features li strong, .services li strong { color: #1B325A; }

/* SERVICE LIST TILES */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 22px 0 10px 0;
}
.service-list > div {
  flex: 1 1 260px;
  min-width: 220px;
  background: #F7FBFD;
  border-radius: 18px 4px 18px 4px;
  box-shadow: 0 1.5px 8px rgba(27, 50, 90, 0.09);
  padding: 24px 16px 20px 16px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid #E5F2F8;
  transition: box-shadow 0.13s, border-color 0.16s;
}
.service-list > div:hover {
  box-shadow: 0 6px 28px rgba(91,161,194,0.16);
  border-color: #5BA1C2;
}
.service-list strong {
  color: #1B325A;
  font-weight: bold;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    gap: 12px;
  }
  .service-list > div { min-width: 0; }
}

/* TESTIMONIALS */
.testimonials {
  background: #E5F2F8;
  border-radius: 24px 32px 0 8px;
  box-shadow: 0 1.5px 18px rgba(91,161,194, 0.10);
}
.testimonials h2 { color: #1B325A; }
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px 32px 12px 20px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 10px rgba(27, 50, 90, 0.08);
  border-left: 7px solid #5BA1C2;
  transition: box-shadow 0.16s, border-color 0.15s;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.07rem;
  font-style: italic;
  color: #1B325A;
  line-height: 1.45;
  margin-bottom: 2px;
  flex: 2 1 auto;
}
.testimonial-card p {
  color: #1B325A;
  margin-left: 14px;
  font-weight: 600;
  font-size: 1rem;
}
.testimonial-card strong {
  color: #5BA1C2;
}
@media (max-width:700px) {
  .testimonial-card { flex-direction: column; gap: 10px; padding: 16px; }
  .testimonials { border-radius: 14px 18px 0 2px; }
}

/* CTA SECTION */
.cta {
  background: #1B325A;
  border-radius: 16px 48px 16px 10px;
  color: #fff;
  text-align: center;
  box-shadow: 0 2.5px 16px rgba(27, 50, 90, 0.10);
}
.cta .container, .cta .content-wrapper { align-items: center; }
.cta h2 { color: #fff; margin-bottom: 16px; }
.cta.primary, .cta a.cta.primary {
  background: #5BA1C2;
  color: #fff !important;
  padding: 12px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1.15rem;
  border-radius: 12px 4px 18px 2px;
  margin: 8px 0 0 0;
  display: inline-block;
  box-shadow: 0 1.5px 15px rgba(27,50,90,0.06);
  border: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta.primary:hover, .cta.primary:focus { background: #1B325A; color: #fff !important; box-shadow: 0 4px 24px rgba(91,161,194,0.16); }
.short-contact {
  margin-top: 20px;
}
.short-contact p { color: #fff; margin-bottom: 6px; }
.short-contact a {
  color: #D6F1FB;
  font-weight: bold;
  text-decoration: underline;
}
/* CTAS for thank-you.html and form submit */
@media (max-width:700px) {
  .cta { border-radius: 8px 20px 8px 4px; }
  .cta .content-wrapper { gap: 12px; padding: 6px; }
}

/* FOOTER */
footer {
  background: #1B325A;
  color: #fff;
  padding: 40px 0 0 0;
  position: relative;
}
footer .container, footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
footer nav ul {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav ul li, footer nav ul li a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  padding: 4px 10px;
  border-radius: 6px;
}
footer nav ul li a:hover,footer nav ul li a:focus {
  background: #5BA1C2;
  color: #fff;
}
.footer-contact p, .footer-contact a {
  color: #D6F1FB;
  font-size: 0.98rem;
  margin-bottom: 3px;
}
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
}
.social-links a {
  display: flex;
  background: #5BA1C2;
  border-radius: 50%;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  transition: background 0.19s;
  box-shadow: 0 1.5px 4px rgba(112,184,210,0.18);
}
.social-links a:hover, .social-links a:focus { background: #Acc9e6; }

@media (max-width:700px) {
  footer .container, footer .content-wrapper { flex-direction: column; gap: 10px; }
  footer { padding: 25px 0 0 0; }
}

/* SUCCESS/INFORMATION PAGE */
.success .content-wrapper {
  align-items: center;
  background: #F7FBFD;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(27, 50, 90, 0.05);
  padding: 32px 24px 38px 24px;
  margin-bottom: 32px;
}
.success h1 {
  color: #5BA1C2;
  margin-bottom: 10px;
}
.success a.cta.primary {
  margin-top: 24px;
}

/* FORM AND FAQ */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid #5BA1C2;
  border-radius: 10px 2px 10px 2px;
  padding: 9px 12px;
  transition: border 0.15s, box-shadow 0.16s;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: 0 2px 9px #5ba1c244;
  border-color: #1B325A;
}
label {
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  color: #1B325A;
}

/* COOKIE CONSENT BANNER | BOTTOM FIXED | MODAL SETTINGS */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #1B325A;
  color: #fff;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px 18px 20px;
  box-shadow: 0 -2.5px 22px rgba(27,50,90,0.09);
  animation: cookie-fade-in 0.5s;
}
@keyframes cookie-fade-in {
  from { opacity: 0; transform: translateY(48px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
  flex: 1 1 240px;
}
.cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px 2px 10px 2px;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-btn.accept {
  background: #5BA1C2;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #4498b7;
}
.cookie-btn.reject {
  background: #fff;
  color: #1B325A;
  border: 1.5px solid #5BA1C2;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #5BA1C2;
  color: #fff;
}
.cookie-btn.settings {
  background: #F7FBFD;
  color: #1B325A;
  border: 1.5px solid #ACC9E6;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E5F2F8;
}

@media (max-width:700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px 8px;
    font-size: 0.93rem;
  }
  .cookie-actions { gap: 6px; justify-content: flex-end; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  z-index: 5100;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(0.98);
  background: #fff;
  border-radius: 18px 36px 16px 10px;
  box-shadow: 0 12px 48px rgba(27,50,90,0.19);
  width: 90vw;
  max-width: 410px;
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.32s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  color: #1B325A;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #5BA1C2;
  width: 18px; height: 18px;
  outline: 2px solid #5BA1C2;
}
.cookie-modal input[disabled] {
  accent-color: #5BA1C2;
  opacity: 0.6;
}
.cookie-modal .cookie-actions {
  justify-content: flex-end;
  gap: 8px;
}
.cookie-modal .cookie-btn {
  min-width: 92px;
}
/* modal close corner */
.cookie-modal .modal-close {
  position: absolute;
  right: 18px; top: 18px;
  background: none;
  border: none;
  font-size: 1.38rem;
  color: #1B325A;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .modal-close:hover {
  color: #5BA1C2;
}

/* GEOMETRIC SHAPE DECORATIONS (OPTIONAL) */
.hero:before,
.features:before,
.services:after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  border-radius: 18% 38% 66% 14%;
}
.hero:before {
  top: -25px;
  right: -60px;
  width: 155px;
  height: 90px;
  background: #5BA1C2;
  transform: rotate(-14deg);
}
.features:before {
  bottom: 14px;
  left: -40px;
  width: 90px;
  height: 70px;
  background: #1B325A;
  transform: rotate(8deg);
}
.services:after {
  top: 34px;
  right: -48px;
  width: 60px;
  height: 90px;
  background: #5BA1C2;
}
@media (max-width:900px) {
  .hero:before, .features:before, .services:after { display: none; }
}

/* BUTTONS UNIVERSAL */
button, .button, .cta, .cta.primary {
  cursor: pointer;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
}
button:focus, .button:focus {
  outline: 2px solid #5BA1C2;
  outline-offset: 2.5px;
}

/* MICRO-ANIMATIONS */
.card, .service-list > div, .cta.primary, .cookie-btn {
  transition: box-shadow 0.16s, border-color 0.16s, transform 0.13s, background 0.13s, color 0.13s;
}
.card:active, .cta.primary:active, .cookie-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(27, 50, 90, 0.09);
}

/* ACCESSIBILITY UTILITIES */
[tabindex]:focus,
input:focus,
select:focus,
textarea:focus,
a:focus,
button:focus {
  outline: 2px solid #5BA1C2;
  outline-offset: 3px;
}

/* END RG COMPLETE */
