/* --- 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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #21242B;
  color: #F5F5F5;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #CDA34F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5F5F5;
}
ul, ol {
  list-style: none;
}
input, button, textarea, select {
  font: inherit;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}
/* --- BRAND TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  font-weight: 600;
  color: #F5F5F5;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #CDA34F;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, .hero-subline, li, .testimonial-author {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: #D1D7DE;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #23262E;
}
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}
/* --- HEADER --- */
header {
  background: #181A20;
  border-bottom: 2px solid #343942;
  box-shadow: 0 4px 16px rgba(34, 70, 108, 0.08);
  z-index: 110;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  position: relative;
  gap: 20px;
}
.logo-link, .logo-footer {
  display: flex;
  align-items: center;
  height: 60px;
}
.logo-link img, .logo-footer img {
  height: 48px;
  width: auto;
  filter: grayscale(0%) brightness(1.1) drop-shadow(0 4px 8px rgba(34,70,108,0.08));
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  font-weight: 500;
}
.main-nav a {
  color: #D1D7DE;
  font-size: 1rem;
  letter-spacing: 0.02em;
  position: relative;
  padding: 5px 0;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #CDA34F;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.2s;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  background: #22466C;
  color: #F5F5F5;
  border-radius: 26px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px rgba(34, 70, 108, 0.12);
  border: 2px solid #CDA34F;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-left: 18px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #CDA34F;
  color: #181A20;
  box-shadow: 0 4px 18px rgba(205, 163, 79, 0.15);
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #CDA34F;
  border: 2px solid #CDA34F;
  border-radius: 24px;
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #CDA34F;
  color: #181A20;
}
/* --- BURGER MENU (MOBILE) --- */
.mobile-menu-toggle {
  display: none;
  background: #21242B;
  color: #CDA34F;
  font-size: 2rem;
  border: none;
  border-radius: 7px;
  padding: 6px 15px;
  z-index: 130;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #CDA34F;
  color: #21242B;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 82vw;
  max-width: 360px;
  background: #181A20;
  box-shadow: 2px 0 22px rgba(34,70,108,0.24);
  z-index: 1200;
  padding: 30px 28px 24px 28px;
  transform: translateX(-110%);
  transition: transform 0.34s cubic-bezier(.7,0,.3,1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #CDA34F;
  font-size: 2rem;
  border: none;
  margin-bottom: 16px;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F5F5F5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  width: 100%;
  margin-top: 6px;
}
.mobile-nav a {
  color: #D1D7DE;
  font-size: 1.125rem;
  padding: 11px 0;
  border-bottom: 1px solid #2d2f35;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #CDA34F;
  background: #23262E;
}
@media (max-width: 1060px) {
  .main-nav {
    gap: 18px;
  }
  .cta-primary {
    margin-left: 8px;
    padding: 10px 20px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* --- HERO SECTION --- */
.hero {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #1d1e23;
  box-shadow: 0 2px 32px rgba(34, 70, 108, 0.22);
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  font-size: 2.25rem;
  color: #CDA34F;
  letter-spacing: 0.03em;
  text-shadow: 0 3px 12px rgba(34,70,108,0.13);
}
.hero-subline {
  font-size: 1.15rem;
  color: #ccccd6;
  max-width: 560px;
  margin-bottom: 16px;
}
/* --- FEATURES & SERVICES --- */
.features-grid, .service-overview, .service-grid, .testimonial-slider, .testimonial-list  {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid, .service-grid {
  justify-content: space-between;
  margin-top: 20px;
}
.feature-item {
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #24262C;
  border-radius: 13px;
  box-shadow: 0 2px 9px rgba(30,38,49,0.11);
  padding: 22px 20px 22px 20px;
  min-width: 210px;
  gap: 15px;
  border-left: 5px solid #CDA34F;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 24px rgba(205,163,79,.13);
  border-left: 5px solid #22466C;
}
.feature-item img {
  height: 32px;
  width: 32px;
  filter: contrast(1.15) grayscale(0.3) drop-shadow(0 2px 6px #181A20);
}
.service-item {
  flex: 1 1 220px;
  background: #262933;
  border-radius: 13px;
  padding: 22px 20px 22px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 9px rgba(30,38,49,0.09);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s;
  border-left: 5px solid #22466C;
  min-width: 220px;
}
.service-item img {
  height: 32px;
  width: 32px;
  filter: contrast(1.15) grayscale(0.4);
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 6px 18px rgba(34,70,108,.11);
  border-left: 5px solid #CDA34F;
}
@media (max-width: 950px) {
  .features-grid, .service-overview, .service-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .service-item {
    min-width: 0;
    width: 100%;
  }
}
/* --- TESTIMONIALS --- */
.testimonial-slider, .testimonial-list {
  gap: 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 20px;
}
.testimonial-card {
  background: #f5f5f5;
  color: #22242b;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(34,70,108,0.11);
  padding: 20px 24px;
  min-width: 260px;
  max-width: 360px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  border-left: 5px solid #CDA34F;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 24px rgba(205,163,79,.18);
  border-left: 5px solid #22466C;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22466C;
  font-weight: 500;
  font-size: 0.97rem;
  margin-top: 2px;
}
.testimonial-rating {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #CDA34F;
  font-size: 1.3rem;
  letter-spacing: 0.11em;
}
@media (max-width: 900px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
  }
}
/* --- TEXT/IMAGE/CONTENT GRID (For Flex Layouts) --- */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #23262E;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(34,70,108,0.08);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  color: #EEE;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Flex containers for text-image layout, etc */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid, .footer-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
/* --- LEGAL/LIST/TOPIC SECTIONS --- */
.legal-content {
  background: #24262C;
  border-radius: 10px;
  padding: 32px 22px;
  margin-top: 30px;
  margin-bottom: 60px;
  color: #EAEAEC;
  font-size: 1.04rem;
  box-shadow: 0 2px 14px rgba(34,70,108,0.07);
}
.legal-content h1, .legal-content h2, .legal-content h3 {
  color: #CDA34F;
}
.legal-content ul, .topic-list {
  padding-left: 0;
  margin-top: 12px;
  margin-bottom: 16px;
}
.legal-content li, .topic-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
  color: #C8CED7;
}
.legal-content li::before, .topic-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #CDA34F;
  font-size: 1.1em;
}
.topic-list li {
  background: #23262E;
  border-radius: 10px;
  padding: 18px 18px 14px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(34,70,108,0.04);
}
.topic-list h3 {
  color: #CDA34F;
  font-size: 1.13rem;
}
/* --- CONTACT INFO / SHORT CONTACT --- */
.contact-info, .contact-short, .utility-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #23262E;
  border-radius: 13px;
  padding: 28px 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(34,70,108,0.09);
}
.contact-short h2, .utility-section h1 {
  color: #CDA34F;
}
.contact-info .text-section img {
  height: 18px;
  width: 18px;
  margin-right: 7px;
  vertical-align: middle;
  filter: contrast(1.15) grayscale(0.2);
}
/* --- FOOTER --- */
footer {
  background: #181A20;
  color: #B3B8C2;
  padding: 0;
  border-top: 2px solid #343942;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 10px;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.footer-nav a {
  color: #CDA34F;
  transition: color 0.14s;
  margin-bottom: 6px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F5F5F5;
}
.footer-contact {
  font-size: 0.97rem;
  color: #B3B8C2;
}
.footer-contact a {
  color: #CDA34F;
  transition: color 0.16s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #F5F5F5;
}
@media (max-width: 800px) {
  .footer-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #23262E;
  color: #F5F5F5;
  box-shadow: 0 -4px 18px rgba(34,70,108,.19);
  z-index: 1500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 25px 20px 24px 20px;
  gap: 18px;
  font-size: 1rem;
  transition: transform 0.32s cubic-bezier(.76,0,.24,1);
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner-content {
  max-width: 700px;
  flex: 1 1 0;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner-btn,
.cookie-banner-btn-secondary {
  padding: 11px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  margin-top: 2px;
  transition: background 0.2s, color 0.2s, box-shadow 0.16s;
}
.cookie-banner-btn {
  background: #CDA34F;
  color: #23262E;
  border: 2px solid #CDA34F;
}
.cookie-banner-btn:hover, .cookie-banner-btn:focus {
  background: #22466C;
  color: #F5F5F5;
  border: 2px solid #22466C;
}
.cookie-banner-btn-secondary {
  background: transparent;
  color: #CDA34F;
  border: 2px solid #CDA34F;
}
.cookie-banner-btn-secondary:hover, .cookie-banner-btn-secondary:focus {
  background: #CDA34F;
  color: #181A20;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 10px;
  }
}
/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,26,32,0.80);
  z-index: 1600;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 100vh;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.active { display: flex; }
.cookie-modal {
  background: #23262E;
  color: #F5F5F5;
  border-radius: 14px;
  box-shadow: 0 8px 64px rgba(34,70,108,.22);
  padding: 38px 28px 28px 28px;
  max-width: 410px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  color: #CDA34F;
  margin-bottom: 2px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 9px;
}
.cookie-toggle {
  width: 32px;
  height: 18px;
  background: #343942;
  border-radius: 16px;
  position: relative;
  transition: background 0.17s;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #CDA34F;
  transition: left 0.18s, background 0.18s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 16px;
  background: #22466C;
}
.cookie-toggle[disabled], .cookie-toggle[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
  background: #555962;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 8px;
}
.cookie-modal-close {
  font-size: 1.3rem;
  color: #CDA34F;
  background: none;
  border: none;
  margin-left: auto;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F5F5F5;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 20px 8px 16px 8px;
  }
}
/* --- GENERAL BUTTONS --- */
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #22466C;
  color: #F5F5F5;
  border: 2px solid #22466C;
  border-radius: 22px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, border 0.17s;
}
button:hover, .btn:hover,
button:focus, .btn:focus {
  background: #CDA34F;
  color: #181A20;
  border-color: #CDA34F;
}
/* --- SPACING AND FLEXBOX UTILS (MANDATORY) --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; align-items: center; gap: 20px; padding: 20px; }
.testimonial-card p {
  color: #181A20;
}
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
/* --- RESPONSIVE BREAKPOINTS & FLEX ADJUSTMENTS --- */
@media (max-width: 768px) {
  .section {
    padding: 30px 7px;
    margin-bottom: 38px;
  }
  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .content-wrapper, .features-grid, .service-overview, .service-grid, .testimonial-slider, .testimonial-list, .card-container, .footer-flex  {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .feature-item, .service-item, .testimonial-card {
    min-width: 0;
    width: 100%;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 400px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.25rem; }
  .hero h1 { font-size: 1.38rem; }
  .cta-primary, .cta-secondary {
    padding-left: 14px;
    padding-right: 14px;
    font-size: .94rem;
  }
}
/* --- INDUSTRIAL MODERN EFFECTS & ACCENTS --- */
body, .section, .card, .features-grid, .service-grid, .testimonial-card, .footer-flex, .container {
  /* subtle "brushed steel" effect via dark box-shadow for industrial modern, no actual images for full CSS compatibility */
  box-shadow: 0 2px 8px rgba(34,70,108,0.08);
}
.section {
  border-radius: 16px;
  border: 1.5px solid #2d2f35;
}
.card, .feature-item, .service-item {
  border-radius: 13px;
  border: 1px solid #2d2f35;
}
hr {
  border: none;
  border-top: 2px solid #2d2f35;
  margin: 24px 0;
}
/* --- SCROLLBAR STYLING for urban/industrial look (webkit browsers) --- */
body::-webkit-scrollbar {
  width: 11px;
  background: #181A20;
}
body::-webkit-scrollbar-thumb {
  background: #23262E;
  border-radius: 8px;
  border: 2px solid #181A20;
}
body::-webkit-scrollbar-thumb:hover {
  background: #CDA34F;
}
/* --- MICRO INTERACTIONS --- */
.feature-item, .service-item, .card, .testimonial-card {
  cursor: pointer;
  transition: box-shadow 0.18s, transform 0.17s;
}
.feature-item:hover, .service-item:hover, .testimonial-card:hover, .card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(205,163,79,.15), 0 2px 8px rgba(34,70,108,0.08);
}
/* --- ACCESSIBILITY: FOCUS STATES --- */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus, .cookie-banner-btn:focus, .cookie-banner-btn-secondary:focus {
  outline: 2px solid #CDA34F;
  outline-offset: 2px;
}
::-moz-focus-inner { border:0; }
/* --- Z-INDEX LAYERING to prevent overlaps of modals/menus --- */
header { z-index: 110; position: relative; }
.mobile-menu { z-index: 1200; }
.cookie-banner, .cookie-modal-overlay { z-index: 1500; }
/* Prevent overlapping content with spacings */
.section, .card-container, .features-grid, .service-overview, .footer-flex {
  margin-bottom: 60px;
}
/* --- END --- */
