/* ==== 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, 
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;
}
body {
  background: #F5F6F1;
  color: #1F2421;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #194D36;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #B09B63;
  outline: none;
}

ul, ol {
  list-style: none;
}
strong, b {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #194D36;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 600; }

p, .text-section, .faq-answer {
  color: #263321;
  margin-bottom: 16px;
  font-size: 1rem;
}

/* ==== LUXURY PREMIUM BRAND COLORS AND TYPOGRAPHY ==== */
:root {
  --primary: #194D36;
  --secondary: #88B293;
  --accent: #F5F6F1;
  --lux-gold: #B09B63;
  --lux-gold-soft: #D5C48F;
  --on-accent: #1F2421;
  --on-dark: #f5f6f1;
  --body-font: 'Roboto', Arial, sans-serif;
  --display-font: 'Montserrat', Arial, sans-serif;
}

body {
  background: var(--accent);
  color: var(--on-accent);
}

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

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==== HEADER ==== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ecebe4;
  box-shadow: 0 2px 16px 0 rgba(26, 33, 17, 0.05);
  position: relative;
  z-index: 1100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
}
header a img {
  height: 42px;
  margin-right: 24px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: var(--display-font);
  color: #194D36;
  padding: 6px 2px;
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: var(--lux-gold);
  border-bottom: 2px solid var(--lux-gold);
}
.button-primary {
  font-family: var(--display-font);
  background: linear-gradient(90deg, var(--lux-gold) 60%, var(--lux-gold-soft) 100%);
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 13px 30px;
  font-size: 1.09rem;
  font-weight: 600;
  box-shadow: 0 3px 16px rgba(176,155,99,0.09);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.23s, color 0.2s, transform 0.1s;
  outline: none;
  margin-left: 18px;
  text-shadow: 0 1px 5px rgba(145,120,50,0.05);
}
.button-primary:hover, .button-primary:focus {
  background: linear-gradient(90deg, #bfad77 70%, #F8E8A0 100%);
  color: #194D36;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(176,155,99,0.11);
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 20px;
  background: #fff;
  color: var(--primary);
  font-size: 2rem;
  border: none;
  padding: 8px;
  border-radius: 12px;
  z-index: 1201;
  box-shadow: 0 2px 8px rgba(25,77,54,0.08);
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--lux-gold-soft);
  color: var(--lux-gold);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,77,54, 0.95);
  color: #fff;
  z-index: 1300;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--lux-gold);
  font-size: 2.2rem;
  padding: 18px 24px;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  margin-top: 18px;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff8e1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
  width: 100vw;
  align-items: flex-start;
  padding-left: 44px;
}
.mobile-nav a {
  font-family: var(--display-font);
  font-size: 1.35rem;
  color: #fff;
  font-weight: 400;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  width: 90vw;
  display: flex;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--lux-gold);
  border-bottom: 2px solid var(--lux-gold);
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(100deg, #f8f6eb 80%, #f3efdc 100%);
  border-bottom: 1.5px solid #ede8dd;
  padding: 52px 0 40px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .content-wrapper {
  max-width: 750px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.7rem;
  font-family: var(--display-font);
  font-weight: 800;
  margin-bottom: 0.5em;
  letter-spacing: 0.03em;
}
.hero p {
  font-size: 1.2rem;
  color: #263321;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 650px;
}
.hero .button-primary {
  margin: 0;
}

/* ==== FLEXBOX CONTAINERS & SPACING ==== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
  margin-bottom: 16px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(25,77,54,0.08);
  min-width: 240px;
  max-width: 350px;
  flex: 1 1 280px;
  overflow: hidden;
}
.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;
  margin-bottom: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 28px 20px 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 26px 0 rgba(25,77,54,0.10);
  border-left: 7px solid var(--lux-gold);
  margin-bottom: 24px;
  margin-top: 8px;
  width: 100%;
  max-width: 600px;
  min-width: 220px;
}
.testimonial-card p, .testimonial-card h3 {
  color: #261c0b;
  font-size: 1.09rem;
}
.testimonial-card span {
  color: #8c7b40;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 14px 0 rgba(25,77,54,0.08);
  padding: 30px 22px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 240px;
}
.feature-item img {
  height: 38px;
  width: auto;
}
.feature-item h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--primary);
}
.feature-item p {
  font-size: 1rem;
  color: #263321;
}

/* ==== SERVICE CARDS (services.html) ==== */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 10px 0;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3.5px 18px 0 rgba(25,77,54,0.08);
  padding: 28px 30px 26px 26px;
  flex: 1 1 300px;
  min-width: 230px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 20px;
  border-left: 4px solid var(--lux-gold);
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-card img {
  height: 34px;
}
.service-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
}
.service-price {
  font-size: 1.06rem;
  color: var(--lux-gold);
  font-family: var(--display-font);
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 38px 0 rgba(176,155,99,0.16), 0 2px 18px 0 rgba(25,77,54,0.08);
  transform: scale(1.03) translateY(-3px);
}

/* ==== TEXT SECTIONS, MAP, CONTENT ==== */
.text-section {
  background: #fff;
  border-radius: 16px;
  padding: 25px 24px;
  box-shadow: 0 2px 9px 0 rgba(25,77,54,0.09);
  margin-bottom: 18px;
}
.text-section ul, .text-section ol {
  margin-left: 14px;
  margin-bottom: 8px;
  padding-left: 18px;
  list-style: disc outside;
}
.text-section ul li, .text-section ol li {
  color: #194D36;
  font-size: 1rem;
  margin-bottom: 9px;
  font-weight: 450;
}
.map-placeholder {
  background: #ebe6db;
  color: #3e3e3e;
  font-size: 1.1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 32px 24px;
  border-radius: 13px;
  box-shadow: 0 3px 10px 0 rgba(25,77,54,0.04);
  margin: 24px 0 8px 0;
  font-family: var(--display-font);
}

/* ==== PROCESS STEPS (procedure.html) ==== */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 15px;
  padding-left: 4px;
}
.process-steps li {
  flex: 1 1 210px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(25,77,54,0.08);
  padding: 24px 18px 20px 18px;
  color: var(--primary);
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.process-steps img {
  height: 32px;
  width: auto;
  margin-right: 6px;
  margin-top: 2px;
}
.process-steps strong {
  font-family: var(--display-font);
  font-weight: 700;
  color: var(--lux-gold);
  font-size: 1.01rem;
  letter-spacing: 0.01em;
}

/* ==== FAQ ACCORDION ==== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(25,77,54,0.05);
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow 0.16s;
}
.faq-item:focus-within, .faq-item:hover {
  box-shadow: 0 4px 23px 0 rgba(176,155,99,0.11), 0 2px 12px 0 rgba(25,77,54,0.05);
}
.faq-question {
  width: 100%;
  background: none;
  color: var(--primary);
  font-family: var(--display-font);
  font-size: 1.11rem;
  padding: 18px 24px;
  border: none;
  text-align: left;
  outline: none;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  letter-spacing: 0.01em;
  transition: background 0.16s;
}
.faq-question:after {
  content: '\25BC';
  float: right;
  color: var(--lux-gold);
  font-size: 1.2rem;
  margin-left: 16px;
  transition: transform 0.3s;
}
.faq-item.open .faq-question:after {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 24px 18px 24px;
  color: #313428;
  font-size: 1rem;
  display: none;
  animation: fadein 0.45s;
}
.faq-item.open .faq-answer {
  display: block;
}
@keyframes fadein {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ==== FOOTER ==== */
footer {
  background: var(--primary);
  color: #fff8dc;
  padding: 48px 0 28px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-right: 20px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: var(--display-font);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--lux-gold);
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #E3C788;
  font-family: var(--display-font);
  font-weight: 600;
}
.brand-info img {
  height: 34px; margin-right: 4px;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-right: 18px;
}
.legal-links a {
  color: #FFDDA8;
  font-size: 0.97rem;
  font-weight: 400;
  transition: color 0.17s;
}
.legal-links a:hover { color: var(--lux-gold); }
.social-media {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}
.social-media img {
  height: 28px;
  filter: grayscale(30%) brightness(1.2);
  margin-right: 2px;
  transition: filter 0.21s;
  cursor: pointer;
}
.social-media img:hover {
  filter: none;
}
.social-media span {
  font-size: 1rem;
  color: #fff;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #24251A;
  color: #fffadc;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1600;
  box-shadow: 0 -2px 24px 0 rgba(33, 22, 3, 0.10);
  padding: 20px 8px 22px 8px;
  min-height: 84px;
  animation: slide-in-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slide-in-bottom {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}
.cookie-banner-content {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  max-width: 1040px;
  width: 100%;
}
.cookie-banner p {
  margin: 0 18px 0 0; font-size: 1.03rem;
  color: #fffadc;
  max-width: 540px;
}
.cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn, .cookie-settings-btn {
  font-family: var(--display-font);
  font-size: 1rem;
  background: var(--lux-gold);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(176,155,99,0.09);
  font-weight: 600;
  cursor: pointer;
  margin-right: 4px;
  transition: background 0.19s, color 0.19s;
}
.cookie-btn.reject {
  background: #66664b;
  color: #fff4e0;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #d9be78;
  color: #1F2421;
}
.cookie-settings-btn {
  background: none;
  border: 1.5px solid var(--lux-gold);
  color: var(--lux-gold);
  padding: 10px 20px;
}
.cookie-settings-btn:hover { background: #fff6db; color: var(--primary); }

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(27,30,17, 0.72);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.25s;
}
.cookie-modal-content {
  background: #fff;
  color: var(--primary);
  border-radius: 18px;
  padding: 38px 38px 30px 38px;
  min-width: 320px;
  max-width: 450px;
  box-shadow: 0 4px 32px 0 rgba(33, 22, 3, 0.13);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.32rem;
  color: var(--primary);
  font-family: var(--display-font);
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-weight: 500;
  font-family: var(--body-font);
}
.cookie-category input[type=checkbox] {
  width: 19px;
  height: 19px;
  accent-color: var(--lux-gold);
  margin-right: 7px;
}
.cookie-category input[disabled] {
  opacity: 0.55;
}
.cookie-modal-close {
  position: absolute;
  right: 24px; top: 22px;
  color: var(--lux-gold);
  background: none;
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #9a8644;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1080px) {
  .container, footer .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .services-list, .features-grid, .card-container, .process-steps {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .features-grid, .services-list, .process-steps,.card-container {
    flex-wrap: wrap;
    gap: 13px;
  }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 54px;
    gap: 10px;
    padding-right: 10px; padding-left: 10px;
  }
  nav { display: none; }
  .button-primary { display: none; }
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    right: 16px; top: 13px;
  }
  .hero h1 {
    font-size: 1.55rem;
  }
  .hero .container {
    padding: 0 6px;
  }
  .features-grid, .services-list, .process-steps, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .service-card, .card {
    min-width: 96vw; max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
    align-items: flex-start;
  }
  .testimonial-card {
    max-width: 97vw;
    padding-left: 14px; padding-right: 14px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .footer-nav, .legal-links { flex-direction: row; flex-wrap: wrap; gap: 12px; margin: 0; }
  .brand-info img { height: 28px; }
  .map-placeholder { padding: 18px 10px; font-size: 1rem; }
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 500px) {
  .hero {
    padding: 30px 0 20px 0;
  }
  .hero h1, h1 {
    font-size: 1.22rem;
  }
  .section {
    padding: 25px 4px;
    margin-bottom: 36px;
  }
  .testimonial-card, .feature-item, .service-card {
    padding-left: 9px; padding-right: 9px; padding-top: 17px; padding-bottom: 15px;
    min-width: 97vw; max-width: 100vw;
    font-size: 1rem;
  }
}

/* ==== ANIMATIONS, HOVER EFFECTS & MICROINTERACTIONS ==== */
button, .button-primary, .cookie-btn, .cookie-settings-btn, .faq-question {
  transition: background 0.2s, box-shadow 0.15s, color 0.16s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(176,155,99,0.10), 0 2px 10px 0 rgba(25,77,54,0.09);
  transform: translateY(-2px) scale(1.01);
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 7px 30px 0 rgba(176,155,99,0.11), 0 2px 10px 0 rgba(25,77,54,0.09);
  transform: scale(1.02) translateY(-1.5px);
}

/* ==== INPUTS & FORMS (future-proof) ==== */
input[type=text], input[type=email], textarea {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid #CFCEA7;
  border-radius: 9px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: var(--body-font);
  margin-bottom: 18px;
  transition: border-color 0.16s;
}
input[type=text]:focus, input[type=email]:focus, textarea:focus {
  border-color: var(--lux-gold);
}
label {
  font-weight: 500;
  font-family: var(--display-font);
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}

/* ==== Z-INDEX DECLARATIONS ==== */
header { z-index: 1100; }
.mobile-menu { z-index: 1300; }
.cookie-banner { z-index: 1600; }
.cookie-modal { z-index: 2000; }

/* ==== UTILITY CLASSES ==== */
.d-none { display: none !important; }
.center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.bg-gold { background: var(--lux-gold); color: #fff; }

/* ==== END OF CSS FILE ==== */
