/* ===================================================================
   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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  background: #161B27;
  color: #F5F6F9;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
article, aside, footer, header, nav, section, main {
  display: block;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
ul, ol {
  padding-left: 1.1em;
  margin-bottom: 12px;
}
ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0;
}
li { margin-bottom: 8px; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }
h1, h2, h3, h4, h5, h6 { color: #fff; }

/* ===================================================================
   VARIABLES (with fallbacks for broad support)
   =================================================================== */
:root {
  --color-primary: #184066;
  --color-primary-dark: #122c49;
  --color-secondary: #32A360;
  --color-secondary-dark: #21874d;
  --color-accent: #FFE285;
  --color-accent-dark: #e6cc73;
  --color-bg: #161B27;
  --color-bg-alt: #1F2533;
  --color-surface: #232C41;
  --color-surface-light: #293251;
  --color-border: #2c3e5a;
  --color-card: #232C41;
  --color-card-hover: #273554;
  --color-focus: #32A360;
  --color-body-text: #f5f6f9;
  --color-heading: #fff;
  --color-warning: #FFD966;
  --shadow-card: 0 4px 24px 0 rgba(24,64,102,0.14), 0 1.5px 4px 0 rgba(50,163,96,0.06);
  --shadow-header: 0 1px 16px 0 rgba(24,64,102,0.12);
  --radius-s: 7px;
  --radius-m: 14px;
  --font-display: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ===================================================================
   TYPOGRAPHY
   =================================================================== */
h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: var(--color-accent);
  text-shadow: 0 2px 8px rgba(255,226,133,0.08);
}
@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
}
h2 {
  font-family: var(--font-display);
  font-size: 2.05rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 1px;
  color: var(--color-secondary);
}
h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 11px;
  color: var(--color-primary);
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-secondary-dark);
  margin-bottom: 9px;
}
p, li {
  font-family: var(--font-body);
  line-height: 1.62;
  color: var(--color-body-text);
  font-size: 1rem;
}
.subtitle {
  color: var(--color-accent);
  font-size: 1.18rem;
  margin-bottom: 24px;
  font-weight: 400;
}

/* ===================================================================
   CONTAINER & MAIN LAYOUT
   =================================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.text-section {
  max-width: 800px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

@media (max-width: 768px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .section { padding: 28px 6px; }
}

/* ===================================================================
   HEADER & NAVIGATION
   =================================================================== */
header {
  width: 100%;
  background: var(--color-primary);
  box-shadow: var(--shadow-header);
  position: sticky;
  z-index: 10;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  gap: 18px;
}
header img {
  height: 38px;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.93;
  transition: color 0.18s cubic-bezier(.4,0,.2,1), opacity 0.16s cubic-bezier(.4,0,.2,1);
  padding: 7px 6px;
  border-radius: var(--radius-s);
  position: relative;
}
nav a:hover, nav a:focus {
  color: var(--color-accent);
  opacity: 1;
  background: rgba(50,163,96,0.07);
  outline: none;
}
.cta-btn {
  margin-left: 12px;
  background: var(--color-secondary);
  color: #1a2d45;
  border: none;
  border-radius: var(--radius-m);
  font-family: var(--font-display);
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 32px;
  box-shadow: 0 2px 13px 0 rgba(50,163,96,0.18);
  cursor: pointer;
  transition: background 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.24s cubic-bezier(.4,0,.2,1), color 0.18s;
  position: relative;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent);
  color: #184066;
  box-shadow: 0 4px 20px 0 rgba(255,226,133,0.11), 0 2px 10px 0 rgba(50,163,96,0.13);
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu-toggle {
  background: transparent;
  border: none;
  color: var(--color-accent);
  font-size: 2rem;
  margin-left: 14px;
  display: none;
  z-index: 22;
  transition: color .15s;
}
.mobile-menu-toggle:focus {
  color: var(--color-secondary);
  outline: none;
}
@media (max-width: 992px) {
  nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===================================================================
   MOBILE MENU
   =================================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22,27,39,0.98);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 24px 24px 24px;
  transform: translateX(-105%);
  transition: transform 0.42s cubic-bezier(.77,0,.18,1);
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: var(--color-accent);
  margin-bottom: 18px;
  margin-right: 6px;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-secondary);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.17rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 0 8px 0;
  border-bottom: 1px solid #233251;
  border-radius: 0;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:active, .mobile-nav a:hover {
  color: var(--color-accent);
}
@media (max-width: 992px) {
  .mobile-menu { display: flex; }
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-close, .mobile-menu-toggle { display: none !important; }
}

/* ===================================================================
   HERO & SECTION LAYOUT
   =================================================================== */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(90deg,var(--color-bg) 85%,rgba(24,64,102,0.25) 100%);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
}
section:nth-of-type(2n) { background: var(--color-surface-light); }
.section {
  background: inherit;
}
@media (max-width: 768px) {
  section {
    padding: 24px 8px;
    margin-bottom: 38px;
    border-radius: var(--radius-s);
  }
}

/* Flex containers and spacing patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--color-card);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: background 0.19s, box-shadow 0.23s;
}
.card:hover {
  background: var(--color-card-hover);
  box-shadow: 0 6px 26px 0 rgba(50,163,96,0.16);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

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

/* ===================================================================
   SERVICE CARDS & LISTS
   =================================================================== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  margin-bottom: 22px;
  justify-content: flex-start;
}
.service-cards > div {
  background: var(--color-card);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  flex: 1 1 300px;
  min-width: 230px;
  max-width: 340px;
  margin-bottom: 20px;
  padding: 20px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.23s;
  position: relative;
}
.service-cards > div:hover {
  box-shadow: 0 7px 32px 0 rgba(50,163,96,0.20), 0 3px 9px 0 rgba(255,226,133,0.08);
}
.service-price {
  display: inline-block;
  background: var(--color-secondary);
  color: #0e1a2b;
  border-radius: var(--radius-s);
  padding: 7px 16px;
  font-size: 1.06rem;
  margin-top: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px 0 rgba(50,163,96,0.13);
}
/* General UL and OL styling for feature lists */
ul, ol {
  margin-bottom: 15px;
  margin-top: 3px;
  color: var(--color-body-text);
  font-size: 1.06rem;
  line-height: 1.68;
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
  color: #213454;
  border-radius: var(--radius-m);
  box-shadow: 0 2px 16px 0 rgba(24,64,102,0.06), 0 2.5px 13px 0 rgba(50,163,96,0.04);
  font-size: 1.09rem;
  flex-wrap: wrap;
  border: 1.5px solid var(--color-accent-dark);
}
.testimonial-card p {
  color: #312c00;
  margin-bottom: 0;
  font-size: 1.05rem;
  flex: 2;
}
.testimonial-card span {
  color: #184066;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  flex: 1 0 160px;
  text-align: right;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    font-size: 1rem;
    padding: 14px 10px 16px 16px;
  }
  .testimonial-card span {
    text-align: left;
    font-size: 0.99rem;
    flex: none;
  }
}

/* ===================================================================
   ACCORDION / FAQ
   =================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion h2 {
  color: var(--color-secondary);
  font-size: 1.41rem;
  margin-top: 10px;
  margin-bottom: 7px;
}
.faq-accordion h3 {
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 3px;
  margin-top: 9px;
  font-size: 1.08rem;
  cursor: pointer;
}
.faq-accordion p {
  color: var(--color-body-text);
  background: rgba(255,226,133,0.03);
  border-radius: var(--radius-s);
  padding: 6px 0 9px 10px;
  margin-bottom: 0;
}

/* ===================================================================
   FOOTER
   =================================================================== */
footer {
  background: var(--color-primary-dark);
  color: #f6f8fa;
  padding: 48px 0 24px 0;
  box-shadow: 0 -4px 24px 0 rgba(24,64,102,0.08);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-branding {
  display: flex; align-items: center;
  gap: 8px;
  font-size: 1.04rem;
  font-family: var(--font-display);
  color: var(--color-accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.99rem;
  color: #e2e6f1;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.99rem;
}
footer nav a {
  color: #ffe285;
  font-family: var(--font-body);
  font-size: 0.99rem;
  letter-spacing: 0.2px;
  opacity: 0.93;
  border-radius: var(--radius-s);
  transition: color 0.17s;
}
footer nav a:hover {
  color: #fff;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    padding: 0 8px;
  }
  footer {
    padding: 34px 0 18px 0;
  }
}

/* ===================================================================
   BUTTONS & LINKS UNIVERSAL
   =================================================================== */
.button, .cta-btn, .cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  border-radius: var(--radius-m);
  transition: background 0.16s, color 0.18s, box-shadow 0.23s, transform .16s;
}
.button:active, .cta-btn:active, .cookie-btn:active {
  transform: scale(.96);
}
.button:not([disabled]):active, .cta-btn:not([disabled]):active {
  filter: brightness(.98);
}
button:focus-visible { box-shadow: 0 0 0 2px var(--color-focus); }

a, button { outline-offset: 2px; }

/* ===================================================================
   RESPONSIVE: MOBILE BREAKPOINTS
   =================================================================== */
@media (max-width: 768px) {
  h1{ font-size: 2rem; }
  h2{ font-size: 1.37rem; }
  .container { max-width: 100vw; }
  section { margin-bottom: 34px; }
  .service-cards { gap: 14px; }
  .content-wrapper { gap: 14px; }
}

/* ===================================================================
   ANIMATIONS + MICRO-INTERACTIONS
   =================================================================== */
.card,
.service-cards > div {
  transition: box-shadow 0.23s, background 0.20s, transform 0.16s;
}
.card:hover, .service-cards > div:hover {
  transform: translateY(-2.5px) scale(1.025);
}
.cta-btn:hover, .cta-btn:focus {
  box-shadow: 0 0 0 2px var(--color-accent), 0 2px 14px rgba(50,163,96,0.18);
}
.mobile-menu,
.cookie-modal {
  transition: transform 0.42s cubic-bezier(.77,0,.18,1), opacity 0.25s;
}

/* ===================================================================
   COOKIE CONSENT BANNER & MODAL
   =================================================================== */
.cookie-banner {
  position: fixed;
  z-index: 200;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-surface);
  color: #fff;
  box-shadow: 0 0 24px 8px rgba(24,64,102,0.13);
  padding: 22px 24px 18px 24px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  font-size: 1.04rem;
  animation: popBottom 0.65s cubic-bezier(.46,.03,.52,.96);
}
@keyframes popBottom {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner strong { color: var(--color-accent); }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: var(--radius-s);
  padding: 10px 23px;
  background: var(--color-secondary);
  color: #212e38;
  font-weight: 700;
  box-shadow: 0 2px 9px 0 rgba(50,163,96,0.10);
  border: none;
  letter-spacing: 0.9px;
}
.cookie-btn:active { background: var(--color-secondary-dark); }
.cookie-btn.reject {
  background: #232c41;
  color: #FFE285;
  border: 1.5px solid var(--color-accent-dark);
}
.cookie-btn.settings {
  background: none;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent-dark);
  padding: 10px 20px;
}
.cookie-btn:focus-visible { outline: 2px solid var(--color-secondary); }

@media (max-width: 600px) {
  .cookie-banner {
    padding: 13px 6px 16px 9px;
    font-size:0.98rem;
    border-radius: 8px 8px 0 0;
  }
}

/* Cookie Modal - for cookie settings */
.cookie-modal-overlay {
  position: fixed;
  z-index: 250;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(16,19,30, 0.74);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .35s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: var(--color-surface-light);
  border-radius: var(--radius-m);
  padding: 32px 26px 26px 26px;
  box-shadow: 0 6px 34px 0 rgba(24,64,102,0.18);
  color: #fff;
  min-width: 320px;
  max-width: 92vw;
  max-height: 86vh;
  overflow-y: auto;
  transform: translateY(35px) scale(0.98);
  opacity: 0;
  transition: transform 0.27s, opacity 0.27s;
}
.cookie-modal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cookie-modal h2 {
  color: var(--color-secondary);
  font-size: 1.15rem;
  margin-bottom: 11px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 12px 0 0 0;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffe285;
  font-size: 1.02rem;
}
.cookie-modal-category.essential {
  color: #9bf392;
  font-weight: bold;
}
.cookie-modal-toggle {
  appearance: none;
  width: 32px; height: 18px;
  background: var(--color-border);
  border-radius: 11px;
  position: relative;
  transition: background 0.14s;
}
.cookie-modal-toggle:checked {
  background: var(--color-secondary);
}
.cookie-modal-toggle:before {
  content: '';
  display: block;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #f7f8fc;
  position: absolute;
  left: 2px; top: 1.5px;
  transition: left 0.14s;
}
.cookie-modal-toggle:checked:before {
  left: 15px;
  background: #32A360;
}
.cookie-modal .cookie-actions {
  margin-top: 24px;
  margin-bottom: 0;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 15px;
  background: none;
  border: none;
  color: #ffe285;
  font-size: 1.3rem;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: #32A360;
}

/* ===================================================================
   CUSTOM SCROLLBAR FOR TECH/NEON LOOK
   =================================================================== */
::-webkit-scrollbar {
  width: 10px;
  background: #1f2533;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, #32A360 0%, #efe693 100%);
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 rgba(24,64,102,0.17);
}
::-webkit-scrollbar-thumb:hover {
  background: #184066;
}

/* ===================================================================
   NEON/TECH BORDER & ACCENT LINES
   =================================================================== */
hr, .accent-line {
  border: none;
  border-top: 2px solid var(--color-accent);
  background: none;
  height: 0px;
  margin: 32px 0 16px 0;
  width: 60px;
  border-radius: 4px;
  box-shadow: 0 2px 14px 0 rgba(255,226,133,0.14);
}

/* ===================================================================
   NEON EFFECTS FOR FUTURISTIC HIGHLIGHTS
   =================================================================== */
.neon-text {
  color: var(--color-accent);
  text-shadow: 0 0 7px #ffe285, 0 0 14px #ffe285b7;
}

/* ===================================================================
   MISC. - FORMATTING OF MAPS, CONTACTS, ADDRESS
   =================================================================== */
.contact-info, .address-map {
  margin-bottom: 16px;
  background: rgba(50,163,96,0.11);
  border-radius: var(--radius-s);
  padding: 13px 17px;
  font-size: 1.02rem;
  color: #e2fbe0;
}
.contact-info strong { color: var(--color-accent); }

/* ===================================================================
   ACCESSIBILITY
   =================================================================== */
:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
@media (max-width: 480px) {
  .content-wrapper, .content-grid { gap: 9px; }
  .card-container { gap: 13px; }
}
