/* ===================== 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 {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #13212A;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #E5F0EB;
  min-height: 100vh;
  background-color: #13212A;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #FBB13C;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(.6,0,.4,1);
}
a:hover, a:focus {
  color: #FFF8E0;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font: inherit;
}
button:focus, a:focus {
  outline: 2px solid #FBB13C;
  outline-offset: 2px;
}

/* ===================== BRAND FONTS ===================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Lato:wght@400;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.15; }
h2 { font-size: 2rem;  margin-bottom: 12px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
h4 { font-size: 1.1rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.12rem; }
}

p, li {
  font-size: 1rem;
  color: #E5F0EB;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  margin-bottom: 14px;
}
strong { color: #fff; font-weight: 700; }

/* ===================== CONTAINER SYSTEM ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

/* ===================== HERO SECTION ===================== */
.hero {
  margin-bottom: 60px;
  padding: 40px 0 60px 0;
  background: linear-gradient(135deg, #25444E,a0 60%, #17232B 100%);
  box-shadow: 0 2px 16px 0 #13212A33;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
}
.hero h1 {
  text-shadow: 0 2px 12px #0FF2FF26, 0 1px 0 #212c36;
  background: -webkit-linear-gradient(90deg, #fff 74%, #FBB13C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .subheadline {
  color: #E5F0EB;
  font-size: 1.15rem;
  max-width: 600px;
  text-align: center;
  margin: 0 0 32px 0;
}

/* ===================== MAIN SECTIONS SPACING ===================== */
.section, .features, .services, .about, .testimonials, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================== FEATURES SECTION ===================== */
.features ul, .features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features .feature-grid li, .features ul li {
  background: #213138;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 #0FF2FF29, 0 1px 7px #1a232a11;
  padding: 32px 24px 28px 24px;
  flex: 1 1 225px;
  min-width: 225px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1.5px solid #30505844;
  position: relative;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.features .feature-grid li:hover, .features ul li:hover {
  border-color: #0FF2FF;
  box-shadow: 0 2px 16px 0 #0FF2FF66, 0 1px 12px #FBB13C44;
  z-index: 2;
}
.features img {
  margin-bottom: 12px;
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 8px #0FF2FF60);
}
.features h3 {
  color: #FBB13C;
  margin-bottom: 0px;
}

.features li strong {
  color: #0FF2FF;
  text-shadow: 0 1px 4px #0FF2FF33;
}

@media (max-width: 830px) {
  .features ul, .features .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .features .feature-grid li, .features ul li {
    max-width: 100%;
  }
}

/* ===================== CARD/LIST CONTAINERS ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #1A2830;
  border-radius: 14px;
  box-shadow: 0 2px 12px #0FF2FF24;
  padding: 28px 20px;
}

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

@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* ===================== CTA BUTTONS ===================== */
.cta-button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.025rem;
  font-weight: 700;
  background: #0FF2FF;
  color: #13212A;
  border: none;
  border-radius: 8px;
  padding: 12px 35px;
  cursor: pointer;
  box-shadow: 0 2px 12px #0FF2FF37, 0 1px 8px #FBB13C33;
  margin: 14px 0;
  text-shadow: 0 1px 4px #fff2;
  text-transform: uppercase;
  transition: background 0.2s, box-shadow 0.28s, color 0.2s;
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  background: #FBB13C;
  color: #13212A;
  box-shadow: 0 2px 16px #FBB13C88, 0 4px 28px #0FF2FF22;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: #E5F0EB;
  color: #13212A;
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 20px #0FF2FF18;
}
.testimonials .content-wrapper {
  align-items: flex-start;
}
.testimonials h2 {
  color: #25444E;
}

.testimonial-card {
  background: #fff;
  color: #1e2636;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px #25444E1D;
  margin-bottom: 20px;
  min-width: 260px;
  border-left: 3px solid #FBB13C;
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 2px 14px #FBB13C52, 0 0px 20px #0FF2FF18;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #25444E;
  margin-right: 8px;
  font-size: 1.08rem;
  line-height: 1.7;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  font-size: 0.96rem;
}
.testimonial-meta span {
  color: #25444E;
}
.testimonial-meta img {
  width: 95px;
  height: auto;
  display: block;
  margin-top: 3px;
  filter: drop-shadow(0px 2px 5px #FBB13C77);
}

@media (max-width: 720px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ===================== SERVICES ===================== */
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.services ul li {
  background: #19252a;
  border-radius: 16px;
  padding: 30px 20px 22px 20px;
  margin-bottom: 12px;
  min-width: 220px;
  flex: 1 1 220px;
  box-shadow: 0 2px 8px #0FF2FF26;
  transition: box-shadow 0.23s;
}
.services ul li:hover {
  box-shadow: 0 2px 16px #FBB13C43;
}
@media (max-width: 830px) {
  .services ul {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===================== ABOUT/TEXT CONTENT ===================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
}
.text-section li {
  list-style: disc;
  font-size: 1rem;
}

/* ===================== CONTACT ===================== */
.contact .text-section p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #E5F0EB;
  font-size: 1rem;
}
.contact strong {
  color: #FBB13C;
}

/* ===================== FOOTER ===================== */
footer {
  background: #17232B;
  color: #E5F0EB;
  padding: 32px 0 30px 0;
  position: relative;
  box-shadow: 0 -2px 16px #212c3626;
  border-radius: 22px 22px 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .content-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #0FF2FF;
  margin-bottom: 16px;
  font-size: 1.15rem;
  font-weight: 700;
}
.footer-brand img {
  height: 36px;
  filter: drop-shadow(0px 1px 4px #0FF2FF99);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.99rem;
}
.footer-nav a {
  color: #E5F0EB;
  opacity: 0.84;
  transition: color 0.18s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FBB13C;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: .99rem;
  color: #B0CED6;
}
.footer-contact p img {
  margin-right: 5px;
  width: 19px;
  filter: drop-shadow(0 1px 3px #0FF2FF66);
  vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a img {
  width: 26px;
  filter: drop-shadow(0 1px 4px #0FF2FF77);
  transition: filter 0.2s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: drop-shadow(0 2px 9px #FBB13C);
}
.legal-links {
  margin-top: 24px;
  font-size: .92rem;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  color: #B0CED6;
}
.legal-links a {
  color: #B0CED6;
  text-decoration: underline;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.legal-links a:hover, .legal-links a:focus {
  color: #FBB13C;
  opacity: 1;
}
@media (max-width: 1012px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* ===================== MAIN NAVIGATION ===================== */
header {
  background: #13212Aee;
  padding: 7px 0 1px 0;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  box-shadow: 0 2px 28px #0FF2FF22;
}
.main-nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.main-nav a img {
  height: 36px;
  margin-bottom: -8px;
  filter: none;
  transition: filter 0.2s;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #E5F0EB;
  font-weight: 700;
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.13s, background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FBB13C;
  background: #25444E77;
}

/* ===================== MOBILE NAVIGATION ===================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 2.03rem;
  background: none;
  color: #0FF2FF;
  border: none;
  cursor: pointer;
  z-index: 120;
  transition: color 0.22s, background 0.22s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #FBB13C;
  background: #1e263644;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 28px 18px 28px;
  position: fixed;
  top: 0;
  left: 0;
  background: #17232Bfa;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.6,0,.4,1);
  box-shadow: 8px 0 25px #0FF2FF09;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 25px;
  top: 24px;
  background: none;
  border: none;
  color: #0FF2FF;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 201;
  transition: color 0.18s, background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FBB13C;
  background: #fbb13c21;
}
.mobile-nav {
  margin-top: 45px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.36rem;
  font-weight: 700;
  padding: 8px 0;
  width: 100%;
  background: none;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color 0.17s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FBB13C;
  background: #25444E44;
  padding-left: 10px;
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
  header {
    min-height: 62px;
  }
}
@media (max-width: 719px) {
  .mobile-menu {
    padding: 28px 11px 12px 11px;
  }
  .mobile-menu-close {
    top: 14px;
    right: 11px;
  }
}


/* ===================== COOKIE CONSENT BANNER/BUTTONS ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 300;
  background: #17232B;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 18px;
  box-shadow: 0 -2px 18px #0FF2FF26, 0 -1px 24px #FBB13C09;
  border-top: 3px solid #0FF2FF;
  font-size: 1rem;
  animation: banner-fadein 0.6s;
}
@keyframes banner-fadein {
  from { opacity: 0; transform: translateY(66px); }
  to   { opacity: 1; transform: none; }
}
.cookie-banner p {
  color: #fff;
  margin: 0; 
  flex: 1 1 400px;
  font-size: 1.08rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 21px;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.21s, color 0.2s, box-shadow 0.2s;
}
.cookie-btn.accept {
  background: #0FF2FF;
  color: #13212A;
  box-shadow: 0 2px 8px #0FF2FF33;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FBB13C;
  color: #13212A;
}
.cookie-btn.reject {
  background: none;
  color: #FBB13C;
  border: 1.5px solid #FBB13C;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FBB13C44;
  color: #25444E;
}
.cookie-btn.settings {
  background: #17232B;
  color: #0FF2FF;
  border: 1.5px solid #0FF2FF;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #222f35;
  color: #FBB13C;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 12px 18px 12px;
  }
  .cookie-banner .cookie-actions {
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #0a182480;
  z-index: 350;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fadein 0.35s;
}
@keyframes modal-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #1B2831;
  border-radius: 16px;
  padding: 34px 32px 26px 32px;
  min-width: 320px;
  max-width: 98vw;
  color: #fff;
  box-shadow: 0 8px 42px #0FF2FF33, 0 0px 18px #FBB13C33;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modal-pop 0.23s cubic-bezier(.7,-0.1,.3,1.2);
}
@keyframes modal-pop {
  from { transform: scale(.8); opacity:0; }
  to   { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  color: #0FF2FF;
  font-size: 1.4rem;
  margin-bottom: 0px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 1.03rem;
}
.cookie-toggle {
  width: 46px;
  height: 24px;
  border-radius: 12px;
  background: #25444E;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  border: 2px solid #0FF2FF88;
}
.cookie-toggle[aria-checked="true"] {
  background: #0FF2FF;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.22s cubic-bezier(.7,.3,.2,1.4), background 0.18s;
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-slider {
  left: 22px;
  background: #FBB13C;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #0FF2FF;
  cursor: pointer;
  transition: color 0.19s;
  z-index: 2;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FBB13C;
}
@media (max-width: 540px) {
  .cookie-modal {
    min-width: unset;
    padding: 20px 8px;
    gap: 14px;
  }
  .cookie-modal-close {
    right: 10px;
    top: 10px;
  }
}

/* ===================== UTILITIES & GENERAL COMPONENTS ===================== */
::-webkit-scrollbar {
  width: 11px;
  background: #213138;
}
::-webkit-scrollbar-thumb {
  background: #25444E;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0FF2FF88;
}

.no-scroll {
  overflow: hidden !important;
}

/* ============== NEON + FUTURISTIC FOCUS/ACCENT ============== */
.neon {
  text-shadow: 0 0 9px #0FF2FF,0 2px 12px #213138cc;
}
.neon-border {
  box-shadow: 0 0 1.8px #0ff2ff, 0 0 13px #0ff2ff55;
  border-color: #0FF2FF!important;
}

/* ============== ANIMATIONS ============== */
@keyframes neon-glow {
  0%, 100% { box-shadow: 0 0 11px #0FF2FF77, 0 0 22px #FBB13C22; }
  50%      { box-shadow: 0 0 22px #FBB13C44, 0 0 30px #0FF2FFbb; }
}

/* ============== SPACING VALIDATION ============== */
.card, .card-container > *, .features ul li, .services ul li, .testimonial-card, .section > *, .content-grid > *, .feature-item > *, .footer-contact > *, .text-image-section > * {
  margin-bottom: 0 !important;
}
.card:not(:last-child), .card-container > *:not(:last-child) {
  margin-right: 20px;
}

/* ===================== MEDIA QUERIES FOR RESPONSIVENESS ===================== */
@media (max-width: 1020px) {
  .container {
    max-width: 96%;
  }
  .footer-nav, .footer-contact, .footer-social {
    flex-wrap: wrap;
  }
}
@media (max-width: 700px) {
  .section, .features, .services, .about, .testimonials, .contact {
    padding: 26px 7px;
    margin-bottom: 36px;
  }
}
@media (max-width: 480px) {
  .card, .features ul li, .services ul li {
    padding: 19px 8px;
  }
  .testimonial-card {
    padding: 11px 6px;
  }
  .hero {
    padding: 23px 0 33px 0;
  }
}

/* Make sure everything scales and doesn't overlap, and all spacing/gaps are maintained strictly by flexbox+gap. */
