/* RESET & BASE STYLES */
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: #181F26;
  color: #e4e6ea;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
a {
  color: #F8E1B9;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #688E4E;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
img {
  max-width: 100%;
  display: block;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: 1em;
  background: none;
  outline: none;
  border: none;
  color: inherit;
}
button, .btn-primary {
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
}

/*---- BRAND FONTS ----*/
h1, h2, h3, h4, h5, h6, .btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 { font-size: 2.2rem; margin-bottom: 24px; }
h2 { font-size: 1.5rem;  margin-bottom: 20px; }
h3 { font-size: 1.2rem;  margin-bottom: 12px; }
h4 { font-size: 1.1rem;  margin-bottom: 10px; }

/*---- CONTAINER & LAYOUT ----*/
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/*---- SPACING PATTERNS ----*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #23292f;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  padding: 24px;
  border: 1px solid #2d333a;
  transition: box-shadow 0.2s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 28px 0 rgba(32,67,109,0.18);
  z-index: 2;
}
.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;
  background: #ECECEC;
  color: #23292f;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 14px 0 rgba(40,40,40,0.07);
  min-width: 260px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  border-left: 6px solid #20436D;
  transition: transform 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 6px 30px 0 rgba(40,40,40,0.13);
  border-left-color: #688E4E;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*---- HEADER, NAVIGATION ----*/
header {
  background: #181F26;
  box-shadow: 0 2px 8px 0 rgba(32,67,109,0.08);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 16px;
}
.logo img {
  height: 44px;
  filter: grayscale(20%) brightness(0.96) contrast(115%);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  color: #F8E1B9;
  font-size: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .04em;
  position: relative;
  padding: 8px 4px;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.13s, color 0.13s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #688E4E;
  background: rgba(248,225,185,0.12);
}
.main-nav .btn-primary {
  margin-left: 14px;
}

/*---- BUTTONS ----*/
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #20436D;
  color: #F8E1B9;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1.08em;
  font-weight: 700;
  letter-spacing: .06em;
  border: 1px solid #3A4E63;
  box-shadow: 0 2px 10px 0 rgba(32,67,109,0.08);
  transition: background 0.18s, color 0.14s, transform 0.14s, box-shadow 0.18s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #688E4E;
  color: #222;
  border-color: #A9C88D;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 20px 0 rgba(88,142,78,0.16);
}

/*---- BURGER + MOBILE MENU ----*/
.mobile-menu-toggle {
  background: none;
  color: #F8E1B9;
  font-size: 2.2rem;
  border: none;
  display: none;
  z-index: 2022;
  border-radius: 10px;
  padding: 4px 10px;
  transition: background 0.13s, color 0.18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #23292f;
  color: #688E4E;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #1d2329;
  box-shadow: 8px 0 24px rgba(32,67,109,0.13);
  transform: translateX(-110vw);
  transition: transform 0.30s cubic-bezier(.64,.2,.46,1.04);
  z-index: 2025;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #F8E1B9;
  font-size: 2.1rem;
  margin: 22px 20px 0 auto;
  background: none;
  border: none;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #688E4E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin: 40px 0 0 0;
  gap: 24px;
  align-items: center;
}
.mobile-nav a {
  color: #ECECEC;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 6px;
  font-size: 1.13rem;
  padding: 20px 0;
  width: 82vw;
  max-width: 400px;
  text-align: center;
  background: none;
  transition: background 0.19s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #252c32;
  color: #688E4E;
}

/*---- HERO ----*/
.hero {
  padding: 64px 0 40px 0;
  background: linear-gradient(90deg, #23292f 55%, #181F26 100%);
  color: #F8E1B9;
  border-bottom: 2px solid #30363d;
  box-shadow: 0 10px 40px -18px #20436D40;
  /* Urban feel by using hard edges and citylike colors */
}
.hero h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero p {
  font-size: 1.18rem;
  max-width: 600px;
  color: #E6E6E6;
  font-weight: 400;
  margin-bottom: 32px;
}

/*---- GRID PATTERNS / COMMON FLEX LAYOUTS ----*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-iconed {
  background: #22282d;
  border-radius: 12px;
  padding: 26px 24px 22px 24px;
  margin-bottom: 20px;
  min-width: 250px;
  flex: 1 1 230px;
  box-shadow: 0 2px 12px 0 rgba(32,67,109,0.10);
  border-left: 6px solid #688E4E;
  color: #fafafe;
  transition: border-color 0.18s, box-shadow 0.19s;
}
.feature-iconed:hover, .feature-iconed:focus {
  border-left-color: #F8E1B9;
  box-shadow: 0 8px 38px 0 rgba(104,142,78,0.16);
}
.feature-iconed img {
  width: 46px;
  margin-bottom: 16px;
  filter: grayscale(30%) brightness(0.94) contrast(1.2) drop-shadow(0 2px 6px #3332);
}

.service-list, .service-categories ul, .detailed-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.service-card {
  background: #23292f;
  border-radius: 10px;
  padding: 24px;
  min-width: 220px;
  flex: 1 1 220px;
  box-shadow: 0 2px 14px rgba(32,67,109,0.08);
  border: 1px solid #313840;
  color: #e4e6ea;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, border-color 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 22px 0 rgba(185, 217, 136, 0.09);
  border-color: #688E4E;
}
.service-card img {
  width: 42px;
  margin-bottom: 13px;
  filter: grayscale(10%) brightness(1.09);
}

/*---- TESTIMONIALS ----*/
.testimonials {
  background: #212831;
  padding: 60px 0;
}
.testimonials h2 {
  color: #F8E1B9;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.stars {
  color: #688E4E;
  letter-spacing: 2px;
  font-size: 1.13em;
  font-family: 'Montserrat', Arial, sans-serif;
}

/*---- CONTACT SECTION ----*/
.contact-details, .contact-info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  margin-bottom: 18px;
}
.contact-details img, .contact-info img {
  width: 28px;
  margin-bottom: 8px;
}
.map {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 22px 0;
}
.map img { width: 120px; opacity: 0.85; }
.opening-hours {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 22px;
}
.opening-hours img { width: 20px; }

/*---- BLOG ----*/
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.blog-post {
  background: #212831;
  border-radius: 10px;
  padding: 24px 20px;
  min-width: 210px;
  flex: 1 1 210px;
  color: #F8E1B9;
  border-left: 5px solid #688E4E;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(32,67,109,0.07);
  transition: border-color 0.14s, box-shadow 0.14s;
}
.blog-post:hover { border-left-color: #20436D; box-shadow: 0 5px 18px rgba(32,67,109,0.13); }
.category-tags {margin-top:14px;}
.category-tags span {
  display: inline-block;
  background: #323738;
  color: #B5B9C0;
  border-radius: 16px;
  font-size: 13px;
  padding: 3px 12px;
  margin-right: 8px;
}
.featured-posts ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-top: 8px;
}
.featured-posts li a {
  color: #F8E1B9;
  text-decoration: underline;
  transition: color 0.16s;
}
.featured-posts li a:hover {
  color: #688E4E;
}

/*---- MISC FLEX ----*/
.brand-values ul,
.history-timeline ul,
.numbers-and-stats ul,
.project-statistics, .milestone-numbers ul,
.highlighted-projects ul, .next-steps-list {
  margin: 0 0 20px 0;
  padding: 0 0 0 20px;
}
.achievement-badges {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 26px;
}
.achievement-badges img {
  width: 30px;
  margin-right: 6px;
  vertical-align: middle;
}
.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1em;
  color: #e4e6ea;
}
.icon-list img { width: 18px; }

/*---- SEARCH BAR ----*/
.search-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #22282d;
  border-radius: 8px;
  border: 1px solid #2d333a;
  max-width: 380px;
  padding: 4px 7px;
  margin-top: 18px;
  opacity: 0.65;
}
.search-bar input {
  flex: 1 1 auto;
  background: transparent;
  color: #ECECEC;
  padding: 10px 8px 10px 12px;
  font-size: 1em;
  border: none;
}
.search-bar button {
  background: none;
  border: none;
  padding: 6px 10px;
  cursor: not-allowed;
}
.search-bar img { width: 24px; opacity: 0.5; }

/*---- TEXT SECTION FOR POLICIES/LEGAL ----*/
.text-section {
  background: #22282d;
  border-radius: 10px;
  padding: 36px 28px;
  color: #ECECEC;
  border: 1px solid #313840;
  max-width: 900px;
  margin: 0 auto 40px auto;
  box-shadow: 0 2px 12px rgba(32,67,109,0.04);
}
.text-section h1, .text-section h2, .text-section h3 {
  color: #F8E1B9;
}
.text-section ul, .text-section ol {
  margin-left: 28px;
  margin-bottom: 16px;
}
.text-section p {
  margin-bottom: 12px;
}

/*---- FOOTER ----*/
footer {
  background: #181F26;
  padding: 32px 0 16px 0;
  color: #ECECEC;
  box-shadow: 0 -2px 16px 0 #2224;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #F8E1B9;
  font-size: 1rem;
  letter-spacing: .02em;
  text-decoration: underline dotted;
  padding: 3px 0;
  transition: color 0.15s;
}
.footer-nav a:hover { color: #688E4E; }
.footer-info {
  color: #b6b7b9;
  font-size: 0.96rem;
  margin-top: 12px;
}

/*---- COOKIE CONSENT BANNER ----*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #23292f;
  color: #F8E1B9;
  z-index: 4000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: center;
  padding: 26px 24px;
  box-shadow: 0 -2px 24px #20436d66;
  transition: transform 0.27s;
  transform: translateY(0);
  border-top: 2px solid #688E4E;
}
.cookie-banner.hide {
  transform: translateY(150%);
}
.cookie-banner .cookie-text {
  flex: 1 1 260px;
  min-width: 180px;
  font-size: 1rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button,
.cookie-settings-modal button.action-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  padding: 11px 20px;
  font-size: 1rem;
  margin: 0;
  background: #20436D;
  color: #F8E1B9;
  box-shadow: 0 2px 6px #2223;
  transition: background 0.14s, color 0.14s, transform 0.11s;
}
.cookie-banner button.reject {
  background: #23292f;
  border: 1px solid #688E4E;
  color: #688E4E;
}
.cookie-banner button.cookie-settings {
  background: #23292f;
  border: 1px solid #F8E1B9;
  color: #F8E1B9;
}
.cookie-banner button:hover, .cookie-banner button:focus,
.cookie-settings-modal button.action-btn:hover {
  background: #688E4E;
  color: #181F26;
  transform: scale(1.035);
}
.cookie-banner button.reject:hover {
  background: #3a444e;
  color: #F8E1B9;
}
.cookie-banner button.cookie-settings:hover{
  background: #F8E1B9;
  color: #23292f;
}

.cookie-settings-modal {
  position: fixed;
  left: 50%; top: 50%;
  width: 96vw;
  max-width: 410px;
  padding: 38px 28px 26px 28px;
  background: #22282d;
  color: #F8E1B9;
  box-shadow: 0 8px 44px #20436d44;
  border-radius: 14px;
  z-index: 4800;
  transform: translate(-50%, -48%) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.19s;
}
.cookie-settings-modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -48%) scale(1);
}
.cookie-settings-modal h3 {
  color: #F8E1B9;
  margin-bottom: 14px;
}
.cookie-settings-options {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
}
.cookie-option input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  background: #23292f;
  border: 2px solid #688E4E;
  border-radius: 3px;
  transition: background 0.13s;
  position: relative;
}
.cookie-option input[type=checkbox]:checked {
  background: #688E4E;
}
.cookie-option input[type=checkbox]:disabled {
  background: #686868;
  border-style: dotted;
  opacity: 0.7;
}
.cookie-settings-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 17px;
  background: none;
  border: none;
  color: #F8E1B9;
  font-size: 1.85em;
  transition: color 0.16s;
}
.cookie-settings-modal .close-modal:hover {
  color: #688E4E;
}
.cookie-settings-modal .actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}

/*---- ANIMATIONS / MICROINTERACTIONS ----*/
.card, .testimonial-card, .service-card, .feature-iconed, .blog-post {
  transition: box-shadow 0.19s, transform 0.18s, border-color 0.15s;
}
.btn-primary, .main-nav a, .mobile-nav a, .footer-nav a, .icon-list li {
  transition: color 0.13s, background 0.16s, border-color 0.14s, box-shadow 0.13s, transform 0.10s;
}

/*---- RESPONSIVE DESIGN ----*/
@media screen and (max-width: 1100px) {
  .container { max-width: 99vw; }
  .content-wrapper { gap: 18px; }
}
@media screen and (max-width: 880px) {
  .main-nav { gap: 9px; }
  .feature-grid { gap: 14px; }
  .testimonial-grid { gap: 14px; }
}
@media screen and (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section, .hero {
    padding-left: 0;
    padding-right: 0;
  }
  .content-grid, .feature-grid, .service-list, .testimonial-grid, .blog-list, .icon-list, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 14px;
    padding: 0;
  }
  .testimonial-card, .feature-iconed, .service-card, .blog-post {
    min-width: 0;
    padding: 20px 12px;
  }
  .blog-list, .testimonial-grid, .feature-grid {
    gap: 14px;
  }
  .hero h1 { font-size: 1.45rem; }
  .hero p { font-size: 1rem; }
  .hero, .section {
    padding: 28px 0;
  }
  .footer-nav { gap: 10px; font-size: 0.97em; }
}
@media screen and (max-width: 540px) {
  .hero, .section, .text-section {
    padding: 18px 2vw;
  }
  .text-section { padding: 20px 5vw; }
  .mobile-nav a { font-size: 1em; padding: 15px 0; }
  .cookie-banner { flex-direction: column; gap: 12px; padding: 16px 4vw; font-size: 15px; }
  .cookie-settings-modal { padding: 18px 5vw 12px 5vw; min-width: 0; max-width: 98vw; }
}

/*---- UTILITIES / HELPER CLASSES ----*/
.hide { display: none !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }

/*---- INDUSTRIAL MODERN ACCENTS ----*/
.card, .service-card, .feature-iconed, .blog-post {
  border-radius: 10px;
  border: 1px solid #313840;
  box-shadow: 0 2px 12px 0 rgba(105,142,78,0.10);
}
.card:before, .feature-iconed:before, .testimonial-card:before {
  content: '';
  display: block;
  position: absolute;
  left: -2px;
  top: 16px;
  width: 8px;
  height: 38px;
  background: linear-gradient(180deg, #5a7192 40%, #b3bbc1 100%);
  border-radius: 2px 8px 8px 2px;
  opacity: 0.09;
  z-index: 0;
  pointer-events: none;
}

/*---- FORMS (future-proof) ----*/
input[type=text], input[type=email], textarea {
  background: #23292f;
  color: #F8E1B9;
  border: 1.5px solid #314166;
  border-radius: 7px;
  padding: 10px 12px;
  margin-bottom: 15px;
  font-size: 1em;
  transition: border-color 0.17s;
}
input[type=text]:focus, input[type=email]:focus, textarea:focus {
  border-color: #688E4E;
}

/**** INDUSTRIAL FONTS FALLBACK ****/
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: local('Montserrat'), local('Montserrat-Regular'),
    url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'),
    url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
}

/*---- FOCUS RING FOR ACCESSIBILITY ----*/
:focus-visible {
  outline: 2px solid #688E4E !important;
  outline-offset: 2px;
  z-index: 10;
}

/**********************************************************/
/* DO NOT USE GRID OR ABSOLUTE POSITIONING FOR CONTENT */
/**********************************************************/
