/* 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #183153;
  background-color: #F6F5F1;
  line-height: 1.7;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #A37317;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #183153;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

/* FONTS --------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #13243D;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 900;
  text-shadow: 0 2px 0 #F6E1C5;
}
h2 {
  font-size: 1.75rem;
  font-weight: 700;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.125rem;
  font-weight: 700;
}

p, li, table, blockquote {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #183153;
  margin-bottom: 12px;
}

strong, b {
  font-weight: 700;
  color: #13243D;
}
.emphasized {
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* LAYOUT & CONTAINER -------------------------------------------------- */
.container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* SECTION SPACING (MANDATORY PATTERNS) -------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF7E3;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(170, 115, 23, 0.09);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.card {
  background: #fffbe6;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(24,49,83,0.10);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid #B88A44;
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #FFF7E3;
  border: 2px solid #B88A44;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(24, 49, 83, 0.09);
  min-width: 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px rgba(24, 49, 83, 0.16);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FLEX FEATURE LAYOUTS ------------------------------------------------ */
.features-grid, .features-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 24px 0;
}
.features-grid > div, .features-icons > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fffbe6;
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(170, 115, 23, 0.08);
  padding: 18px 18px 14px 18px;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1.5px dashed #B88A44;
  align-items: center;
}
.features-grid img, .features-icons img {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
}

/* PROCESS STEPS / SERVICE LISTS --------------------------------------- */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 24px 0 36px 0;
}
.services-list > div {
  flex: 1 1 240px;
  background: #fffbe6;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(170, 115, 23, 0.10);
  border: 2px solid #A37317;
  padding: 18px 15px 11px 15px;
  display: flex;
  flex-direction: column;
  min-width: 230px;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 0;
}
.services-list img {
  width: 52px; height: 52px; margin-bottom: 10px;
}
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.process-steps li {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px dashed #B88A44;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 1.05rem;
  min-width: 220px;
  gap: 16px;
}
.process-steps img {
  width: 38px; height: 38px;
}

/* TESTIMONIAL SLIDER & STARS ------------------------------------------ */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.stars {
  font-size: 18px;
  color: #B88A44;
  letter-spacing: 2px;
}
.star-rating-summary {
  font-weight: bold;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.075rem;
  background: #ffe1b3;
  color: #13243D;
  padding: 10px 20px;
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(170, 115, 23, 0.08);
  margin-top: 16px;
  margin-bottom: 0;
}

/* CTA SECTION --------------------------------------------------------- */
.cta-section {
  background: #A37317;
  padding: 55px 0 50px 0;
  border-radius: 33px;
  margin-bottom: 60px;
}
.cta-section .content-wrapper > h2,
.cta-section .content-wrapper > p {
  color: #fff;
  margin-bottom: 12px;
}

.cta-section .btn-primary {
  background: #fff;
  color: #A37317;
  border: 2px solid #fff;
}
.cta-section .btn-primary:hover {
  background: #FFE8C0;
  border-color: #F6F5F1;
  color: #A37317;
}

/* BUTTONS ------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #A37317;
  color: #fff;
  padding: 13px 32px;
  border-radius: 29px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  outline: none;
  margin: 12px 0;
  box-shadow: 0 3px 18px rgba(168,115,23,0.15);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, color 0.2s, transform 0.15s, box-shadow 0.18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #F9D498;
  color: #183153;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(24,49,83,0.19);
}

/* HEADER & NAVIGATION ------------------------------------------------- */
header {
  background: #183153;
  border-bottom: 6px double #B88A44;
  box-shadow: 0 6px 22px rgba(24,49,83,0.07);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  height: 72px;
  min-height: 56px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 18px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.08rem;
  padding: 8px 12px;
  border-radius: 9px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #fff7e3;
  color: #A37317;
}
header .btn-primary {
  background: #fff7e3;
  color: #A37317;
  border: 2px solid #fff7e3;
  margin: 0 10px;
  box-shadow: 0 2px 8px rgba(170, 115, 23, .07);
}
header .btn-primary:hover, header .btn-primary:focus {
  background: #A37317;
  color: #fff;
  border-color: #fff;
}

/* MOBILE MENU --------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 14px;
  z-index: 1201;
  border-radius: 9px;
  width: 44px;
  height: 44px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F9D498;
  color: #A37317;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: #fffbe6;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(.72,-0.14,.4,1.26);
  box-shadow: 0 6px 32px rgba(24, 49, 83, 0.22);
  display: flex;
  flex-direction: column;
  padding: 32px 22px 0 32px;
  min-width: 230px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  left: 22px;
  background: #FFE8C0;
  color: #13243D;
  border: none;
  font-size: 2.1rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  z-index: 1300;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(168,115,23,0.09);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  background: #A37317;
  color: #fff;
}
.mobile-nav {
  margin-top: 65px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  color: #A37317;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 8px;
  border-radius: 11px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  min-width: 130px;
  min-height: 48px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #183153;
  color: #fff;
}


/* HERO SECTION -------------------------------------------------------- */
.hero {
  background: #ffecca url('../assets/hero-pattern.png') repeat;
  padding: 52px 0 65px 0;
  margin-bottom: 60px;
  border-bottom: 6px double #A37317;
  box-shadow: 0 6px 25px rgba(24,49,83,0.08);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #A37317;
  font-size: 2.2rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 0px #fffbe6, 0 1px 2px #fffbe6;
}
.hero p {
  font-size: 1.19rem;
  margin-bottom: 19px;
  color: #183153;
  font-weight: 500;
}

/* FORMS & FAQ ACCORDION ----------------------------------------------- */
.contact-details ul, .company-info ul, .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-accordion > div {
  background: #fffbe6;
  border: 1.5px dashed #B88A44;
  border-radius: 10px;
  margin-bottom: 18px;
  padding: 16px 23px 12px 23px;
  transition: box-shadow 0.18s;
}
.faq-accordion > div h2 {
  font-size: 1.07rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #A37317;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.faq-accordion > div p {
  margin: 0;
  font-size: 1rem;
}
.contact-details ul li {
  margin-bottom: 6px;
}
.contact-details {
  margin-bottom: 12px;
}
.contact-cta {
  margin-top: 28px;
  background: #fffbe6;
  padding: 14px 18px;
  border-radius: 9px;
}

/* TABLE PRICING ------------------------------------------------------- */
.service-pricing-table {
  width: 100%;
  background: #fffbe6;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 11px;
  overflow: hidden;
  margin-bottom: 26px;
  box-shadow: 0 2px 8px rgba(170, 115, 23, 0.07);
}
.service-pricing-table th, .service-pricing-table td {
  padding: 15px 25px;
  border-bottom: 1.2px solid #FFE8C0;
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.service-pricing-table th {
  background: #A37317;
  color: #fff;
  text-align: left;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.service-pricing-table tr:last-child td {
  border-bottom: none;
}
.service-pricing-table td {
  color: #183153;
}
.price-details p {
  background: #FFF7E3;
  padding: 10px 14px;
  border-radius: 7px;
}

/* SPECIAL PAGES & COMPONENTS ------------------------------------------ */
.thank-you-section {
  background: #fffbe6 url('../assets/vintage-border.png') repeat-x bottom;
  padding: 50px 0 80px 0;
  border-radius: 27px;
  text-align: center;
}
.thank-you-section h1 {
  color: #A37317;
}

/* FOOTER -------------------------------------------------------------- */
footer {
  background: #183153;
  color: #fff;
  border-top: 6px double #A37317;
  padding: 40px 0;
  margin-top: 50px;
}
footer p {
  color: white;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-links a {
  color: #FFE8C0;
  text-decoration: underline;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: color 0.15s;
  margin-right: 8px;
}
.footer-links a:hover, .footer-links a:focus {
  color: #fff;
}
.company-info {
  font-size: 0.99rem;
  color: #fff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
footer .btn-primary {
  background: #A37317;
  color: #fff;
  border: 2px solid #A37317;
  box-shadow: 0 2px 12px rgba(168, 115, 23, 0.10);
  margin-top: 18px;
}
footer .btn-primary:hover,footer .btn-primary:focus {
  background: #fff7e3;
  color: #A37317;
  border-color: #fff7e3;
}

/* COOKIE CONSENT BANNER ----------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe6;
  border-top: 3px solid #A37317;
  box-shadow: 0 -4px 18px rgba(170, 115, 23, .12);
  z-index: 10000;
  padding: 28px 16px 18px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 19px;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: transform 0.37s cubic-bezier(.84,.4,.37,1.12), opacity 0.22s;
  opacity: 1;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 9px 24px;
  font-size: 1rem;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: 2px solid #A37317;
  background: #fffbe6;
  color: #A37317;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.16s;
  margin-top: 8px;
}
.cookie-btn.accept {
  background: #A37317;
  color: #fff;
  border: 2px solid #A37317;
}
.cookie-btn.accept:hover,.cookie-btn.accept:focus {
  background: #FFE8C0;
  color: #A37317;
  border-color: #A37317;
}
.cookie-btn.reject {
  background: #fffbe6;
  color: #A37317;
  border: 2px solid #A37317;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F9D498;
  color: #13243D;
  border-color: #A37317;
}
.cookie-btn.settings {
  background: #FFE8C0;
  color: #A37317;
  border: 2px solid #F9D498;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fff7e3;
  color: #A37317;
  border-color: #A37317;
}

/* COOKIE CONSENT MODAL ------------------------------------------------ */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 10001;
  background: rgba(24,49,83, 0.64);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.24s;
  opacity: 1;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fffbe6;
  border: 2.5px solid #A37317;
  border-radius: 18px;
  box-shadow: 0 8px 46px rgba(170,115,23,0.20);
  padding: 34px 27px 26px 27px;
  min-width: 330px;
  max-width: 95vw;
  position: relative;
  z-index: 20001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #A37317;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1.025rem;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 54px;
  height: 26px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 26px;
  background: #FFE8C0;
  border: 1px solid #B88A44;
  transition: background .21s;
}
.toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #A37317;
  border-radius: 50%;
  transition: transform 0.21s, background 0.16s;
}
.toggle-switch input:checked + .toggle-slider {
  background: #F9D498;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(26px);
  background: #A37317;
}
.cookie-modal-footer {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.cookie-modal .cookie-btn {
  margin-top: 0;
}
.cookie-modal .cookie-btn:last-child {
  margin-left: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: #FFE8C0;
  color: #A37317;
  border: none;
  font-size: 1.7rem;
  border-radius: 7px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #A37317;
  color: #fff;
}

/* RESPONSIVE DESIGN (MOBILE-FIRST) ------------------------------------ */
@media (max-width: 1050px) {
  .container {
    max-width: 95vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .services-list > div {
    min-width: 180px;
  }
  .features-grid > div, .features-icons > div {
    min-width: 170px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media (max-width: 768px) {
  /* NAV and HEADER */
  header nav, header .btn-primary {
    display: none;
  }
  header .mobile-menu-toggle {
    display: block;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    height: 64px;
    gap: 10px;
    padding: 0 8px;
  }
  .footer-links, footer .container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  /* FLEX-responsive layouts */
  .features-grid, .features-icons, .content-grid,
  .services-list, .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .process-steps{
    flex-direction: column;
    gap: 12px;
  }
  .cta-section {
    padding: 34px 0 25px 0;
    border-radius: 19px;
  }
  .section {
    padding: 22px 8px;
    margin-bottom: 32px;
    border-radius: 9px;
  }
  .testimonial-card {
    min-width: unset;
    padding: 13px 9px;
    border-radius: 12px;
  }
  .team-presentations ul, .project-highlights ul {
    gap: 10px;
    font-size: 1rem;
  }
  .hero {
    padding: 30px 0 34px 0;
    border-bottom-width: 4px;
    border-radius: 0;
  }
  .company-info {
    font-size: 0.91rem;
  }
  .service-pricing-table th,.service-pricing-table td{
    padding: 10px 10px;
    font-size: 0.99rem;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.08rem; }
  .btn-primary, .cookie-btn {
    font-size: 0.97rem;
    padding: 9px 15px;
  }
  .hero {
    padding: 14px 0 20px 0;
  }
  .cta-section {
    padding: 15px 0 12px 0;
  }
  .section {
    padding: 9px 3px;
  }
  .testimonial-card {
    font-size: 0.98rem;
    padding: 8px 4px;
  }
  .cookie-modal {
    padding: 16px 7px 13px 11px;
    min-width: 90vw;
    max-width: 99vw;
  }
  .cookie-modal h2 {
    font-size: 1.06rem;
  }
}

/* VINTAGE RETRO DETAILS & EFFECTS ------------------------------------- */
.section {
  /* Light subtle vintage pattern overlay using SVG background if desired */
  background-image: url('../assets/retro-pattern.svg');
  background-repeat: repeat;
  background-blend-mode: lighten;
}
.card, .testimonial-card {
  background-image: url('../assets/retro-card-bg.svg');
  background-repeat: repeat;
  background-blend-mode: lighten;
}
.cta-section {
  /* Subtle stripes for CTA section */
  background-image: url('../assets/cta-vintage-stripes.svg');
  background-size: auto 110px;
}
.testimonial-card {
  /* Vintage badge effect for reviews */
  border-style: double;
  border-width: 3px;
  border-color: #B88A44 #fffbe6 #A37317 #ffe1b3;
  position: relative;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  right: 8px; bottom: 8px;
  width: 32px; height: 32px;
  background: url('../assets/deco-vintage-star.svg') no-repeat center center;
  background-size: 32px 32px;
  opacity: 0.12;
  pointer-events: none;
}

.hero {
  box-shadow: 0 12px 58px rgba(24,49,83,0.09);
  background-blend-mode: lighten;
  border-radius: 25px 25px 0 0;
}
.features-grid > div, .features-icons > div, .services-list > div {
  border-radius: 15px 28px 18px 13px/15px 14px 18px 22px;
  box-shadow: 0 3px 18px rgba(170,115,23,0.11);
  border-style: dashed;
}

/* MICRO-INTERACTIONS, SHADOWS & HOVER --------------------------------- */
.card:hover, .services-list > div:hover, .features-grid > div:hover {
  box-shadow: 0 10px 32px rgba(168,115,23,0.16), 0 0px 0px #fff;
  transform: translateY(-2px) scale(1.016);
  transition: box-shadow 0.13s, transform 0.13s;
  z-index: 1;
}

.features-grid > div img,
.features-icons > div img,
.services-list > div img {
  filter: sepia(.35) contrast(1.06) hue-rotate(-7deg) saturate(1.1);
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  background: #fffbe6;
  border: 1.5px solid #B88A44;
  border-radius: 6px;
  padding: 8px 9px;
  outline: none;
  margin-bottom: 12px;
  color: #183153;
  transition: background 0.16s, border 0.16s;
}
input:focus, textarea:focus, select:focus {
  background: #FFF4D7;
  border-color: #A37317;
}

/* VINTAGE PATTERN FALLBACK */
@media (max-width: 768px) {
  .section,
  .card,
  .cta-section {
    background-image: none !important;
  }
}

/* ACCESSIBILITY & CONTRAST FIXES -------------------------------------- */
.testimonial-card, .testimonial-card p {
  color: #13243D;
}
.star-rating-summary {
  background: #ffe1b3;
  color: #13243D; /* Ensure strong contrast */
}

/* Z-INDEX LAYERS FOR POPUPS ------------------------------------------- */
.mobile-menu {
  z-index: 1200;
}
.mobile-menu-toggle {
  z-index: 1201;
}
.cookie-modal-overlay { z-index: 10001; }
.cookie-modal { z-index: 10002; }
.cookie-modal-close { z-index: 10003; }

/* UTILITIES ----------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* END */
