/* 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background-color: #1a2327;
  color: #f4f4f4;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #F5A623;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #FAFAFA;
  outline: none;
}
ul, ol {
  padding-left: 1.25em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #FAFAFA;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.75rem; letter-spacing: 0.01em; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4, h5, h6 { font-size: 1.04rem; font-weight: 500; color: #cccccc; }

/* GENERAL CONTAINER LAYOUTS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* --- SECTIONS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(32,91,52, 0.13);
  border-radius: 16px;
  box-shadow: 0 6px 28px 0 rgba(28,34,37,0.17);
}
.hero {
  background: linear-gradient(100deg, #23282d 70%, #263126 100%);
  padding: 56px 0 44px 0;
  margin-bottom: 44px;
  border-radius: 0 0 32px 32px;
}
.hero h1 {
  color: #FAFAFA;
  font-size: 2.5rem;
  line-height: 1.13;
}
.hero p {
  color: #e0e6e2;
  font-size: 1.13rem;
}

/* --- NAVIGATION HEADER --- */
header {
  width: 100%;
  background: #23282d;
  box-shadow: 0 1px 10px 0 rgba(36,38,41,0.08);
  padding: 0 0;
  min-height: 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 50;
}
.logo-link {
  display: flex;
  align-items: center;
  margin: 0 16px 0 20px;
  flex-shrink: 0;
}
header img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 28px;
  flex: 1;
}
.main-nav a {
  color: #e0e6e2;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 8px;
  border-radius: 6px;
  font-size: 1.06rem;
  transition: background 0.2s, color 0.15s;
}
.main-nav a:focus, .main-nav a:hover {
  color: #FAFAFA;
  background: #205B34;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F5A623;
  font-size: 2rem;
  margin: 0 18px 0 auto;
  padding: 8px 18px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.18s;
  z-index: 105;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #263126;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #23282d;
  box-shadow: 0 1px 24px 4px rgba(16,21,24,0.35);
  transform: translateX(-100vw);
  transition: transform 0.35s ease;
  z-index: 130;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F5A623;
  font-size: 2.2rem;
  margin: 26px 0 0 24px;
  cursor: pointer;
  border-radius: 6px;
  padding: 4px 18px 8px 4px;
  align-self: flex-end;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #205B34;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding: 40px 36px 16px 36px;
  margin-top: 42px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  color: #FAFAFA;
  padding: 16px 0;
  border-bottom: 1px solid #444950;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #205B34;
}

/* --- CTA BUTTONS --- */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.08rem;
  background: #23282d;
  color: #F5A623;
  text-transform: none;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid #205B34;
  box-shadow: 0 2px 10px 0 rgba(37,47,41,0.13);
  transition: background 0.22s, color 0.19s, transform 0.17s;
  cursor: pointer;
  outline: none;
  margin-top: 16px;
}
.cta.primary {
  background: #205B34;
  color: #FAFAFA;
  border-color: #205B34;
}
.cta.secondary {
  background: #22272b;
  color: #F5A623;
  border: 2px solid #F5A623;
}
.cta:focus, .cta:hover {
  background: #F5A623;
  color: #23282d;
  border-color: #F5A623;
  transform: translateY(-2px) scale(1.04);
}

/* --- FLEXBOX PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #23282d;
  border-radius: 10px;
  box-shadow: 0 4px 16px 0 rgba(34, 36, 40, 0.13);
  margin-bottom: 20px;
  padding: 24px 24px 20px 24px;
  min-width: 260px;
  flex: 1 1 280px;
}
.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;
  padding: 20px;
  margin-bottom: 24px;
  background: #FAFAFA;
  color: #23282d;
  border-left: 4px solid #205B34;
  border-radius: 14px;
  box-shadow: 0 3px 12px 0 rgba(36,41,44,0.08);
  font-size: 1.09rem;
  max-width: 440px;
}
.testimonial-card p {
  color: #23282d;
  font-size: 1.07rem;
  font-style: italic;
}
.testimonial-card span {
  font-weight: 600;
  color: #205B34;
  font-size: 1rem;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 0 0;
}
.feature-grid > div {
  background: #23282d;
  border: 1.5px solid #3e444b;
  border-radius: 10px;
  padding: 24px 18px 20px 20px;
  min-width: 210px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(34, 46, 41, 0.12);
}
.feature-grid > div:hover {
  box-shadow: 0 10px 28px 0 rgba(35, 91, 52, 0.18);
  border-color: #F5A623;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- CONTACT STYLES --- */
.contact-summary, .contact-info, .map-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-summary a,
.contact-summary .cta.secondary {
  margin-top: 10px;
}
.contact-info p,img {
  vertical-align: middle;
}

.map-section {
  background: #23282d;
  border-radius: 12px;
  padding: 18px 20px;
  min-height: 90px;
  align-items: flex-start;
  box-shadow: 0 2px 8px 0 rgba(34, 46, 41, 0.14);
  gap: 10px;
}

/* --- FOOTER --- */
footer {
  background: #161b1e;
  padding: 40px 0 22px 0;
  color: #c6c9ca;
  width: 100%;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
footer nav {
  display: flex;
  gap: 22px;
  flex-direction: row;
}
footer nav a {
  color: #F5A623;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.17s;
}
footer nav a:focus, footer nav a:hover {
  color: #FAFAFA;
}
footer img {
  height: 30px;
  margin-bottom: 9px;
}
footer div > p {
  color: #A4B0AD;
  font-size: 0.96rem;
}

/* --- UTILITY SPACING --- */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Misc Class Utilities */
ul li {
  margin-bottom: 8px;
  font-size: 1.06rem;
  padding-left: 4px;
}
ul li img {
  margin-right: 10px;
  height: 1.17em;
  vertical-align: middle;
}
p {
  color: #e0e6e2;
  font-size: 1.07rem;
  margin-bottom: 10px;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #23282d;
  color: #f8f8f8;
  box-shadow: 0 0 16px 4px rgba(34,37,44,0.65);
  padding: 26px 16px 16px 16px;
  z-index: 2000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  transition: transform 0.38s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .banner-text {
  flex: 1 1 200px;
  font-size: 1rem;
}
.cookie-banner .banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 5px;
  font-size: 1rem;
  padding: 10px 18px;
  margin: 0;
  border: 0;
  outline: none;
  background: #205B34;
  color: #fafafa;
  transition: background 0.18s, color 0.22s;
  cursor: pointer;
}
.cookie-banner button.settings {
  background: #F5A623;
  color: #23282d;
}
.cookie-banner button.reject {
  background: #434b3d;
  color: #F5A623;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #F5A623;
  color: #23282d;
}
/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,44,50,0.9);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s;
}
.cookie-modal {
  background: #23282d;
  border-radius: 21px;
  min-width: 320px;
  max-width: 99vw;
  padding: 38px 36px 34px 32px;
  box-shadow: 0 8px 40px 0 rgba(34,38,39,0.42);
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  color: #FAFAFA;
}
.cookie-modal h2 {
  color: #FAFAFA;
  font-size: 1.53rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal .cookie-options {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal .cookie-toggle-group {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-modal label {
  font-size: 1.08rem;
  color: #e0e6e2;
  flex: 1 1 100px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #205B34;
  width: 21px;
  height: 21px;
  margin-right: 8px;
  border-radius: 3px;
}
.cookie-modal .always-on {
  color: #F5A623;
  font-weight: 600;
  margin-left: 8px;
  font-size: 0.98em;
}
.cookie-modal .modal-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}
.cookie-modal button {
  background: #205B34;
  color: #FAFAFA;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 5px;
  padding: 11px 22px;
  border: none;
  transition: background 0.19s, color 0.16s;
  cursor: pointer;
  font-size: 1.08rem;
}
.cookie-modal button.close-modal {
  background: #23282d;
  color: #F5A623;
  position: absolute;
  top: 18px; right: 24px;
  font-size: 1.6rem;
  width: 38px; height: 38px;
  text-align: center;
  line-height: 38px;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #F5A623;
  color: #23282d;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 870px) {
  .feature-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  header, .main-nav, .footer .content-wrapper {
    flex-direction: row;
  }
  header {
    padding: 7px 0 7px 0;
    min-height: 54px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper, .section, section {
    padding: 24px 7vw;
  }
  .hero {
    padding: 35px 0 32px 0;
  }
  .feature-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 100%;
  }
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}
@media (max-width: 590px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.1rem; }
  body, p, a, li {
    font-size: 0.97rem;
  }
  .container {
    padding: 0 2vw;
  }
  .content-wrapper, .section, section {
    padding: 16px 4vw;
  }
  header img {
    height: 29px;
  }
  footer img {
    height: 25px;
  }
}
@media (max-width: 480px) {
  .mobile-nav a {
    padding: 14px 0;
    font-size: 0.99rem;
  }
  .cookie-modal {
    padding: 21px 9vw 16px 7vw;
    min-width: unset;
  }
}

/* --- MICRO-INTERACTIONS & EFFECTS --- */
.card, .feature-grid > div, .cta {
  transition: box-shadow 0.19s, border-color 0.2s, background 0.18s, color 0.17s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 8px 26px 0 rgba(245,166,35,0.11);
  border-color: #F5A623;
  transform: translateY(-2px) scale(1.01);
}
.cta:active {
  transform: scale(0.98);
}

/* --- CUSTOM SCROLLBAR (for dark modern look) --- */
::-webkit-scrollbar {
  width: 12px;
  background: #23282d;
}
::-webkit-scrollbar-thumb {
  background: #205B34;
  border-radius: 7px;
  border: 2px solid #23282d;
}

/* --- FOR ACCESSIBILITY --- */
:focus {
  outline: 2px solid #F5A623;
  outline-offset: 2px;
}

/* --- INDUSTRIAL-MODERN METALLIC ACCENTS --- */
.card, .feature-grid > div, .section, .contact-summary, .map-section {
  border: 1.4px solid #42494e;
  background: linear-gradient(110deg, #23282d 80%, #323e3a 95%);
}
.testimonial-card {
  border-left: 4px solid #205B34;
  background: #FAFAFA;
}

/* --- ICONS AS METALLIC ACCENTS --- */
ul li img, p img, .contact-info img {
  filter: brightness(0.95) contrast(1.4) grayscale(0.3) drop-shadow(0 1px 2px #26312670);
  opacity: 0.86;
}

/* --- HIGHLIGHTS, BADGES --- */
.badge {
  background: #F5A623;
  color: #23282d;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 11px;
  letter-spacing: 0.04em;
  margin-left: 6px;
}

/* --- CARD CONTAINER: shoulder-to-shoulder flex, non-overlapping --- */
.card-container, .feature-grid, .content-grid, .section, .testimonial-card, .text-image-section {
  gap: 24px;
}
.card-container, .feature-grid, .content-grid {
  flex-wrap: wrap;
  align-items: stretch;
}

/* --- Ensure all card/section elements have a minimum margin between them --- */
.card, .feature-grid > div, .testimonial-card {
  margin-bottom: 20px;
}

/* --- Communication / Contact Highlight --- */
.contact-highlight {
  background: rgba(32,91,52,0.07);
  border: 1.5px solid #205B34;
}
.contact-highlight p {
  color: #e0e6e2;
}

/* Accessibility: ensure color contrast in review/testimonial sections */
.testimonial-card {
  background: #FAFAFA !important;
  color: #23282d !important;
}
