/* ---------- CSS RESET & BASELINE ---------- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f9faf5;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

/* ---------- FONT IMPORTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary: #28653A;
  --secondary: #A6CE39;
  --accent: #F5F7EA;
  --gold: #BFA76A;
  --text: #181818;
  --text-soft: #474747;
  --white: #fff;
  --bg: #f9faf5;
  --shadow: 0 4px 20px rgba(40, 101, 58, 0.08), 0 2px 10px rgba(0,0,0,0.03);
  --radius: 14px;
  --header-height: 74px;
  --transition: 0.3s cubic-bezier(.3,1.2,.2,1);
}

/* ---------- UTILITY CLASSES ---------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
}
.text-section {
  margin-bottom: 36px;
  padding: 0;
}
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.text-section h2 {
  color: var(--gold);
  font-size: 1.7rem;
}
.section h2 {
  color: var(--primary);
}
p, ul, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

/* Small Typo for extra info and meta */
.small, .footer-info p {
  font-size: 0.92rem;
  color: #7a7a7a;
  letter-spacing: 0.01em;
}

/* ---------- HEADER ---------- */
header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 10;
  box-shadow: 0 2px 16px rgba(40,101,58,0.06);
}
header .container {
  height: var(--header-height);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
header nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
header nav a:hover {
  color: var(--gold);
  background: var(--accent);
}
header img {
  height: 48px;
  width: auto;
}
.cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 28px;
  font-size: 1.07rem;
  font-weight: bold;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(40, 101, 58, 0.05);
  border: 2px solid var(--gold);
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition), transform .2s;
  cursor: pointer;
  margin-left: 14px;
  line-height: 1.12;
  position: relative;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 2px 20px rgba(191, 167, 106, 0.13);
}

/* -------- MOBILE MENU --------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  color: var(--primary);
  background: none;
  border: none;
  padding: 4px 14px;
  cursor: pointer;
  line-height: 1;
  border-radius: 8px;
  transition: background .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--gold);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,101,58,.98);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.4,1.2,.2,1.0);
  box-shadow: 0 7px 28px rgba(31,42,31,0.18);
  opacity: 1;
  visibility: hidden;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  color: var(--gold);
  font-size: 2.2rem;
  border: none;
  cursor: pointer;
  z-index: 1;
  transition: color .16s;
}
.mobile-menu-close:hover { color: var(--secondary); }
.mobile-nav {
  margin-top: 76px;
  width: 100%;
  flex-direction: column;
  display: flex;
}
.mobile-nav a {
  padding: 18px 32px;
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .16s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gold);
  color: var(--primary);
}


/* Hide desktop nav & show hamburger on mobile */
@media (max-width: 1020px) {
  header nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}

@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
}

/* ---------- MAIN: HERO, SECTIONS, LAYOUTS ---------- */
main {
  min-height: calc(100vh - 70px - 80px);
  margin-top: 0;
  margin-bottom: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.hero {
  background: linear-gradient(90deg, #fff 60%, var(--accent) 100%);
  border-bottom: 1px solid #edeede;
  padding: 40px 0 20px 0;
  margin-bottom: 22px;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 190px;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
}
.hero p {
  font-size: 1.23rem;
  margin-bottom: 16px;
}

/* ---------- FEATURES ---------- */
.features {
  background: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: var(--shadow);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  padding-top: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(191,167,106,.08);
  border: 1.5px solid #ece5d1;
  padding: 22px 18px;
  flex: 1 1 225px;
  min-width: 210px;
  max-width: 270px;
  margin-bottom: 20px;
  transition: box-shadow .18s, border-color .2s;
}
.feature-item img {
  width: 40px;
  height: 40px;
}
.feature-item h3 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0;
}
.feature-item p {
  color: var(--text-soft);
  margin-bottom: 0;
  font-size: 1rem;
}
.feature-item:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 16px rgba(191,167,106, .13);
}

/* ---------- SERVICES PREVIEW ---------- */
.services-preview {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: var(--shadow);
}
.services-preview ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.services-preview li a {
  color: var(--primary);
  border-bottom: 1px dashed var(--gold);
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.15s, border .18s;
}
.services-preview li a:hover {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

/* ------------- SERVICES LIST --------------- */
.services-list .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.service-detail {
  background: var(--accent);
  border-radius: var(--radius);
  border: 1.5px solid #ece5d1;
  box-shadow: 0 1px 8px rgba(191,167,106,0.08);
  padding: 22px 20px 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s, box-shadow 0.18s;
}
.service-detail h3 {
  display: flex;
  align-items: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 4px;
  gap: 18px;
}
.service-detail h3 span {
  background: var(--gold);
  color: var(--primary);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  padding: 4px 13px;
  margin-left: 10px;
}
.service-detail p {
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: 0;
}
.service-detail:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 14px rgba(191,167,106, 0.13);
}

/* --------- BLOG ----------- */
.blog-post-list .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.blog-post-teaser {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid #e4e8d8;
  box-shadow: 0 1px 8px rgba(191,167,106,.06);
  padding: 24px 20px 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow .18s, border-color .19s;
}
.blog-post-teaser h3 {
  color: var(--primary);
  font-size: 1.23rem;
}
.blog-post-teaser p {
  color: var(--text-soft);
}
.blog-post-teaser a {
  color: var(--gold);
  font-weight: 600;
  margin-top: 10px;
  align-self: flex-start;
}
.blog-post-teaser a:hover {
  color: var(--secondary);
  text-decoration: underline;
  letter-spacing: 0.01em;
}

/* ---------- TESTIMONIAL/CARD STYLES ---------- */
.testimonials {
  background: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: var(--shadow);
  padding-top: 22px;
  padding-bottom: 18px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid #ece5d1;
  box-shadow: 0 3px 14px rgba(191,167,106,.07);
  border-radius: var(--radius);
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  transition: border-color .16s, box-shadow .17s;
}
.testimonial-card p {
  color: #21231f;
  font-size: 1.06rem;
  flex: 1 1 200px;
  line-height: 1.6;
  margin: 0 0 5px 0;
}
.testimonial-card span {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 28px rgba(191,167,106,0.13);
}

/* ---------- CASE STUDIES ---------- */
.case-studies .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.case-brief {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  padding: 18px 20px 13px 24px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px rgba(191,167,106, .08);
}
.case-brief h3 {
  color: var(--primary);
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.case-brief p {
  color: var(--text-soft);
  margin-bottom: 0;
  font-size: 1rem;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--primary);
  color: var(--white);
  border-top: 4px solid var(--gold);
  margin-top: 60px;
  padding: 28px 0 8px 0;
}
footer .container {
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  transition: color .17s;
}
.footer-nav a:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer-info {
  margin-top: 8px;
}
.footer-info p {
  color: #f8f7f2;
}

/* ---------- CONTACT PAGE ---------- */
.contact-info {
  background: var(--accent);
  border-radius: var(--radius);
  border: 1.5px solid #ece5d1;
  box-shadow: 0 1px 8px rgba(191,167,106,0.08);
  padding: 26px 24px 18px 24px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 1rem;
}
.contact-info img {
  width: 26px; height: 26px;
}
.contact-info a {
  color: var(--primary);
  font-weight: 600;
}
.contact-info a:hover {
  color: var(--gold);
}

/* ---------- LEGAL PAGES ---------- */
.legal {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid #ece5d1;
  box-shadow: 0 2px 10px rgba(191,167,106, .05);
  margin-bottom: 60px;
  padding: 36px 18px 32px 18px;
}
.legal ul {
  list-style: disc inside;
  margin-bottom: 22px;
  margin-left: 16px;
}
.legal li {
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: 11px;
}

/* ---------- THANK YOU ---------- */
.thank-you {
  display: flex;
  align-items: center;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 1px 10px rgba(191,167,106, .06);
  min-height: 240px;
  margin-bottom: 60px;
  padding: 52px 22px 46px 22px;
}

/* ---------- TEAM, PARTNERS ---------- */
.team, .partners {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 24px;
}
.team ul, .partners ul {
  margin-bottom: 18px;
}
.team li, .partners li {
  color: var(--primary);
  margin-bottom: 7px;
  font-size: 1.04rem;
  font-weight: 600;
}

/* ---------- CTA SPECIAL ---------- */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 20px 0 30px 0;
  margin-bottom: 32px;
  border-radius: var(--radius);
}
.cta .cta-btn {
  margin-left: 0;
}

/* ---------- FLEX LAYOUTS ---------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border: 1.5px solid #ece5d1;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(191,167,106, 0.08);
  padding: 24px 18px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 980px) {
  .feature-grid {
    gap: 18px;
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .feature-grid { gap: 12px; }
}
@media (max-width: 768px) {
  .container { max-width: 98vw; }
  .hero .container, .section .container, .content-wrapper {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .section {
    padding: 26px 4vw;
    margin-bottom: 38px;
  }
  .hero {
    padding: 30px 0 14px 0;
    min-height: 100px;
  }
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  .feature-grid {
    flex-direction: column;
    gap: 15px;
  }
  .service-detail, .blog-post-teaser, .case-brief {
    padding: 16px 8px;
  }
  .contact-info {
    padding: 16px 8px 11px 14px;
  }
  .testimonials, .team, .partners {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media (max-width: 600px) {
  .card,
  .testimonial-card,
  .case-brief,
  .feature-item,
  .service-detail {
    padding: 14px 4px;
  }
  .team, .partners {
    padding: 20px 6px;
  }
  .hero .container {
    padding: 0 4vw;
  }
}

@media (max-width: 520px) { 
  .testimonial-card, .case-brief {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 13px 4px 13px 8px;
    font-size: 0.98rem;
  }
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}


/* ---------- HOVER & MICRO-INTERACTIONS ---------- */
.card, .service-detail, .case-brief, .testimonial-card, .feature-item, .blog-post-teaser {
  transition: box-shadow .23s, border-color .18s, transform .15s;
}
.card:hover, .service-detail:hover, .case-brief:hover, .testimonial-card:hover, .feature-item:hover, .blog-post-teaser:hover {
  transform: translateY(-2px) scale(1.01);
}

a, button, .cta-btn {
  transition: color .20s, background .20s, border-color .18s, box-shadow .18s, transform .15s;
}

/* ---------- COOKIE CONSENT BANNER ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 0 32px rgba(40,101,58,.22);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px 14px 24px 24px;
  font-size: 1.05rem;
  gap: 22px;
  border-top: 4px solid var(--gold);
  animation: cookieBannerAppear 0.37s cubic-bezier(.3,1.2,.2,1);
}
@keyframes cookieBannerAppear {
  from { opacity: 0; transform: translateY(50px);} 
  to { opacity:1; transform: translateY(0);}
}
.cookie-banner p {
  color: var(--white);
  margin-bottom: 0;
  font-size: 1rem;
  flex: 1 1 180px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 7px;
  margin-right: 8px;
  margin-bottom: 2px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--primary);
  cursor: pointer;
  transition: background .15s, color .18s, border-color .14s;
}
.cookie-btn.accept {
  background: var(--gold);
  color: var(--primary);
}
.cookie-btn.settings {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
  margin-left: 6px;
}
.cookie-btn.reject {
  background: var(--white);
  border-color: var(--gold);
  color: var(--primary);
  margin-left: 6px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: var(--gold);
  border-color: var(--gold);
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(33,34,29,0.53);
  z-index: 400;
  opacity: 1;
  animation: fadeIn .16s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes fadeIn { from { opacity: 0;} to { opacity: 1;}}
.cookie-modal {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  max-width: 96vw;
  width: 350px;
  padding: 34px 28px 30px 28px;
  box-shadow: 0 7px 44px rgba(40,101,58,0.14);
  border: 2px solid var(--gold);
  z-index: 401;
  position: relative;
  animation: fadeIn .21s linear;
}
.cookie-modal h3 {
  color: var(--primary);
  margin-top: 0;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #ece5d1;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .14s;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 2px rgba(0,0,0,.04);
  transition: transform .18s, background .15s;
}
.cookie-toggle:checked:before {
  transform: translateX(16px);
  background: var(--primary);
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  color: var(--primary);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
}
.cookie-modal .cookie-btn {
  margin-top: 14px;
  font-weight: bold;
  padding: 7px 18px;
  width: 100%;
}
@media (max-width: 540px) {
  .cookie-modal { width: 97vw; padding: 18px 8px 14px 8px; }
  .cookie-banner { flex-direction: column; justify-content: flex-start; padding: 13px 4vw; gap: 10px;}
}

/* ---------- SELECTS, FORMS, INPUTS ---------- */
input, textarea, select {
  background: var(--accent);
  border: 1.2px solid #d6dbcd;
  border-radius: 7px;
  padding: 11px 13px;
  font-size: .99rem;
  margin-bottom: 18px;
  transition: border-color .15s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
}

/* ---------- ADDITIONAL ELEMENTS AND ACCESSIBILITY ---------- */
::-webkit-scrollbar {
  width: 11px;
  background: var(--accent);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #ded7c0;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 2px;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { transition: none !important; animation: none !important; }
}

/* ---------- Z-INDEX LAYERS ---------- */
header { z-index: 10; }
.mobile-menu { z-index: 100; }
.cookie-banner { z-index: 300; }
.cookie-modal-backdrop { z-index: 400; }
.cookie-modal { z-index: 401; }

/* ---------- END OF NOTIFENDIC ECODOMOV LUXURY PREMIUM CSS ---------- */
