/* 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;
}

/* Box sizing for all */
*, *::before, *::after {
  box-sizing: inherit;
}

html {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #191C1A;
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  background: #191C1A;
  color: #FAFAF4;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FAFAF4;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 10px; }

p, ul, ol, li, a, strong, span, label, input, button {
  font-family: 'Roboto', Arial, sans-serif;
}

p {
  color: #E0E1DE;
  font-size: 1rem;
  margin-bottom: 18px;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
}

strong {
  color: #C6E377;
  font-weight: 700;
}

a {
  color: #C6E377;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(.67,.02,.41,.98);
}
a:hover, a:focus {
  color: #fff;
  text-decoration: underline;
}

/* CONTAINERS & LAYOUTS */

.container {
  width: 100%;
  max-width: 1192px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 900px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.card {
  background: #202423;
  border: 1px solid #333d33;
  box-shadow: 0 2px 8px rgba(35, 73, 61, 0.18);
  border-radius: 14px;
  flex: 1 1 240px;
  min-width: 240px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s cubic-bezier(.67,.02,.41,.98), box-shadow 0.18s cubic-bezier(.67,.02,.41,.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 6px 22px rgba(35, 73, 61, 0.28);
  border-color: #C6E377;
  z-index: 3;
}

.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 {
  background: #FAFAF4;
  color: #222;
  border-left: 4px solid #23493D;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(50,63,50,0.07);
  transition: box-shadow 0.13s;
  min-width: 0;
  max-width: 680px;
}
.testimonial-card .text-section p {
  color: #222;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: #23493D;
}
.testimonial-card img {
  vertical-align: middle;
  height: 20px;
  width: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 52px;
  height: auto;
  margin-bottom: 10px;
  filter: grayscale(60%) brightness(1.1);
}

/* HERO- & PAGE SPACING */
main > section {
  margin-bottom: 60px;
  padding: 40px 0 10px 0;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-placeholder {
  background: #222;
  color: #C6E377;
  text-align: center;
  padding: 32px 0;
  margin-top: 18px;
  border-radius: 8px;
  border: 1px dashed #fff2;
  font-size: 1rem;
  font-family: inherit;
}

/* HEADER & NAVIGATION */
header {
  background: #181B1C;
  border-bottom: 2px solid #333d33;
  box-shadow: 0px 4px 18px 0 rgba(24,27,28,0.14);
  position: sticky;
  top: 0;
  z-index: 30;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 70px;
}
nav a img {
  height: 42px; width: auto;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin-left: 32px;
}
nav ul li a {
  padding: 5px 8px;
  color: #C6E377;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 1rem;
  border-radius: 3px;
  transition: background 0.15s, color 0.15s;
}
nav ul li a:hover, nav ul li a:focus, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #333d33;
  color: #fff;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  padding: 0.64em 1.7em;
  border: none;
  border-radius: 80px;
  transition: background 0.17s, box-shadow 0.14s, color 0.14s;
  box-shadow: 0 2px 8px rgba(50,63,50,0.04);
  margin-bottom: 0;
  cursor: pointer;
  min-width: 180px;
  margin-top: 14px;
  text-align: center;
}

.btn-primary {
  background: #23493D;
  color: #C6E377;
  border: 1.5px solid #C6E377;
  box-shadow: 0 2px 16px rgba(198, 227, 119, 0.09);
}
.btn-primary:hover, .btn-primary:focus {
  background: #C6E377;
  color: #23493D;
  border-color: #23493D;
  box-shadow: 0 6px 36px rgba(198, 227, 119, 0.16);
}

.btn-secondary {
  background: #C6E377;
  color: #23493D;
  border: 1.5px solid #23493D;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #23493D;
  color: #C6E377;
  border-color: #C6E377;
}

/* Forms */
input[type="email"], input[type="text"], input[type="search"], textarea {
  width: 100%;
  padding: 11px 16px;
  background: #252927;
  border: 1.3px solid #333d33;
  border-radius: 8px;
  color: #FAFAF4;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
  transition: border 0.14s, background 0.15s;
}
input[type="email"]:focus, input[type="text"]:focus, textarea:focus {
  border-color: #C6E377;
  outline: none;
  background: #222;
}

/* FOOTER */
footer {
  background: #1A1D1A;
  color: #A2AD9A;
  margin-top: 38px;
  border-top: 2px solid #333d33;
  padding-bottom: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 0;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
footer ul li a {
  color: #C6E377;
  font-size: 0.98rem;
}
footer .text-section p, footer .text-section {
  color: #A2AD9A;
  font-size: 1rem;
}

/* ICONS */
img[alt^='icon-'], .text-section img {
  display: inline;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  filter: grayscale(70%) brightness(1.2);
}

/* COOKIE BANNER & COOKIE MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #222523;
  color: #C6E377;
  border-top: 2px solid #333d33;
  box-shadow: 0 -6px 32px rgba(35,73,61,0.18);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 24px 16px;
  gap: 28px;
  z-index: 3000;
  animation: slideUp 0.3s cubic-bezier(.67,.02,.41,.98);
}
.cookie-banner p {
  margin-bottom: 0;
  color: #C6E377;
  font-size: 1.07rem;
  max-width: 540px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  border-radius: 32px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .cookie-accept {
  background: #C6E377;
  color: #23493D;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #fff;
}
.cookie-banner .cookie-reject {
  background: #23493D;
  color: #C6E377;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #A2AD9A;
  color: #181B1C;
}
.cookie-banner .cookie-settings {
  background: transparent;
  border: 1.2px solid #C6E377;
  color: #C6E377;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #C6E377;
  color: #23493D;
}

/* Cookie modal overlay */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(22,24,22,0.78);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.19s;
}
.cookie-modal {
  background: #202423;
  color: #C6E377;
  padding: 38px 28px 34px 28px;
  border-radius: 18px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 10px 36px 0 rgba(35,73,61,0.24);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: slideDown 0.25s cubic-bezier(.68,.08,.51,1.03);
}
.cookie-modal h3 {
  color: #C6E377;
  margin-bottom: 10px;
  font-size: 1.35rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-modal label {
  color: #E0E1DE;
  font-size: 1rem;
  padding-left: 2px;
}
.cookie-modal input[type="checkbox"] {
  width: 18px; height: 18px;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-modal .essential {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Animations for banner & modal */
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes slideDown {
  from { transform: translateY(-40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 16px; right: 22px;
  padding: 8px 14px;
  background: #23493D;
  color: #C6E377;
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  z-index: 500;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #C6E377;
  color: #23493D;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #222523ee;
  z-index: 1999;
  transform: translateX(-110vw);
  transition: transform 0.33s cubic-bezier(.67,.02,.41,.98);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu .mobile-menu-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: transparent;
  color: #C6E377;
  font-size: 2.3rem;
  border: none;
  z-index: 2010;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu .mobile-menu-close:hover, .mobile-menu .mobile-menu-close:focus {
  color: #fff;
}
.mobile-menu .mobile-nav {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
.mobile-nav a {
  color: #C6E377;
  font-size: 1.24rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 0;
  transition: color 0.14s, background 0.13s;
  min-width: 200px;
  text-align: center;
  border-radius: 7px;
}

/*--- RESPONSIVE DESIGN ---*/
@media (max-width: 1100px) {
  .container {
    max-width: 960px;
  }
  .content-wrapper {
    max-width: 740px;
  }
}
@media (max-width: 900px) {
  nav ul {
    gap: 10px;
    margin-left: 18px;
  }
}
@media (max-width: 768px) {
  .container { max-width: 100%; padding-left: 10px; padding-right: 10px; }
  .content-wrapper { max-width: 96vw; padding: 0 3vw; }
  .section, main > section { padding: 24px 0 4px 0; margin-bottom: 36px; }
  nav, .footer .content-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  nav ul {
    display: none;
  }
  nav a.btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 12px; right: 14px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    max-width: 96vw;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .map-placeholder {
    padding: 18px 0;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    font-size: 0.99rem;
    padding: 15px 8px;
  }
  .cookie-modal {
    min-width: 98vw;
    padding: 15px 10px 18px 10px;
    font-size: 0.99rem;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.28rem; }
  h3 { font-size: 1.1rem; }
  .btn-primary, .btn-secondary { min-width: 120px; font-size: 0.89rem; padding: 0.52em 1.1em; }
  nav a img, .footer-logo img { width: 38px; }
}

/*--- UTILITY CLASSES ---*/
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-8 { margin-bottom: 8px !important; }

/*--- INDUSTRIAL MODERN STYLES & EFFECTS ---*/
body, .card, header, footer, .map-placeholder, .cookie-banner, .cookie-modal {
  /* Subtle metallic / industrial feel shadow */
  box-shadow: 0 2px 30px rgba(42,59,42,0.08) inset;
}
.card, .testimonial-card, .map-placeholder {
  /* Subtle metallic border top accent */
  border-top: 2.5px solid #A2AD9A33;
}

/* Decorative metallic accent. Only for larger screens. */
@media (min-width: 1100px) {
  .container {
    border-left: 2px solid #333d33;
    border-right: 2px solid #333d33;
  }
}

hr { border: none; border-top: 2px solid #333d33; margin: 28px 0; }

table { width: 100%; border-collapse: collapse; margin: 18px 0; }
th, td { border: 1px solid #222; padding: 9px; text-align: left; }

/*--- FOCUS VISIBLE FOR ACCESSIBILITY ---*/
:focus {
  outline: 2px solid #C6E377;
  outline-offset: 2px;
  z-index: 12;
}

/*--- MISCELLANEOUS ---*/
::-webkit-input-placeholder { color: #A2AD9A; opacity: 1; }
::-moz-placeholder { color: #A2AD9A; opacity: 1; }
:-ms-input-placeholder { color: #A2AD9A; opacity: 1; }
::placeholder { color: #A2AD9A; opacity: 1; font-size: 1rem; }

/* Hide scrollbars for menu overlay on mobile */
.mobile-menu {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu:not(.open) {
  pointer-events: none;
}

/* Hide cookie modal unless activated (modal logic to be handled in JS) */
.cookie-modal-backdrop {
  display: none;
}
.cookie-modal-backdrop.open {
  display: flex;
}

/*----- END OF CSS -----*/
