/* ===========================================================
   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, menu, 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, 
main, 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;
  scroll-behavior: smooth;
  min-height: 100%;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #131a26;
  color: #EDEDED;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol, menu {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  background: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
strong {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #e5f1ff;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  color: #ededed;
  font-size: 1rem;
}
blockquote {
  font-style: italic;
  position: relative;
  padding-left: 24px;
}
blockquote::before {
  content: '"';
  color: #71A1D1;
  font-size: 2.5rem;
  position: absolute;
  left: 0;
  top: -10px;
}
section {
  width: 100%;
}

/* =================================================================
   GLOBAL COLOR VARIABLES (fallbacks for full support)
   ================================================================= */
:root {
  --color-primary: #1A2432;
  --color-secondary: #71A1D1;
  --color-accent: #EDEDED;
  --color-bg: #131a26;
  --color-neon: #00fff5;
  --color-danger: #e84a5f;
  --shadow-main: 0 6px 24px 0 rgba(26,36,50,0.11);
  --card-radius: 18px;
}

/* =================================================================
   CONTAINER AND FLEXBOX LAYOUTS (NO GRID)
   ================================================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.header-flex, .footer-flex, .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-flex {
  padding-top: 36px;
  padding-bottom: 12px;
}
.footer-bottom {
  border-top: 1px solid #222b38;
  font-size: 0.95rem;
  gap: 8px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-quicklinks, .footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: #ededed;
  font-size: 0.95rem;
}

/* =================================================================
   SPACING PATTERNS
   ================================================================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #181e2a;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-main);
  padding: 28px 24px;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 280px;
}
.card:hover {
  box-shadow: 0 10px 32px 0 #71A1D1aa, 0 6px 24px 0 rgba(26,36,50,0.17);
  transform: translateY(-2px) scale(1.017);
}
.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: #ededed;
  color: #1A2432;
  box-shadow: 0 4px 32px 0 #1A243233;
  border-radius: var(--card-radius);
  margin-bottom: 20px;
  flex-direction: column;
  max-width: 600px;
  margin-top: 20px;
}
.testimonial-card blockquote {
  color: #222b38;
  font-size: 1.18rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-style: italic;
}
.testimonial-card p {
  color: #1A2432;
  margin-top: 8px;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #181e2a;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-main);
  padding: 24px 18px;
  min-width: 220px;
  max-width: 280px;
  margin-bottom: 20px;
  border-left: 4px solid #71A1D1;
  transition: border-color 0.22s, box-shadow 0.18s;
}
.feature-item:hover {
  border-left: 4px solid #00fff5;
  box-shadow: 0 8px 28px 0 #71A1D1aa, 0 6px 24px 0 rgba(26,36,50,0.13);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.service-item {
  background: #181e2a;
  box-shadow: var(--shadow-main);
  border-radius: var(--card-radius);
  padding: 28px 22px;
  flex: 1 1 320px;
  min-width: 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  border-left: 4px solid #71A1D1;
}
.service-item:hover {
  box-shadow: 0 10px 34px 0 #71A1D1ab, 0 6px 24px 0 rgba(26,36,50,0.12);
  border-left: 4px solid #00fff5;
  transform: translateY(-2px) scale(1.012);
}
.contact-details {
  padding: 20px 4px;
  border-radius: var(--card-radius);
  background: #171b24;
  box-shadow: 0 2px 10px 0 #1A243222;
  margin-bottom: 24px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}
.cta-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/*
  =================================================================
   NAVIGATION STYLES
   =================================================================
*/
header {
  background: #181e2a;
  box-shadow: 0 2px 12px 0 #0c10159a;
  position: relative;
  z-index: 80;
}
.logo-link img {
  display: block;
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #ededed;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  border-radius: 8px;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #131a26;
  background: #71A1D1;
}
.cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 13px 30px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s, transform 0.13s;
  box-shadow: 0 2px 16px 0 #1A243266;
}
.cta-btn.primary {
  background: #71A1D1;
  color: #131a26;
  border: 2px solid #71A1D1;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #00fff5;
  color: #131a26;
  border: 2px solid #00fff5;
  box-shadow: 0 0 0 3px #00fff555;
  transform: scale(1.04);
}
.cta-btn.secondary {
  background: #181e2a;
  color: #71A1D1;
  border: 2px solid #71A1D1;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #71A1D1;
  color: #181e2a;
  border: 2px solid #00fff5;
  box-shadow: 0 0 0 3px #00fff555;
  transform: scale(1.04);
}

/* ================= Mobile Navigation ==================== */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #71A1D1;
  font-size: 2.1rem;
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
  margin-left: 12px;
  border-radius: 10px;
  padding: 4px 12px;
  z-index: 201;
  display: none;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #00fff5;
  background: #222b38;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #131a26ee;
  backdrop-filter: blur(3px);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.7,.1,.3,1);
  z-index: 200;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #71A1D1;
  font-size: 2rem;
  cursor: pointer;
  margin: 30px 36px 8px 0;
  align-self: flex-end;
  transition: color 0.18s, background .19s;
  border-radius: 10px;
  padding: 2px 10px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #00fff5;
  background: #1A2432;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 30px 38px;
  width: 80vw;
  max-width: 380px;
}
.mobile-nav a {
  color: #ededed;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.3rem;
  padding: 8px 10px;
  border-radius: 9px;
  transition: background 0.18s, color 0.18s;
  background: #142033;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #00fff5;
  background: #1A2432;
}

/*
  =================================================================
   HERO / HEADERS / FEATURES
   =================================================================
*/
.hero-section {
  align-items: flex-start;
  justify-content: center;
  min-height: 240px;
  padding-top: 46px;
  gap: 18px;
}
.hero-section h1 {
  color: #71A1D1;
  font-size: 2.8rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 22px #71A1D199, 0 2px 28px #182433;
}
.hero-section p {
  font-size: 1.18rem;
  color: #e5f1ff;
  margin-bottom: 16px;
}
.features-section,
.services-section {
  align-items: flex-start;
}
.features-section h2, .services-section h2 {
  color: #00fff5;
  margin-bottom: 10px;
  font-size: 2rem;
}
.features-section ul, .services-section ul, .features-section li, .services-section li {
  color: #ededed;
  font-size: 1rem;
  margin-bottom: 4px;
}

/*
  =================================================================
   ABOUT & LEGAL SECTIONS, TEXT SECTIONS
   =================================================================
*/
.about-section h1, .about-section h2, .legal-section h1, .legal-section h2 {
  color: #71A1D1;
}
.about-section ul, .features-section ul, .services-section ul, .legal-section ul {
  margin-bottom: 12px;
  padding-left: 20px;
  color: #ededed;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
}
.text-section h3 {
  color: #71A1D1;
  font-size: 1.18rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.text-section ul li {
  list-style: disc;
  margin-left: 20px;
}

/*
  =================================================================
   MAP & PLACEHOLDER
   =================================================================
*/
.map-placeholder {
  background: #282d39;
  border-radius: var(--card-radius);
  padding: 26px;
  box-shadow: 0 2px 12px 0 #222b3866;
  margin-top: 20px;
  min-width: 200px;
  max-width: 620px;
}
.map-placeholder img {
  height: 46px;
  width: 46px;
}

/*
  =================================================================
   COOKIE CONSENT BANNER & MODAL
   =================================================================
*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #181e2a;
  color: #ededed;
  box-shadow: 0 -4px 32px 0 #222b38cc;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 300;
  transition: transform 0.35s cubic-bezier(.7,.11,.3,1), opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btn-row {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.cookie-banner button,
.cookie-banner .cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 21px;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  min-width: 120px;
  font-weight: 600;
  outline: none;
  box-shadow: 0 2px 12px 0 #1A243222;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-banner .accept-btn {
  background: #00fff5;
  color: #181e2a;
  border: 2px solid #00fff5;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #71A1D1;
  color: #181e2a;
  border: 2px solid #71A1D1;
  box-shadow: 0 0 0 2px #00fff55a;
}
.cookie-banner .reject-btn {
  background: #181e2a;
  color: #71A1D1;
  border: 2px solid #71A1D1;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #e84a5f;
  border: 2px solid #e84a5f;
  color: #ededed;
}
.cookie-banner .settings-btn {
  background: transparent;
  color: #00fff5;
  border: 2px solid #00fff5;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #00fff5;
  color: #181e2a;
}

.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #131a26ee;
  z-index: 350;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.23s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-content {
  background: #171b24;
  padding: 38px 28px;
  border-radius: 18px;
  min-width: 310px;
  max-width: 400px;
  box-shadow: 0 8px 44px 0 #71A1D199;
  color: #ededed;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: cookiePop 0.33s cubic-bezier(.42, .76, .59, 1.08);
}
@keyframes cookiePop {
  0% { transform: scale(0.92) translateY(45px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  color: #00fff5;
  font-size: 1.36rem;
  margin-bottom: 2px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
  font-size: 1.01rem;
}
.cookie-category label {
  font-weight: 600;
  user-select: none;
  cursor: pointer;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  border-radius: 14px;
  background: #222b38;
  position: relative;
  border: 1px solid #71A1D1;
  appearance: none;
  outline: none;
  box-shadow: 0 2px 8px 0 #71A1D144;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: #00fff5;
  border: 1px solid #00fff5;
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #ededed;
  border-radius: 50%;
  transition: transform 0.19s, background 0.17s;
}
.cookie-toggle:checked::before {
  transform: translateX(16px);
  background: #131a26;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #71A1D1;
  font-size: 1.8rem;
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 14px;
  transition: color 0.18s;
  border-radius: 8px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #00fff5;
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal-content button {
  padding: 9px 20px;
  border-radius: 22px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s, box-shadow 0.13s;
}

/*
  =================================================================
   RESPONSIVE & MOBILE SUPPORT (mobile first)
   =================================================================
*/
@media (max-width: 1100px) {
  .container { max-width: 990px; }
  .feature-grid, .card-container, .service-list { gap: 16px; }
}
@media (max-width: 900px) {
  .container { max-width: 760px; }
  .header-flex, .footer-flex { gap: 22px; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .container { max-width: 98vw; padding-left: 12px; padding-right: 12px; }
  .header-flex, .footer-flex, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    padding: 11px 18px;
    font-size: 0.96rem;
    margin-left: 0;
    margin-top: 8px;
  }
  .feature-grid, .service-list, .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card { max-width: 98vw; }
  .section { padding: 30px 6px; margin-bottom: 38px; }
  .hero-section { padding-top: 16px; }
  .about-section, .features-section, .services-section, .cta-section {
    gap: 16px;
  }
  .content-wrapper { gap: 14px; }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .footer-quicklinks, .footer-legal {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.2rem; }
  .map-placeholder { padding: 16px 3px; }
}
@media (max-width: 470px) {
  .cookie-modal-content { padding: 18px 5px; min-width: 0; }
  .mobile-nav { margin: 20px 8px; }
}
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
  .main-nav { display: flex !important; }
}

/*
  =================================================================
   TECH FUTURISTIC + ACCENTED EFFECTS
   =================================================================
*/
body {
  background: #131a26;
  background-image: 
    linear-gradient(160deg, #131a26 84%, #71A1D1 100%),
    radial-gradient(circle, #222b38 0%, #131a26 100%);
}
section, .card, .feature-item, .service-item, .testimonial-card {
  position: relative;
}
.card::before, .feature-item::before, .service-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: -7px;
  width: 25px;
  height: 25px;
  background: radial-gradient(circle, #00fff5cc 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}
.card:hover::before, .feature-item:hover::before, .service-item:hover::before {
  opacity: 0.77;
}
.cta-btn.primary {
  box-shadow: 0 0 12px #00fff5, 0 2px 18px #71A1D1bb;
  border-radius: 32px;
}
.feature-item, .service-item, .card {
  border-left: 4px solid #71A1D1;
}
.feature-item:hover, .service-item:hover, .card:hover {
  border-left: 4px solid #00fff5;
}

/* Neon accent for selection */
::selection {
  background: #00fff5;
  color: #181e2a;
}

/*
  =================================================================
   SCROLLBAR (for modern/futuristic touch)
   =================================================================
*/
body::-webkit-scrollbar {
  width: 9px;
}
body::-webkit-scrollbar-thumb {
  background: #222b38;
  border-radius: 5px;
  box-shadow: 0 0 8px #00fff5aa;
}
body::-webkit-scrollbar-track {
  background: #181e2a;
}

/*
  =================================================================
   UTILITY CLASSES
   =================================================================
*/
.mt-4 { margin-top: 4px !important; }
.mb-4 { margin-bottom: 4px !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; }
.text-center { text-align: center; }
.hide { display: none !important; }

/*
  =================================================================
   ANIMATIONS & MICRO-INTERACTIONS
   =================================================================
*/
.cta-btn, .feature-item, .service-item, .card, .main-nav a, .cookie-banner button, .cookie-banner .cta-btn {
  transition: box-shadow 0.18s, transform 0.17s, background 0.18s, color 0.18s, border 0.19s;
}
.cta-btn:active, .feature-item:active, .service-item:active, .card:active {
  transform: scale(.98);
}

/*
  =================================================================
   FORM ELEMENTS (input, textarea for contact when added)
   =================================================================
*/
input, textarea, select {
  background: #282d39;
  color: #ededed;
  border: 1.6px solid #71A1D1;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 10px 14px;
  outline: none;
  margin-bottom: 16px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 2px 10px 0 #1A243228;
  transition: border 0.18s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border: 1.8px solid #00fff5;
  box-shadow: 0 0 0 2px #00fff599;
}

/*
  =================================================================
   ACCESSIBILITY IMPROVEMENTS
   =================================================================
*/
a:focus, button:focus, .cta-btn:focus, .main-nav a:focus,
.cookie-banner button:focus, .mobile-menu-toggle:focus {
  outline: 2px dashed #00fff5;
  outline-offset: 1px;
}

/* =================================================================
   END OF CSS FILE
   ================================================================= */
