/* ------------------------ CSS RESET & NORMALIZATION ------------------------ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #FFF;
  color: #181818;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #B43B27;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.55,0,.1,1);
  font-weight: 500;
}
a:hover, a:focus {
  color: #236D3A;
  outline: none;
}
ul, ol {
  margin-left: 1.25rem;
  margin-bottom: 1.25rem;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #8B2412;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p {
  margin-bottom: 1.25rem;
  font-size: 1.08rem;
  color: #222;
}
blockquote {
  border-left: 5px solid #B43B27;
  padding-left: 18px;
  font-style: italic;
  color: #236D3A;
  background: #F8F5F1;
  margin: 1.25rem 0 1.25rem .5rem;
}
strong {
  font-weight: 700;
  color: #8B2412;
}

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

/* ---------------------- LAYOUT, SPACING, FLEXBOX RULES ---------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(180,59,39,0.09), 0 1.5px 6px rgba(35,109,58,0.08);
  padding: 24px;
  min-width: 240px;
  flex: 1 1 300px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 11px 48px 0 rgba(180,59,39,0.15), 0 4px 24px rgba(35,109,58,0.14);
  transform: translateY(-5px) scale(1.02);
  z-index: 2;
}
.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;
  background: #F8F5F1;
  border-radius: 16px;
  box-shadow: 0 3px 16px 0 rgba(35,94,60,0.07);
  margin-bottom: 20px;
  border-left: 5px solid #236D3A;
  min-width: 250px;
  max-width: 600px;
  color: #181818;
}
.testimonial-card span {
  font-size: 0.97rem;
  font-weight: 600;
  color: #8B2412;
  margin-left: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 1.5px 7px rgba(180,59,39,0.06);
  padding: 20px 18px 18px 18px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.feature-item:hover {
  box-shadow: 0 7px 26px rgba(35,109,58,0.15);
  transform: translateY(-3px) scale(1.025);
  z-index: 2;
}
.feature-item img {
  width: 44px;
  height: 44px;
  background: #F8F5F1;
  border-radius: 50%;
  padding: 6px;
  margin-bottom: 0.5em;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.text-section {
  margin-bottom: 12px;
  background: #fff;
}

.service-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.service-list li {
  background: #F8F5F1;
  border-radius: 11px;
  padding: 14px 18px 10px 18px;
  color: #181818;
  position: relative;
  font-size: 1.07rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 1px 5px 0 rgba(35,109,58,0.06);
}
.service-list li strong {
  color: #B43B27;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1em;
}
.service-list a {
  font-size: 1rem;
  color: #236D3A;
  text-decoration: underline;
}
.service-list a:hover { color: #B43B27; text-decoration: underline wavy; }

/* --- HERO --- */
.hero {
  background: #B43B27;
  color: #fff;
  padding: 50px 0 40px 0;
  margin-bottom: 36px;
  position: relative;
  overflow-x: hidden;
  box-shadow: 0 8px 40px 0 rgba(180,59,39,0.12);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 720px;
  gap: 28px;
}
.hero h1 {
  color: #FFF;
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 0 2.5px 9px rgba(35,109,58,0.13);
  margin-bottom: 10px;
}
.hero p {
  color: #FFF;
  font-size: 1.19rem;
  margin-bottom: 18px;
}

/* ---------------------- NAVIGATION & HEADER STYLES ------------------------- */
header {
  background: #FFF;
  box-shadow: 0 3px 13px 0 rgba(180,59,39,0.10);
  z-index: 100;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: flex-start;
  min-height: 72px;
}
.main-nav a {
  padding: 6px 10px;
  font-size: 1.06rem;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #8B2412;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.17s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F8F5F1;
  color: #236D3A;
}
.main-nav img {
  height: 42px;
  width: auto;
  margin-right: 8px;
}
.btn-primary {
  background: #B43B27;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 28px;
  font-size: 1.12rem;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 9px rgba(180,59,39,0.14);
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.18s, box-shadow 0.16s, transform 0.16s;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #236D3A;
  color: #fff;
  box-shadow: 0 6px 22px rgba(35,109,58,0.13);
  transform: scale(1.03);
}
.btn-secondary {
  background: #236D3A;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 9px 24px;
  font-size: 1.04rem;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(35,109,58,0.11);
  transition: background 0.18s, box-shadow 0.18s, transform 0.16s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #B43B27;
  color: #FFF;
  box-shadow: 0 6px 22px rgba(180,59,39,0.11);
  transform: scale(1.03);
}

/* ---------------------- FOOTER ---------------------- */
footer {
  background: #B43B27;
  color: #fff;
  padding: 32px 14px 18px 14px;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #FFF;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  text-decoration: underline dotted;
  font-size: 1.02rem;
  padding: 0 4px;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #F8F5F1; background: #236D3A; border-radius: 6px; }
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 1rem;
}
.footer-info img {
  width: 48px;
  height: auto;
  margin-bottom: 8px;
}
.footer-info address, .footer-info div, .footer-info a {
  color: #fff;
  font-style: normal;
  font-size: 1em;
  margin-bottom: 3px;
}
.footer-info a {
  text-decoration: underline;
  color: #F98E5C;
  font-weight: 600;
}

/* ---------------------- MOBILE NAVIGATION ---------------------- */
.mobile-menu-toggle {
  display: none;
  background: #F8F5F1;
  color: #B43B27;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 12px;
  z-index: 1201;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(180,59,39,0.13);
  transition: background .15s, color .15s, box-shadow .15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #B43B27;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 1202;
  transform: translateX(-105vw);
  transition: transform 0.4s cubic-bezier(.67,0,.39,1);
  box-shadow: 0 4px 32px 0 rgba(180,59,39,0.18);
  padding: 0;
  overflow-y: auto;
  visibility: hidden;
}
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: #F8F5F1;
  border: none;
  color: #B43B27;
  font-size: 2rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-self: flex-end;
  margin: 20px 23px 0 0;
  cursor: pointer;
  z-index: 1203;
  box-shadow: 0 1.5px 10px rgba(35,109,58,0.12);
  transition: background .13s, color .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #B43B27;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 29px;
  align-items: center;
  margin-top: 40px;
}
.mobile-nav a {
  color: #B43B27;
  font-size: 1.45rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #F8F5F1;
  padding: 12px 38px;
  border-radius: 24px;
  transition: background 0.16s, color .17s;
  min-width: 200px;
  text-align: center;
  border: 2px solid transparent;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #B43B27;
  color: #fff;
  border: 2px solid #8B2412;
}

/* ---------------------- COOKIE CONSENT BANNER & MODAL ---------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #181818;
  color: #fff;
  z-index: 1400;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 22px 20px 18px 20px;
  box-shadow: 0 -3px 30px #8B2412b7;
  animation: slideUpCookie 0.46s cubic-bezier(.7,0,.1,1);
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1.04rem;
  margin-bottom: 0;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner .btn-cookie {
  border: none;
  border-radius: 17px;
  padding: 9px 22px;
  font-size: 1.04rem;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0;
  box-shadow: 0 1.5px 6px #B43B2733;
  transition: background .14s, color .14s, transform .14s;
}
.cookie-banner .btn-cookie.accept {
  background: #236D3A;
  color: #fff;
}
.cookie-banner .btn-cookie.reject {
  background: #B43B27;
  color: #fff;
}
.cookie-banner .btn-cookie.settings {
  background: #F8F5F1;
  color: #B43B27;
  border: 1.5px solid #B43B27;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  transform: scale(1.05);
  box-shadow: 0 4px 14px #B43B2766;
  outline: none;
}

.cookie-modal {
  position: fixed;
  z-index: 1980;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,24,24,0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.27s cubic-bezier(.7,0,.22,1);
}
.cookie-modal.active {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.cookie-modal .cookie-modal-box {
  background: #FFF;
  color: #181818;
  padding: 34px 25px 26px 25px;
  border-radius: 16px;
  max-width: 410px;
  width: 96vw;
  box-shadow: 0 6px 40px #B43B276a;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-modal .cookie-modal-close {
  background: #F8F5F1;
  color: #B43B27;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.37rem;
  cursor: pointer;
  transition: background .13s, color .13s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #B43B27;
  color: #fff;
}
.cookie-modal .cookie-prefs {
  width: 100%;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.08rem;
}
.cookie-modal .cookie-cat input[type='checkbox'] {
  accent-color: #236D3A;
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-cat label {
  font-weight: 600;
  color: #236D3A;
}
.cookie-modal .cookie-cat .desc {
  font-size: 0.98rem;
  color: #8B2412;
  margin-left: 8px;
}
.cookie-modal .cookie-cat.essential label,
.cookie-modal .cookie-cat.essential .desc { color: #B43B27; }
.cookie-modal .cookie-cat.essential input[type='checkbox'] {
  accent-color: #B43B27;
}
.cookie-modal .cookie-cat input[disabled] {
  filter: grayscale(1) contrast(0.7) opacity(0.75);
}
.cookie-modal .btn-cookie {
  margin-top: 19px;
}
/* ---------------------- RESPONSIVE DESIGN & ADAPTIVE LAYOUTS ---------------------- */
@media (max-width: 1200px) {
  .container { max-width: 96vw; }
}
@media (max-width: 992px) {
  .hero h1 { font-size: 2.05rem; }
  .main-nav { gap: 16px; }
  .feature-item { min-width: 180px; max-width: 290px; padding: 14px 10px; }
  .testimonial-card { max-width: 97vw; }
}
@media (max-width: 900px) {
  .feature-grid, .content-grid {
    gap: 16px;
  }
  .feature-item { min-width: 150px; max-width: 95vw; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero { padding: 33px 0; }
  .hero .content-wrapper { gap: 18px; }
  .section {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
  .feature-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .testimonial-card, .card {
    min-width: unset;
    max-width: 96vw;
    font-size: 0.99rem;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.13rem; }
  .footer-info {
    font-size: 0.95rem;
    gap: 5px;
  }
  .footer-nav { gap: 12px; }
  .cookie-modal .cookie-modal-box { padding: 17px 7px 13px 7px; }
}

/* ---------------------- SCROLLBAR, SELECTION & MISC ---------------------- */
::selection {
  background: #B43B27;
  color: #fff;
}
::-webkit-scrollbar {
  width: 11px;
  background: #FFF5ef;
}
::-webkit-scrollbar-thumb {
  background: #F8F5F1;
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: #B43B27;
}

/* ---------------------- MICRO-INTERACTIONS & EFFECTS ---------------------- */
.btn-primary, .btn-secondary, .btn-cookie {
  transition: background 0.17s, color 0.18s, box-shadow 0.18s, transform 0.19s;
}

.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.18s;
}

.feature-item:hover, .card:hover, .testimonial-card:hover {
  box-shadow: 0 11px 48px 0 rgba(35,109,58,0.13), 0 4px 24px rgba(180,59,39,0.13);
  transform: translateY(-3px) scale(1.019);
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: #181818;
  border: 1.5px solid #B43B27;
  border-radius: 8px;
  padding: 9px 14px;
  outline: none;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: #236D3A;
  background: #F8F5F1;
}

/* ---------- Vibrant energetic accents (shapes, electric marks) ---------- */
.hero::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -16px; right: 0;
  width: 78px; height: 78px;
  background: #236D3A;
  border-radius: 85px 0 70px 90px;
  z-index: 2;
  opacity: 0.19;
}
.hero::before {
  content: '';
  display: block;
  position: absolute;
  top: -24px; left: 0;
  width: 61px; height: 60px;
  background: #F98E5C;
  border-radius: 40px 32px 0 81px;
  z-index: 2;
  opacity: 0.13;
}

/* --- Vibrant Energetic Text Highlights / Electric Underlines --- */
h2, h3, .btn-primary, .btn-secondary, .cookie-banner .btn-cookie.accept, .cookie-banner .btn-cookie.reject {
  text-shadow: 0 1px 4px #F98E5C44, 0 1.5px 10px #236d3a1d;
}

/* END OF CSS */
