/* -------------------------------------------------
   CSS RESET & NORMALIZE (based on Eric Meyer's Reset)
---------------------------------------------------*/
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 {
  height: 100%;
}
body {
  height: 100%;
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background-color: #161B1E;
  color: #F2F2EE;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 8px;
  text-align: left;
}

/* ------------------------------
   BRAND COLORS & TYPOGRAPHY
-------------------------------*/
:root {
  --color-primary: #1A2327;
  --color-secondary: #A67144;
  --color-accent: #F2F2EE;
  --color-dark: #161B1E;
  --color-neon: #25fefd;
  --color-neon-pink: #e436ff;
  --btn-radius: 28px;
  --btn-radius-s: 20px;
  --shadow-1: 0 2px 7px 0 rgba(38,40,46,0.08);
  --shadow-deep: 0 6px 40px -4px rgba(35,252,253,0.1), 0 2px 16px -1px rgba(166,113,68,0.09);
}

@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(37,254,253,0.08); /* neon glow subtle */
}
h1 {font-size: 2.5rem; margin-bottom: 0.7em;}
h2 {font-size: 2rem; margin-bottom: 0.5em;}
h3 {font-size: 1.35rem; margin-bottom: 0.3em;}
h4, h5, h6 {font-size: 1.15rem; margin-bottom: 0.2em;}

p, li, address, table, th, td {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-accent);
  font-size: 1rem;
  line-height: 1.6;
}
strong {
  color: var(--color-neon);
  font-weight: 700;
}

/*--------------------
   GENERIC LAYOUTS
--------------------*/
.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: rgba(26,35,39,0.9);
  border-radius: 24px;
  box-shadow: var(--shadow-1);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.text-section {
  max-width: 800px;
}

.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card {
  background: #171D21;
  border: 1.5px solid var(--color-secondary);
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-1);
  transition: transform 0.2s cubic-bezier(.51,.29,.58,.69), box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 26px -4px var(--color-neon);
}
.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 28px;
  margin-bottom: 22px;
  max-width: 580px;
  background: #fff;
  color: #10191F;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(38,40,46,0.09);
  border: 1.5px solid var(--color-secondary);
  font-size: 1rem;
  position: relative;
}
.testimonial-card p {
  color: #161B1E;
  font-size: 1.08em;
  font-weight: 500;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: var(--color-secondary);
  font-size: 0.95em;
  font-weight: 600;
  letter-spacing: 0.03em;
}

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

/*--------------------
 NAVIGATION HEADER
---------------------*/
header {
  background: var(--color-dark);
  box-shadow: 0 2px 16px 0 rgba(26,35,39,0.14), 0 1.5px 8px -2px var(--color-neon-pink);
  position: sticky;
  top: 0;
  z-index: 101;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-left: 16px;
}
header nav a {
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: var(--color-accent);
  font-size: 1rem;
  padding: 6px 16px;
  border-radius: 20px;
  transition: color 0.16s, background 0.16s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: var(--color-neon);
  background: rgba(37,254,253,0.05);
  box-shadow: 0 4px 10px -6px var(--color-neon);
}
header a img {
  height: 52px;
  display: block;
}
.button.button-primary {
  font-family: 'Oswald', Arial, sans-serif;
  background: linear-gradient(90deg, #25fefd 0%, #e436ff 100%);
  color: #1A2327;
  border: none;
  border-radius: var(--btn-radius);
  padding: 12px 34px;
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px 0 rgba(37,254,253,0.12);
  cursor: pointer;
  margin-left: 14px;
  outline: none;
  position: relative;
  z-index: 2;
  transition: background 0.18s, box-shadow 0.2s, color 0.18s;
}
.button.button-primary:hover, .button.button-primary:focus {
  background: linear-gradient(90deg, #e436ff 0%, #25fefd 100%);
  color: #fff;
  box-shadow: 0 6px 16px 0 var(--color-neon-pink), 0 2px 10px 0 var(--color-neon);
}
.button.button-secondary {
  background: #161B1E;
  color: var(--color-neon);
  border: 1.5px solid var(--color-secondary);
  border-radius: var(--btn-radius-s);
  padding: 10px 26px;
  font-size: 1.05rem;
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 500;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  box-shadow: 0 3px 10px -4px rgba(230,54,255, 0.12);
  margin-top: 12px;
}
.button.button-secondary:hover, .button.button-secondary:focus {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 6px 18px -4px var(--color-neon-pink);
}
.button-large {
  font-size: 1.2rem;
  padding: 15px 48px;
}

/*---------------
   MOBILE NAV
----------------*/
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: #fff;
  background: transparent;
  border: none;
  margin-left: 12px;
  z-index: 111;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-neon);
  outline-offset: 2px;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(22,27,30, 0.984);
  z-index: 1900;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,.2,.6,1);
  box-shadow: 0 8px 52px 0 rgba(37,254,253,0.14);
  padding-top: 16px;
  padding-bottom: 32px;
  min-width: 90vw;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.32s cubic-bezier(.18,1.1,.41,1.03);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.4rem;
  color: var(--color-neon);
  align-self: flex-end;
  margin: 12px 26px 2px 0;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--color-neon);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 38px;
  margin-top: 26px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--color-accent);
  padding: 11px 6px 11px 17px;
  border-radius: 20px 0 0 20px;
  background: transparent;
  transition: background 0.14s, color 0.14s;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: linear-gradient(90deg, rgba(37,254,253,0.07) 0%, rgba(228,54,255,0.04) 100%);
  color: var(--color-neon);
}

/* Hide desktop nav on mobile and vice versa */
@media (max-width: 1024px) {
  header .container nav, header .button.button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --------------------------
   PAGE SECTION FLEX PATTERNS
---------------------------*/
section {
  margin-bottom: 60px;
  padding: 40px 0 60px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
section:last-child {
  margin-bottom: 0;
}
.content-wrapper > ul,
.content-wrapper > div.service-list,
.content-wrapper > div.card-container,
.content-wrapper > div.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 4px;
  margin-bottom: 10px;
}
.content-wrapper ul {
  flex-direction: column;
  gap: 12px;
}
.content-wrapper ul li {
  padding-left: 2em;
  position: relative;
  font-size: 1.07em;
  margin-bottom: 4px;
  color: var(--color-accent);
}
.content-wrapper ul li:before {
  content: '';
  position: absolute;
  left: 0.2em;
  top: 0.9em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 12px 2px var(--color-neon-pink);
}

/* For icon-list (with img) */
.content-wrapper ul li img {
  width: 28px;
  vertical-align: middle;
  margin-right: 14px;
  margin-left: -14px;
  display: inline-block;
  filter: drop-shadow(0 0 4px var(--color-neon));
}

/* Service list and items */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.service-item {
  flex: 1 1 288px;
  background: #161b1e;
  border: 1.1px solid var(--color-secondary);
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  transition: transform 0.16s, box-shadow 0.16s;
  min-width: 260px;
  max-width: 420px;
}
.service-item h2 {
  font-size: 1.25rem;
  color: var(--color-neon-pink);
  margin-bottom: 10px;
}
.service-item p {
  color: var(--color-accent);
}
.service-item:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 4px 20px -6px var(--color-neon), 0 3px 14px -2px var(--color-neon-pink);
}

/* Map placeholder styling */
.map-placeholder {
  display: flex;
  align-items: center;
  background: #22272b;
  padding: 22px 24px;
  border-radius: 14px;
  color: var(--color-accent);
  box-shadow: 0 1.5px 12px -3px var(--color-neon);
  gap: 18px;
}
.map-placeholder img { width: 40px; margin-right: 10px; filter: none; }

/*--------------------
   TABLES
--------------------*/
table {
  margin-top: 12px;
  margin-bottom: 32px;
  font-size: 1rem;
  border-radius: 8px;
  overflow: hidden;
}
thead {
  background: #181F22;
}
th {
  color: var(--color-neon);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08em;
  font-weight: 600;
  background: #181F22;
}
tbody tr {
  background: #21272b;
}
tbody tr:nth-child(even) {
  background: #202426;
}
td {
  border: 1px solid #A6714424;
  color: var(--color-accent);
}

/*-------------------
   FOOTER
-------------------*/
footer {
  background: #181F22;
  padding: 44px 0 12px 0;
  box-shadow: 0 -2px 16px 0 rgba(26,35,39,0.11);
}
footer .container {
  display: flex;
  justify-content: center;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
footer img {
  height: 48px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}
footer nav a {
  color: var(--color-neon);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 14px;
  transition: background 0.1s, color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  background: rgba(37,254,253,0.10);
  color: var(--color-secondary);
}
footer address, footer p {
  color: var(--color-accent);
  font-size: 0.95rem;
}

/*---------------------
   COOKIE CONSENT BANNER
---------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2200;
  width: 100vw;
  background: #1A2327;
  color: var(--color-accent);
  padding: 24px 16px 20px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -6px 36px 0 rgba(37,254,253,0.13);
  border-top: 3px solid var(--color-neon);
  animation: cookiefadein 0.5s cubic-bezier(.44,0,.56,1);
}
@keyframes cookiefadein {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: none; }
}
.cookie-banner p {
  max-width: 500px;
  font-size: 1rem;
  margin-right: 16px;
  color: var(--color-accent);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-banner button {
  padding: 10px 26px;
  border-radius: 18px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  outline: none;
  border: none;
  margin-bottom: 0;
  cursor: pointer;
  background: var(--color-neon);
  color: #21272b;
  box-shadow: 0 4px 20px 0 var(--color-neon-pink);
  transition: background 0.16s, color 0.16s, box-shadow 0.17s;
}
.cookie-banner button:hover {
  background: var(--color-neon-pink);
  color: #fff;
  box-shadow: 0 6px 24px -4px var(--color-neon);
}
.cookie-banner .button-secondary {
  background: transparent;
  color: var(--color-neon-pink);
  border: 1.5px solid var(--color-neon-pink);
  box-shadow: none;
  margin-top: 2px;
}
.cookie-banner .button-secondary:hover {
  background: var(--color-neon-pink);
  color: #fff;
}

.cookie-modal-overlay {
  display: none; /* toggled by .open */
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  z-index: 3100;
  background: rgba(19,19,23, 0.92);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #161B1E;
  border-radius: 22px;
  box-shadow: 0 8px 60px 0 var(--color-neon-pink), 0 4px 28px 0 var(--color-neon);
  color: var(--color-accent);
  padding: 38px 32px 20px 32px;
  max-width: 460px;
  width: 92vw;
  animation: modalpop 0.44s cubic-bezier(.61,.29,.43,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@keyframes modalpop {
  from { opacity: 0; transform: scale(0.91) translateY(32px); }
  to { opacity: 1; transform: scale(1.0) translateY(0); }
}
.cookie-modal h2 {
  color: var(--color-neon-pink);
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-pref-category {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
}
.cookie-toggle {
  width: 36px;
  height: 22px;
  background: #2a2c31;
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle[data-on="true"] {
  background: var(--color-neon);
}
.cookie-toggle .cookie-knob {
  position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.19s cubic-bezier(.4,.4,.2,1), background 0.15s;
  box-shadow: 0 2px 8px rgba(38,40,46,0.16);
}
.cookie-toggle[data-on="true"] .cookie-knob {
  left: 16px;
  background: var(--color-neon-pink);
}
.cookie-modal .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.cookie-pref-desc {
  font-size: 0.97em;
  color: #cfd4d4;
}

/* ------------------
   FORM ELEMENTS
-------------------*/
input, textarea, select {
  font-family: inherit;
  font-size: 1.03rem;
  padding: 10px 14px;
  border: 1px solid #A671449c;
  border-radius: 14px;
  background: #21272b;
  color: var(--color-accent);
  outline: none;
  margin-bottom: 14px;
  transition: border 0.18s, box-shadow 0.16s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-neon-pink);
  box-shadow: 0 1px 10px -2px var(--color-neon-pink);
}

label {
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--color-neon);
  font-size: 1.04rem;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

/* --------------
   MISC - HR, etc.
---------------*/
hr {
  border: none;
  border-top: 1.5px solid var(--color-secondary);
  margin: 32px 0 28px 0;
  width: 100%;
}

/*------------------------
   SCROLLBAR STYLING
-------------------------*/
::-webkit-scrollbar {
  width: 9px;
  background: #171D21;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(105deg, var(--color-neon), var(--color-neon-pink) 80%);
  border-radius: 9px;
}

/*-----------------------
   RESPONSIVE BREAKPOINTS
------------------------*/
@media (max-width: 1160px) {
  .container { max-width: 1002px; }
  .section, section { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 900px) {
  .container { max-width: 92vw; }
  .section { padding: 24px 2px; }
  .service-item { max-width: calc(48vw - 22px); }
}
@media (max-width: 768px) {
  .container { padding: 0 6vw; }
  .section { margin-bottom: 36px; padding: 28px 0; }
  .card, .service-item { max-width: 100%; min-width: 0; }
  .content-wrapper { gap: 14px; }
  .content-grid, .card-container, .service-list { gap: 12px; }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 540px) {
  .container { padding: 0 2vw; }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  h3, h4, h5, h6 { font-size: 1.01rem; }
  .card, .service-item, .testimonial-card, .map-placeholder {
    padding: 14px 8px;
  }
  .testimonial-card { font-size: 0.97em; }
  .cookie-modal { padding: 14vw 3vw 5vw 3vw; }
  .cookie-banner { flex-direction: column; text-align: left; align-items: stretch; }
  .footer { padding: 18px 0 8px 0; }
}

/* --------------
   FOCUS STATES
----------------*/
a:focus, button:focus, input:focus, textarea:focus, .button:focus {
  outline: 2px solid var(--color-neon);
  outline-offset: 2px;
}

/* -------------
   MICRO-ANIMATIONS
---------------*/
.button, .button-primary, .button-secondary {
  transition: background 0.15s, color 0.14s, box-shadow 0.14s, border 0.13s;
}
.card, .service-item {
  transition: transform 0.16s cubic-bezier(.42,.62,.58,.79), box-shadow 0.17s;
}

/* -------------
   UTILITY CLASSES
----------------*/
.hide-on-mobile {@media (max-width: 900px) {display: none !important;}}
.hide-on-desktop {@media (min-width: 901px) {display: none !important;}}
.mt-1 { margin-top: 7px; } .mt-2 { margin-top: 17px; }
.mb-1 { margin-bottom: 7px; } .mb-2 { margin-bottom: 17px; }
.text-center { text-align: center; }

/* END */
