/* =====================================================
   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;
  vertical-align: baseline;
  font-size: 100%;
  font: inherit;
  background: transparent;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #0B1824;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #F4F7FA;
  overflow-x: hidden;
}
a {
  color: #7FC2E9;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2CB02;
  outline: none;
}
ul, ol {
  padding-left: 18px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
address {
  font-style: normal;
  line-height: 1.6;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 10px;
}
th {
  font-weight: 700;
  background: #234768;
  color: #F4F7FA;
}
td {
  background: #152940;
  color: #F4F7FA;
}

/* =====================================================
   ROOT & BRAND VARIABLES
======================================================= */
:root {
  --brand-primary: #234768;
  --brand-secondary: #7FC2E9;
  --brand-accent: #F4F7FA;
  --brand-bg-dark: #0B1824;
  --neon-blue: #27E0FF;
  --neon-green: #7bfd85;
  --neon-yellow: #F2CB02;
  --danger: #ff3c3c;
  --success: #24e27a;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-lg: 0 8px 32px 0 rgba(18,25,50,0.25);
  --shadow-md: 0 2px 12px 0 rgba(18,25,50,0.15);
  --shadow-neon: 0 0 8px #27E0FF, 0 0 2px #27E0FF;
}

/* =====================================================
   TYPOGRAPHY
======================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #FFF;
  text-shadow: 0 0 4px rgba(39,224,255,0.12);
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
p, ul, ol, table {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #F4F7FA;
}
strong {
  color: var(--neon-yellow);
  font-weight: 700;
}
.text-section p {
  margin-bottom: 10px;
}
.text-section ul,
.text-section ol {
  margin-bottom: 10px;
}
.text-section li {
  margin-bottom: 6px;
}

/* =====================================================
   CONTAINER & SPACING (FLEX ONLY!)
======================================================= */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(115deg,#111c2b 72%,#102254 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #172C3F;
  margin-bottom: 20px;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(39,224,255,0.13);
  position: relative;
  min-width: 250px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 20px;
  background: #16283E;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--neon-blue);
  margin-bottom: 20px;
  box-shadow: 0 4px 16px 0 rgba(32,192,255,0.10);
}

/* Testimonials (High contrast for readability) */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F4F7FA;
  color: #222E3E;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px 0 rgba(8,32,48,0.12);
  border: 1px solid #e7eaf3;
  font-size: 1.1rem;
  position: relative;
}
.testimonial-card strong {
  color: var(--brand-primary);
}
.testimonial-card div {
  color: var(--neon-yellow);
  font-weight: bold;
  font-size: 1.2rem;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-accordion > div {
  background: #192b44;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(16,114,156,0.08);
  padding: 18px 16px;
  margin-bottom: 2px;
}
.faq-accordion strong {
  display: block;
  color: var(--brand-secondary);
  margin-bottom: 6px;
  font-size: 1.12rem;
}
.faq-accordion p {
  color: #F4F7FA;
  margin-bottom: 0;
  font-size: 1rem;
}

/* Table styling (brand accent) */
table thead tr {
  border-radius: var(--radius-sm);
}
thead th {
  background: var(--brand-primary);
  color: var(--brand-accent);
  font-family: var(--font-display);
  border-top: 2px solid var(--neon-blue);
}
table tr {
  border-bottom: 1px solid #23374d;
}
tbody td {
  background: #1c303e;
  color: #F4F7FA;
  border-bottom: none;
  transition: background 0.2s;
}
tbody tr:hover td {
  background: #234768;
}

/* =====================================================
   HEADER & NAVIGATION
======================================================= */
header {
  width: 100%;
  padding: 0;
  background: #142436;
  box-shadow: 0 4px 18px 0 rgba(8,32,48,0.11);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  padding-top: 14px;
  padding-bottom: 14px;
}
header .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}
header img {
  height: 44px;
  width: auto;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  color: var(--brand-accent);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 6px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: var(--neon-blue);
  color: #143046;
}
.cta.primary {
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
  color: #161a23;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 9999px;
  padding: 12px 32px;
  margin-left: 14px;
  font-size: 1rem;
  box-shadow: 0 0 12px 1px #27e0ff44;
  border: none;
  transition: background 0.25s, box-shadow 0.2s, color 0.2s;
  position: relative;
  z-index: 5;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, #2AF9FF 70%, #9EFFA7);
  color: var(--brand-primary);
  box-shadow: 0 0 18px 4px #27E0FFaa;
}

/* Nav section ctas */
.cta {
  display: inline-block;
  background: var(--brand-secondary);
  color: #0A1C2C;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 9999px;
  padding: 10px 28px;
  font-size: 1rem;
  border: none;
  box-shadow: 0 0 0 2px var(--neon-blue) inset;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
}
.cta:hover, .cta:focus {
  background: var(--brand-primary);
  color: var(--brand-accent);
  box-shadow: 0 0 8px 1px #27E0FF;
}

/* =====================================================
   MOBILE MENU
======================================================= */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 22px;
  z-index: 202;
  font-size: 2.3rem;
  color: var(--neon-blue);
  background: #142436;
  border-radius: 50%;
  padding: 8px 14px 8px 14px;
  border: 1.5px solid var(--neon-blue);
  box-shadow: 0 2px 18px 0 #27e0ff1a;
  transition: background 0.25s, box-shadow 0.22s;
}
.mobile-menu-toggle:focus {
  outline: 3px dashed var(--neon-blue);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #0B1824cc;
  backdrop-filter: blur(6px);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.62, 0.1, 0.21, 0.83);
  z-index: 201;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--neon-blue);
  background: #192b44;
  border-radius: 50%;
  margin: 16px 22px 26px 0;
  align-self: flex-end;
  border: none;
  padding: 7px 14px 7px 14px;
  box-shadow: 0 0 0 2px #27e0ff inset;
  cursor: pointer;
  z-index: 202;
  transition: background 0.2s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #274168;
  color: var(--neon-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-end;
  margin-right: 44px;
  margin-top: 15px;
}
.mobile-nav a {
  background: #172c3ecf;
  color: var(--neon-blue);
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 13px 31px 13px 22px;
  margin-bottom: 2px;
  transition: background 0.18s, color 0.18s;
  text-align: right;
  min-width: 210px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--neon-blue);
  color: #192b44;
}

@media (max-width: 1100px) {
  header .content-wrapper nav {
    gap: 14px;
  }
}
@media (max-width: 970px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .section {
    padding: 32px 8px;
  }
}
@media (max-width: 850px) {
  header .container {
    padding: 6px 6px;
  }
}
@media (max-width: 800px) {
  header .content-wrapper {
    gap: 10px;
  }
  .section {
    margin-bottom: 38px;
    padding: 19px 4px;
  }
  .content-grid {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  /* Main nav hidden on mobile */
  header nav, .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section {
    padding: 18px 2vw;
    margin-bottom: 28px;
  }
  h1 { font-size: 1.47rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
  .content-wrapper {
    gap: 10px;
  }
  .content-grid,
  .card-container,
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 8px;
  }
}


/* =====================================================
   CARDS, FEATURES, MISC.
======================================================= */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list .text-section {
  background: #18274d;
  border-left: 4px solid var(--neon-blue);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 rgba(18,25,50,0.10);
  padding: 22px 18px;
  flex: 1 1 340px;
  min-width: 270px;
  margin-bottom: 16px;
  font-size: 1rem;
  transition: box-shadow 0.22s;
}
.service-list .text-section h2 {
  color: var(--neon-blue);
  margin-bottom: 6px;
}
.service-list .text-section:hover {
  box-shadow: 0 0 12px 0 #27e0ff99;
}

/* Buttons and CTAs */
button, .cta, .cta.primary {
  transition: all 0.18s;
}
button:focus, .cta:focus, .cta.primary:focus {
  outline: 2px solid var(--neon-blue);
}

/* Table CTA (within card) */
table + .cta {
  margin-top: 18px;
}

/* Contact Map placeholder styling */
.contact-map {
  background: #18274d;
  margin: 18px 0;
  border-radius: var(--radius-md);
  padding: 18px 12px;
  color: var(--neon-blue);
  text-align: center;
}

/* Address formatting */
address a {
  color: var(--neon-blue);
}
address a:hover { color: var(--brand-primary); }

/* =====================================================
   FOOTER
======================================================= */
footer {
  background: #142436;
  color: #F4F7FA;
  padding: 44px 0 22px 0;
  font-size: 1rem;
}
footer .container {
  padding-top: 0;
  padding-bottom: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
footer img {
  height: 36px;
  width: auto;
  margin-bottom: 0;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
footer address {
  margin-top: 8px;
}
footer small {
  color: var(--brand-secondary);
  margin-top: 16px;
  display: block;
}
@media (max-width: 768px) {
  footer {
    padding: 22px 0 10px 0;
    font-size: 0.97rem;
  }
}

/* =====================================================
   COOKIE CONSENT BANNER
======================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #13233b;
  color: #F4F7FA;
  box-shadow: 0 -4px 24px #27e0ff2d;
  border-top: 2.5px solid var(--neon-blue);
  z-index: 501;
  padding: 22px 10vw 18px 20vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  animation: slideBannerIn 0.5s cubic-bezier(.4,1,.7,1) 1;
}
@keyframes slideBannerIn {
  0% { transform: translateY(100%); opacity: 0.2 }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #F4F7FA;
  margin: 0;
  flex: 1 1 60%;
  font-size: 1.02rem;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 9999px;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 0 0 1.5px var(--neon-blue) inset;
  transition: background 0.15s, color 0.15s;
  margin-left: 0;
}
.cookie-btn.accept {
  background: var(--neon-blue);
  color: #111c2b;
}
.cookie-btn.accept:hover {
  background: var(--neon-green);
  color: #192b44;
}
.cookie-btn.reject {
  background: #233858;
  color: var(--danger);
}
.cookie-btn.reject:hover {
  background: #311818;
  color: #FFF;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--brand-secondary);
  border: 1.5px solid var(--neon-blue);
}
.cookie-btn.settings:hover {
  background: #192b44;
  color: var(--neon-blue);
}

/* Cookie modal/popup */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #131e2f;
  color: #F4F7FA;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 32px 0 #27e0ff99, 0 4px 18px #0009;
  padding: 22px 30px 26px 30px;
  min-width: 320px;
  max-width: 94vw;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: fadeCookieModalIn 0.33s cubic-bezier(.4,1,.7,1) 1;
}
@keyframes fadeCookieModalIn {
  0% { opacity:0; transform:translate(-50%, -50%) scale(0.94); }
  100% { opacity:1; transform:translate(-50%, -50%) scale(1); }
}
.cookie-modal h2 {
  color: var(--neon-blue);
  font-size: 1.42rem;
  margin-bottom: 6px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.01rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #192c42;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 8px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--neon-blue);
  width: 18px; height: 18px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 1.4rem;
  color: var(--neon-blue);
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal .cookie-close:hover {
  color: var(--danger);
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 8px;
}

@media (max-width: 920px) {
  .cookie-banner {
    padding: 20px 5vw 10px 10vw;
    font-size: 0.97rem;
  }
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 14px 16px 14px;
    font-size: 0.93rem;
  }
}
/* Hides cookie modal when closed (apply .hidden via JS) */
.cookie-modal.hidden { display: none !important; }

/* =====================================================
   NEON EFFECTS & MICROINTERACTIONS
======================================================= */
.cta.primary,
.cta {
  box-shadow: 0 0 0 0px var(--neon-blue), var(--shadow-md);
  transition: box-shadow 0.17s, background 0.2s, color 0.17s;
}
.cta.primary:hover, .cta:hover {
  box-shadow: 0 0 8px 2px #27E0FF99, 0 0 20px 1px #7bfd8519;
  background-position: right center;
  filter: brightness(1.07) saturate(1.16);
}
.card:hover,
.service-list .text-section:hover,
.feature-item:hover {
  box-shadow: 0 0 16px 1px #27E0FF44, 0 2px 34px 2px #15fff99b;
  border-color: var(--neon-blue);
  z-index: 2;
}
section {
  position: relative;
  overflow: visible;
  transition: box-shadow 0.18s;
}
section:after {
  content: "";
  display: block;
  position: absolute; left: 33px; top: -27px;
  width: 90px;
  height: 7px;
  background: linear-gradient(90deg, var(--neon-blue) 0%, var(--neon-green) 100%);
  border-radius: 10px;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}

/* Neon border focus for interactive elements */
.card:focus-within,
.feature-item:focus-within { box-shadow: 0 0 6px 1px #27E0FFBB; border-color: #27E0FF; }

/* =====================================================
   SCROLLBAR FUTURISTIC STYLING
======================================================= */
::-webkit-scrollbar {
  width: 12px;
  background: #101828;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, #18274d 70%, #27e0ff66 100%);
  border-radius: 12px;
  border: 3px solid #101828;
}
::-webkit-scrollbar-thumb:hover {
  background: #27e0ff88;
}

/* ===== INPUTS, FORMS, FOCUS ===== */
input, textarea, select {
  font-family: var(--font-body);
  border: 1.5px solid var(--brand-secondary);
  border-radius: var(--radius-md);
  background: #152940;
  color: var(--brand-accent);
  padding: 10px 12px;
  box-shadow: none;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: border 0.16s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 7px 1px #27E0FF49;
}

label {
  color: var(--brand-secondary);
  margin-bottom: 5px;
  font-size: 1rem;
}

/* Accessibility: High contrast for testimonial and reviews */
.testimonial-card p, .testimonial-card span, .testimonial-card strong {
  color: #222E3E!important;
}

/* Accessibility: Focus ring for all interactive elements */
button:focus-visible, a:focus-visible, .cta:focus-visible {
  outline: 2.5px solid var(--neon-blue);
  outline-offset: 2px;
}

/* Misc media queries for small screens */
@media (max-width: 470px) {
  h1 { font-size: 1.14rem; }
  h2 { font-size: 1.06rem; }
  .container { padding: 0 4px; }
  .section { padding: 11px 2vw; }
  .cookie-modal { padding: 8px 6px; }
}


/* ======== END OF STYLE ======== */
