/* 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 {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #111822;
  color: #F2F4F8;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #B00018;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover,
a:focus {
  color: #D32E2F;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.4em;
}
li {
  margin-bottom: 8px;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
}
th, td {
  padding: 12px 14px;
  border: 1px solid #232f3e;
  background-color: #182536;
  color: #F2F4F8;
  text-align: left;
}
th {
  background: #183050;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
dl dt {
  font-weight: 600;
  margin-top: 16px;
}
dl dd {
  margin-left: 0;
  margin-bottom: 8px;
}
display, .text-section h1, .text-section h2, .text-section h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
}

/* BRAND COLOR VARIABLES AND FONTS */
:root {
  --primary: #183050;
  --secondary: #F2F4F8;
  --text: #F2F4F8;
  --inverted: #23282f;
  --accent: #B00018;
  --hover-accent: #D32E2F;
  --shadow-dark: 0 2px 16px rgba(20,30,40,0.35);
  --card-bg: #182536;
  --card-border: #232f3e;
  --muted: #7D8895;
}

/* TYPOGRAPHY SCALE */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: -0.25px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: var(--secondary);
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--secondary);
}
strong {
  font-weight: 600;
  color: var(--secondary);
}

/* LAYOUT WRAPPERS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.text-section {
  max-width: 800px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEX UTILITIES & PREDEFINED SPACING */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: 14px;
  box-shadow: var(--shadow-dark);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.24s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px) scale(1.0125);
  box-shadow: 0 6px 22px 0 rgba(32,40,49,0.32);
}
.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: 28px 30px;
  background: #F2F4F8;
  color: #23282f;
  border-radius: 9px;
  box-shadow: 0 2px 20px rgba(24, 48, 80, 0.07);
  margin-bottom: 24px;
  border-left: 6px solid var(--accent);
  min-width: 250px;
  transition: box-shadow 0.28s;
  font-size: 1.025rem;
}
.testimonial-card:hover {
  box-shadow: 0 4px 22px 0 rgba(48,60,91,0.13);
}
.stars {
  color: #FAA916;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  letter-spacing: 2px;
  margin-top: 2px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.service-list > div {
  background: var(--card-bg);
  border-radius: 9px;
  border: 1px solid #232f3e;
  box-shadow: var(--shadow-dark);
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.service-list > div:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 18px 0 rgba(176,0,24,0.21);
}
.service-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 7px;
  filter: grayscale(1) brightness(1.25) contrast(1.1);
  opacity: 0.82;
}
.service-price {
  margin-top: 12px;
  color: var(--accent);
  font-weight: bold;
  font-size: 17px;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 26px;
  margin-bottom: 26px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 180px;
}
.footer-menu a {
  color: var(--muted);
  font-size: 0.97rem;
  transition: color 0.2s, text-decoration 0.22s;
}
.footer-menu a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social a {
  opacity: 0.78;
  transition: opacity 0.2s;
}
.footer-social a:hover {
  opacity: 1;
}

/* BUTTONS */
.cta-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  padding: 14px 34px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 16px rgba(180,0,24,0.21);
  cursor: pointer;
  text-align: center;
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 12px;
  transition: background 0.22s, transform 0.17s, box-shadow 0.25s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--hover-accent);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 0 rgba(211,46,47,0.21);
  text-decoration: none;
}
button {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 7px;
  border: none;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  transition: background .2s, box-shadow 0.16s;
}
button:hover, button:focus {
  background: var(--hover-accent);
  box-shadow: 0 2px 10px rgba(211,46,47,0.11);
}

/* NAVIGATION */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.22s, color 0.22s;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  background: transparent;
  color: var(--secondary);
  font-size: 2.2rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  padding: 0 12px;
  display: none;
  transition: color 0.19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 48, 80, 0.98);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.175,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  border: none;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--hover-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin: 38px 0 0 28px;
  width: 80vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 0;
  margin-right: 14px;
  border-bottom: 2px solid transparent;
  transition: color 0.22s, border-color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus, .mobile-nav a.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-bottom: 28px;
}
.faq-item {
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: var(--shadow-dark);
  padding: 18px 20px;
  border-left: 5px solid var(--muted);
  transition: border-color 0.22s, box-shadow 0.23s;
}
.faq-item h3 {
  color: var(--secondary);
  margin-bottom: 7px;
}
.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 5px 22px 0 rgba(176,0,24,0.15);
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #182536;
  color: #fff;
  box-shadow: 0 -4px 26px 0 rgba(24,48,80,0.15);
  border-top: 3px solid var(--accent);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 22px 30px 22px 22px;
  font-size: 1rem;
  animation: fadeInUp 0.38s cubic-bezier(.42,0,.58,1);
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(90px) scaleY(0.97); }
  100% { opacity: 1; transform: translateY(0) scaleY(1); }
}
.cookie-banner p {
  flex: 1 1 220px;
  color: #F2F4F8;
  margin-bottom: 0;
}
.cookie-actions {
  display: flex;
  gap: 13px;
}
.cookie-btn {
  background: var(--accent);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 7px;
  padding: 9px 20px;
  font-size: 1rem;
  margin-left: 2px;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--hover-accent);
}
.cookie-settings-btn {
  background: var(--inverted);
  color: var(--secondary);
  border: 1px solid var(--card-border);
  padding: 8px 15px;
}
.cookie-settings-btn:hover {
  background: #212732;
  color: var(--accent);
}

.cookie-modal {
  position: fixed;
  z-index: 1110;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(20,30,48,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-box {
  background: #232f3e;
  color: #fff;
  border-radius: 13px;
  box-shadow: 0 7px 32px 0 rgba(24,48,80,0.18);
  padding: 42px 30px 30px 30px;
  max-width: 90vw;
  min-width: 320px;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: fadeInUp 0.4s cubic-bezier(.28,0,.38,1);
}
.cookie-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.cookie-modal-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.17s;
  margin-left: 8px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--accent);
}
.category-row {
  display: flex;
  align-items: center;
  gap: 17px;
  justify-content: space-between;
  margin-bottom: 13px;
  font-size: 1rem;
}
.category-label {
  font-weight: 500;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #ccc;
  position: relative;
  cursor: pointer;
  transition: background 0.21s;
}
.cookie-toggle[data-enabled="true"] {
  background: var(--accent);
}
.cookie-toggle-inner {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.17s;
}
.cookie-toggle[data-enabled="true"] .cookie-toggle-inner {
  left: 18px;
}
.cookie-toggle[aria-disabled="true"] {
  background: #7D8895;
  opacity: 0.66;
  cursor: default;
}
.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 2px;
}


/* ADDRESS MAP SECTION */
.address-map {
  margin-top: 22px;
  background: var(--card-bg);
  border-radius: 8px;
  padding: 19px 18px;
  box-shadow: 0 3px 14px 0 rgba(24,48,80,0.13);
}

/* OTHER SIMPLE UTILITIES */
.muted {
  color: var(--muted);
}
.nowrap {
  white-space: nowrap;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

/* SPACING ENSURE NO OVERLAP - Cards, Sections, Wrappers */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
section:last-child {
  margin-bottom: 0;
}
section .content-wrapper {
  margin-bottom: 0;
}
section .card, section .testimonial-card, section .faq-item {
  margin-bottom: 24px;
}
section ul, section ol {
  margin-bottom: 18px;
}

/* --------------------------------------------------
   RESPONSIVENESS: MOBILE FIRST, THEN ADJUST FOR DESKTOP
-------------------------------------------------- */
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .footer-flex {
    gap: 22px;
  }
}
@media (max-width: 900px) {
  .content-wrapper, .text-section {
    padding: 0 2vw;
  }
  .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .card-container, .features, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .header-flex {
    gap: 12px;
    flex-direction: row;
    padding: 14px 0 9px 0;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-flex {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }
  .card-content {
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 16px 10px;
    font-size: 1rem;
    border-radius: 9px;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.22rem; }
}
@media (max-width: 520px) {
  .container {
    padding: 0 4px;
  }
  .mobile-nav {
    margin-left: 14px;
    gap: 15px;
    width: 96vw;
  }
  .cookie-modal-box {
    padding: 26px 7vw 18px 7vw;
    min-width: 0;
    max-width: 98vw;
  }
  .cookie-banner {
    padding: 14px 5vw 13px 5vw;
    font-size: 0.98rem;
    gap: 12px;
  }
  .service-list > div, .card, .faq-item, .testimonial-card {
    padding: 12px 8px;
    min-width: 0;
  }
}

/* --------------------------------------------------
   INDUSTRIAL MODERN VISUAL ELEMENTS
-------------------------------------------------- */
header {
  background: #101624;
  box-shadow: 0 2px 14px 0 rgba(24,48,80,0.11);
}
footer {
  background: #161d29;
  color: var(--secondary);
  font-size: 0.97rem;
  letter-spacing: 0.05px;
  border-top: 1.5px solid #232f3e;
}
footer a {
  color: var(--muted);
}
footer a:hover {
  color: var(--accent);
}
footer img {
  width: 44px;
  margin-bottom: 11px;
}

/* SHADOWS & METALLIC TOUCHES */
.card, .faq-item, .service-list > div {
  border-radius: 8px;
  box-shadow: 0 2px 16px 0 rgba(30,40,60,0.17);
  border: 1.5px solid #343c4b;
}
.testimonial-card {
  box-shadow: 0 2px 14px 0 rgba(24,32,64,0.10);
  border-left: 5.5px solid var(--accent);
  border-radius: 8px 25px 8px 8px;
}

/* ICONS */
.service-list img, .features img, ul li img, ol li img {
  filter: grayscale(1) brightness(1) contrast(1.1) drop-shadow(0px 1px 1px #101624);
  opacity: 0.87;
  width: 32px; height: 32px; margin-right: 11px; margin-bottom: -5px;
  vertical-align: middle;
}
ul li, ol li {
  list-style: none;
  font-size: 1.01rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* MISC */
::-webkit-scrollbar {
  width: 8px; background: #232f3e; border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: #183050; border-radius: 5px;
}

/* UTILITY: visually hidden for a11y (if used) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ENSURE NO FLEX OVERLAP */
.card, .testimonial-card, .faq-item, .service-list > div {
  min-width: 0;
}

/* PRINT */
@media print {
  header, nav, .main-nav, .mobile-menu-toggle, .footer-flex, .cookie-banner, .cookie-modal {
    display: none !important;
  }
}
