/* 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,main,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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #F8F7F4;
}
*,*:before,*:after {
  box-sizing: inherit;
}
body {
  background: #F8F7F4;
  color: #1B2A36;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1B2A36;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:active {
  outline: 2px solid #D6A65C;
  outline-offset: 2px;
}
a:hover {
  color: #D6A65C;
}

/* FONT FACE - Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1B2A36;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}

p, ul, ol, dl, blockquote {
  margin-bottom: 20px;
  font-size: 1rem;
}
ul, ol {
  margin-left: 22px;
}
li {
  margin-bottom: 8px;
}
blockquote {
  font-style: italic;
  background: #F6ECD8;
  border-left: 4px solid #D6A65C;
  margin: 20px 0;
  padding: 16px 24px;
  border-radius: 12px;
  color: #1B2A36;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
/* FLEX HEADER */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0 18px 0;
}
header img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a.active, .main-nav a:focus, .main-nav a:hover {
  background: #F6ECD8;
  color: #D6A65C;
}
.cta-primary {
  background: #D6A65C;
  color: #1B2A36;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 27px;
  border: none;
  border-radius: 27px;
  box-shadow: 0 2px 12px rgba(60,42,26,.06);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.3s;
  outline: none;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 8px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #1B2A36;
  color: #F8F7F4;
  box-shadow: 0 8px 32px rgba(60,42,26,.13);
}
/* Responsive burger (mobile menu) */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #1B2A36;
  padding: 6px 12px;
  border-radius: 6px;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1010;
  display: none;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F6ECD8;
}
/* Hide main nav on mobile, show burger */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* MOBILE MENU STYLES */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #F8F7F4;
  box-shadow: 0 0 40px rgba(30,30,30,.13);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.46,.03,.52,.96);
  display: flex;
  flex-direction: column;
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #1B2A36;
  align-self: flex-end;
  margin: 30px 32px 0 0;
  cursor: pointer;
  z-index: 1210;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F6ECD8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 40px 0 40px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.mobile-nav a {
  font-size: 1.2rem;
  padding: 16px 10px;
  border-radius: 7px;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #1B2A36;
  background: none;
  transition: background 0.18s, color 0.22s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #F6ECD8;
  color: #D6A65C;
}

/* Banner & Section Layouts */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* -- Layouts -- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 5px 32px rgba(30,42,46,.09);
  background: #fff;
  position: relative;
  transition: box-shadow 0.23s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 10px 44px rgba(30,42,46,.18);
  transform: translateY(-4px) scale(1.015);
}
.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: 12px;
  padding: 28px;
  margin-bottom: 20px;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid #F1E6D5;
  box-shadow: 0 4px 28px rgba(80, 80, 75, 0.10);
  transition: box-shadow 0.25s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 40px rgba(80, 80, 75, .17);
  border-color: #D6A65C;
}
.testimonial-card p {
  color: #1B2A36;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 7px;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #6E6554;
  font-weight: 600;
  margin-top: 2px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO STYLES */
.hero {
  background: linear-gradient(110deg, #F8F7F4 70%, #F2ECE3 100%);
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 700px;
  padding-top: 10px;
}
.hero h1 {
  color: #1B2A36;
  font-size: 2.2rem;
  line-height: 1.17;
}
.hero p {
  font-size: 1.15rem;
  color: #2D373F;
  margin-bottom: 6px;
}

/* FEATURES GRID */
.features {
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 18px rgba(30,42,46,0.09);
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 265px;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.17s, transform 0.15s;
  margin-bottom: 20px;
  border: 1.5px solid #F1E6D5;
}
.feature:hover {
  box-shadow: 0 8px 28px rgba(30,42,46,0.13);
  transform: translateY(-3px) scale(1.02);
  border-color: #D6A65C;
}
.feature img {
  height: 42px;
  width: 42px;
  margin-bottom: 9px;
}
.feature h3 {
  font-size: 1.12rem;
  margin-bottom: 7px;
}
.feature p {
  font-size: 1rem;
  color: #34404A;
}

/* SERVICE LIST */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.service-item {
  background: #fff;
  box-shadow: 0 4px 28px rgba(80, 80, 75, 0.10);
  border-radius: 14px;
  border: 1.5px solid #F2ECE3;
  padding: 30px 22px 20px 22px;
  min-width: 225px;
  flex: 1 1 236px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border-color 0.15s;
}
.service-item:hover {
  box-shadow: 0 10px 40px rgba(80, 80, 75, .15);
  border-color: #D6A65C;
}
.service-item h3,
.service-item h2 {
  font-size: 1.18rem;
  margin-bottom: 7px;
}
.service-item p {
  font-size: 1rem;
  color: #1B2A36;
  margin-bottom: 5px;
}
.service-price {
  background: #F6ECD8;
  color: #6E6554;
  font-size: 0.98rem;
  padding: 4px 12px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-top: 9px;
}

/* Testimonials SLIDER / GRID */
.testimonials, .testimonial-grid {
  margin-bottom: 40px;
}
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.customer-stories {
  margin-top: 32px;
  background: #fff;
  padding: 32px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(160,147,120,0.10);
}
.customer-stories h2 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}
.customer-stories p {
  margin-bottom: 16px;
}

/* CTA SECTION */
.cta {
  background: #F6ECD8;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 6px 40px rgba(218,196,180,.17);
  margin-bottom: 60px;
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta h2 {
  font-size: 1.7rem;
  color: #1B2A36;
}
.cta p {
  font-size: 1.1rem;
  color: #3B2A10;
}

/* STAR RATINGS */
.star-ratings {
  background: #fff;
  border-radius: 10px;
  padding: 18px 24px;
  box-shadow: 0 2px 12px rgba(210, 181, 110, .05);
  margin-bottom: 18px;
}
.star-ratings ul {
  margin-top: 10px;
}
.summary-highlights ul {
  list-style: disc;
}

/* List inside FAQ & Contact */
dl.faq-list, dl.contact-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 26px;
}
dt {
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
dd {
  margin-left: 18px;
}

/* STEP TIMELINE */
.step-timeline {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 40px;
}
.step-timeline li {
  padding-left: 10px;
  border-left: 3px solid #D6A65C;
  margin-bottom: 8px;
  min-height: 24px;
}
.benefit-highlights ul {
  list-style: square;
}
.benefit-highlights ul li {
  margin-left: 14px;
}

/* Static Map styling fallback */
.static-map {
  background: #D6A65C;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Footer Styles */
footer {
  background: #1B2A36;
  color: #fff;
  padding: 42px 0 22px 0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 -2px 24px rgba(34,34,34,0.06);
}
.footer-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #F8F7F4;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
  padding: 3px 0px;
  border-radius: 4px;
  transition: color 0.2s, background 0.17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #D6A65C;
  color: #1B2A36;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.97rem;
  color: #E8E3DC;
  line-height: 1.5;
}
footer img {
  height: 36px;
  width: auto;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #1B2A36;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 26px 20px 22px 20px;
  z-index: 2100;
  box-shadow: 0 -3px 18px rgba(28,42,53,0.11);
  font-size: 1rem;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease-in-out;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 21px;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 20px;
  margin-left: 0;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  outline: none;
}
.cookie-banner .cookie-accept {
  background: #D6A65C;
  color: #1B2A36;
}
.cookie-banner .cookie-accept:hover {
  background: #fff;
  color: #1B2A36;
  box-shadow: 0 6px 20px rgba(218,196,180,.23);
}
.cookie-banner .cookie-reject {
  background: #34404A;
  color: #fff;
}
.cookie-banner .cookie-reject:hover {
  background: #fff;
  color: #D6A65C;
}
.cookie-banner .cookie-settings {
  background: none;
  color: #D6A65C;
  border: 1.2px solid #D6A65C;
}
.cookie-banner .cookie-settings:hover {
  background: #D6A65C;
  color: #1B2A36;
}

/* Cookie Modal Styles */
#cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  width: 96vw;
  max-width: 400px;
  background: #fff;
  color: #1B2A36;
  z-index: 2200;
  box-shadow: 0 8px 48px rgba(30,42,53,0.19);
  border-radius: 14px;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  transition: opacity 0.32s, transform 0.28s;
  padding: 34px 26px 26px 26px;
}
#cookie-modal.open {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.cookie-categories {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: #D6A65C;
  width: 20px;
  height: 20px;
}
.cookie-category.essential label {
  color: #8F7759;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #D6A65C;
}
.cookie-modal-actions {
  margin-top: 26px;
  display: flex;
  gap: 13px;
}
#cookie-modal .cookie-close {
  background: none;
  border: none;
  color: #D6A65C;
  font-size: 1.5rem;
  position: absolute;
  right: 16px;
  top: 13px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
  padding: 2px 7px;
}
#cookie-modal .cookie-close:hover {
  background: #F8F7F4;
}

/* CTAs within content blocks */
.cta-block {
  margin-top: 22px;
}

/* Card Visuals */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  align-items: flex-start;
  gap: 16px;
}

/* Utility Classes */
.mb-12 { margin-bottom: 12px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* Animations & Micro-interactions */
.card, .testimonial-card, .service-item, .feature {
  transition: transform 0.17s, box-shadow 0.22s, border-color 0.22s;
}
.card:active, .feature:active, .service-item:active, .testimonial-card:active {
  transform: scale(0.97);
}
button, .cta-primary {
  transition: background 0.22s, color 0.21s, box-shadow 0.2s, border 0.21s;
}

/* RESPONSIVE DESIGN (Mobile First) */
@media (max-width: 1100px) {
  .container { max-width: 950px; }
  .feature-grid, .service-list, .testimonial-slider, .testimonial-grid {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .container { max-width: 100%; }
  .header-flex, .footer-flex {
    gap: 14px;
    flex-wrap: wrap;
  }
  .feature, .service-item, .testimonial-card {
    min-width: 90%;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .feature-grid, .service-list, .testimonial-slider, .testimonial-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.02rem; }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header-flex, .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  header img,
  footer img {
    height: 30px;
  }
  .cta {
    border-radius: 11px;
    padding-left: 0;
    padding-right: 0;
  }
  .feature-grid, .service-list, .testimonial-slider, .testimonial-grid {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }
  .static-map {
    font-size: 0.90rem;
    height: 140px;
  }
}
@media (max-width: 540px) {
  .section, section {
    padding: 26px 4px;
    margin-bottom: 33px;
  }
  .card, .feature, .service-item, .testimonial-card {
    padding: 18px 7vw 18px 7vw;
    border-radius: 7px;
  }
  .customer-stories {
    padding: 17px 8px;
    border-radius: 7px;
  }
  .cookie-banner {
    flex-direction: column;
    justify-content: flex-start;
    gap: 13px;
    font-size: 0.96rem;
    padding: 20px 7px 14px 7px;
  }
  #cookie-modal {
    padding: 16px 9px 19px 13px;
    max-width: 97vw;
    border-radius: 6px;
  }
}

/* Extra - Hide scroll when modal/menu open (class for BODY) */
body.overflow-hidden {
  overflow: hidden;
}
