/* ============================
   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 {
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #232d3e;
  color: #F4F7F3;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
input, button, textarea, select {
  font: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: #31ffe4;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D9B88A;
}
strong {
  font-weight: 700;
}
/* ============================
   FONT IMPORTS (Fallback)
============================ */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: local('Playfair Display'), local('PlayfairDisplay'),
       url('https://fonts.gstatic.com/s/playfairdisplay/v28/nuFvD-vYSZviVYUb_rj3ij__anPXDTcA.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'),
       url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2') format('woff2');
}
/* ============================
   COLOR VARIABLES
============================ */
:root {
  --primary: #232d3e;
  --secondary: #D9B88A;
  --accent: #F4F7F3;
  --neon: #31ffe4;
  --neon-pink: #E66DFF;
  --surface: #171C22;
  --card-bg: #273246;
  --shadow: rgba(49, 255, 228, 0.07);
}
/* ============================
   LAYOUT UTILITIES & CONTAINERS
============================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  color: var(--accent);
  border-radius: 18px;
  box-shadow: 0 4px 22px var(--shadow), 0 0 0 1.5px #31ffe4;
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  flex: 1 1 290px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px #31ffe448, 0 0 0 2.5px #E66DFF;
  transform: translateY(-3px) scale(1.025);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F4F7F3;
  color: #232d3e;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 2px 14px #232d3e11;
  border-left: 4px solid #31ffe4;
  transition: box-shadow 0.2s, border-color 0.2s;
  min-width: 0;
}
.content-wrapper img{
  width: 50px;
}
.testimonial-card * {
  color: #000;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 28px #31ffe412;
  border-left-color: #E66DFF;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Generic for spacing between cards/sections */
section + section {
  margin-top: 20px;
}
.card + .card, .testimonial-card + .testimonial-card {
  margin-top: 20px;
}
/* ============================
   TYPOGRAPHY
============================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--neon);
  margin-bottom: 10px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon);
  text-shadow: 0 0 5px #31ffe488, 0 2px 8px #171C22;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
h4 {
  font-size: 1.15rem;
  font-weight: 500;
}
p, li, address, span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.09rem;
  color: var(--accent);
  letter-spacing: 0.015em;
}
li {
  margin-bottom: 8px;
}
ul, ol {
  padding-left: 0;
  margin-left: 0;
}
.text-section ul {
  margin-top: 8px;
}
/* ============================
   BRAND CTAs & BUTTONS
============================ */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #31ffe4 60%, #E66DFF 110%);
  color: #232d3e;
  font-weight: 700;
  font-size: 1.14rem;
  border-radius: 40px;
  border: 0;
  box-shadow: 0 4px 18px #31ffe430;
  padding: 12px 34px;
  cursor: pointer;
  text-shadow: none;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  transition: background 0.17s, color 0.17s, box-shadow 0.22s, transform 0.17s;
  margin-top: 20px;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #E66DFF 40%, #31ffe4 130%);
  color: #232D3E;
  box-shadow: 0 8px 32px #E66DFF33;
  outline: none;
  transform: translateY(-2px) scale(1.035);
}
button, .button {
  font-family: inherit;
  font-size: 1rem;
  padding: 8px 22px;
  background: #232d3e;
  color: #F4F7F3;
  border: 1.5px solid #31ffe4;
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  margin-right: 8px;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #31ffe4;
  color: #232d3e;
  border: 1.5px solid #E66DFF;
  box-shadow: 0 4px 12px #E66DFF13;
  outline: none;
}
/* ============================
   HEADER & NAV
============================ */
header {
  width: 100%;
  background: var(--surface);
  position: relative;
  border-bottom: 2px solid #31ffe4;
  z-index: 40;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  padding: 14px 0;
}
header nav a {
  color: #F4F7F3;
  font-weight: 400;
  padding: 7px 16px;
  border-radius: 24px;
  transition: background 0.18s, color 0.18s, border 0.2s;
  font-size: 1.06rem;
  position: relative;
}
header nav a.cta-btn {
  margin-left: auto;
  background: linear-gradient(90deg, #31ffe4 40%, #E66DFF 120%);
  color: #232d3e;
  font-weight: 700;
  padding: 9px 26px;
  box-shadow: 0 2px 12px #31ffe420;
}
header nav a.cta-btn:hover {
  background: linear-gradient(90deg, #E66DFF 30%, #31ffe4 150%);
}
header nav a:not(.cta-btn):hover, header nav a:not(.cta-btn):focus {
  background: #232d3e;
  color: #31ffe4;
}
header nav img {
  height: 42px;
  margin-right: 10px;
}
/* ============================
   MOBILE NAVIGATION
============================ */
.mobile-menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  color: #31ffe4;
  font-size: 2.2rem;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 201;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #E66DFF;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: #232d3ee6;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #31ffe4;
  margin: 22px 30px 12px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E66DFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 0 30px;
  align-items: flex-start;
  margin-top: 22px;
}
.mobile-nav a {
  color: #F4F7F3;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 11px 13px;
  border-radius: 22px;
  transition: background 0.15s, color 0.15s;
  width: 100%;
  display: flex;
  align-items: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #31ffe4;
  color: #232d3e;
}
@media (max-width: 1080px) {
  .container {
    max-width: 940px;
    padding-left: 11px;
    padding-right: 11px;
  }
  .content-wrapper {
    gap: 21px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 8px;
  }
}
@media (max-width: 880px) {
  header nav {
    flex-wrap: wrap;
    gap: 6px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding-left: 7px;
    padding-right: 7px;
  }
  .section {
    padding: 24px 5px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 19px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* Ensure mobile menu covers entire view regardless of scroll */
@media (max-width: 789px) {
  .mobile-menu, .mobile-menu.open {
    height: 100vh;
    min-height: 100vh;
  }
  .mobile-menu-close {
    font-size: 2.1rem;
    margin: 10px 15px 0 0;
  }
}
/* ============================
   FOOTER
============================ */
footer {
  width: 100%;
  background: var(--surface);
  color: var(--accent);
  border-top: 2px solid #31ffe4;
  padding: 36px 0;
  margin-top: 40px;
}
footer .container {
  /* already set for container */
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
}
footer address {
  font-style: normal;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.45;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #31ffe4;
  font-size: 1rem;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #E66DFF;
}
.social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}
.social-links a:hover, .social-links a:focus {
  filter: drop-shadow(0 0 8px #31ffe477);
}
/* Responsive footer */
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  footer {
    padding: 21px 0;
  }
  .social-links {
    gap: 10px;
  }
}
/* ============================
   MAIN SECTIONS, LISTS
============================ */
main {
  background: var(--primary);
  min-height: 70vh;
}
section {
  width: 100%;
  background: none;
}
ul li img {
  margin-right: 14px;
  height: 28px;
  vertical-align: middle;
}
.content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.content-wrapper ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: #232D3E;
  color: #F4F7F3;
  border-radius: 10px;
  box-shadow: 0 1px 7px #232d3e18;
  padding: 12px 18px;
  font-size: 1.06rem;
  min-width: 210px;
  gap: 10px;
  margin-bottom: 0;
  border-left: 3px solid #31ffe4;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.content-wrapper ul li:hover, .content-wrapper ul li:focus {
  border-left: 3px solid #E66DFF;
  box-shadow: 0 5px 16px #31ffe41a;
}
/* List inside .text-section = vertical, not flex */
.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
/* ============================
   MISC COMPONENTS
============================ */
.map-embed {
  border-radius: 12px;
  background: #171C22;
  color: #31ffe4;
  padding: 18px;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 2px 10px #31ffe41a;
  margin-top: 12px;
}
.impact-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 1.09rem;
  color: #31ffe4;
  letter-spacing: 0.03em;
  margin-top: 10px;
}
.impact-metrics span {
  font-weight: 600;
}
/* ============================
   TEXT/IMAGE FLEX REFINEMENT
============================ */
@media (max-width: 780px) {
  .content-wrapper ul {
    flex-direction: column;
    gap: 13px;
  }
  .impact-metrics {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
}
/* ============================
   RESPONSIVE TYPOGRAPHY
============================ */
@media (max-width: 700px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.38rem;
    margin-bottom: 8px;
  }
  h2 {
    font-size: 1.13rem;
  }
  .cta-btn, button, .button {
    font-size: 0.95rem;
    padding: 8px 15px;
  }
}
/* ============================
   COOKIE CONSENT BANNER
============================ */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #232d3ede;
  color: #F4F7F3;
  box-shadow: 0 -4px 24px #E66DFF22;
  padding: 22px 14px 18px 14px;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 1rem;
  border-top: 2px solid #31ffe4;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.42s cubic-bezier(.55,.03,0,1), opacity 0.32s;
}
.cookie-consent-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  font-size: 1rem;
  font-weight: 600;
  border-radius: 32px;
  border: 1.5px solid #31ffe4;
  padding: 7px 23px;
  color: #232D3E;
  background: #31ffe4;
  transition: background 0.19s, border 0.17s, color 0.17s;
  margin-right: 0;
  box-shadow: 0 2px 12px #31ffe433;
  cursor: pointer;
}
.cookie-consent-banner button.cookie-settings {
  background: none;
  color: #31ffe4;
  border: 1.5px solid #31ffe4;
}
.cookie-consent-banner button.cookie-settings:hover, .cookie-consent-banner button.cookie-settings:focus {
  background: #232D3E;
  color: #E66DFF;
  border-color: #E66DFF;
}
.cookie-consent-banner button.accept {
  background: linear-gradient(90deg, #31ffe4 80%, #E66DFF 120%);
  color: #232D3E;
  border-color: #31ffe4;
}
.cookie-consent-banner button.accept:hover, .cookie-consent-banner button.accept:focus {
  background: #E66DFF;
  color: #232D3E;
  border-color: #E66DFF;
}
.cookie-consent-banner button.reject {
  background: #232d3e;
  color: #F4F7F3;
  border-color: #31ffe4;
}
.cookie-consent-banner button.reject:hover, .cookie-consent-banner button.reject:focus {
  background: #F4F7F3;
  color: #232D3E;
  border-color: #E66DFF;
}
/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(0.8);
  min-width: 330px;
  max-width: 97vw;
  background: #232d3ef8;
  color: #F4F7F3;
  border-radius: 21px;
  box-shadow: 0 7px 40px #E66DFF44;
  z-index: 2002;
  padding: 35px 24px 22px 24px;
  transition: opacity 0.27s, transform 0.43s cubic-bezier(.75,0,.18,1);
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  color: #31ffe4;
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 16px;
  margin-top: 17px;
}
.cookie-modal .cookie-category {
  background: #171C22;
  border-radius: 12px;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.06rem;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #31ffe4;
  width: 17px;
  height: 17px;
  margin-right: 8px;
}
.cookie-modal .cookie-category[disabled], .cookie-modal .cookie-category input[disabled] {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.cookie-modal .close-modal {
  background: none;
  color: #E66DFF;
  font-weight: 600;
  border: 1.5px solid #E66DFF;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #232D3E;
  color: #31ffe4;
  border-color: #31ffe4;
}
/* COOKIE MODAL BACKDROP */
.cookie-modal-backdrop {
  content: '';
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #232d3eb6;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.cookie-modal.open + .cookie-modal-backdrop {
  opacity: 1;
  pointer-events: all;
}
/* ============================
   NEON & FUTURISTIC EFFECTS
============================ */
.neon-text, .cta-btn, h1, h2, h3, h4 {
  text-shadow: 0 0 5px #31ffe4, 0 0 8px #E66DFF11;
}
.cta-btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  border-radius: 40px;
  box-shadow: 0 0 32px 8px #31ffe466, 0 0 28px 4px #E66DFF22;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 1;
}
.cta-btn:hover:after, .cta-btn:focus:after {
  opacity: 0.5;
}
hr {
  border: 0;
  border-top: 2px solid #31ffe422;
  margin: 32px 0;
}
/* ============================
   SCROLLBAR STYLING
============================ */
::-webkit-scrollbar {
  width: 8px;
  background: #171C22;
}
::-webkit-scrollbar-thumb {
  background: #31FFE4AA;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #E66DFFAA;
}
/* ============================
   ADDITIONAL TWEAKS / ACCESSIBILITY
============================ */
*:focus {
  outline: 2px solid #31ffe4;
  outline-offset: 2px;
}
[tabindex="0"]:focus {
  outline: 2px solid #E66DFF;
}

/* ============================
   DEMO/PLACEHOLDER CLASSES
============================ */
.map-embed span {
  color: #31ffe4;
  font-size: 1.03em;
}

/* ============================
   MEDIA QUERIES FOR BREATHABILITY
============================ */
@media (max-width: 680px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .content-wrapper, .footer .content-wrapper {
    gap: 13px;
  }
  .card {
    padding: 18px 11px;
  }
  .testimonial-card {
    padding: 12px 10px;
  }
  .cookie-modal {
    padding: 25px 8px 14px 8px;
    min-width: 0;
    max-width: 99vw;
  }
}
/* ============================
   PRINT STYLES
============================ */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  body, main, section, .container { background: #fff !important; color: #000 !important; }
}
