/* ==========================
   CSS RESET & NORMALIZE
   ========================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  min-height: 100vh;
  background: #142836;
  color: #F5F5F2;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #97C1A9;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #00e0ff;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  outline: none;
  border: none;
}
:focus-visible {
  outline: 2px solid #00e0ff;
  outline-offset: 3px;
}

/* =====================
   BRAND COLORS & VISUALS
   ===================== */
:root {
  --primary: #24496B;
  --secondary: #97C1A9;
  --accent: #F5F5F2;
  --background: #142836;
  --card-bg: #1e3347;
  --card-bg-light: #233C53;
  --neon-blue: #00e0ff;
  --neon-green: #3affb3;
  --danger: #d91355;
  --shadow: 0 8px 32px 0 rgba(36,73,107,0.24), 0 1.5px 8px 0 rgba(0,224,255,0.04);
}

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: var(--accent);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 16px;
  text-shadow: 0 2px 32px var(--neon-blue),0 0 10px #24496b;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 12px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4 { font-size:1.2rem; }

p, li, blockquote, span {
  font-size: 1rem;
  color: var(--accent);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
blockquote {
  margin: 24px 0;
  padding: 20px 28px;
  background: var(--card-bg-light);
  border-left: 3px solid var(--neon-blue);
  color: var(--accent);
  border-radius: 8px;
  font-style: italic;
  box-shadow: var(--shadow);
}

strong, b {
  color: var(--secondary);
  font-weight: 700;
}

.text-section h2, .text-section h3 { color: var(--secondary); }

/* =====================
   LAYOUT: SPACING & FLEXBOX
   ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  position: relative;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 32px 26px;
  transition: transform 0.2s, box-shadow 0.2s;
  outline: none;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 40px 0 var(--neon-blue), 0 3px 28px var(--neon-green);
  z-index: 2;
}

.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;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f5f5f2;
  color: #24496B;
  border-radius: 18px;
  box-shadow: 0 4px 36px 0 rgba(36,73,107,0.08);
  font-size: 1.05rem;
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1;
  flex-direction: column;
}
.testimonial-card span {
  color: #24496B;
  font-weight: 700;
  font-size: .95rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* =====================
   HEADER & NAV BAR
   ===================== */
header {
  background: linear-gradient(90deg, #142836 20%, #24496B 80%);
  box-shadow: 0 4px 24px 0 rgba(0,224,255,0.05);
  position: relative;
  padding: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  min-height: 64px;
}
header img {
  max-height: 48px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.08rem;
  padding: 4px 0 4px 0;
  transition: color 0.2s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: var(--neon-blue);
}
.button-primary {
  display: inline-block;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 12px 36px;
  background: var(--neon-blue);
  color: #142836;
  border-radius: 32px;
  box-shadow: 0 2px 18px 0 rgba(0,224,255,0.20),0 1.5px 8px 0 rgba(36,73,107,0.10);
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  text-shadow: 0 2px 8px #defff9;
  margin-left: 20px;
  letter-spacing:0.01em;
}
.button-primary:hover, .button-primary:focus {
  background: #3affb3;
  color: #142836;
  box-shadow: 0 6px 40px 0 var(--neon-blue), 0 3px 28px var(--neon-green);
  transform: scale(1.04);
}
.button-secondary {
  display: inline-block;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 24px;
  background: transparent;
  color: var(--neon-blue);
  border: 2px solid var(--neon-blue);
  border-radius: 32px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  margin: 0 10px 0 0;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--neon-blue);
  color: #24496B;
}

/* =====================
   HERO SECTIONS
   ===================== */
section:first-of-type {
  background: linear-gradient(130deg, #1e3347 0%, #24496B 96%, #142836 100%);
  box-shadow: 0 4px 120px 0 rgba(0,224,255,0.22);
}

/* =====================
   SECTION & CARD STYLING
   ===================== */
section {
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 0 35px 0;
}
.card, .testimonial-card, .feature-item, .faq-list {
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1.6;
}
ul li:last-child {
  margin-bottom: 0;
}

/* =====================
   FAQ LIST
   ===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--card-bg);
  padding: 24px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.faq-list h3 {
  color:var(--neon-blue);
  font-size: 1.15rem;
  margin-bottom: 5px;
}
.faq-list p {
  color: var(--accent);
  font-size: 1.03rem;
}


/* =====================
   FOOTER
   ===================== */
footer {
  background: #142836;
  border-top: 2px solid var(--primary);
  margin-top: 48px;
  padding-top: 28px;
  padding-bottom: 28px;
  color: var(--accent);
  font-size: .97rem;
  letter-spacing: 0.01em;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top:16px;
  padding-bottom:16px;
}
footer img {
  max-width: 54px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 3px;
  font-size: .98rem;
  transition: color 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--neon-blue);
}
.contact-details, .open-hours {
  margin-top: 6px;
  color: var(--accent);
}
.contact-details p, .open-hours p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .98rem;
  margin-bottom: 4px;
}

/* =====================
   MOBILE MENU BURGER
   ===================== */
.mobile-menu-toggle {
  position: fixed;
  bottom: 28px;
  right: 26px;
  z-index: 1102;
  background: var(--neon-blue);
  color: #142836;
  border-radius: 50%;
  border: none;
  font-size: 2.1rem;
  width: 54px;
  height: 54px;
  box-shadow: 0 2px 32px var(--neon-blue), 0 1.5px 8px 0 #24496b22;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--neon-green);
  color: #24496B;
  transform: scale(1.1);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #142836e5;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.34s ease;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.4rem;
  background: none;
  border: none;
  color: var(--neon-blue);
  margin: 28px 32px 6px 0;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--neon-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100vw;
  align-items: center;
  margin-top: 60px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  padding: 16px 0;
  border-radius: 12px;
  min-width: 220px;
  text-align: center;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 1.5px 12px 0 var(--neon-blue)11;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--neon-blue);
  background: #1e3347;
}

/* Hide nav on mobile, show hamburger */
@media (max-width: 1000px) {
  header nav, .button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1001px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #24496Bcc;
  color: #F5F5F2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 32px var(--neon-blue);
  z-index: 4000;
  padding: 20px 16px;
  gap: 24px;
  font-size: 1rem;
  transition: transform 0.3s;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  transform: translateY(150%);
}
.cookie-consent-banner p {
  margin: 0 16px 0 0;
  font-size: 1.08rem;
}
.cookie-btn {
  margin: 0 7px 0 0;
  padding: 8px 21px;
  background: var(--neon-blue);
  color: #142836;
  border-radius: 22px;
  box-shadow: 0 4px 14px 0 var(--neon-blue)26;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--neon-green);
  color: #142836;
}
.cookie-btn.reject {
  background: var(--danger);
  color: var(--accent);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b90b42;
  color: #fff;
}

.cookie-btn.settings {
  background: transparent;
  border: 2px solid var(--neon-blue);
  color: var(--neon-blue);
  margin-right: 10px;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--neon-blue);
  color: #142836;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 4500;
  background: #0f1821cc;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.21s, visibility 0.18s;
}
.cookie-modal.open {
  opacity: 1;
  visibility: visible;
}
.cookie-modal-content {
  background: #1e3347;
  color: #f5f5f2;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 var(--neon-blue)33;
  padding: 32px 24px;
  min-width: 320px;
  min-height: 280px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h2 {
  color: var(--neon-blue);
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
}
.cookie-toggle {
  width:38px; height: 22px;
  background: #233c53;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  outline: none;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--neon-blue);
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: #f5f5f2;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 2px;
  transition: left 0.23s, background 0.19s;
}
.cookie-toggle[aria-checked="true"]:before {
  left: 18px;
  background: var(--neon-green);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--neon-blue);
  font-size: 1.85rem;
  position: absolute;
  top: 15px; right: 22px;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--neon-green);
}

/* =====================
   ICONS INLINE
   ===================== */
li img, p img, .contact-details img {
  width: 24px; height: 24px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 0 2px var(--neon-blue));
}

/* =====================
   INTERACTIVE
   ===================== */
.card, .testimonial-card,
.button-primary, .button-secondary,
.cookie-btn, .mobile-menu-toggle {
  transition: box-shadow .2s, background .2s, color .2s, transform .18s;
}

hr {
  border: 0; height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  margin: 38px 0 24px 0;
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 1000px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  header .container {
    flex-direction: row;
    gap: 16px;
  }
  footer .container {
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  :root {
    font-size: 15px;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 5px;
  }
  .container {
    max-width: 100vw;
    padding: 0 4px;
  }
  .content-wrapper, .text-section, .card-container, .content-grid, .card-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    padding: 16px;
    font-size: .97rem;
    min-width:unset;
  }
  .card {
    padding: 18px 10px;
  }
  header .container {
    height: 54px;
    min-height: 54px;
    padding: 0 6px;
  }
}
@media (max-width:540px) {
  h1 {
    font-size:1.3rem;
  }
  .button-primary, .button-secondary {
    width: 100%;
    padding: 12px 0;
    font-size:0.98rem;
  }
  .mobile-nav a, .mobile-menu-close {
    font-size: 1.1rem;
    min-width: 140px;
    padding: 12px 0;
  }
  .cookie-modal-content {
    padding: 20px 5px;
    min-width: 200px;
    font-size: .98rem;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.99rem;
    padding: 14px 4px;
  }
}

/* =====================
   UTILITIES
   ===================== */
.mt-2 {margin-top:15px;}
.mb-2 {margin-bottom:15px;}
.mt-3 {margin-top:25px;}
.mb-3 {margin-bottom:25px;}
.text-center {text-align:center;}
.flex-row {display: flex; flex-direction: row;}
.flex-center {display: flex; align-items: center; justify-content: center;}
.gap-1 {gap: 10px;}
.gap-2 {gap: 18px;}

/* ===============================
   MODERN NEON/TECH EFFECTS
   =============================== */
.card, .testimonial-card, .cookie-modal-content {
  border: 1.2px solid rgba(0,224,255,0.09);
  box-shadow: 0 4px 40px 0 var(--neon-blue)05, 0 1.5px 12px 0 #24496b11;
}
.button-primary, .mobile-menu-toggle, .cookie-btn {
  box-shadow: 0 2px 22px 0 var(--neon-blue)30,0 1.5px 8px 0 #24496b22;
  filter: drop-shadow(0 0 10px var(--neon-blue)44);
}
h1, h2, h3 {
  text-shadow: 0 2px 32px var(--neon-blue)22,0 0 6px #24496b55;
}

/* Animated underline effect on nav links */
header nav a::before {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
  bottom: -2px; left: 0; right: 0;
  border-radius: 2px;
  position: absolute;
  transition: width 0.26s;
}
header nav a:hover::before,
header nav a:focus::before {
  width: 100%;
}

/* ================
   PRINT
   ================ */
@media print {
  * { color: #222 !important; background: #fff !important; box-shadow:none !important; }
  header,footer,.mobile-menu,.cookie-consent-banner,.cookie-modal {display:none !important;}
  .container {max-width:100vw !important;padding:0!important;}
}

