/* RESET AND 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;
  background: #162447;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Arial', 'Montserrat', Arial, sans-serif;
  background: #162447;
  color: #EDEDED;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* BRAND COLORS */
:root {
  --primary: #1F4068;
  --secondary: #162447;
  --accent: #EDEDED;
  --neon-blue: #29C3F0;
  --neon-green: #3bb78f;
  --neon-purple: #8423ec;
  --button-gradient: linear-gradient(90deg, #29C3F0 0%, #3bb78f 60%, #8423ec 100%);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --transition-fast: 0.18s cubic-bezier(.4,.05,.67,.99);
  --shadow-large: 0 8px 32px 0 rgba(31, 64, 104, 0.45);
  --shadow-light: 0 2px 12px 0 rgba(31, 64, 104, 0.12);
}

/* LAYOUT CONTAINERS & SPACING */
.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
main {
  flex: 1 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #162447;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  background: #1F4068;
  border-radius: 14px;
  box-shadow: var(--shadow-light);
  padding: 32px 24px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.75rem;
  color: var(--accent);
  text-shadow: 0 0 12px var(--neon-blue), 0 2px 32px #1F4068;
  margin-bottom: 8px;
}
h2 {
  font-size: 2rem;
  color: var(--neon-blue);
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
h4, h5 {
  color: var(--accent);
  font-size: 1em;
}
p, li, ul, ol, span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #EDEDED;
}
.subheadline {
  font-size: 1.35rem;
  color: var(--neon-green);
  font-family: var(--font-display);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  font-weight: 500;
}

ul, ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
  position: relative;
}
li img {
  vertical-align: middle;
  margin-right: 12px;
}

/* NAVIGATION */
header {
  width: 100%;
  background: #162447;
  border-bottom: 1.5px solid #223867;
  position: relative;
  padding: 0;
  z-index: 30;
}
header > a img {
  height: 48px;
  margin: 14px 0 14px 0;
  transition: filter var(--transition-fast);
  filter: drop-shadow(0 2px 8px #29C3F0) drop-shadow(0 0 4px #1F4068);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 24px;
}
.desktop-nav a {
  color: var(--accent);
  padding: 8px 0 8px 0;
  font-family: var(--font-display);
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}
.desktop-nav a:hover, .desktop-nav a:focus {
  color: var(--neon-blue);
  border-bottom: 2px solid var(--neon-blue);
}
.desktop-nav .cta-primary {
  margin-left: 10px;
  border-radius: 8px;
  padding: 9px 24px;
  font-size: 1.07rem;
  font-weight: 700;
  background: var(--button-gradient);
  color: #fff;
  text-shadow: 0 1px 8px #29C3F0;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 2px 16px 0 #29c3f055;
  transition: transform .13s, box-shadow .18s;
  border-bottom: none;
}
.desktop-nav .cta-primary:hover, .desktop-nav .cta-primary:focus {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 32px 0 #29c3f0a5;
  background: linear-gradient(90deg, #8423ec 0%, #29C3F0 95%);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: #EDEDED;
  font-size: 2.15rem;
  border: none;
  margin-left: auto;
  margin-right: 8px;
  padding: 6px 12px;
  z-index: 61;
  cursor: pointer;
  transition: color var(--transition-fast);
  outline: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--neon-blue);
}
.mobile-menu {
  display: none;
}
.mobile-menu[aria-expanded="true"], .mobile-menu.open {
  display: flex !important;
}
/* Will be shown only via JS - CSS will style panel when open */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #1F4068;
  box-shadow: 0 0 60px 0 #29c3f066;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 81;
  overflow-y: auto;
  transition: transform 0.36s cubic-bezier(.77,0,.18,1), opacity 0.13s;
  will-change: transform;
  transform: translateX(-102%);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  z-index: 100;
  transition: color var(--transition-fast);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--neon-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 36px auto auto 38px;
  width: 80%;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
  border-radius: 4px;
  font-family: var(--font-display);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--neon-green);
  text-shadow: 0 2px 16px #3bb78f55;
}


/* HEADER LAYOUT */
header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  min-height: 60px;
  padding: 0 0 0 20px;
  box-shadow: 0 2px 24px 0 #1f406841;
}

/* SECTIONS/FEATURES */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #223867;
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow-large);
  transition: box-shadow var(--transition-fast), transform .16s;
}
.card:hover, .card:focus {
  box-shadow: 0 4px 48px 0 #29c3f099;
  transform: translateY(-4px) scale(1.01);
}
.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;
  background: #fff;
  color: #1F4068;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 32px 0 #1f406825;
  font-size: 1.07rem;
  transition: box-shadow var(--transition-fast), background .13s;
}
.testimonial-card p {
  color: #1F4068;
  font-size: 1.07rem;
}
.testimonial-card span {
  color: #162447;
  font-size: 1rem;
  opacity: .8;
}
.testimonial-card:hover {
  background: #e3faff;
  box-shadow: 0 4px 48px 0 #29c3f099;
}
.feature-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.feature-list > div {
  background: #223867;
  border-radius: 14px;
  box-shadow: 0 4px 20px 0 #1F40688a;
  padding: 28px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.feature-list > div:hover {
  transform: scale(1.035) translateY(-2px);
  box-shadow: 0 8px 40px 0 #29c3f099, 0 2px 10px 0 #1F4068;
}
.feature-list img {
  height: 38px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 10px #3bb78f55);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTONS & LINKS */
.cta-primary {
  background: var(--button-gradient);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1.13rem;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 2px 16px 0 #29c3f055;
  text-decoration: none;
  cursor: pointer;
  text-shadow: 0 1px 10px #29C3F0aa;
  letter-spacing: 0.04em;
  margin-top: 12px;
  margin-bottom: 4px;
  transition: transform .12s, box-shadow .18s, background .23s, color .15s;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #8423ec 0%, #29C3F0 70%);
  color: #fff;
  transform: translateY(-2px) scale(1.027);
  box-shadow: 0 8px 40px 0 #29c3f0a9;
}
a {
  color: var(--neon-blue);
  transition: color var(--transition-fast);
  text-decoration: underline dotted 1.5px;
  outline: none;
}
a:hover, a:focus {
  color: var(--neon-green);
  text-decoration: underline solid 2px;
}

/* FILTER BAR */
.filter-bar {
  background: #223867;
  border-radius: 8px;
  box-shadow: 0 2px 16px #1F406833;
  padding: 16px 24px;
  color: var(--neon-blue);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.filter-bar .quick-search {
  background: #29C3F0;
  color: #162447;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 16px;
  box-shadow: 0 2px 10px #29C3F055;
  font-size: 1em;
}

/* CITY OVERVIEW */
.city-overview ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.city-overview ul li {
  background: #223867;
  color: #fff;
  border-radius: 8px;
  padding: 9px 20px;
  box-shadow: 0 2px 10px rgba(31, 64, 104, 0.13);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0;
}
.city-overview span {
  color: var(--neon-blue);
  font-size: 0.96rem;
  opacity: 0.89;
}

/* FOOTER */
footer {
  background: #1F4068;
  color: #fff;
  width: 100%;
  border-top: 1.5px solid #223867;
  box-shadow: 0 -2px 24px #1F406822;
  padding-top: 32px;
  padding-bottom: 8px;
  margin-top: 42px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
}
.footer-top img {
  height: 42px;
  filter: drop-shadow(0 2px 8px #29C3F0) drop-shadow(0 0 3px #1F4068);
}
.footer-top .tagline {
  font-size: 1.13rem;
  color: var(--neon-blue);
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  text-shadow: 0 0 6px #1F4068aa;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.footer-nav a {
  color: #EDEDED;
  text-decoration: underline solid 1.5px #29C3F0;
  opacity: .92;
  transition: color var(--transition-fast);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--neon-blue);
  text-decoration: underline solid 2px #3bb78f;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  font-size: 0.97rem;
  opacity: 0.88;
  margin: 12px 0 4px 0;
}
.footer-contact img {
  height: 13px;
  margin-right: 7px;
  filter: brightness(1.1);
}
.footer-contact span {
  color: #EDEDED;
  display: flex;
  align-items: center;
  gap: 5px;
}


/* COOKIE BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1111;
  background: #1F4068ee;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 48px 0 #29c3f044, 0 2px 2px #1F406822;
  padding: 26px 12px 18px 12px;
  gap: 14px;
  animation: cookie-banner-slidein .66s cubic-bezier(.42,1.05,.56,1.01);
}
@keyframes cookie-banner-slidein {
  from { transform: translateY(60px); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner-content {
  font-size: 1rem;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  padding: 11px 26px;
  font-size: 1rem;
  border: none;
  border-radius: 7px;
  box-shadow: 0 2px 14px #29c3f022;
  cursor: pointer;
  font-family: var(--font-display);
  background: var(--button-gradient);
  color: #fff;
  font-weight: 600;
  transition: background .20s, transform .14s, box-shadow .15s;
  margin-bottom: 0; margin-top: 0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: linear-gradient(90deg, #3bb78f 0%, #8423ec 95%);
  box-shadow: 0 4px 22px #29c3f0cc;
  transform: translateY(-1.5px) scale(1.02);
}

.cookie-banner .cookie-settings {
  background: transparent;
  border: 2px solid #29C3F0;
  color: #29C3F0;
  font-weight: 500;
  margin-left: 0;
  box-shadow: unset;
  transition: border .2s, color .14s, background .14s;
}
.cookie-banner .cookie-settings:hover {
  background: #29C3F0;
  color: #1F4068;
  border: 2px solid #3bb78f;
}

/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  z-index: 1200;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,36,71,.86);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity .22s;
  animation: modal-in .45s cubic-bezier(.77,0,.18,1);
}
@keyframes modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #223867;
  border-radius: 16px;
  box-shadow: 0 8px 56px 0 #29c3f099;
  padding: 36px 28px 28px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 325px;
  min-height: 220px;
  max-width: 98vw;
  max-height: 98vh;
}
.cookie-modal-content h3 {
  color: var(--neon-blue);
  margin-bottom: 10px;
}
.cookie-modal-content ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding-left: 0;
}
.cookie-modal-content li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.cookie-modal-content label {
  font-size: 1rem;
  font-family: var(--font-display);
  color: #EDEDED;
  font-weight: 500;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #29C3F0;
  width: 22px;
  height: 22px;
}
.cookie-modal-content .cookie-category-essential {
  color: #3bb78f;
  font-weight: 700;
}
.cookie-modal-content .cookie-category-essential input {
  accent-color: #3bb78f;
}
.cookie-modal-content .cookie-category-analytics input {
  accent-color: #29C3F0;
}
.cookie-modal-content .cookie-category-marketing input {
  accent-color: #8423ec;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.cookie-modal-actions button {
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
  cursor: pointer;
  background: var(--button-gradient);
  color: #fff;
  box-shadow: 0 2px 12px #29c3f044;
  transition: background .20s, transform .14s, box-shadow .15s;
}
.cookie-modal-actions .cookie-cancel {
  background: transparent;
  color: #29C3F0;
  border: 2px solid #29C3F0;
  box-shadow: unset;
}
.cookie-modal-actions .cookie-cancel:hover {
  background: #29C3F0;
  color: #162447;
  border: 2px solid #3bb78f;
}

/* FORM-LIKE ELEMENTS */
input[type="text"], input[type="email"], textarea, select {
  width: 100%;
  padding: 11px 14px;
  background: #162447;
  border-radius: 8px;
  border: 1.5px solid #223867;
  color: #EDEDED;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 16px;
  margin-top: 3px;
  box-shadow: 0 1px 8px #29C3F022;
  transition: border .18s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
  border: 1.5px solid #29C3F0;
  outline: none;
}


/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container { max-width: 96vw; }
}
@media (max-width: 960px) {
  .container { max-width: 100vw; }
  .desktop-nav { gap: 14px; }
}
@media (max-width: 1024px) {
  .feature-list,
  .content-grid,
  .footer-contact {
    gap: 14px !important;
  }
}
@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-top { flex-direction: column; gap: 8px; align-items: flex-start; }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  header {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 0 8px 0 8px;
  }
  header > a img { height: 38px; margin: 10px 0 10px 0; }
  .desktop-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 40px;
  }
  .content-wrapper, .text-section {
    padding: 18px 6px;
    gap: 13px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
  .feature-list {
    flex-direction: column;
    gap: 13px;
  }
  .feature-list > div {
    padding: 16px 10px;
    min-width: 92vw;
    align-items: flex-start;
  }
  .card-container {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px 6px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.26rem; }
  .cookie-modal-content {
    min-width: 90vw;
    padding: 18px 6vw;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 1em;
  }
}
@media (max-width: 520px) {
  .footer-top .tagline {
    font-size: .97rem;
  }
  .footer-top img {
    height: 28px;
  }
  h1 { font-size: 1.3rem; }
}

/* FLEXBOX LAYOUTS: MANDATORY PATTERNS */
.section {
  display: flex;
  flex-direction: column;
}
.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;
}

/* TRANSITIONS & MICRO-INTERACTIONS */
.card, .feature-list > div, .cta-primary, a, .filter-bar, .testimonial-card, .footer-nav a, .footer-contact span {
  transition: color .15s, box-shadow .16s, transform .13s, background .18s;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ENHANCED NEON/TECH EFFECTS */
h1, .feature-list > div:hover, .cta-primary:hover, .testimonial-card:hover, .card:hover {
  filter: drop-shadow(0 0 6px #29C3F0) drop-shadow(0 0 5px #1F4068);
}

/* SELECTION */
::selection { background: #3bb78f; color: #fff; }

/* SCROLLBAR for modern look */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #223867;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #162447;
}

/* MISC UTILS */
.d-none { display: none !important; }