/* ==================================================
   CSS RESET & NORMALIZE
   ================================================== */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; border: 0; }
body, html { height: 100%; min-height: 100%; }
body {
  background-color: #181B21; /* very dark base for tech look */
  color: #E7E3DD;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
}
a { color: #8af9ff; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #52caff; outline: none; }
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 16px;
}
li { margin-bottom: 8px; }
table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
  background: #212b3a;
  box-shadow: 0 4px 24px 0 rgba(30,60,250,0.07);
  border-radius: 10px; overflow: hidden;
}
th, td { padding: 14px 16px; text-align: left; }
th { background: #1A2231; color: #52caff; font-weight: 600; font-size: 16px; }
td { border-bottom: 1px solid #2F3848; font-size: 16px; color: #E7E3DD; }
tr:last-child td { border-bottom: none; }
blockquote {
  background: #152133;
  color: #19294B;
  border-left: 4px solid #52caff;
  padding: 18px 24px;
  margin-bottom: 12px;
  font-style: italic;
  font-size: 17px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin-bottom: 16px;
}
h1 { font-size: 32px; margin-bottom: 26px; }
h2 { font-size: 26px; margin-bottom: 18px; }
h3 { font-size: 20px; margin-bottom: 13px; }
h4 { font-size: 18px; margin-bottom: 11px; }
.section h2 { color: #52caff; }
p, .text-section li { color: #E7E3DD; font-size: 16px; margin-bottom: 15px; }
strong, b { color: #8af9ff; }

/* ===============  GRADIENT AND BACKGROUND  ================= */
body, main > section, footer {
  background: linear-gradient(120deg,#232F47 40%, #202233 100%);
}
header {
  background-color: #233349;
  box-shadow: 0 2px 12px 0 rgba(20,36,70,0.18);
  border-bottom: 1.5px solid #263660;
}
footer {
  background:#19202E;
  border-top:1.5px solid #263660;
  color: #A3A08D;
}

/* ================== CONTAINER ===================== */
.container {
  width: 100%; max-width: 1150px; margin: 0 auto; padding: 0 16px;
  display: flex; flex-direction: column; gap: 0; /* For stacking sections in mobile */
}

/* ================== HEADER & NAVIGATION ================== */
header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  position: relative;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 18px;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  color: #E7E3DD;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 2px 3px;
  transition: color 0.2s;
}
nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px; right: 0;
  height: 2px;
  background: linear-gradient(90deg,#8af9ff 0,#52caff 75%,#A3A08D 100%);
  transform: scaleX(0);
  transition: transform 0.2s;
}
nav a:hover::after, nav a:focus::after { transform: scaleX(1); }
nav a:hover, nav a:focus { color: #8af9ff; }
.cta-btn {
  display:flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg,#52caff 65%,#A3A08D 100%);
  box-shadow: 0 2px 8px 0 rgba(82,202,255,0.05);
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #19202E;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 26px;
  border: none;
  margin-left: 18px;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.22s, color 0.22s;
  outline: none;
  letter-spacing: 0.01em;
  box-shadow: 0 0 0 0 #52caff;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#8af9ff 70%,#d2cfae 100%);
  color: #152133;
  box-shadow: 0 0 12px 2px #52caff55;
}

/* ================== HAMBURGER MENU (Mobile) =================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #8af9ff;
  font-size: 30px;
  cursor: pointer;
  z-index: 102;
  margin-left: 10px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus { color: #A3A08D; }
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100vw; height: 100vh;
  background: rgba(12, 21, 34, 0.98);
  z-index: 9999;
  transform: translateX(100%);
  display: flex; flex-direction: column;
  align-items: flex-end;
  overflow-y: auto;
  transition: transform 0.4s cubic-bezier(0.65,0,0.35,1);
  box-shadow: -8px 0 40px 0 #52caff15;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  margin: 26px 38px 10px 0;
  background: none;
  border: none;
  color: #8af9ff;
  font-size: 30px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1000;
  align-self: flex-end;
}
.mobile-menu-close:focus { color: #A3A08D; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
  padding: 40px 50px 30px 38px;
}
.mobile-nav a {
  color: #E7E3DD;
  font-size: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 3px 0;
  transition: color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus { color: #8af9ff; }

/* ------- Hamburger Visibility --------- */
@media (max-width: 950px) {
  nav { display: none; }
  .cta-btn { margin-left: 8px; }
  .mobile-menu-toggle {
    display: inline-block;
    position: relative;
    z-index: 110;
  }
}
@media (min-width: 951px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  nav { display: flex !important; }
}

/* =================== SECTIONS & LAYOUTS ==================== */
section {
  margin-bottom: 60px; padding: 40px 20px;
  border-radius: 14px;
  background: linear-gradient(100deg,#232F47 80%,#202233 100%);
  box-shadow: 0 3px 30px 0 #1a223140;
  position: relative;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.feature-grid > div, .card {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 350px;
  background: #181B21;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 #05284833;
  padding: 26px 20px 20px 20px;
  margin-bottom: 20px;
  border: 1px solid #313c54;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.18s, transform 0.14s;
}
.feature-grid > div:hover, .card:hover {
  box-shadow: 0 0 42px 2px #52caff33, 0 2px 32px 0 #52caff11;
  border-color: #52caff;
  transform: translateY(-3px) scale(1.03);
  z-index: 2;
}
.feature-grid img, .card img {
  height: 48px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 2px #52caff99);
}
.feature-grid h3, .card h3 {
  color: #8af9ff;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.feature-grid p, .card p {
  color: #A3A08D;
  font-size: 15px;
}

.content-grid { 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: flex-start;
  gap: 20px;
  background: #eae4f680;
  color: #19202E;
  border-left: 6px solid #52caff;
  border-radius: 13px;
  box-shadow: 0 2px 30px 0 #52caff12;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 17px;
  position: relative;
  transition: box-shadow 0.23s, border-color 0.16s, transform 0.14s;
  max-width: 690px;
}
.testimonial-card:hover {
  box-shadow: 0 0 48px 2px #8af9ff38;
  border-color: #a3a08d;
  transform: translateY(-2px) scale(1.02);
}
.testimonial-card blockquote {
  background: none;
  color: #19202E;
  border: none;
  padding: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-style: italic;
  line-height: 1.8;
}
.testimonial-card strong {
  color: #233349;
}
.average-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  color: #52caff;
  font-size: 19px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.average-rating img { height: 25px; }

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.card-content { display: flex; flex-direction: column; justify-content: center; }

.price-notes {
  color: #A3A08D;
  font-size: 15px;
  margin: 16px 0 14px 0;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 17px 0 7px 0;
  font-size: 15px;
}
.footer-menu a {
  color: #A3A08D;
  transition: color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #8af9ff;
}
.footer-info {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
  color: #A3A08D;
  padding-bottom: 16px;
}

.map-embed {
  min-height: 160px;
  border-radius: 13px;
  background: #191e29;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 13px;
  box-shadow: 0 2px 16px 0 #05284833;
}

/* ===================== BUTTON BASE STYLES ======================= */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn, .cookie-setting-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  user-select: none;
  outline: none;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s, border 0.17s;
}

/* ===================== RESPONSIVE LAYOUTS ======================= */
@media (max-width: 1180px) {
  .container { max-width: 1000px; }
}
@media (max-width: 1000px) {
  .container { max-width: 98vw; }
  .feature-grid > div, .card {
    flex-basis: 44%;
    min-width: 200px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 6px; }
  section {
    padding: 24px 6px;
    margin-bottom: 36px;
  }
  h1 { font-size: 25px; }
  h2 { font-size: 19px; }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .card {
    min-width: 98%; max-width: 100%;
    padding: 20px 13px 16px 13px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .testimonial-card {
    padding: 13px 9px;
    font-size: 16px;
    max-width: 98vw;
  }
  .mobile-menu {
    width: 98vw;
    padding: 0;
  }
  .mobile-nav {
    padding: 28px 23px 26px 18px;
    gap: 19px;
  }
  .mobile-menu-close { margin: 20px 20px 15px 0; }
}

@media (max-width: 500px) {
  .container { max-width: 100vw; }
  section { padding: 14px 0; }
  h1, h2, h3, h4 { margin-bottom: 10px; }
  .feature-grid, .card-container, .content-grid { gap: 8px; }
}

/* ===================== COOKIE CONSENT BANNER ====================== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100%;
  z-index: 21000;
  background: linear-gradient(90deg,#233349 80%,#191e29 100%);
  color: #E7E3DD;
  box-shadow: 0 -4px 22px #52caff32;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 18px 16px 18px;
  font-size: 16px;
  border-radius: 18px 18px 0 0;
  transition: transform 0.33s cubic-bezier(.63,0,.33,1);
  transform: translateY(0%);
}
.cookie-banner.closed {
  transform: translateY(120%);
}
.cookie-banner-content {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  width: 100%; max-width: 810px;
}
.cookie-banner p {
  font-size: 15px;
  margin-bottom: 7px;
}
.cookie-btn-group {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 0;
}
.cookie-btn, .cookie-setting-btn {
  background: linear-gradient(90deg,#52caff 75%,#A3A08D 100%);
  color: #19202E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  border: none;
  border-radius: 23px;
  padding: 8px 22px;
  font-weight: 700;
  margin-right: 1px;
  margin-bottom: 6px;
  transition: background 0.18s, color 0.19s, box-shadow 0.19s;
  min-width: 125px;
}
.cookie-btn:hover, .cookie-setting-btn:hover, .cookie-btn:focus, .cookie-setting-btn:focus {
  background: linear-gradient(90deg,#8af9ff 90%,#d2cfae 100%);
  color: #152133;
  box-shadow: 0 0 14px 2px #52caff44;
}
.cookie-btn.reject {
  background: linear-gradient(90deg,#E7E3DD 90%,#A3A08D 100%);
  color: #1A2231;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: linear-gradient(90deg,#e19191 90%,#A3A08D 100%);
  color: #fff;
}
/* ------------- Cookie Preferences Modal ----------------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 20100;
  background: rgba(30,35,55,0.79);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.27s;
}
.cookie-modal {
  background: #1A2231;
  color: #E7E3DD;
  padding: 38px 38px 30px 38px;
  border-radius: 18px;
  box-shadow: 0 0 48px 0 #52caff55;
  max-width: 96vw;
  width: 380px;
  display: flex; flex-direction: column; gap: 22px;
  position: relative;
  font-size: 16px;
  animation: modalOpen 0.33s cubic-bezier(.6,0,.4,1);
}
@keyframes modalOpen {
  from { transform: translateY(60px) scale(.92); opacity: 0.01; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h3 { color: #8af9ff; margin-bottom: 12px; }
.cookie-categories {
  display: flex; flex-direction: column; gap: 17px; margin-bottom: 12px;
}
.cookie-category-row {
  display: flex; align-items: center; gap: 13px;
  font-size: 15px;
}
.cookie-category-label { flex: 1; }
.cookie-toggle {
  appearance: none;
  width: 38px; height: 21px;
  background: #233349;
  border: 1.5px solid #a3a08d;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, border-color 0.19s;
}
.cookie-toggle:checked {
  background: #52caff;
  border-color: #52caff;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2.7px; left: 3.3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fffdfa;
  transition: left 0.18s, background 0.19s;
  box-shadow: 0 1px 4px #0004;
}
.cookie-toggle:checked::after {
  left: 18px;
  background: #233349;
}
.cookie-modal-close {
  position: absolute; top: 11px; right: 17px;
  font-size: 23px;
  color: #8af9ff;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #52caff; }

@media (max-width: 440px) {
  .cookie-modal { padding: 18px 7vw 14px 7vw; border-radius: 14px; }
  .cookie-modal h3 { font-size: 16px; }
  .cookie-modal { width: 98vw; }
  .cookie-banner { padding: 11px 3px 12px 5px; }
}

/* =========== FORMS & CONTACT STYLES (basic, as per HTML structure) =========== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-details p {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 7px;
  margin-bottom: 4px;
  color: #E7E3DD;
}
.contact-details img { height: 19px; margin-right: 5px; }

/* ========= UTILITIES ========= */
.rounded { border-radius: 15px; }
.shadowed { box-shadow: 0 3px 27px 0 #52caff18; }
.text-light { color: #E7E3DD; }
.text-accent { color: #8af9ff; }
.text-secondary { color: #A3A08D; }
.bg-accent { background: #8af9ff; }
.bg-dark { background: #152133; }

/* ========================= NEON GLOW & MICRO-ANIMATIONS ======================== */
.cta-btn, .cookie-btn, .cookie-setting-btn {
  box-shadow: 0 1px 12px 0 #52caff22, 0 0 0 0 #52caff;
}
.cta-btn:active, .cookie-btn:active, .cookie-setting-btn:active {
  box-shadow: 0 0 14px 2px #a3a08d88, 0 0 0 0 #52caff;
}
.cta-btn:focus {
  outline: 2px solid #52caff;
  outline-offset: 2px;
}
/* Subtle accent glow effect for focus */
input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 0 2px #52caff99;
  outline: none;
}

/* ================== TRANSITION/ANIMATION UTILITIES ==================== */
a, button, .cta-btn, .feature-grid > div, .card, .testimonial-card, th, td {
  transition: background 0.18s, color 0.18s, box-shadow 0.22s, border 0.15s, transform 0.16s;
}

/* ================= HIERARCHY, SPACING, & FLEX SPACING ================= */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* =============== TYPOGRAPHY SCALE ================= */
.t-32 { font-size: 32px; }
.t-26 { font-size: 26px; }
.t-20 { font-size: 20px; }
.t-18 { font-size: 18px; }
.t-16 { font-size: 16px; }
.t-15 { font-size: 15px; }
.t-14 { font-size: 14px; }
.text-bold { font-weight: 700; }
.text-med { font-weight: 500; }

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