/* RESET & BASE STYLES (Normalize + Reset) */
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,
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #fafafa;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}
ul, ol {
  list-style: none;
}
*::selection {
  background: #222;
  color: #fff;
}

/* TYPOGRAPHY (Monochrome Sophisticated) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #181818;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }
}
p, li, span, a, button {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #222;
  font-weight: 400;
  letter-spacing: 0px;
}
strong {
  font-weight: 700;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* HEADER */
header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 2px 10px 0 rgba(34,42,54,0.025);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 30px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-size: 1rem;
  color: #181818;
  padding: 8px 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #222;
  color: #fff;
}
.cta-button {
  background: #181818;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  box-shadow: 0 4px 12px 0 rgba(34,34,34,0.07);
  transition: background 0.22s, box-shadow 0.22s, color 0.22s;
  cursor: pointer;
  letter-spacing: 0px;
}
.cta-button:hover, .cta-button:focus {
  background: #324259;
  color: #fff;
  box-shadow: 0 8px 24px 0 rgba(50,66,89,0.12), 0 1.5px 5px rgba(0,0,0,0.04);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #181818;
  font-size: 2rem;
  margin-left: 16px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1101;
}
.mobile-menu-toggle:focus {
  background: #e5e5e5;
}
/* MOBILE MENU (overlay)*/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  max-width: 100vw;
  background: rgba(24,24,24,0.98);
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.78,0.01,0.27,1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 30px 30px 8px 0;
  min-width: 48px;
  min-height: 48px;
  cursor: pointer;
  z-index: 2001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 28px 40px 0 40px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 7px;
  padding: 14px 4px 14px 4px;
  width: 100%;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #324259;
  color: #C2A679;
}

@media (max-width: 991px) {
  header .container {
    height: 72px;
    gap: 10px;
  }
  header nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

/* HERO */
.hero {
  background: linear-gradient(112deg, #f2f2f2 60%, #dedede 120%);
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 0 0 40px 0;
  box-shadow: 0 6px 32px 0 rgba(50,66,89,0.04);
}
.hero .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #181818;
}
.hero p {
  color: #222;
  font-size: 1.18rem;
}
@media (max-width: 768px) {
  .hero {
    min-height: 320px;
    margin-bottom: 32px;
    padding: 0 0 30px 0;
  }
  .hero .container {
    padding-top: 28px;
  }
}

/* SECTION */
section {
  margin-bottom: 60px;
  padding: 40px 0; /* container adds horizontal */
  background: transparent;
}
.about-preview, .cta-banner, .services-overview, .testimonials-preview, .about, .team, .why-us, .services, .process, .guarantee, .gallery-intro, .contact, .map, .privacy-policy, .gdpr-compliance, .cookie-policy, .terms-of-use, .thank-you, .faq, .testimonial-cta, .additional-faq-cta {
  margin-bottom: 60px;
  padding: 40px 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEX CONTAINERS (per strict patterns) */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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, .testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE GRID (home) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 30px;
  justify-content: flex-start;
}
.feature-grid li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(50,66,89,0.07);
  padding: 34px 26px 26px 26px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.23s, transform 0.19s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 24px rgba(50,66,89,0.13);
  transform: translateY(-6px) scale(1.017);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  filter: grayscale(100%);
}
.feature-grid h3 {
  font-size: 1.15rem;
  color: #324259;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 0;
}
.feature-grid p {
  font-size: 1rem;
  color: #454545;
}

/* ABOUT PREVIEW */
.about-preview ul {
  margin: 18px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #222;
}
.about-preview a.cta-button {
  margin-top: 8px;
}

/* SERVICES CARDS (home overview) */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 22px 0 32px 0;
}
.service-card {
  background: #f7f7f7;
  border-radius: 13px;
  box-shadow: 0 2.5px 9px 0 rgba(50,66,89,0.10);
  padding: 32px 22px 30px 22px;
  flex: 1 1 min(235px, 100%);
  min-width: 180px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.17s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(34,42,54,0.13);
  transform: translateY(-7px) scale(1.018);
}
.service-card img {
  width: 34px;
  height: 34px;
  margin-bottom: 0px;
  filter: grayscale(100%);
}
.service-card h3 {
  font-size: 1.08rem;
  color: #181818;
  margin-bottom: 2px;
}
.service-card p {
  color: #333;
  font-size: 0.98rem;
}
.services-overview a.cta-button {
  margin-top: 20px;
}

/* TESTIMONIALS PREVIEW (home) */
.testimonials-preview .testimonial-slider {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.testimonials-preview .testimonial-card {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(34,42,54,0.10);
  min-width: 250px;
  max-width: 320px;
  flex: 1 1 220px;
  flex-direction: column;
  padding: 26px 22px 18px 22px;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.22s, transform 0.19s;
}
.testimonials-preview .testimonial-card p {
  color: #222;
  font-size: 1.06rem;
}
.testimonials-preview .testimonial-card span {
  color: #555;
  font-size: 0.96rem;
  font-style: italic;
  margin-top: 6px;
}
.testimonials-preview .testimonial-card:hover {
  box-shadow: 0 6px 22px rgba(50,66,89,0.13);
  transform: translateY(-5px) scale(1.011);
}

/* CTA BANNER */
.cta-banner {
  background: #222;
  color: #f2f2f2;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 36px 0;
  box-shadow: 0 4px 15px 0 rgba(50,66,89,0.10);
}
.cta-banner .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta-banner h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 0px;
}
.cta-banner .cta-button {
  background: #C2A679;
  color: #222;
  margin-top: 6px;
  box-shadow: 0 1.5px 8px rgba(193,166,120,0.07);
}
.cta-banner .cta-button:hover { background: #fff; color: #181818; }

/* ABOUT, TEAM, WHY-US, FAQ, ETC. */
.text-section {
  margin-bottom: 24px;
  color: #232323;
  width: 100%;
}
.team-list, .team-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 32px 0;
}
.why-us ul {
  color: #181818;
  margin-bottom: 10px;
}
.why-us li strong { color: #324259; }

/* SERVICE PAGE */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 22px 0 32px 0;
}
.service-list h2 {
  color: #222;
  margin-bottom: 8px;
  font-size: 1.3rem;
}
.service-list p {
  color: #474747;
  font-size: 1rem;
}

/* PROCESS (ORDERED LIST) */
.process ol {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin: 24px 0 14px 0;
  padding-left: 0;
}
.process li {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  flex: 1 1 200px;
  min-width: 180px;
  max-width: 255px;
  color: #222;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(34,42,54,0.07);
  transition: box-shadow 0.22s;
}
.process li:hover { box-shadow: 0 7px 20px rgba(50,66,89,0.11); }
.process li img {
  width: 30px; height: 30px; margin-right: 8px; flex-shrink: 0; filter: grayscale(100%);
}
.process li strong { color: #222; }

/* GUARANTEE, POLICY, LEGAL, ETC. */
.guarantee ul, .privacy-policy ul, .gdpr-compliance ul, .terms-of-use ul, .cookie-policy ul {
  margin: 18px 0 14px 0;
  color: #222;
  padding-left: 18px;
}
.guarantee ul li, .privacy-policy ul li, .gdpr-compliance ul li, .terms-of-use ul li, .cookie-policy ul li {
  margin-bottom: 6px;
  list-style: disc;
}

/* GALLERY INTRO */
.gallery-intro .text-section {
  margin-top: 18px;
  color: #232323;
}

/* TESTIMONIALS PAGE */
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonials-list .testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(50,66,89,0.13);
  min-width: 260px;
  max-width: 390px;
  flex-direction: column;
  padding: 26px 24px 20px 24px;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.17s;
}
.testimonials-list .testimonial-card p {
  color: #222;
  font-size: 1rem;
}
.testimonials-list .testimonial-card span {
  color: #555555;
  font-style: italic;
  font-size: 0.96rem;
  margin-top: 4px;
}
.testimonials-list .testimonial-card .star-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 8px;
}
.testimonials-list .testimonial-card:hover {
  box-shadow: 0 7px 22px rgba(50,66,89,0.17);
  transform: translateY(-7px) scale(1.012);
}
/* Ensure testimonial text is readable */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #181818 !important;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.faq-item {
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 1.5px 7px rgba(34,42,54,0.04);
  padding: 20px 20px 12px 18px;
  margin-bottom: 10px;
  transition: box-shadow 0.16s;
}
.faq-item h2 {
  font-size: 1.07rem;
  margin-bottom: 7px;
  color: #324259;
}
.faq-item p {
  color: #414141;
}
.faq-item:hover {
  box-shadow: 0 4px 18px rgba(50,66,89,0.09);
}

/* CONTACT DATA */
.contact-data {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 20px 0 24px 0;
}
.contact-data li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.04rem;
  color: #232323;
}
.contact-data img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%);
}
.contact-data strong {
  color: #222;
  margin-right: 4px;
}

/* FOOTER */
footer {
  background: #181818;
  color: #fafafa;
  margin-top: 60px;
  padding: 48px 0 18px 0;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}
.footer-logo img {
  width: 64px;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.footer-nav a {
  color: #C2A679;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 8px;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #fff; text-decoration: underline; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #dadada;
  font-size: 0.94rem;
  align-items: center;
}
.footer-contact img {
  width: 20px; height: 20px; margin-right: 6px; filter: grayscale(100%) brightness(1.1); vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}
.footer-social img {
  width: 31px; height: 31px; background: #222; border-radius: 50%; padding: 4px;
  filter: grayscale(100%) brightness(1.1);
  transition: background 0.14s, transform 0.10s;
}
.footer-social img:hover { background: #C2A679; transform: translateY(-2px) scale(1.07); }
.footer-copy {
  font-size: 0.95rem;
  color: #B3B3B3;
  margin-top: 6px;
  text-align: center;
}

/* UTILITIES & HIERARCHY */
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* MODALS, BANNERS, OVERLAYS, ETC. */
/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: #fff;
  color: #181818;
  box-shadow: 0 -2px 24px 1px rgba(34,42,54,0.08);
  padding: 24px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  animation: banner-in 0.41s cubic-bezier(0.77,0.01,0.18,0.98);
}
@keyframes banner-in {
  0% { transform: translateY(120%); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-left: 16px;
}
.cookie-banner button {
  background: #181818;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner button.cookie-settings {
  background: #C2A679;
  color: #181818;
}
.cookie-banner button.cookie-reject {
  background: #fafafa;
  color: #181818;
  border: 1.5px solid #dadada;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #324259;
  color: #fff;
}
.cookie-banner button.cookie-settings:hover,
.cookie-banner button.cookie-settings:focus { background: #222; color: #C2A679; }
.cookie-banner button.cookie-reject:hover, .cookie-banner button.cookie-reject:focus { background: #dedede; color: #181818; }

/* COOKIE PREFERENCE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,34,34,0.47);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in-modal 0.36s cubic-bezier(0.77,0.01,0.18,0.98);
}
@keyframes fade-in-modal {
  0% { opacity:0; }
  100% { opacity:1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(34,42,54,0.14);
  padding: 32px 30px 26px 30px;
  max-width: 380px;
  width: 93vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-open 0.29s cubic-bezier(0.77,0.01,0.18,0.98);
}
@keyframes modal-open {
  0% { transform: scale(0.89); opacity:0; }
  100% { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #181818;
}
.cookie-preferences {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 8px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  color: #222;
  font-size: 1rem;
  flex: 1;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #324259;
  border: 1.5px solid #aaa;
  border-radius: 4px;
}
.cookie-modal .cookie-buttons {
  margin-top: 20px;
  gap: 14px;
}
.cookie-modal .cookie-buttons button {
  padding: 9px 16px;
  font-size: 1rem;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  color: #222;
  font-size: 1.3rem;
  position: absolute;
  right: 18px;
  top: 14px;
  cursor: pointer;
}

/* RESPONSIVE DESIGN - MOBILE FIRST  */
@media (max-width: 991px) {
  .feature-grid, .service-cards, .testimonials-preview .testimonial-slider, .testimonials-list, .process ol {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-grid li, .service-card, .testimonials-preview .testimonial-card, .testimonials-list .testimonial-card, .process li {
    min-width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section, .about-preview, .cta-banner, .services-overview, .testimonials-preview, .about, .team, .why-us, .services, .process, .guarantee, .gallery-intro, .contact, .map, .privacy-policy, .gdpr-compliance, .cookie-policy, .terms-of-use, .thank-you, .faq, .testimonial-cta, .additional-faq-cta {
    margin-bottom: 38px;
    padding: 22px 0;
  }
  .content-wrapper {
    gap: 14px;
  }
  .text-image-section,
  .content-grid {
    flex-direction: column !important;
    gap: 16px;
  }
  .about-preview ul,
  .team-list,
  .team-values {
    gap: 8px;
  }
  .footer-social img {
    width: 26px;
    height: 26px;
  }
  footer .container {
    padding: 0 8px;
    gap: 16px;
  }
}

/* ANIMATIONS & MICROINTERACTIONS */
.card, .feature-grid li, .service-card, .testimonial-card, .faq-item, .process li {
  transition: box-shadow 0.18s, transform 0.17s;
}
.cta-button, .cookie-banner button {
  transition: background 0.23s, color 0.23s, box-shadow 0.23s, transform 0.16s;
}
.cta-button:active,
.cookie-banner button:active {
  transform: translateY(2px) scale(0.98);
}
.input, input, textarea, select {
  border-radius: 6px;
  border: 1.5px solid #dadada;
  background: #fafafa;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: #181818;
  outline: none;
  max-width: 100%;
  transition: border 0.17s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #C2A679;
  box-shadow: 0 0 0 2.5px #c2a67938;
}

/* Z-INDEX FOR HEADER AND NAVIGATION */
header,
.mobile-menu,
.mobile-menu-toggle {
  z-index: 1000;
}

/* ACCESSIBILITY: FOCUS OUTLINE */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid #C2A679;
  outline-offset: 1.5px;
}

/* Prevent Overlapping */
.card, .feature-grid li, .service-card, .testimonial-card, .faq-item, .process li, .testimonials-list .testimonial-card, .testimonials-preview .testimonial-card {
  margin-bottom: 20px;
}

/* Utility: Hide visually but keep accessible */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

.services__list li{
  flex-direction: column;
}

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