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

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background-color: #192734;
  color: #F8F3ED;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: linear-gradient(135deg, #233747 0%, #28536B 70%, #1e293a 100%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #A2C6B8;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #f1cb80;
  outline: none;
}
strong {
  font-weight: 700;
}

/* ====================================================
   BASE TYPOGRAPHY & HEADINGS
   ==================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F8F3ED;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #A2C6B8;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, ul, ol, address {
  font-size: 1rem;
  color: #F8F3ED;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.subheadline {
  color: #A2C6B8;
  font-size: 1.15rem;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.2px;
}
/* Typography scale for spacing & hierarchy */
ul, ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 10px;
}

/* ====================================================
   CONTAINER & SECTION LAYOUT
   ==================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.section,
.hero-section,
.cta-section,
.content-section,
.values-section,
.timeline-section,
.features-section,
.services-section,
.info-section,
.blog-listing-section,
.confirmation-section,
.schedule-section,
.contact-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(40,83,107,0.2);
  border-radius: 22px;
  box-shadow: 0 6px 42px rgba(40,83,107, 0.07), 0 1.5px 7px rgba(162,198,184,0.035);
}
@media (max-width: 900px) {
  .section,
  .hero-section,
  .cta-section,
  .content-section,
  .values-section,
  .timeline-section,
  .features-section,
  .services-section,
  .info-section,
  .blog-listing-section,
  .confirmation-section,
  .schedule-section,
  .contact-section {
    padding: 24px 10px;
    margin-bottom: 32px;
  }
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ====================================================
   FLEXBOX LAYOUT PATTERNS
   ==================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #223248;
  border-radius: 18px;
  box-shadow: 0 5px 28px rgba(40,83,107, 0.11);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 40px #28536B, 0 2px 10px #A2C6B880;
  transform: translateY(-4px) scale(1.025);
}
.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: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #192734;
  border-radius: 20px;
  box-shadow: 0 2px 12px #28536B11;
  margin-bottom: 24px;
  margin-top: 18px;
  min-width: 240px;
  max-width: 550px;
  border-left: 5px solid #28536B;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: #28536B;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.feature {
  background: #233747;
  padding: 24px 20px;
  border-radius: 17px;
  flex: 1 1 240px;
  min-width: 200px;
  box-shadow: 0 4px 18px #28536B22;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.25s, border 0.2s;
  position: relative;
}
.feature img {
  width: 52px;
  margin-bottom: 15px;
}
.feature:hover {
  box-shadow: 0 6px 36px #A2C6B855, 0 2px 8px #28536B33;
  border: 2px solid #A2C6B8;
}

@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature {
    min-width: unset;
  }
}

/* Blog Teaser List */
.blog-teaser-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.blog-teaser {
  background: #223248;
  border-radius: 17px;
  box-shadow: 0 2px 14px #28536B22;
  flex: 1 1 260px;
  min-width: 240px;
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, border 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-teaser h3 {
  color: #f7e4b4;
  margin-bottom: 6px;
}
.blog-teaser a {
  color: #A2C6B8;
  border-bottom: 1.5px dashed #A2C6B8;
  font-weight: 500;
  margin-top: 5px;
  align-self: flex-start;
  transition: color 0.18s, border 0.22s;
}
.blog-teaser a:hover {
  color: #28536B;
  border-bottom: 2px solid #F8F3ED;
}
.blog-teaser:hover {
  box-shadow: 0 4px 24px #A2C6B866, 0 3px 10px #28536B33;
  border: 2px solid #A2C6B8;
  transform: translateY(-3px) scale(1.018);
}

.categories-overview {
  margin: 10px 0 0 0;
}
.categories-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.categories-overview li {
  background: #28536B;
  color: #F8F3ED;
  padding: 5px 14px;
  border-radius: 11px;
  font-size: 0.96rem;
  margin-bottom: 0;
  letter-spacing: 0.03em;
}

/* Content Section & Timeline */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-bottom: 6px;
}
.timeline-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ====================================================
   HEADER + DESKTOP NAVIGATION
   ==================================================== */
header {
  width: 100%;
  background: rgba(31,55,68,0.94);
  border-bottom: 2px solid #A2C6B840;
  position: sticky;
  top: 0; left: 0; z-index: 100;
  min-height: 70px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 18px;
}
.logo img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-left: 45px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #A2C6B8;
  letter-spacing: 0.016em;
  font-weight: 500;
  padding: 2px 0 2px 0;
  position: relative;
  transition: color 0.15s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg,#A2C6B8 0,#F8F3ED 90%);
  border-radius: 1.5px;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: width .24s cubic-bezier(.4,0,.2,1);
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 100%;
}
.main-nav a:hover {
  color: #F8F3ED;
}

.cta-primary {
  background: linear-gradient(90deg, #A2C6B8 0%, #28536B 100%);
  color: #223248;
  padding: 12px 32px;
  border-radius: 99px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 2px 12px #A2C6B880;
  transition: background 0.22s, box-shadow 0.2s, color 0.23s, outline 0.18s;
  outline: none;
  cursor: pointer;
  border: none;
  margin-left: 30px;
  margin-right: 0;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #F8F3ED 0%, #A2C6B8 100%);
  color: #192734;
  box-shadow: 0 4px 21px #A2C6B899, 0 1.5px 6px #28536B44;
  outline: 2px solid #28536B;
}

/* Burger Icon */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #A2C6B8;
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: 34px;
  padding: 4px 12px;
  line-height: 1;
  z-index: 201;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #223248;
  color: #F8F3ED;
  outline: 1.5px solid #A2C6B8;
}

@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ====================================================
   MOBILE FULLSCREEN MENU
   ==================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #192734;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 35px;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.5,0,.15,1);
  box-shadow: 4px 0 30px #28536B55;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 15px 0;
  font-size: 2.4rem;
  color: #A2C6B8;
  background: none;
  border: none;
  border-radius: 8px;
  padding: 4px 16px;
  cursor: pointer;
  transition: background 0.13s, color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #233747;
  color: #F8F3ED;
  outline: 1.5px solid #A2C6B8;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding-left: 32px;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #A2C6B8;
  padding: 7px 0;
  letter-spacing: 0.021em;
  transition: color 0.15s;
  border-left: 4px solid transparent;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #F8F3ED;
  border-left: 4px solid #A2C6B8;
}

/* Mobile Menu Overlay for Accessibility */
@media (max-width: 1000px) {
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ====================================================
   HERO & CTA SECTIONS
   ==================================================== */
.hero-section {
  background: linear-gradient(90deg, #28536B 0%, #223248 100%);
  box-shadow: 0 6px 44px #19273444, 0 1.5px 12px #A2C6B822;
  color: #F8F3ED;
  border-radius: 30px;
  margin-top: 30px;
  margin-bottom: 60px;
  padding: 56px 20px 52px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .container {
  flex-direction: column;
  align-items: center;
}
.cta-section {
  background: linear-gradient(90deg, #233747 0%, #A2C6B8 100%);
  box-shadow: 0 4px 32px #28536B33;
  color: #223248;
  border-radius: 28px;
  text-align: center;
}
.cta-section h2, .cta-section p {
  color: #223248;
}
.cta-section .cta-primary {
  margin-left: 0;
  margin-top: 28px;
}

/* ====================================================
   FOOTER
   ==================================================== */
footer {
  background: #223248;
  padding: 28px 0 0 0;
  border-top: 2px solid #A2C6B822;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}
.footer-nav a {
  font-size: 0.96rem;
  color: #A2C6B8;
  padding: 2px 0;
  border-bottom: 1px dotted #A2C6B8;
  transition: color 0.18s, border 0.17s;
}
.footer-nav a:hover {
  color: #F8F3ED;
  border-bottom: 2px solid #F8F3ED;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}
.footer-contact address {
  font-style: normal;
  color: #A2C6B8;
  font-size: 0.99rem;
  margin-bottom: 0;
}
.footer-contact img {
  height: 32px;
  margin-bottom: 4px;
  opacity: 0.95;
}
.footer-contact a {
  color: #F8F3ED;
  text-underline-offset: 2px;
}
.footer-contact a:hover {
  color: #A2C6B8;
}
.footer-contact p {
  font-size: 0.97rem;
  margin-bottom: 0;
  margin-top: 2px;
  color: #A2C6B8;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

/* ====================================================
   MISCELLANEOUS UI ELEMENTS
   ==================================================== */
.map-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
  font-size: 1.08rem;
  color: #A2C6B8;
  background: #223248;
  padding: 12px 22px;
  border-radius: 15px;
  box-shadow: 0 3px 12px #28536B11;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}
.contact-details img {
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 18px;
}
.faq-item h3 {
  color: #A2C6B8;
  font-size: 1.1rem;
  margin-bottom: 3px;
}
.faq-item p {
  font-size: 0.97rem;
  color: #F8F3ED;
  margin-bottom: 0;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #192734;
  color: #F8F3ED;
  box-shadow: 0 -2px 20px #28536B55;
  padding: 20px 18px 18px 18px;
  z-index: 99999;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-top: 3px solid #A2C6B8;
  font-size: 1.01rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.23s cubic-bezier(.37,.01,.74,1), transform 0.33s cubic-bezier(.37,.01,.74,1);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-text {
  flex: 1 1 50%;
  color: #A2C6B8;
  font-size: 0.98rem;
  margin-right: 8px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  border: none;
  border-radius: 88px;
  padding: 10px 26px;
  font-weight: 600;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  box-shadow: 0 2px 9px #A2C6B855;
}
.cookie-btn.accept {
  background: #A2C6B8;
  color: #192734;
}
.cookie-btn.accept:hover {
  background: #28536B;
  color: #f4ecd8;
}
.cookie-btn.reject {
  background: transparent;
  color: #A2C6B8;
  border: 2px solid #A2C6B8;
}
.cookie-btn.reject:hover {
  background: #28536B;
  color: #F8F3ED;
}
.cookie-btn.settings {
  background: #28536B;
  color: #F8F3ED;
}
.cookie-btn.settings:hover {
  background: #A2C6B8;
  color: #192734;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.97rem;
    padding: 18px 6px 14px 10px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 7px;
    width: 100%;
    align-items: flex-start;
  }
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-60%) scale(0.95);
  min-width: 300px;
  z-index: 999999;
  background: #223248;
  color: #F8F3ED;
  border-radius: 21px;
  padding: 34px 24px 24px 24px;
  box-shadow: 0 8px 64px #28536B90;
  display: none;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalAppear 0.34s cubic-bezier(.34,.34,.6,1.21);
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal h3 {
  margin-bottom: 2px;
  color: #A2C6B8;
  font-size: 1.12rem;
}
.cookie-modal .category {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .category label {
  color: #F8F3ED;
  font-size: 0.99rem;
  font-weight: 400;
}
.cookie-modal .category input[type='checkbox'] {
  accent-color: #A2C6B8;
  width: 18px; height: 18px;
  border-radius: 8px;
  margin-right: 3px;
}
.cookie-modal .close-modal {
  align-self: flex-end;
  background: none;
  border: none;
  color: #A2C6B8;
  font-size: 1.7rem;
  cursor: pointer;
  position: absolute;
  top: 15px; right: 19px;
  z-index: 1;
  border-radius: 6px;
  padding: 2px 13px;
  transition: background 0.13s, color 0.15s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #28536B;
  color: #F8F3ED;
  outline: 1.5px solid #A2C6B8;
}
.cookie-modal .cookie-actions {
  justify-content: flex-end;
}
@keyframes cookieModalAppear {
  from { opacity: 0; transform: translate(-50%,-80%) scale(0.7); }
  to   { opacity: 1; transform: translate(-50%,-60%) scale(0.95); }
}

/* ====================================================
   ANNOUNCEMENTS, ALERTS, CONFIRMATIONS
   ==================================================== */
.confirmation-section {
  background: linear-gradient(90deg, #233747 0%, #A2C6B8 100%);
  color: #223248;
  border-radius: 28px;
  box-shadow: 0 4px 32px #28536B33;
  text-align: center;
}
.confirmation-section h1, .confirmation-section p, .confirmation-section ul {
  color: #223248;
}

/* ====================================================
   RESPONSIVE ADJUSTMENTS
   ==================================================== */
@media (max-width: 700px) {
  .container {
    padding: 0 5px;
  }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.22rem; }
  .main-nav { gap: 15px; }
  .card, .feature, .blog-teaser { padding: 16px 7px; font-size: 0.97rem; }
}
@media (max-width: 600px) {
  .section, .hero-section, .cta-section, .content-section, .confirmation-section {
    padding: 14px 3px;
    margin-bottom: 20px;
  }
  .blog-teaser-list, .feature-grid, .card-container, .content-grid {
    gap: 12px;
  }
}

/* ====================================================
   NEON GLOW EFFECTS (for "tech_futuristic" touches)
   ==================================================== */
.cta-primary, .cookie-btn.accept {
  box-shadow: 0 0 12px 0 #A2C6B888, 0 1.5px 12px #A2C6B855;
}
.cta-primary:hover, .cta-primary:focus, .cookie-btn.accept:hover {
  box-shadow: 0 0 17px #F8F3ED, 0 1.5px 12px #A2C6B855;
  background: linear-gradient(90deg,#ffffec 0,#A2C6B8 93%);
  color: #28536B !important;
}
.feature:hover, .card:hover, .blog-teaser:hover {
  box-shadow: 0 0 19px 1px #A2C6B8aa, 0 2px 10px #A2C6B844;
  border-color: #A2C6B8;
}
/* Neon glow for focusable elements */
:focus-visible, .cta-primary:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid #A2C6B8;
  box-shadow: 0 0 0 2px #A2C6B833, 0 0 6px #A2C6B8cc;
}

/* Animated underline for links, CTA */
.cta-primary#animated:after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: linear-gradient(90deg, #A2C6B8 0%, #F8F3ED 100%);
  border-radius: 1.5px;
  width: 0;
  transition: width .27s cubic-bezier(.51,0,.72,1);
}
.cta-primary#animated:hover:after, .cta-primary#animated:focus:after {
  width: 100%;
}

/* ====================================================
   SCROLLBAR THEME
   ==================================================== */
::-webkit-scrollbar {
  width: 9px;
  background: #223248;
}
::-webkit-scrollbar-thumb {
  background: #28536Bbb;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: #A2C6B8;
}

/* ====================================================
   PRINT STYLES
   ==================================================== */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
    display: none !important;
  }
}
