/* ==== 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,
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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #161A22;
  color: #FFFFFF;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

/* ==== BRAND COLORS ==== */
:root {
  --primary: #233A5B;
  --secondary: #F4D35E;
  --accent: #FFFFFF;
  --bg-gradient: #161A22;
  --bg-gradient-2: #212B3A;
  --neon-blue: #31B7FF;
  --neon-pink: #FF4FD8;
  --neon-green: #97FF43;
  --shadow-main: 0 2px 16px 0 rgba(49, 183, 255, 0.10);
  --card-bg: #233A5B;
  --card-bg-light: #222B3A;
  --button-gradient: linear-gradient(90deg, #31B7FF 0%, #FF4FD8 100%);
  --border-radius: 14px;
  --accent-text: #F4D35E;
  --muted: #7895B2;
}

@media (prefers-color-scheme: light) {
  body {
    background: #fff;
    color: #1A273A;
  }
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; color: var(--secondary);  }
h2 { font-size: 2rem; margin-bottom: 18px; color: var(--neon-blue); }
h3 { font-size: 1.35rem; margin-bottom: 10px; color: var(--neon-green); }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; color: var(--accent); }
p, li, span, strong, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
}
p {
  font-size: 1rem;
  color: #E7EDFA;
  margin-bottom: 12px;
}
blockquote {
  font-style: italic;
  color: #10172F;
  background: #fff;
  padding: 20px 28px;
  border-left: 6px solid var(--neon-blue);
  border-radius: var(--border-radius);
  margin-bottom: 10px;
  font-size: 1.07rem;
}
strong {
  color: var(--secondary);
  font-weight: bold;
}
.text-section ul, .content-wrapper ul, .features-list ul {
  padding-left: 0;
}
.text-section ul li, .content-wrapper ul li, .features-list ul li {
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  padding-left: 18px;
}
.text-section ul li:before, .content-wrapper ul li:before {
  content: '';
  display: inline-block;
  width: 9px; height: 9px;
  background: var(--neon-pink);
  border-radius: 50%;
  position: absolute; left: 0; top: 7px;
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-gradient);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-main);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg-light);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 18px 0 rgba(49, 183, 255, 0.10);
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 2px 24px 0 var(--neon-blue);
  transform: translateY(-4px) scale(1.03);
}
.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: #fff;
  color: #1A273A;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px 0 rgba(35,58,91, 0.10);
  margin-bottom: 24px;
  flex-direction: column;
  min-width: 220px;
  max-width: 540px;
}
.testimonial-card blockquote {
  background: none;
  color: #202833;
  border-left-color: var(--neon-green);
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #2563a5;
  font-size: 0.97rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  justify-content: flex-start;
}
.features-list > div {
  background: var(--card-bg-light);
  padding: 22px 24px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(244,211,94,0.07);
  min-width: 220px;
  flex: 1 1 210px;
  transition: box-shadow 0.2s;
}
.features-list > div:hover {
  box-shadow: 0 2px 24px var(--neon-blue);
}

/* ==== HEADER & NAV ==== */
header {
  background: var(--primary);
  position: sticky;
  top: 0; z-index: 40;
  width: 100%;
  box-shadow: 0 2px 12px 0 rgba(35, 58, 91, 0.13);
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 0;
}
header nav > a:first-child img {
  height: 38px; width: auto;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav ul li {
  margin-bottom: 0;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--accent);
  padding: 8px 9px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
header nav ul li a:hover,
header nav ul li a:focus {
  background: var(--neon-blue);
  color: #002347;
}
header .btn-primary {
  margin-left: 20px;
}

/* ==== BUTTONS ==== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--button-gradient);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 2px 12px 0 rgba(49, 183, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.23s, color 0.18s, transform 0.15s;
  outline: none;
  margin: 20px 0 0 0;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #FF4FD8 0%, #31B7FF 100%);
  color: var(--secondary);
  box-shadow: 0 2px 18px 0 var(--neon-pink);
  transform: translateY(-3px) scale(1.02);
}
.button, button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  outline: none;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, transform 0.1s;
}

/* ==== HERO SECTIONS & CTA ==== */
section:first-of-type, .section.hero {
  background: linear-gradient(112deg, #233A5B 60%, #212B3A 100%);
  box-shadow: 0 2px 20px rgba(49, 183, 255, 0.10);
  color: #fff;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  overflow: hidden;
}

/* ===== MAIN CONTENT / ABOUT / BLOG ===== */
.text-section {
  padding: 32px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section h2 {
  color: var(--neon-pink);
}
.map-embed {
  margin: 18px 0 10px 0;
  background: #0c1624;
  padding: 16px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 12px rgba(49, 183, 255, 0.09);
}

/* ==== FAQ ==== */
.content-wrapper ul li strong {
  display: block;
  color: var(--neon-green);
  margin-bottom: 3px;
}

/* ==== FOOTER ==== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 34px 0 20px 0;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}
footer nav a {
  color: #F4D35E;
  font-size: 0.98rem;
  transition: color 0.12s;
}
footer nav a:hover { color: var(--neon-pink); }
footer > .container > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
footer span {
  font-size: 1rem;
  color: var(--muted);
  margin-right: 16px;
}
footer ul {
  display: flex;
  gap: 14px;
  margin-left: 10px;
}
footer ul li img {
  width: 27px;
  height: 27px;
  filter: drop-shadow(0 2px 6px var(--neon-blue));
  transition: transform 0.18s;
}
footer ul li img:hover {
  transform: scale(1.12) rotate(-4deg);
}
footer .legal-info p {
  font-size: 0.94rem;
  color: #AAB1C4;
  margin-top: 8px;
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  background: var(--neon-blue);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  border: none;
  padding: 8px 15px;
  margin-left: auto;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.12s;
  z-index: 200;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--neon-pink);
  box-shadow: 0 2px 10px var(--neon-pink);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22, 26, 34, 0.98);
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.33s cubic-bezier(.63,.11,.5,1.05);
  transform: translateX(-100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--neon-pink);
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  margin: 20px 20px 20px auto;
  padding: 7px 14px;
  cursor: pointer;
  z-index: 999;
  display: block;
}
.mobile-menu-close:hover {
  background: var(--neon-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0 0 32px;
  width: 85vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  color: var(--neon-blue);
  padding: 12px 0;
  border-radius: 4px;
  width: 100%;
  transition: background 0.12s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--neon-pink);
  color: #fff;
}

/* Responsive HIDE/SHOW menu icon and nav */
@media (max-width: 1020px) {
  header nav ul,
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 1020px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==== CARDS, LISTS, FEATURES ===== */
.content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.content-wrapper ul li, .feature-list ul li {
  background: var(--card-bg-light);
  color: #e7edfa;
  border-radius: var(--border-radius);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 2px 12px rgba(49, 183, 255, 0.06);
  transition: box-shadow 0.19s;
}
.content-wrapper ul li:hover {
  box-shadow: 0 2px 22px var(--neon-blue);
}
.content-wrapper ul li img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}

/* ==== ACCORDION, FAQ ITEMS ==== */
/* For advanced accordion/future extension */
.faq-item {
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--bg-gradient-2);
  padding: 22px 24px;
}

/* ==== GALLERY HIGHLIGHTS ==== */
.gallery-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.gallery-list li {
  background: var(--card-bg-light);
  padding: 20px 18px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(35,58,91,0.08);
  margin-bottom: 20px;
}

/* ==== ANIMATION & EFFECTS ==== */
section, .card, .testimonial-card, .btn-primary, .mobile-menu, .mobile-menu-close, .mobile-menu-toggle {
  transition: box-shadow 0.18s, background 0.21s, color 0.18s, transform 0.18s;
}

/* ==== MISCELLANEOUS ==== */
::-webkit-scrollbar {
  width: 7px;
  background: #161a22;
}
::-webkit-scrollbar-thumb {
  background: var(--neon-blue);
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: linear-gradient(90deg, #212B3A 80%, #233A5B 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 20000;
  box-shadow: 0 -2px 16px var(--neon-blue);
  padding: 20px 16px 16px 16px;
  gap: 12px;
  font-size: 1rem;
  animation: slideUpCookie 0.9s cubic-bezier(.57,.11,.95,.97);
}
@keyframes slideUpCookie {
  0% { transform: translateY(110%); opacity: 0; }
  60% { transform: translateY(-12px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #F4D35E;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  width: 100%;
  justify-content: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 8px 20px;
  margin: 0;
  border-radius: 25px;
  border: none;
  box-shadow: 0 1px 8px 0 rgba(244, 211, 94, 0.08);
  cursor: pointer;
  transition: background 0.17s, color 0.13s;
}
.cookie-accept {
  background: var(--neon-green);
  color: #222b3a;
  font-weight: 700;
}
.cookie-accept:hover { background: var(--neon-blue); color: #fff; }
.cookie-reject {
  background: #353E56;
  color: #fff;
  border: 1.5px solid var(--muted);
}
.cookie-reject:hover { background: #212B3A; color: var(--secondary); }
.cookie-settings {
  background: var(--neon-pink);
  color: #fff;
}
.cookie-settings:hover { background: var(--secondary); color: #233A5B; }

/* Cookie modal */
.cookie-modal {
  position: fixed;
  z-index: 20100;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(34,60,90,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.33s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 48px 0 var(--neon-blue);
  padding: 38px 24px;
  color: #222b3a;
  max-width: 400px;
  width: 93vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInModal 0.5s cubic-bezier(.57,.11,.95,.97);
}
@keyframes fadeInModal {
  0% { transform: scale(0.93); opacity: 0; }
  90% { opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal .modal-content h2 {
  color: var(--neon-blue);
  margin-bottom: 12px;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .category label {
  font-size: 1.07rem;
}
.cookie-modal .category input[type="checkbox"] {
  accent-color: var(--neon-blue);
  width: 18px; height: 18px;
}
.cookie-modal .category input[disabled] {
  opacity: 0.6;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
.cookie-modal .modal-actions button {
  padding: 8px 22px;
  font-size: 1.06rem;
  border-radius: 999px;
}
.cookie-modal .modal-actions .cookie-accept {
  background: var(--neon-blue);
  color: #fff;
  font-weight: 700;
}
.cookie-modal .modal-actions .cookie-accept:hover {
  background: var(--neon-green);
  color: #1A273A;
}
.cookie-modal .modal-actions .cookie-reject {
  background: #222b3a;
  color: #fff;
  border: 1.5px solid #a7aeba;
}
.cookie-modal .modal-actions .cookie-reject:hover {
  background: var(--neon-pink);
  color: #fff;
}

/* ==== RESPONSIVE LAYOUTS ==== */
@media (max-width: 1020px) {
  .container { max-width: 98vw; padding: 0 12px; }
}
@media (max-width: 900px) {
  .content-wrapper, .features-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .features-list > div, .card {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 820px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.11rem; }
  .content-wrapper, .features-list, .card-container, .content-grid {
    gap: 16px;
  }
  .section {
    padding: 36px 8px;
    margin-bottom: 38px;
    border-radius: 11px;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 7px; }
  .section { padding: 28px 5px; }
  .testimonial-card {
    min-width: 0;
    max-width: 97vw;
    gap: 12px;
    padding: 15px 10px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .features-list {
    gap: 12px;
  }
  .mobile-menu .mobile-nav {
    margin-left: 8vw; width: 92vw;
  }
  header nav > a:first-child img {
    height: 32px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.08rem; }
  .testimonials, .features-list, .card-container {
    gap: 10px;
  }
  footer .container {
    gap: 9px;
  }
  .cookie-modal .modal-content { padding: 21px 5px; }
  .cookie-banner {
    padding: 12px 2px 7px 2px;
    font-size: 0.96rem;
  }
}
