/* RESET & BASE ========================== */
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 {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #181C1F;
  color: #F7FBF9;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: #84C5AB; text-decoration: none; transition: color 0.25s; }
a:hover, a:focus { color: #F7FBF9; }
ul, ol { list-style-position: inside; margin-left: 0; }
strong { font-weight: 700; }

/* BRAND FONT - HEADLINES & SPECIALS */
h1, h2, h3, h4, .btn-primary, .link-arrow {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}
h1 {font-size: 2.25rem; font-weight: 800; margin-bottom: 18px;}
h2 {font-size: 1.6rem; font-weight: 700; margin-bottom: 14px;}
h3 {font-size: 1.12rem; font-weight: 700; margin-bottom: 8px;}
h4 {font-size: 1rem; font-weight: 600;}
.subtitle { color: #B5BFC4; font-size: 1.07rem; font-weight: 400; margin-bottom: 20px; }
p {font-size: 1rem; margin-bottom: 14px;}
.small-text { font-size: 0.92rem; color: #B5BFC4; }

/* FLEX CONTAINER PATTERNS - CRITICAL */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Section & spacing rules */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #212529;
  border-radius: 9px;
  box-shadow: 0 1.5px 8px 0 rgba(13,13,13,.07);
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #FAFAFA;
  color: #24292C;
  border-radius: 10px;
  box-shadow: 0 2px 14px 0 rgba(30,30,30,0.13);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 420px;
  border-left: 6px solid #20696D;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #222629;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.10);
  border: 1.5px solid #383E44;
  flex: 1 1 200px;
  min-width: 180px;
  margin-bottom: 20px;
}

/* Industrial Modern Accents */
.accent-bg {
  background: #212529;
}
.site-footer, .accent-bg {
  color: #F7FBF9;
}

/* HEADER & MAIN NAVIGATION =================== */
header {
  width: 100%;
  background: #191C1F;
  border-bottom: 2.5px solid #38434A;
  box-shadow: 0 2px 13px 0 rgba(13,13,13,0.11);
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
}
header img { height: 44px; }
nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
nav a {
  font-size: 0.98rem;
  color: #D0DBE2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 6px 4px;
  border-radius: 4px;
  transition: color 0.2s, background 0.23s;
}
nav a:hover, nav a:focus {
  background: #20696D;
  color: #FFF;
}
.btn-primary {
  background: #20696D;
  color: #F7FBF9 !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  padding: 11px 24px;
  font-weight: 800;
  box-shadow: 0 2px 12px 0 rgba(13,13,13,0.17);
  border: 1.5px solid #29696E;
  margin-left: 8px;
  letter-spacing: 0.01em;
  transition: background 0.23s, color 0.23s, box-shadow 0.23s;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #84C5AB;
  color: #24292C !important;
  border-color: #84C5AB;
  box-shadow: 0 4px 22px 3px rgba(33,105,109,0.22);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #84C5AB;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.21s;
  font-size: 1.06rem;
}
.link-arrow:after {
  content: '\2192';
  margin-left: 3px;
  font-size: 1em;
  color: #84C5AB;
  transition: transform 0.21s;
}
.link-arrow:hover, .link-arrow:focus { color: #F7FBF9; }
.link-arrow:hover:after { transform: translateX(5px); }

/* MOBILE MENU =============== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: #84C5AB;
  background: none;
  border: none;
  padding: 7px 13px;
  cursor: pointer;
  z-index: 202;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover {
  background: #252B30;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #181C1F;
  box-shadow: 8px 0 32px -8px #191C1Fdc;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.7,.2,.2,1);
  z-index: 200;
  min-height: 100vh;
  padding: 0 0 40px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #84C5AB;
  font-size: 2rem;
  position: absolute;
  top: 18px; right: 18px;
  cursor: pointer;
  z-index: 205;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-close:hover {
  background: #252B30;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 82px 0 0 0;
  align-items: flex-start;
  padding: 0 28px;
}
.mobile-nav a {
  font-size: 1.14rem;
  color: #F7FBF9;
  padding: 12px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #84C5AB;
}
@media (max-width: 990px) {
  header .container nav { display: none; }
  .btn-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 990px) {
  .mobile-menu { display: flex; }
}
@media (min-width: 991px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  header .container nav { display: flex; }
  .btn-primary { display: inline-block !important; }
}

/* HERO & GENERAL LAYOUT ========================== */
.hero-section, .cta-section, .about-preview, .testimonials-preview,
.section, .thank-you-section, .faq-section, .pricing-section, .contact-section, .leave-review-section
{
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
@media (max-width: 768px) {
  .section, .hero-section, .cta-section, .about-preview, .testimonials-preview,
  .thank-you-section, .faq-section, .pricing-section, .contact-section, .leave-review-section {
    margin-bottom: 36px;
    padding: 24px 0 24px 0;
  }
  .container { padding: 0 9px; }
}

.feature-grid, .service-categories-grid, .testimonial-list, .case-studies-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid { margin-top: 12px; }
.service-categories-grid {
  gap: 24px;
  margin-bottom: 25px;
}
.service-category {
  flex: 1 1 210px;
  min-width: 195px;
  max-width: 310px;
  background: #232829;
  border-radius: 10px;
  box-shadow: 0 1px 10px rgba(0,0,0,0.10);
  border: 1.5px solid #314147;
  padding: 25px 18px 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 0.22s, border 0.22s;
}
.service-category:hover {
  box-shadow: 0 3px 23px 0 rgba(85,246,212,0.07);
  border-color: #20696D;
}

@media (max-width: 850px) {
  .feature-grid, .service-categories-grid, .testimonial-list, .case-studies-list {
    flex-direction: column;
    gap: 18px;
  }
  .service-category, .feature-item, .testimonial-card, .case-study-summary {
    max-width: 100%;
    min-width: 0;
  }
}

/* TEXT-IMAGE SECTION/VARIANTS --------------- */
.text-image-section {
  flex-direction: row;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* TESTIMONIAL CARDS & SLIDER =============== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonials-section, .testimonials-preview, .testimonial-list {
  flex-direction: column;
}
.star-rating-summary {
  margin: 20px 0 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #84C5AB;
  font-weight: 600;
}
.star-rating-summary img {
  height: 24px;
}
.testimonial-list {
  gap: 24px;
}

/* CASE STUDY CARDS */
.case-studies-list {
  gap: 24px;
  margin-bottom: 10px;
}
.case-study-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #212528;
  border-radius: 8px;
  box-shadow: 0 1px 7px 0 rgba(38,38,38,.13);
  padding: 16px 18px;
  border-left: 5px solid #33696D;
  margin-bottom: 20px;
}

/* PRICING TABLE ========================= */
.pricing-table {
  background: #232829;
  border-radius: 11px;
  box-shadow: 0 2px 13px 0 rgba(60,60,60,0.09);
  overflow-x: auto;
  margin-bottom: 8px;
  padding: 22px 18px;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1.5px solid #354348;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table th {
  color: #84C5AB;
  font-size: 1.06rem;
  font-weight: 700;
  background: #222826;
  border-right: 2.5px solid #222826;
}
.pricing-table td { font-size: 1rem; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-description { margin-bottom: 22px; color: #CBD3D4; font-size: 0.95rem; }

/* CONTACT-INFO-SNIPPET ========================= */
.contact-info-snippet {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  font-size: 1rem;
  color: #B1BFC3;
  background: #202426;
  border-radius: 7px;
  padding: 14px 20px;
  box-shadow: 0 1px 5px 0 #181C1F22;
}
.contact-info-snippet img {
  height: 18px;
  margin-right: 6px;
  vertical-align: text-bottom;
}

/* ACCORDION FOR FAQ ========================= */
.accordion-faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  border-radius: 7px;
  background: #202426;
  box-shadow: 0 1px 7px 0 rgba(58,58,58,0.10);
  padding: 18px 20px;
  border-left: 5px solid #20696D;
}
.faq-item h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: #84C5AB;
}
.faq-item p { color: #D3E1E2; font-size: 0.99rem; }

/* LEGAL PAGE - TEXT BLOCKS */
.legal-section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1rem;
  color: #CBD3D4;
}
.text-section h3 { margin-top: 18px; color: #84C5AB; font-size: 1.07rem; font-weight: 700; }

/* MAP / LOCATION */
.location-map-section .static-proximity-map {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: #232A2C;
  border-radius: 9px;
  margin-bottom: 12px;
}
.address-highlight {
  background: #202A2C;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 18px;
  color: #E8F6F2;
}

/* OPENING HOURS */
.opening-hours {
  background: #202A2C;
  border-radius: 7px;
  color: #A2B7B7;
  font-size: 0.97rem;
  padding: 10px 15px;
  margin: 16px 0 12px 0;
}

/* THANK YOU PAGE */
.next-steps-info img {
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

/* SITE FOOTER ========================== */
.site-footer {
  background: #1A1C1F;
  padding: 56px 0 22px 0;
  border-top: 2.5px solid #38434A;
  font-size: 0.97rem;
  margin-top: 60px;
}
.site-footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
  flex-wrap: wrap;
}
.site-footer nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 0;
}
.site-footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
  color: #AEB5B7;
}
.site-footer img {
  height: 48px;
  margin-bottom: 10px;
}
.footer-copy {
  color: #555F6A;
  font-size: 0.92rem;
  margin-top: 12px;
}
@media (max-width: 750px) {
  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 8px;
    gap: 20px;
  }
  .site-footer nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }
}
/* ==========================
   BUTTONS, INPUTS, MICRO-ACTS
   ========================== */
button, .btn-primary, input[type='submit'] {
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, border 0.18s;
  outline: none;
  border: none;
}
button:active, button:focus { outline:2px solid #84C5AB; }
input, textarea, select {
  background: #202426;
  color: #F7FBF9;
  border: 1.2px solid #38434A;
  border-radius: 5px;
  padding: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
  border: 1.6px solid #84C5AB;
}

/* HOVERABLE CARD/ITEM EFFECTS */
.card:hover, .feature-item:hover, .service-category:hover, .faq-item:hover {
  box-shadow: 0 6px 36px 0 #84c5ab12, 0 1.5px 12px 0 rgba(43,55,43, 0.13);
  border-color: #84C5AB !important;
}

/* ==========================
   RESPONSIVE (MOBILE FIRST)
   ========================== */
@media (max-width: 650px) {
  h1   { font-size: 1.36rem; }
  h2   { font-size: 1.07rem; }
  h3   { font-size: 1.01rem; }
  .container { padding: 0 3px; }
  .service-category,
  .feature-item,
  .testimonial-card,
  .case-study-summary {
    border-radius: 7px;
    padding: 13px 8px;
    font-size: 0.94rem;
  }
  .contact-info-snippet, .address-highlight, .opening-hours {
    padding: 10px 8px;
    font-size: 0.92rem;
  }
}

/* ==============================
   COOKIE CONSENT BANNER & MODALS
   ============================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  background: #23292C;
  color: #F7FBF9;
  padding: 22px 32px 19px 32px;
  box-shadow: 0 -2px 13px 0 #181C1F77;
  z-index: 2222;
  width: 100%;
  min-height: 64px;
  font-size: 1rem;
  animation: cookieFadeIn 0.5s cubic-bezier(0.56,0.17,0.45,1.18);
}
@media (max-width: 650px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 10px 13px 10px;
    font-size: 0.98rem;
  }
}
@keyframes cookieFadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 18px;
  font-size: 1rem;
  border-radius: 6px;
  background: #20696D;
  color: #F7FBF9;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn:hover { background: #84C5AB; color: #24292C; }
.cookie-btn.secondary {
  background: #38434A;
  color: #BEE9D1;
}
.cookie-btn.secondary:hover {
  background: #0b1618;
  color: #FFF;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(28, 32, 34, 0.73);
  z-index: 2999;
  animation: cookieFadeIn 0.3s cubic-bezier(0.34,0.25,0.45,1.11);
}
.cookie-modal {
  background: #222629;
  color: #F7FBF9;
  border-radius: 13px;
  padding: 30px 32px 22px 32px;
  box-shadow: 0 4px 42px 0 #16181A49;
  max-width: 410px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 1.025rem;
}
.cookie-modal h2 {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 7px;
  color: #84C5AB;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #1A1D1F;
  border-radius: 7px;
  padding: 9px 13px;
  margin-bottom: 9px;
}
.cookie-category label {
  font-size: 1rem;
  color: #D3E1E2;
}
.cookie-category input[type='checkbox'] {
  accent-color: #20696D;
  width: 19px; height: 19px;
}
.cookie-category.essential label {
  color: #84C5AB;
  font-weight: 700;
}

.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: #84C5AB;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 3050;
}

@media (max-width: 400px){
  .cookie-modal {
    padding: 14px 3px 8px 5px;
    min-width: 0;
    font-size: 0.98rem;
  }
  .cookie-modal-close { right: 9px; top:10px; }
}

/* MICRO-INTERACTIONS & TRANSITIONS ========= */
*, *:before, *:after {
  transition: background-color 0.22s, color 0.18s, box-shadow 0.17s, border 0.18s;
}

/* METALLIC & INDUSTRIAL ACCENTS  =========== */
.feature-item, .service-category, .case-study-summary, .card {
  border-left: 5px solid #465b5b;
  box-shadow: 0 1.5px 4px 0 #2328291e, 0 1px 8px rgba(48,60,60,0.08);
}
.feature-item:hover, .service-category:hover, .case-study-summary:hover, .card:hover {
  border-left: 5px solid #84C5AB;
  box-shadow: 0 3px 11px 0 #20696d44;
}

/* UTILITY CLASSES ================= */
.hide {display: none !important;}
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.flex-center {justify-content: center; align-items: center;}
.align-start {align-items: flex-start;}

/* END ===== GlanzWiese Industrial Modern ===== */