/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #0A1A22;
  color: #F1FAF6;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #43e0fc;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #00fefa;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* BRAND COLORS */
:root {
  --color-primary: #117399;
  --color-secondary: #33664D;
  --color-accent: #F1FAF6;
  --color-bg-dark: #0A1A22;
  --color-bg-card: #142936;
  --color-bg-gradient1: #0a1825;
  --color-bg-gradient2: #113b72;
  --color-neon-blue: #43e0fc;
  --color-neon-green: #33FFBE;
  --color-focus: #00fefa;
  --shadow-neon: 0 0 8px #43e0fc, 0 0 1px #33FFBE;
}

/* BASE TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #F1FAF6;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }

p, li, dd, dt, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #d9f7ff;
  margin-bottom: 14px;
  line-height: 1.7;
}

blockquote {
  border-left: 4px solid var(--color-neon-blue);
  padding-left: 16px;
  color: var(--color-neon-blue);
  opacity: 0.92;
  font-style: italic;
  margin-bottom: 24px;
  background: #16263a;
  border-radius: 6px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: var(--color-bg-card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 12px #0b3256bb;
}
th, td {
  padding: 14px 16px;
  text-align: left;
  color: #a6f8ff;
}
th {
  background: #12273a;
  font-weight: 700;
}
td {
  border-bottom: 1px solid #14567333;
}
thead tr {
  border-bottom: 2px solid var(--color-primary);
}
tbody tr:last-child td {
  border-bottom: none;
}
dt {
  font-weight: 700;
  color: #33FFBE;
}
dd {
  margin-left: 0;
  color: #d9f7ff;
}

div.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

main {
  flex: 1;
}

/* --------------------- LAYOUT PATTERNS --------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-card);
  border-radius: 20px;
  box-shadow: 0 2px 18px #11739922, 0 0 8px #33FFBE55;
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #33FFBE22;
}
.card:hover {
  box-shadow: 0 0 28px #43e0fc, 0 0 24px #33FFBE92;
  transform: translateY(-4px) scale(1.012);
  border-color: #33FFBE;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f1faf6;
  color: #222943;
  border-radius: 18px;
  box-shadow: 0 0 4px #43e0fc55;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 400px;
  flex: 1 1 220px;
  border: 2px solid #43e0fc22;
}
.testimonial-card p {
  color: #222943;
}
.testimonial-card .stars {
  display: flex;
  gap: 4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  max-width: 700px;
}


/* ---------- HEADER & NAVIGATION ---------- */
header {
  width: 100%;
  padding: 0;
  background: linear-gradient(113deg, #10263A 0%, #117399 65%, #1EBDEF 100%);
  color: #F1FAF6;
  box-shadow: 0 3px 18px #0d263c93;
  z-index: 800;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 46px;
  width: auto;
}
header nav {
  display: flex;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #f1faf6;
  letter-spacing: .015em;
  position: relative;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #43e0fc16;
  color: #43e0fc;
}
.btn-primary {
  background: linear-gradient(92deg, #43e0fc 60%, #33FFBE 100%);
  color: #0A1A22;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  margin-left: 18px;
  box-shadow: 0 0 12px #33FFBE22;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, transform 0.16s;
  outline: none;
  text-shadow: 0 1px 0 #fff5;
}
.btn-primary:hover, .btn-primary:focus {
  background: #12273a;
  color: #43e0fc;
  transform: translateY(-3px) scale(1.045);
  box-shadow: 0 0 24px #33FFBE66;
}

/* ----------- HERO/SECTIONS ----------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(122deg, #10263A 70%, #117399 110%);
  border-radius: 24px;
}
section .container {
  flex-direction: column;
  gap: 20px;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.content-wrapper > div, .content-wrapper > ul, .content-wrapper > dl {
  min-width: 220px;
  margin-right: 0;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ---------- FOOTER ---------- */
footer {
  background: #12273a;
  color: #a8f1fd;
  padding: 32px 0 16px 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 -5px 24px #11739922;
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
footer img {
  height: 50px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #43e0fc;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
footer nav a:hover {
  color: #33FFBE;
}
.footer-contact p {
  font-size: .98rem;
  margin-bottom: 4px;
  color: #a8f1fd;
}

/* -------------- MOBILE MENU -------------- */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(93deg, #43e0fc 60%, #33FFBE 100%);
  color: #0A1A22;
  border-radius: 8px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1210;
  border: none;
  box-shadow: 0 0 10px #43e0fc88;
}
.mobile-menu-toggle:focus {
  outline: 2.5px solid #43e0fc;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #0A1A22 85%, #117399 120%);
  box-shadow: -4px 0 24px #11739988;
  z-index: 1350;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.63,.09,.17,.93);
  padding: 0;
  opacity: 0.97;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #43e0fc;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 22px 22px 0 0;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #33FFBE; background: #43e0fc13; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  gap: 18px;
  align-items: center;
}
.mobile-nav a {
  color: #f1faf6;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 36px;
  border-radius: 12px;
  letter-spacing: .02em;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #43e0fc1c;
  color: #43e0fc;
}


/* -------------- RESPONSIVE DESIGN -------------- */
@media (max-width: 1024px) {
  header .container { gap: 12px; }
  .content-wrapper { gap: 16px; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; padding-left: 4vw; padding-right: 4vw; }
  .content-wrapper { flex-direction: column; gap: 20px; }
  .card-container, .content-grid, .text-image-section { flex-direction: column !important; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  header .container { flex-direction: row; gap: 6px; }
  section { padding: 28px 6px; border-radius: 14px; }
  .section { margin-bottom: 26px; padding: 24px 6px; }
  footer .container { flex-direction: column; gap: 12px; align-items: flex-start; }
  .text-image-section, .content-grid, .card-container, .content-wrapper { flex-direction: column !important; gap: 16px; }
  .text-section { max-width: 98vw !important; }
}
@media (max-width: 700px) {
  header .container nav,
  header .container .btn-primary {
    display: none;
  }
  .mobile-menu-toggle { display: flex; }
  .mobile-menu { width: 100vw; }
}
@media (max-width: 500px) {
  body { font-size: 0.97rem; }
  h1 { font-size: 1.38rem; }
}


/* --------- CARDS, FAQ, AND MICRO-INTERACTIONS ---------*/
ul li, .content-wrapper ul li {
  padding-left: 32px;
  position: relative;
  color: #bfeffd;
  margin-bottom: 16px;
  font-size: 1rem;
}
ul li img {
  position: absolute;
  left: 0; top: 2px; height: 22px; width: auto;
}
ul li strong { color: #33FFBE; font-weight: 700; }

.feature-item strong {
  color: #43e0fc;
}

.card {
  background: var(--color-bg-card);
  box-shadow: 0 3px 16px #11739922, 0 0 6px #33FFBE44;
  border: 1.5px solid #33FFBE22;
}
div.contact-details {
  background: #162d3f;
  border-radius: 14px;
  padding: 16px 20px;
  margin: 13px 0 20px 0;
  box-shadow: 0 2px 14px #11739923;
}
div.contact-details h2, div.contact-details h3 {
  color: #43e0fc;
}
div.contact-details p { color: #eefaff; font-family: 'Open Sans', Arial, sans-serif; }

/* ------------- FAQ DL ------------- */
dl dt {
  margin-top: 18px;
  color: #33FFBE;
  font-size: 1.07rem;
}
dl dd {
  margin-bottom: 14px;
  margin-left: 0;
  color: #d9f7ff;
}

/* --------------- BUTTONS --------------- */
button,
.btn-primary {
  cursor: pointer;
  transition: box-shadow 0.18s, transform 0.13s, background 0.2s, color 0.21s;
}
.btn-primary:active, button:active {
  transform: scale(0.96);
}

/* --------------- NEON ACCENTS --------------- */
.neon-text {
  color: #43e0fc;
  text-shadow: var(--shadow-neon);
}
.card:hover, .btn-primary:focus {
  box-shadow: 0 0 22px #43e0fc88, 0 0 18px #33FFBE88;
}

/* --------------- COOKIE CONSENT --------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(92deg, #0A1A22 70%, #117399 110%);
  color: #F1FAF6;
  box-shadow: 0 -2px 20px #33FFBE44;
  z-index: 1900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  gap: 24px;
  font-size: 1rem;
  opacity: 0.98;
  animation: cookieBounceIn 0.65s cubic-bezier(.46, .03, .52, .96);
}
@keyframes cookieBounceIn {
  0% { transform: translateY(80px) scale(.98); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: .98; }
}
.cookie-banner p {
  flex: 2 1 320px;
  color: #d6f9fd;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 9px 24px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .97rem;
}
.cookie-accept {
  background: linear-gradient(92deg, #43e0fc 60%, #33FFBE 100%);
  color: #0A1A22;
  box-shadow: 0 0 8px #43e0fc44;
  border: 2px solid transparent;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #16263a;
  color: #43e0fc;
  border-color: #43e0fc;
}
.cookie-reject {
  background: none;
  color: #33FFBE;
  border: 2px solid #33FFBE;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #33FFBE;
  color: #10263A;
}
.cookie-settings {
  background: none;
  color: #43e0fc;
  border: 2px solid #43e0fc;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #43e0fc; color: #10263A;
}

/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 60px;
  transform: translate(-50%, 100%) scale(0.9);
  min-width: 320px;
  max-width: 90vw;
  background: #16263a;
  color: #F1FAF6;
  border-radius: 18px;
  box-shadow: 0 0 22px #33FFBE99, 0 2px 22px #10263A77;
  z-index: 2000;
  padding: 32px 22px 26px 22px;
  opacity: 0;
  pointer-events: none;
  transition: all .42s cubic-bezier(.65,.05,.35,.96);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal.active {
  transform: translate(-50%, 0%) scale(1);
  opacity: .995;
  pointer-events: all;
}
.cookie-modal h2 {
  color: #43e0fc;
}
.cookie-options-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 0 14px 0;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-option label {
  font-weight: 600;
  padding-left: 6px;
  color: #33FFBE;
}
.cookie-option input[type="checkbox"] {
  appearance: none;
  background: #243f66;
  border: 1.3px solid #43e0fc;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  outline: none;
  transition: border .2s, background .2s;
  cursor: pointer;
}
.cookie-option input[type="checkbox"]:checked {
  background: #33FFBE;
  border-color: #43e0fc;
}
.cookie-option input[disabled] {
  border-style: dotted; opacity: 0.7; cursor: not-allowed; background: #17394d;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  padding: 9px 20px;
  font-size: 1rem;
}


/* --------------- SHADOWS/NEON EFFECTS --------------- */
.card, section {
  box-shadow: 0 2px 12px #11739933, 0 0 8px #33FFBE33;
}
section {
  border: 1.25px solid #43e0fc11;
}
.card {
  border: 2px solid #43e0fc16;
}

/* Focus ring */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2.5px solid #43e0fc;
  outline-offset: 2.5px;
}

/* Subtle animation for section on view */
section, .card, .testimonial-card {
  transition: box-shadow 0.25s, border-color 0.18s, background 0.36s;
}

/* Spacing for cards/testimonial */
.content-wrapper > .testimonial-card {
  margin-right: 32px;
}

/* Hide scrollbars for mobile-menu and modal */
.mobile-menu, .cookie-modal {
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar { display: none; }

/* Hide visually but keep accessibility (for scripts) */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ----------- Utility classes ----------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.pt-12 { padding-top: 12px !important; }
.pb-12 { padding-bottom: 12px !important; }


/* End */
