/* RESET AND BASES */
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, menu, 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,
main, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #191C22;
  color: #E9ECEF;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
:focus {
  outline: 2px solid #F9C846;
  outline-offset: 2px;
}
strong {
  font-weight: 700;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
::selection {
  background: #F9C846;
  color: #203368;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@700&family=Nunito:wght@400;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', 'Nunito', Arial, sans-serif;
  color: #F9C846;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #F9C846;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #F9C846;
}
p, li, blockquote {
  line-height: 1.6;
  font-size: 1rem;
}

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

/* SECTIONS SPACING */
section {
  width: 100%;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card, .service-cards > div {
  flex: 1 1 280px;
  background: #23252B;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(20,28,44,0.25);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #2A2E37;
}
.card:hover, .service-cards > div:hover {
  box-shadow: 0 4px 20px rgba(249,200,70,0.10), 0 1.5px 4px rgba(80,80,80,0.16);
  transform: translateY(-4px) scale(1.015);
}

.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: 24px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #23252B;
  border-radius: 14px;
  margin-bottom: 24px;
  border: 1.5px solid #F9C846;
  box-shadow: 0 3px 16px rgba(249,200,70,0.05);
  flex-direction: column;
  min-width: 0;
  max-width: 680px;
  transition: box-shadow 0.2s;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #203368;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-weight: 700;
  color: #666;
  font-size: 0.96rem;
}

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

.badge {
  display: inline-block;
  background: #F9C846;
  color: #203368;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  border-radius: 8px;
  padding: 2px 10px;
  margin-left: 10px;
  letter-spacing: 0.2px;
}

/* BUTTONS */
.btn-primary, a.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F9C846;
  color: #203368;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  border: none;
  border-radius: 14px;
  padding: 10px 32px;
  cursor: pointer;
  transition: background 0.23s, color 0.23s, box-shadow 0.23s, transform 0.2s;
  box-shadow: 0 1px 6px rgba(255,205,0,0.10);
  text-shadow: none;
  margin: 10px 0;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #203368;
  color: #F9C846;
  box-shadow: 0 4px 20px rgba(249,200,70,0.15);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary, a.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #203368;
  color: #F9C846;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.05rem;
  border: none;
  border-radius: 10px;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.18s;
  margin: 10px 0;
  box-shadow: 0 1.5px 8px rgba(32,51,104,0.15);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #364F88;
  color: #fff;
  transform: translateY(-1.5px) scale(1.02);
}

/* HEADER & NAVIGATION */
header {
  background: #191C22;
  border-bottom: 2px solid #203368;
  min-height: 70px;
  width: 100%;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 20px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 18px;
}
nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
nav a {
  color: #F9C846;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.4px;
  padding: 6px 2px 6px 2px;
  border-radius: 6px;
  transition: color 0.13s, background 0.14s;
}
nav a:hover, nav a:focus {
  color: #fff;
  background: #203368;
}
.navbar-actions {
  display: flex;
  gap: 10px;
}
header .btn-primary {
  margin-left: 14px;
}

@media (max-width: 990px) {
  nav {
    gap: 14px;
  }
  header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 103;
  background: #2B2D32;
  color: #F9C846;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 6px 16px;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.16s, color 0.15s, box-shadow 0.15s;
}
.mobile-menu-toggle:hover {
  background: #F9C846;
  color: #23252B;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #1A1C21ee;
  box-shadow: 0 6px 60px rgba(32,51,104,0.36);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(.77,0,.18,1), opacity 0.22s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu .mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #F9C846;
  font-size: 2.6rem;
  border: none;
  margin: 14px 24px 8px 0;
  cursor: pointer;
  z-index: 210;
  transition: color 0.12s;
}
.mobile-menu .mobile-menu-close:hover {
  color: #FFFFFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  padding: 18px 24px 24px 32px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Baloo 2', 'Nunito', Arial, sans-serif;
  font-size: 1.35rem;
  color: #F9C846;
  font-weight: 700;
  background: none;
  padding: 9px 0;
  width: 100%;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #203368;
  color: #fff;
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .btn-primary {
    margin-right: 12px;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN & FLEX SPACING  */
main {
  min-height: 60vh;
  margin-bottom: 30px;
  width: 100%;
}

section ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-left: 0;
}
section ul li {
  background: none;
  color: #e5e7ef;
  padding-left: 0;
  margin-bottom: 6px;
  font-size: 1.02rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
section ul li img {
  width: 22px;
  margin-right: 4px;
}


/* FOOTER */
footer {
  background: #18191D;
  border-top: 2px solid #203368;
  color: #e0e1e6;
  font-size: 1rem;
  padding: 40px 0 18px 0;
  margin-top: 24px;
  width: 100%;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
footer img {
  height: 46px;
  margin-bottom: 7px;
}
footer nav {
  margin-bottom: 8px;
  flex-direction: row;
  gap: 0;
  color: #F9C846;
  font-size: 0.98rem;
}
footer nav a {
  color: #F9C846;
  font-weight: 600;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  font-size: 0.97rem;
}
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #a0a0a4;
}
.copyrigh,t .copyright {
  font-size: 0.94rem;
  color: #929299;
  margin-top: 14px;
  letter-spacing: 0.2px;
}

@media (max-width: 800px) {
  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 11px;
  }
}

/* ALERTS / NOTES */
.note {
  color: #F9C846;
  font-weight: 700;
  margin-top: 10px;
  font-size: 1.12rem;
}

/* UTILITY CLASSES */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 18px; }
.mb-3 { margin-bottom: 35px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-20 { gap: 20px; }

/* Responsive Typography */
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.39rem; }
  h3 { font-size: 1.11rem; }
  body { font-size: 0.97rem; }
  .section, section { padding: 28px 6px; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.22rem; }
  h2 { font-size: 1rem; }
  h3 { font-size: 0.95rem; }
  .section, section { padding: 16px 2vw; }
}

/* --- COOKIE BANNER & MODAL --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #23252B;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 20px 18px 22px;
  z-index: 990;
  box-shadow: 0 -2px 26px rgba(32,51,104,0.23);
  border-top: 3.2px solid #F9C846;
  font-size: 1.02rem;
  animation: fadeInUp .68s cubic-bezier(.67,.02,.29,.99);
}
@keyframes fadeInUp {
  from { transform: translateY(70px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cookie-consent-banner button {
  border: none;
  border-radius: 9px;
  padding: 8px 20px;
  font-weight: 700;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.21s, color 0.19s, box-shadow 0.17s;
  background: #203368;
  color: #F9C846;
  margin-left: 2px;
}
.cookie-consent-banner button.accept {
  background: #F9C846;
  color: #203368;
}
.cookie-consent-banner button.reject {
  background: #343642;
  color: #fff;
}
.cookie-consent-banner button.settings {
  background: #23252B;
  color: #F9C846;
  border: 1.5px solid #F9C846;
}
.cookie-consent-banner button:hover,
.cookie-consent-banner button:focus {
  box-shadow: 0 3px 15px rgba(249,200,70,0.18);
  background: #364F88;
  color: #fff;
}
.cookie-consent-banner button.accept:hover,
.cookie-consent-banner button.accept:focus {
  background: #203368;
  color: #F9C846;
}
.cookie-consent-banner button.reject:hover,
.cookie-consent-banner button.reject:focus {
  background: #F9C846;
  color: #203368;
}

@media (max-width:700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 20px 7px 10px 7px;
    font-size: 0.92rem;
  }
  .cookie-consent-banner .cookie-actions {
    flex-direction: row;
    gap: 6px;
    width: 100%;
    flex-wrap: wrap;
  }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(25,26,35,0.93);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #23252B;
  border-radius: 15px;
  max-width: 380px;
  width: 94vw;
  padding: 34px 18px 28px 22px;
  box-shadow: 0 16px 45px 0 rgba(32,51,104,0.23);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modalFadeIn .44s cubic-bezier(.68,-0.28,.35,1.24);
}
@keyframes modalFadeIn {
  from { transform: translateY(50px) scale(.93); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #203368;
  font-family: 'Baloo 2', 'Nunito', Arial, sans-serif;
  font-size: 1.27rem;
  margin-bottom: 10px;
}
.cookie-switches {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 17px 0 11px 0;
}
.cookie-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #18191D;
}
.cookie-switch label {
  flex: 1 1 0;
}
.cookie-switch input[type="checkbox"] {
  accent-color: #F9C846;
  width: 21px;
  height: 21px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 16px;
  top: 16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #203368;
  cursor: pointer;
}
.cookie-modal .close-modal:hover {
  color: #F9C846;
}
.cookie-modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 10px;
}
.cookie-modal-actions button {
  border-radius: 9px;
  padding: 8px 20px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Nunito', Arial, sans-serif;
  cursor: pointer;
  background: #203368;
  color: #F9C846;
  transition: background 0.12s, color 0.11s;
}
.cookie-modal-actions button.accept {
  background: #F9C846;
  color: #203368;
}
.cookie-modal-actions button.reject {
  background: #343642;
  color: #fff;
}
.cookie-modal-actions button:hover,
.cookie-modal-actions button:focus {
  background: #364F88;
  color: #fff;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 12px; background: #23252B; }
::-webkit-scrollbar-thumb { background: #383B46; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #203368; }

/* CARDS & FLEX CARDS */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
  width: 100%;
}
.service-cards > div {
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 340px;
}
@media (max-width: 900px) {
  .service-cards {
    gap: 14px;
  }
  .service-cards > div {
    min-width: 90vw;
    max-width: 100%;
  }
}

/* METALLIC/INDUSTRIAL ACCENTS */
.card, .service-cards > div, .testimonial-card, .badge, .cookie-consent-banner, .cookie-modal {
  box-shadow: 0 1.5px 5px rgba(60,60,60,0.06), 0 1px 8px rgba(75,80,95,0.08);
  border: 1.5px solid #43475044;
}

/* ICON STYLE for urban/industrial look */
.card h3:before, .service-cards > div h3:before {
  content: '\25A0  ';
  color: #F9C846;
  font-size: 1rem;
  vertical-align: middle;
  margin-right: 2px;
}
/* Remove icon on badges (on price info) */
.card h3 .badge, .service-cards h3 .badge { margin-left: 10px; }

/* ACCENT COLOR UTILS */
.text-accent { color: #F9C846; }
.bg-primary { background: #203368 !important; color: #fff !important; }
.bg-dark { background: #23252B !important; color: #F9C846 !important; }
.bg-accent { background: #F9C846 !important; color: #203368 !important; }

/* SUPPRESS SEPARATOR VISIBLE IN FOOTER FOR A11Y */
footer nav a + span,
footer nav span {
  color: #666;
  pointer-events: none;
}

/* PRINT FRIENDLY */
@media print {
  .mobile-menu-toggle, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay, header, footer { display: none !important; }
  section, .section, main { box-shadow: none !important; border: none !important; }
  body { background: #fff; color: #222; }
}
