/* CSS RESET & NORMALIZE */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #20293A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  transition: color 0.18s ease;
}
strong, b {
  font-weight: 600;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  color: #20293A;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.18;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p { font-size: 1rem; margin-bottom: 12px; line-height: 1.64; }
.small { font-size: 0.9rem; }

/* FONT FALLBACKS */
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 700;
  src: local('Orbitron'), local('Orbitron-Bold'), url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
}

/* BRAND COLORS */
:root {
  --color-primary: #20293A;
  --color-secondary: #4CDDFF;
  --color-accent: #F5F6FA;
  --color-text: #20293A;
  --color-card-bg: #fff;
  --color-shadow: rgba(32,41,58,0.07);
  --color-border: #D6DDE7;
  --color-footer-bg: #F5F6FA;
  --color-link-hover: #4CDDFF;
}

/* CONTAINER & COMMON STRUCTURE */
.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding: 0 18px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 1024px) {
  .content-wrapper.text-image-section, .content-wrapper.text-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
}

.section-title {
  font-size: 2rem;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX LAYOUT HELPERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 250px;
  background: var(--color-card-bg);
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 24px 20px;
  transition: box-shadow 0.19s, transform 0.19s;
  border: 1px solid var(--color-border);
  min-width: 220px;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 6px 22px rgba(32,41,58,0.11);
  transform: translateY(-2px) scale(1.01);
}
.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;
    gap: 18px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  padding: 56px 0 48px 0;
  background: var(--color-accent);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.hero p {
  color: #434A5B;
  font-size: 1.15rem;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .hero {
    padding: 40px 0 32px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* NAVIGATION HEADER */
header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 68px;
  gap: 20px;
}
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 28px;
}
nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 5px 2px;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
}
nav a:hover,
nav a:focus {
  color: var(--color-secondary);
  outline: none;
  background: var(--color-accent);
}
.cta-btn {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.03em;
  background: var(--color-secondary);
  color: #20293A;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  padding: 10px 28px;
  margin-left: auto;
  box-shadow: 0 0.5px 8px var(--color-shadow);
  transition: background 0.18s, color 0.18s, box-shadow 0.19s, transform 0.1s;
  cursor: pointer;
  outline: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #26b6d4;
  color: #fff;
  box-shadow: 0 4px 16px rgba(32,41,58,0.13);
  transform: translateY(-1px) scale(1.01);
}

/* HEADER - Responsive NAV */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  margin-left: 12px;
  cursor: pointer;
  align-items: center;
  transition: color 0.15s;
  z-index: 111;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-secondary);
}
@media (max-width: 900px) {
  header .container nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32, 41, 58, 0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(0.72, 0.17, 0.33, 0.96);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 18px 24px 12px 18px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 26px 26px 26px 30px;
  width: 100%;
  max-width: 340px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.24rem;
  font-weight: 500;
  padding: 12px 4px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-secondary);
  color: #20293A;
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none;
  }
}

/* SECTIONS AND WHITE SPACE */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
@media (max-width:740px){
  section {
    margin-bottom: 38px;
    padding: 28px 0;
  }
}

/* FEATURES */
.features .content-wrapper ul,
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: column;
}
.features ul li,
.services-preview ul li,
.about-preview ul li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px var(--color-shadow);
  padding: 16px 18px;
  margin-bottom: 0;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  min-width: 230px;
  gap: 16px;
  transition: box-shadow 0.21s, transform 0.19s;
}
.features ul li img,
.services-preview ul li img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}
.features ul li:hover,
.services-preview ul li:hover {
  box-shadow: 0 3px 15px rgba(32,41,58,0.09);
  transform: translateY(-2px) scale(1.0105);
}

/* TESTIMONIALS / REVIEWS */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  color: #20293A;
  box-shadow: 0 2px 12px var(--color-shadow);
  border-radius: 14px;
  padding: 20px 24px;
  min-width: 220px;
  flex: 1 1 260px;
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.19s, transform 0.15s;
}
.testimonial-card p {
  color: #222939;
  font-size: 1.08rem;
  line-height: 1.7;
}
.testimonial-card strong {
  color: var(--color-primary);
}
.testimonial-card span {
  font-size: 1rem;
  color: #656c7b;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0px rgba(32,41,58,0.12);
  transform: translateY(-2px) scale(1.01);
}

/* FAQ ACCORDION (BASIC - can be enhanced by JS) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item h3 {
  font-size: 1.12rem;
  margin-bottom: 7px;
  cursor: pointer;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.02em;
}
.faq-item p {
  margin-left: 0px;
  color: #434A5B;
}

/* CTA SECTIONS */
.cta, .services-cta {
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 1.5px 12px var(--color-shadow);
}
.cta h2, .services-cta h2 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 18px;
  margin-top: 0;
}
.cta-btn {
  margin-top: 10px;
}

/* PRICING BADGE */
.price {
  display: inline-block;
  margin-left: 12px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 14px;
  padding: 4px 11px;
}

/* LEGAL & INFO SECTIONS */
.legal .content-wrapper {
  margin-top: 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 24px 18px;
}
.legal h1 {
  margin-bottom: 24px;
}
.legal h2, .legal h3 {
  color: var(--color-primary);
}

/* CONTACT SECTION */
.contact-section .content-wrapper,
.route-and-access .content-wrapper {
  padding: 15px 0 0 0;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 0.5px 8px var(--color-shadow);
  gap: 12px;
}
.contact-section a {
  color: var(--color-secondary);
  text-decoration: underline;
  word-break: break-all;
}
.contact-section a:hover {
  color: #0087a3;
}

/* Text Section (also for about/confirmation) */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width:800px) {
  .text-section {
    gap: 28px;
  }
}

/* CARDS (unified styles) */
.card,
.features ul li,
.testimonial-card,
.legal .content-wrapper,
.contact-section .content-wrapper,
.route-and-access .content-wrapper {
  box-shadow: 0 1px 7px var(--color-shadow);
}

/* Confirmation page */
.confirmation .content-wrapper {
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 42px 24px;
  align-items: center;
  text-align: center;
}

/* FOOTER */
footer {
  background: var(--color-footer-bg);
  padding: 48px 0 28px 0;
  border-top: 1px solid var(--color-border);
  color: #282d38;
  font-size: 0.97rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  justify-content: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: #3c4150;
  font-size: 1rem;
  padding: 4px 2px;
  border-radius: 4px;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--color-secondary);
  background: #e7fbfd;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  color: #20293a;
  font-weight: 700;
}
.footer-brand img {
  height: 30px;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: #657184;
  font-size: 0.97rem;
}
.footer-contact a {
  color: #607080;
}
.footer-contact a:hover {
  color: var(--color-secondary);
}

@media (min-width: 900px) {
  footer .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-brand {
    gap: 18px;
  }
}

/* BUTTONS & INTERACTIVE ELEMENTS */
button, .cta-btn {
  outline: none;
  border: none;
  cursor: pointer;
}
button:focus, .cta-btn:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Micro-interactions (transitions) */
a, button, .cta-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.17s, transform 0.13s;
}

/* ACCESSIBILITY: Focus visible */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #20293A;
  box-shadow: 0 -2px 22px rgba(32,41,58,0.16);
  border-top: 1px solid var(--color-border);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 20px 12px 18px 12px;
  font-size: 1rem;
  width: 100vw;
  animation: slideUpCookie 0.4s cubic-bezier(.37,1.23,.56,.98);
}
@keyframes slideUpCookie {
  0% { transform: translateY(45px); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 7px;
}
.cookie-banner .cookie-btn {
  padding: 7px 20px;
  border-radius: 18px;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 6px var(--color-shadow);
}
.cookie-banner .cookie-btn.accept {
  background: var(--color-secondary);
  color: #20293A;
}
.cookie-banner .cookie-btn.accept:hover {
  background: #2beeff;
}
.cookie-banner .cookie-btn.reject {
  background: #E8E8EA;
  color: #20293A;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #d9d9db;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}
.cookie-banner .cookie-btn.settings:hover {
  background: #eafbfc;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  background: rgba(25,39,48,0.43);
  z-index: 4000;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #151921;
  border-radius: 14px;
  box-shadow: 0 2px 32px rgba(32,41,58,0.16);
  padding: 30px 24px 22px 24px;
  max-width: 400px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeIn 0.24s cubic-bezier(.37,1.23,.56,.98);
}
@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal .cookie-modal-title {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1.28rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-preference-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .cookie-preference-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal label, .cookie-modal .label-descr {
  font-size: 1rem;
}
.cookie-modal input[type=checkbox][disabled] {
  accent-color: #b3e6f2;
  cursor: not-allowed;
  opacity: 0.6;
}
.cookie-modal .cookie-category-desc {
  font-size: 0.965rem;
  color: #5e6977;
  margin-left: 33px;
  margin-top: 2px;
}
.cookie-modal .cookie-save-btn {
  align-self: flex-end;
  margin-top: 14px;
  background: var(--color-secondary);
  color: #20293A;
  padding: 8px 24px;
  border-radius: 14px;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border: none;
  box-shadow: 0 1px 6px var(--color-shadow);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
}
.cookie-modal .cookie-save-btn:hover {
  background: #22c7e4;
  color: #fff;
}
.cookie-modal .cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #222933;
  position: absolute;
  right: 22px;
  top: 16px;
  cursor: pointer;
  z-index: 1;
  transition: color 0.15s;
  padding: 4px 7px;
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--color-secondary);
}

/* MEDIA QUERIES: RESPONSIVE LAYOUTS */
@media (max-width: 980px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .features .content-wrapper ul {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .hero h1 { font-size: 1.7rem; }
  .section-title { font-size: 1.2rem; }
  .footer-brand span { display: none; }

  .testimonial-card, .card {
    min-width: 90vw;
    padding: 18px 8px;
    font-size: 1rem;
  }
  .features ul li {
    min-width: 165px;
    padding: 12px 7px;
    font-size: 0.97rem;
  }
}
@media (max-width:480px){
  .hero h1,
  h1, h2 {
    font-size: 1.2rem;
  }
  .container {
    padding: 0 4px;
  }
  section {
    padding: 15px 0;
    margin-bottom: 22px;
  }
  .cookie-modal {
    padding: 16px 2vw 14px 2vw;
  }
}

/* CONTACT HINT / ADDITIONAL */
.contact-hint {
  margin-top: 22px;
  padding: 18px 14px;
  background: var(--color-accent);
  border-radius: 10px;
  color: #375172;
}
.contact-hint a {
  color: var(--color-secondary);
}
.contact-hint a:hover {
  text-decoration: underline;
}

/* GENERAL SPACING FOR CARD LISTS */
.features ul, .services-preview ul, .about-preview ul, .services ul {
  gap: 18px;
}
.content-grid, .card-container {
  gap: 20px;
}

/* Prevent overlap at all breakpoints */
.card-container > *, .content-grid > *, .features ul > *, .testimonials .content-wrapper > * {
  margin-bottom: 20px;
}

/* HIDE SCROLLBARS (mobile menu) */
.mobile-menu::-webkit-scrollbar { display: none; }
.mobile-menu { -ms-overflow-style: none; scrollbar-width: none; }

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

/* END */
