/* -------------------------------------------------  
   CSS RESET & BASE NORMALIZATION - Industrial Modern 
 --------------------------------------------------- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #232a31;
  color: #F5F5F5;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}
ul, ol {
  padding-left: 1.25em;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}
input, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* --------------------
   FONT FACE + BRAND
---------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --primary: #305076;
  --primary-rgb: 48,80,118;
  --secondary: #6DA59A;
  --secondary-rgb: 109,165,154;
  --accent: #F5F5F5;
  --dark-bg: #232a31;
  --medium-dark: #363e46;
  --light-bg: #31363d;
  --text-main: #F5F5F5;
  --text-metal: #b0bbca;
  --metal-silver: #aeb1b7;
  --metal-dark: #626974;
  --industrial-border: #454b54;
  --shadow: 0 4px 20px rgba(48,80,118,0.08), 0 1px 4px rgba(50,50,50,0.05);
  --radius: 12px;
  --radius-sm: 7px;
  --gap: 24px;
  --gap-card: 20px;
  --cta-hover: #6DA59A;
  --transition: 0.25s cubic-bezier(.72,0,.3,1);
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: var(--dark-bg);
  color: var(--text-main);
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #ececec;
  font-weight: 700;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.02em;
}

h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 1.75rem; margin-bottom: 20px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
}

p, li {
  color: var(--text-metal);
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

strong { color: #fff; font-weight: 600; }

.subheadline {
  color: var(--secondary);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 16px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

.text-section {
  margin-bottom: 24px;
}

/* Utility:
------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--radius);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--light-bg);
  padding: 28px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--industrial-border);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.card:hover, .city-card:hover {
  box-shadow: 0 6px 32px rgba(109,165,154,0.11), 0 1.5px 4px rgba(150,180,180,0.08);
  border-color: var(--secondary);
  transform: translateY(-3px) scale(1.025);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.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: 14px;
  padding: 20px;
  background: #f4f5f7;
  border-radius: var(--radius-sm);
  border-left: 6px solid var(--primary);
  color: #232a31;
  margin-bottom: 20px;
  box-shadow: 0 2.5px 8px rgba(48,80,118,0.09);
  transition: box-shadow var(--transition);
}
.testimonial-card p {
  color: #242934;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-card span {
  color: var(--secondary);
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  min-width: 200px;
  box-shadow: var(--shadow);
  border: 1px solid var(--industrial-border);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.feature-item img {
  width: 38px;
  height: 38px;
  filter: grayscale(0.4) contrast(1.2);
}
.feature-item h3 {
  color: #e0e4e8;
  margin: 0 0 4px;
  font-size: 1.1rem;
}
.feature-item p {
  font-size: 1rem;
  margin: 0;
}

/* Blog Categories */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.blog-categories li {
  background: #373f47;
  color: var(--secondary);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  border: 1px solid #4e5863;
}

/* ----------------- 
   HEADER & NAVIGATION
  ------------------- */
header {
  background: var(--dark-bg);
  position: relative;
  z-index: 30;
  border-bottom: 1px solid #2d3540;
}
header .container {
  min-height: 76px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--metal-silver);
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 4px;
  border-bottom: 2.5px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
header nav a:hover, header nav a.active {
  color: var(--secondary);
  border-bottom: 2.5px solid var(--secondary);
}
.cta-btn {
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px 30px;
  box-shadow: 0 2px 10px rgba(109,165,154,0.06);
  margin-left: 18px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  letter-spacing: 0.03em;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--secondary);
  color: #222;
  box-shadow: 0 5px 22px rgba(109,165,154,0.12);
  outline: none;
}

header img {
  height: 38px;
  width: auto;
  margin-right: 14px;
}

/* MOBILE NAV BURGER */
.mobile-menu-toggle {
  display: none;
  position: relative;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  color: #dadada;
  font-size: 2rem;
  padding: 2px 8px;
  z-index: 61;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--secondary);
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,39,47, 0.98);
  padding: 0 0 32px 0;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.72,0,.3,1);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #dadada;
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  z-index: 1;
  transition: color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  margin-top: 84px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0 28px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 8px 0;
  width: 100%;
  border-bottom: 2px solid #3b424a;
  transition: color .2s, border-color .2s;
}
.mobile-nav a:hover {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

@media (max-width: 1024px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
}
/* --------------------------------- 
   HERO / KEY SECTIONS
  --------------------------------- */
.hero {
  background: linear-gradient(90deg, rgba(48,80,118,0.92) 0%, rgba(35,42,49,0.97) 100%);
  padding-top: 70px;
  padding-bottom: 56px;
  border-bottom: 2px solid var(--industrial-border);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 8px;
}
.hero h1 {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 7px;
  line-height: 1.17;
  text-shadow: 2px 2px 6px #232a31;
  letter-spacing: 0.01em;
}
.hero .subheadline {
  color: var(--secondary);
  font-size: 1.2rem;
  font-family: 'Roboto', Arial, sans-serif;
  text-shadow: 0 1px 8px #232a31;
  margin-bottom: 23px;
}
.hero .cta-btn {
  margin-top: 16px;
  font-size: 1.17rem;
}

@media (max-width: 600px) {
  .hero {  padding-top: 40px; padding-bottom: 36px; }
  .hero h1 { font-size: 1.45rem; }
}

/* -------------
   SECTIONS & GRIDS
------------------- */
.features {
  background: #29313a;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-grid, .city-overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.feature-item, .city-card {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--industrial-border);
  width: calc(33.33% - 24px);
  min-width: 210px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.city-card h3 { color: #e0e4e8; font-size: 1.15rem; margin-bottom: 8px; font-family: 'Montserrat', Arial, sans-serif; }
.city-card p { color: var(--text-metal); }
.city-card:hover {
  box-shadow: 0 6px 24px rgba(109,165,154,0.12), 0 2px 4px rgba(75,100,120,0.12);
  border-color: var(--secondary);
  transform: translateY(-2px) scale(1.017);
}
@media (max-width: 900px) {
  .feature-item, .city-card {
    width: calc(50% - 20px);
  }
}
@media (max-width: 600px) {
  .feature-item, .city-card {
    width: 100%;
    min-width: unset;
  }
  .feature-grid, .city-overview-grid {
    gap: 18px;
  }
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 22px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-basis: calc(33.33% - 24px);
  border: 1px solid var(--industrial-border);
  margin-bottom: 20px;
  min-width: 210px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.service-item img {
  width: 38px; height: 38px; filter: grayscale(0.4) contrast(1.2);
}
.service-item h3 { color: #e0e4e8; font-size: 1.1rem;  margin: 0; }
.service-item .service-price {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 6px;
  margin-bottom: -3px;
}
.service-item:hover {
  box-shadow: 0 6px 32px rgba(109,165,154,0.11), 0 2.5px 8px rgba(48,80,118,0.09);
  border-color: var(--secondary);
  transform: translateY(-3px) scale(1.018);
}
@media (max-width: 900px) {
  .service-item { flex-basis: calc(50% - 18px); }
}
@media (max-width: 600px) {
  .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .service-item { flex-basis: 100%; }
}

.cta {
  background: linear-gradient(90deg, rgba(48,80,118,0.97) 0%, rgba(35,42,49,1) 95%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
}
.cta h2 { color: #fff; margin-bottom: 10px; }
.cta p { color: var(--metal-silver); font-size: 1.08rem; margin-bottom: 17px;}
.cta .cta-btn {
  margin-top: 10px;
}

.confirmation .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.confirmation a.cta-btn {
  margin-top: 20px;
}

/* -----------------------------------
   ABOUT & INFO SECTIONS
-------------------------------------- */
.about, .services, .contact, .legal {
  background: var(--light-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section ul, .text-section ol, .contact-info ul {
  margin-bottom: 12px;
  margin-left: 20px;
}
.text-section ul li {
  margin-bottom: 7px;
}
.contact-info {
  background: #28303a;
  border-radius: var(--radius-sm);
  padding: 12px 14px 8px 14px;
  margin-bottom: 18px;
  box-shadow: 0 1.5px 5px rgba(90,110,130,0.08);
}
.contact-info p {
  color: #d6e4ea;
  font-size: 1.09rem;
}

.cta-text {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 6px;
  font-size: 1.07rem;
}

/* -----------
   FOOTER
------------- */
footer {
  background: #22262c;
  border-top: 1px solid #28303a;
  color: #c3c6cb;
  font-size: 1rem;
  padding: 0;
  z-index: 10;
  width: 100%;
}
.footer-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0;
}
footer img {
  width: 36px;
  height: 36px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #afb3ba;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color .18s;
}
footer nav a:hover { color: var(--secondary); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.97rem;
}
.footer-contact a {
  color: var(--secondary);
  font-weight: 600;
  transition: color .15s;
}
.footer-contact a:hover { color: var(--primary); }
@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 0;
  }
}

/* -----------------
   RESPONSIVE LAYOUTS
------------------- */
@media (max-width: 900px) {
  .container { max-width: 96vw; }
  .content-grid,
  .footer-wrapper {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 768px) {
  .section, .about, .services, .contact, .legal {
    padding: 30px 8px;
    margin-bottom: 42px;
  }
  .hero {
    padding-top: 28px;
    padding-bottom: 22px;
  }
  .feature-grid, .city-overview-grid, .service-list {
    gap: 13px;
  }
  .feature-item, .service-item, .city-card {
    min-width: unset;
    width: 100%;
  }
  .footer-wrapper { padding: 18px 0; }
  .content-wrapper { gap: 14px; }
  .testimonial-card { padding: 14px; gap: 10px; }
}
@media (max-width: 600px) {
  .hero {  padding-top: 21px; padding-bottom: 16px; }
  .section, .about, .services, .contact, .legal { padding: 18px 4px; margin-bottom: 32px; }
  .content-wrapper { gap: 10px; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* Microinteractions and Transitions */
a, .cta-btn, button, .service-item, .card, .feature-item, .city-card {
  transition: color .14s, background .17s, border-color .18s, box-shadow .20s, transform .20s !important;
}

/* ----------------------
   COOKIE CONSENT BANNER
----------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #262d35;
  color: #efecec;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 19px 32px 19px 24px;
  border-top: 2px solid var(--secondary);
  box-shadow: 0 -4px 18px rgba(48,80,118,0.06);
  gap: 24px;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .24s, transform .28s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
}
.cookie-banner-text { flex: 3 1 60%; line-height: 1.55; }
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 22px;
  border-radius: var(--radius-sm);
  margin-right: 0;
  transition: background .18s, color .17s;
  box-shadow: 0 1px 4px rgba(78,90,110,0.07);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--secondary);
  color: #222;
}
.cookie-btn.settings {
  background: #464b56;
  color: #fff;
}
.cookie-btn.settings:hover {
  background: var(--metal-silver);
  color: #222;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 8px 14px 8px;
  }
  .cookie-banner-actions { gap: 8px; }
}

/* COOKIE MODAL (POPUP) */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,28,36,0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #232a31;
  border-radius: var(--radius);
  box-shadow: 0 5px 26px rgba(109,165,154,0.13);
  border: 1.7px solid var(--secondary);
  min-width: 340px;
  max-width: 97vw;
  padding: 38px 30px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  color: #f4f7fa;
}
.cookie-modal-content h2 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cookie-modal-content ul {
  margin-left: 14px;
  margin-bottom: 10px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 20px;
}
.cookie-modal-close {
  position: absolute;
  right: 14px; top: 14px;
  font-size: 2rem;
  color: #b0bbca;
  background: transparent;
  border: none;
  z-index: 2;
  transition: color .2s;
}
.cookie-modal-close:hover {
  color: var(--secondary);
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 7px;
}
.cookie-toggle {
  width: 42px;
  height: 22px;
  background: #313842;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .18s;
  border: 1.5px solid #567084;
}
.cookie-toggle.on {
  background: var(--secondary);
  border: 1.5px solid var(--secondary);
}
.cookie-toggle-knob {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1.2px; left: 2px;
  transition: left .21s;
  box-shadow: 0 1px 4px rgba(32,42,52,0.12);
}
.cookie-toggle.on .cookie-toggle-knob {
  left: 21px;
  background: #217966;
}
.cookie-category-label {
  color: #d9ece0;
}
.cookie-category-desc {
  color: #b0bbca;
  font-size: 0.98rem;
}
.cookie-category.essential .cookie-toggle {
  background: #b8c3cc;
  pointer-events: none;
}
.cookie-category.essential .cookie-category-label {
  color: #858282;
}

@media (max-width: 600px) {
  .cookie-modal-content {
    min-width: 88vw;
    padding: 20px 7px 19px 9px;
  }
  .cookie-modal-actions { gap: 6px; }
  .cookie-modal-content h2 { font-size: 1.05rem; }
}

/* ----------------------------
   INDUSTRIAL MODERN EXTRAS
---------------------------- */
::-webkit-scrollbar {
  width: 11px; background: #222227; border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #37404a; border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #506178;
}

/* Tooltips, Focus & Accessibility */
:focus {
  outline: 2px dashed var(--secondary);
  outline-offset: 2px;
}

/* SHADOW-LINE (decorative, not content! use absolute allowed for these) */
.shadow-line {
  position: absolute;
  bottom: -7px; left: 8px; right: 8px;
  height: 2.5px; border-radius: 2px;
  background: linear-gradient(90deg, #61788a 8%, #a0a9b6 90%);
  opacity: .08;
}

/* No Grid, No Columns, No clamp, No break-inside anywhere. Only Flex. */