/* CSS RESET & NORMALIZATION */
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;
  box-sizing: border-box;
}
body {
  background: #181C22;
  color: #F6F6F7;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
ul, ol {
  margin: 0 0 1.5em 1.1em;
  padding: 0;
}
li {
  margin-bottom: 8px;
}
a {
  color: #6FB549;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #FFF8F0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #FFF8F0;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
}
strong {
  font-weight: bold;
  color: #FFF8F0;
}
blockquote {
  border-left: 4px solid #6FB549;
  padding-left: 18px;
  font-style: italic;
  color: #23272C;
  background: #FFF8F0;
  margin-bottom: 12px;
}

/* MAIN LAYOUT CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(37, 42, 50, 0.92);
  border-radius: 18px;
  box-shadow: 0 3px 28px rgba(0,0,0,0.18), 0 0.5px 2px rgba(34, 37, 42, 0.11);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #23272C;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(36, 41, 49, 0.18);
  transition: box-shadow 0.22s, transform 0.22s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(52, 77, 122, 0.23), 0 2px 10px rgba(110, 183, 74, 0.09);
  transform: translateY(-6px) scale(1.02);
}
.card-content {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF8F0;
  color: #23272C;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(36, 41, 49, 0.08);
  margin-bottom: 20px;
  min-width: 0;
}
.testimonial-card blockquote {
  background: none;
  color: #23272C;
  border-left: 4px solid #20426b;
  margin: 0;
}
.testimonial-card strong {
  color: #20426B;
  letter-spacing: 0.5px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVBAR */
header {
  background: #181C22;
  border-bottom: 1.5px solid #23272C;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #F6F6F7;
  opacity: 1;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.16s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #23272C;
  color: #6FB549;
}
.main-nav .cta {
  background: #6FB549;
  color: #23272C;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 10px 18px;
  border-radius: 10px;
  margin-left: 16px;
  box-shadow: 0 2px 8px rgba(110,183,73,0.11);
  transition: background 0.22s, color 0.16s;
}
.main-nav .cta.primary {
  background: #6FB549;
  color: #181C22;
}
.main-nav .cta.primary:hover,
.main-nav .cta.primary:focus {
  background: #20426B;
  color: #FFF8F0;
}

/* HAMBURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: #20426B;
  color: #FFF8F0;
  border: none;
  border-radius: 8px;
  font-size: 2.2rem;
  padding: 4px 14px;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(37, 66, 107, 0.15);
  z-index: 300;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #6FB549;
  color: #23272C;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,28,34,0.97);
  z-index: 900;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.7,.3,.53,1.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 40px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #F6F6F7;
  border: none;
  font-size: 2.4rem;
  cursor: pointer;
  align-self: flex-end;
  margin: 22px 26px 0 0;
  padding: 2px 12px;
  transition: color 0.14s;
  z-index: 1001;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #6FB549;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  width: 100%;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  color: #F6F6F7;
  padding: 12px 0;
  border-radius: 7px;
  width: 90vw;
  display: block;
  transition: background 0.19s, color 0.15s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #23272C;
  color: #6FB549;
}

/* SECTIONS & FLEX LAYOUTS */
.feature-grid, .service-grid, .service-listings, .blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-grid > div, .service-grid > div, .service-listings > div, .blog-post-list > div {
  flex: 1 1 260px;
  background: #1E2127;
  color: #FFF8F0;
  border-radius: 12px;
  box-shadow: 0 1px 7px rgba(37, 66, 107, 0.08);
  padding: 28px 22px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.19s, transform 0.17s;
  border: 1.5px solid #20426B;
}
.feature-grid > div:hover, .service-grid > div:hover, .service-listings > div:hover, .blog-post-list > div:hover {
  box-shadow: 0 6px 22px rgba(111, 181, 73, 0.13);
  transform: translateY(-4px) scale(1.012);
  border-color: #6FB549;
}
.feature-grid img, .service-grid img, .service-listings img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 8px;
}

.categories-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.categories-list li {
  background: #20426B;
  color: #FFF8F0;
  padding: 6px 14px;
  border-radius: 8px;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #23272C;
  padding: 12px 16px;
  border-radius: 11px;
  margin-top: 20px;
}
.search-bar label {
  color: #FFF8F0;
  font-weight: 500;
}
.search-bar input {
  background: #FFF8F0;
  color: #23272C;
  border: none;
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.search-bar input:focus {
  outline: 2px solid #6FB549;
}

/* BUTTONS & CTA */
.cta {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 10px;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  background: #20426B;
  color: #FFF8F0;
  border: none;
  box-shadow: 0 2px 8px rgba(32,66,107,0.10);
  cursor: pointer;
  margin-top: 20px;
  margin-right: 12px;
  transition: background 0.18s, color 0.16s, box-shadow 0.17s, transform 0.14s;
}
.cta.primary {
  background: #6FB549;
  color: #23272C;
  box-shadow: 0 2px 8px rgba(110,183,73,0.17);
}
.cta.secondary {
  background: transparent;
  color: #6FB549;
  border: 2px solid #6FB549;
  box-shadow: none;
}
.cta:hover,.cta:focus {
  background: #23272C;
  color: #6FB549;
  transform: translateY(-2px) scale(1.008);
  box-shadow: 0 6px 22px rgba(32,66,107,0.21);
}
.cta.primary:hover, .cta.primary:focus {
  background: #20426B;
  color: #FFF8F0;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #6FB549;
  color: #23272C;
}

/* FOOTER */
footer {
  background: #1E2127;
  color: #BBBCC0;
  padding: 52px 0 24px 0;
  border-top: 2px solid #23272C;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: #6FB549;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  padding: 6px 13px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #20426B;
  color: #FFF8F0;
}
.footer-logo img {
  height: 33px;
  margin: 12px 0 18px 0;
}

/* TESTIMONIALS */
.star-rating-aggregate {
  color: #6FB549;
  font-size: 1.1rem;
  padding: 10px 22px;
  background: #23272C;
  border-radius: 9px;
  margin: 16px 0;
  display: inline-flex;
}

/* GUARANTEES/ICONS LISTS */
.guarantee-icons, .guarantees {
  display: flex;
  gap: 33px;
  align-items: center;
  margin: 26px 0 16px 0;
}
.guarantee-icons img, .guarantees img {
  height: 48px;
  width: auto;
  filter: grayscale(0.25) contrast(1.08);
  transition: filter 0.12s;
}
.guarantee-icons img:hover, .guarantees img:hover {
  filter: grayscale(0) contrast(1.25) drop-shadow(0 1px 4px #6FB54988);
}

/* UTILITY STYLES */
.address-block, .opening-hours, .team-intro, .benefits-text, .memorable-moments-list, .mission-statement, .next-steps {
  background: #23272C;
  color: #FFF8F0;
  border-radius: 10px;
  padding: 18px 18px 16px 18px;
  margin: 14px 0 18px 0;
  font-size: 1.05rem;
}

.contact-info {
  margin: 18px 0 16px 0;
  border-left: 3px solid #6FB549;
  padding-left: 20px;
}

/* MODALS AND COOKIE BANNER */
#cookie-banner, .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #20242a;
  color: #FFF8F0;
  border-top: 2.5px solid #6FB549;
  box-shadow: 0 -4px 32px rgba(32,66,107,0.13);
  padding: 22px 16px 18px 16px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  animation: bannerSlideUp 0.55s cubic-bezier(.6,1.1,.32,1.18);
  font-size: 1rem;
}
@keyframes bannerSlideUp {
  from {transform: translateY(100%);}
  to   {transform: translateY(0);}
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  margin-top: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner .cta, .cookie-banner .cookie-btn {
  min-width: 140px;
  padding: 10px 20px;
  font-size: 1.03rem;
  border-radius: 9px;
  border: none;
  font-weight: 700;
  background: #6FB549;
  color: #23272C;
  transition: background 0.16s, color 0.13s, transform 0.14s;
  cursor: pointer;
}
.cookie-banner .cookie-btn.reject {
  background: #23272C;
  color: #6FB549;
  border: 2px solid #6FB549;
}
.cookie-banner .cookie-btn.settings {
  background: #20426B;
  color: #FFF8F0;
}
.cookie-banner .cookie-btn:focus, .cookie-banner .cookie-btn:hover {
  background: #FFF8F0;
  color: #23272C;
  transform: translateY(-2px) scale(1.04);
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #6FB549;
  color: #23272C;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #6FB549;
  color: #181C22;
}

#cookie-modal, .cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1400;
  background: rgba(37,42,50, 0.81);
  justify-content: center;
  align-items: center;
  animation: modalPopIn 0.41s cubic-bezier(.6,1,.39,1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes modalPopIn {
  from { opacity: 0; transform: scale(0.92);}
  to   { opacity: 1; transform: scale(1);}
}
.cookie-modal-content {
  background: #FFF8F0;
  color: #23272C;
  border-radius: 18px;
  padding: 42px 28px 30px 28px;
  max-width: 420px;
  box-shadow: 0 6px 28px rgba(32,66,107,0.23);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}
.cookie-modal-content h2 {
  font-size: 1.45rem;
  color: #20426B;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-size: 1.05rem;
  color: #20426B;
  font-weight: 600;
  margin-top: 2px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #6FB549;
  width: 18px; height: 18px;
  border-radius: 6px;
}
.cookie-category.essential label {
  color: #20426B;
  font-weight: 700;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  color: #20426B;
  font-size: 1.9rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.12s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #6FB549;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal-actions button {
  font-size: 1rem;
  border-radius: 7px;
  padding: 9px 19px;
  font-family: inherit;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: #6FB549;
  color: #23272C;
  transition: background 0.14s, color 0.13s;
}
.cookie-modal-actions button.cancel {
  background: #23272C;
  color: #6FB549;
  border: 2px solid #6FB549;
}
.cookie-modal-actions button:hover,
.cookie-modal-actions button:focus {
  background: #20426B;
  color: #FFF8F0;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 1100px) {
  .feature-grid > div, .service-grid > div, .service-listings > div, .blog-post-list > div {
    min-width: 170px;
    max-width: 100%;
    flex: 1 1 170px;
    padding: 24px 15px;
  }
}

@media (max-width: 900px) {
  h1 {font-size: 2.1rem;}
  h2 {font-size: 1.5rem;}
  .content-wrapper {
    padding: 28px 8px;
  }
  .container {
    padding: 0 8vw;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    height: 70px;
    padding: 0 6vw;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, .content-wrapper {
    padding: 18px 6px;
    margin-bottom: 40px;
    border-radius: 11px;
  }
  .feature-grid, .service-grid, .service-listings, .blog-post-list {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .guarantee-icons, .guarantees {
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 16px;
  }
  .footer-nav {
    gap: 13px;
    font-size: 0.93rem;
  }
  .footer-logo img {
    height: 24px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width:495px) {
  h1 {font-size: 1.15rem;}
  h2 {font-size: 1.06rem;}
  h3 {font-size: 1rem;}
  .cta, .cta.primary, .cta.secondary {font-size: 0.98rem;}
  .footer-nav {flex-direction: column; align-items: flex-start;}
  .cookie-banner .cookie-buttons {flex-direction: column; gap:8px;}
}

/* INDUSTRIAL MODERN AESTHETIC EXTRAS */
html {
  background: #181C22;
}
body {
  background: #181C22;
  /* Simulating metallic/industrial texture with subtle noise */
  background-image: url("data:image/svg+xml,%3Csvg width='2' height='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle fill='%2323272C' cx='1' cy='1' r='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.card, .content-wrapper, .section, .footer-nav, .footer-logo, .testimonial-card {
  border: 1.2px solid #23272C;
  /* Metallic accent - subtle shadow line */
  box-shadow: 0 0.5px 2px rgba(220,220,220,0.07) inset;
}

/* Urban style divider for titles */
[class*="content-wrapper"] h2 {
  display: inline-block;
  border-bottom: 3px solid #6FB549;
  padding-bottom: 3px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  background: linear-gradient(94deg,#23272C 65%,transparent 100%);
}

/* Metallic accent for icons */
.feature-grid img, .guarantee-icons img, .guarantees img {
  filter: grayscale(7%) contrast(1.18) brightness(1.07) drop-shadow(0 2px 7px #20426B77);
}

/* Headline/Brand font, industrial flavor */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');

/* Select input, radio, checkbox styling */
input[type="checkbox"], input[type="radio"] {
  accent-color: #6FB549;
}
::-webkit-input-placeholder { color: #23272C; opacity: 0.86;}
::-moz-placeholder {color: #23272C; opacity: 0.86;}
:-ms-input-placeholder {color: #23272C; opacity: 0.86;}
::placeholder {color: #23272C; opacity: 0.86;}

/* Focus style for accessibility */
a:focus, .cta:focus, button:focus {
  outline: 2px dashed #6FB549;
  outline-offset: 0.9px;
}

/* Animate links */
a, .cta, .main-nav a, .footer-nav a {
  transition: background 0.15s, color 0.16s, box-shadow 0.15s, transform 0.13s;
}

/* Prevent overlapping & spacing between all elements */
.card, .feature-grid > div, .service-grid > div, .service-listings > div, .blog-post-list > div, .testimonial-card, .content-wrapper, .section {
  margin-bottom: 20px;
}

/* Z-INDEX MANAGEMENT */
header {z-index: 100;}
.mobile-menu {z-index: 900;}
.cookie-banner, #cookie-banner {z-index: 1200;}
.cookie-modal, #cookie-modal {z-index: 1400;}

/* Utility classes for extra spacing if needed */
.mt-20 {margin-top: 20px !important;}
.mb-32 {margin-bottom: 32px !important;}

/* Hide cookie modal by default (must be toggled via JS) */
.cookie-modal[aria-hidden="true"] {display: none !important;}

/* Accessibility: high contrast in testimonials/reviews */
.testimonial-card, .cookie-modal-content {
  color: #23272C !important;
  background: #FFF8F0 !important;
}
/* Ensuring minimum spacing between all cards/sections */
.card-container, .feature-grid, .service-grid, .service-listings, .blog-post-list, .content-grid, .categories-list ul {
  gap: 20px !important;
}

/* Loader for future use (industrial look) */
.loader {
  border: 7px solid #23272C;
  border-top: 7px solid #6FB549;
  border-radius: 50%;
  width: 40px; height: 40px;
  animation: spin 0.9s linear infinite;
  margin: 40px auto 0 auto;
  display: block;
}
@keyframes spin {
  0% { transform: rotate(0deg);} 
  100% { transform: rotate(360deg);}
}
