/* === 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 {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #fff;
  color: #181818;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: #285943;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4,0,0.2,1);
}

a:focus, a:hover {
  color: #000;
  outline: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #181818;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 { font-size: 2.7rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1.15rem; margin-bottom: 10px; }

.subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #444;
  margin-bottom: 12px;
}

p, ul, ol, blockquote {
  margin-bottom: 16px;
}

ul {
  padding-left: 22px;
  margin-bottom: 24px;
}

li {
  margin-bottom: 10px;
  line-height: 1.6;
}

blockquote {
  border-left: 4px solid #181818;
  background: #f4f4f9;
  color: #262626;
  padding: 22px 30px 22px 18px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-bottom: 24px;
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0; /* gap only when needed in content wrappers */
}

.content-wrapper {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: transparent;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10), 0 1.5px 4px rgba(0,0,0,0.07);
  padding: 28px 24px;
  min-width: 270px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.15s cubic-bezier(0.4,0,0.2,1), transform 0.15s;
}
.card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.14), 0 1.5px 8px rgba(0,0,0,0.08);
  transform: translateY(-2px) scale(1.012);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f4f4f9;
  border-radius: 12px;
  box-shadow: 0 3px 16px rgba(27,27,35,0.06);
  margin-bottom: 20px;
  min-width: 260px;
  font-size: 1.06rem;
}
.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1em;
  font-weight: 500;
  color: #222;
  opacity: .88;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2.5px 12px rgba(45,45,50,0.05);
  padding: 24px 20px;
  flex: 1 1 240px;
  min-width: 200px;
  transition: box-shadow 0.16s cubic-bezier(0.4,0,0.2,1);
}
.feature-item img { width: 38px; height: 38px; }
.feature-item:hover {
  box-shadow: 0 8px 32px rgba(16,16,16,0.12);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.services-list ul,
.process-steps ol,
.why-choose-us ul,
.text-section ul {
  padding-left: 22px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-steps ol {
  counter-reset: step;
  list-style: none;
}
.process-steps ol li::before {
  counter-increment: step;
  content: counter(step) '.';
  font-weight: 600;
  margin-right: 8px;
  color: #181818;
  font-family: 'Roboto', Arial, sans-serif;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.contact-info-block span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #262626;
  font-size: 1rem;
}
.contact-info-block img {
  width: 18px;
  height: 18px;
  opacity: 0.82;
}
.contact-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
  margin-top: 18px;
}
.contact-mini > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #222;
}
.contact-mini img {
  width: 18px;
  height: 18px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.newsletter-form label {
  font-size: 1rem;
  color: #272727;
}
.newsletter-form input[type=email] {
  font-size: 1rem;
  padding: 6px 12px;
  border: 1px solid #b3b3b3;
  border-radius: 6px;
  color: #181818;
  transition: border .15s;
}
.newsletter-form input[type=email]:focus {
  border-color: #181818;
}

/****** HEADER ******/
header {
  background: #fff;
  border-bottom: 1.5px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  height: 78px;
  justify-content: space-between;
  gap: 0;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 18px;
  height: 48px;
}
.logo img { max-height:44px; width:auto; }

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #232323;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color .15s;
}
.main-nav a:after {
  content: '';
  position: absolute;
  left: 0; right:0;
  bottom: 0;
  height:2px;
  background: #181818;
  opacity: 0;
  transition: opacity .15s, background .16s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #285943;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  opacity: 1;
  background: #285943;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 7px;
  border: none;
  font-weight: 600;
  letter-spacing: 0;
  font-size: 1.1rem;
  transition: background 0.18s, color .15s, box-shadow .15s, transform .12s;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  padding: 0 22px;
  height: 44px;
  min-width: 164px;
  margin-left: 28px;
}
.cta.primary {
  background: #181818;
  color: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.10);
}
.cta.primary:hover, .cta.primary:focus {
  background: #285943;
  color: #fff;
  transform: translateY(-1px) scale(1.022);
  box-shadow: 0 6px 24px rgba(40,89,67,.10), 0 1px 3px rgba(0,0,0,0.03);
}
.cta.secondary {
  background: #fff;
  color: #181818;
  border: 1.5px solid #181818;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #181818;
  color: #fff;
  box-shadow: 0 3px 10px rgba(24,24,24,.09);
}
.cta.tertiary {
  background: #f4f4f9;
  color: #181818;
  border: 1.5px solid #d4d4dd;
}
.cta.tertiary:hover, .cta.tertiary:focus {
  background: #181818;
  color: #fff;
  border-color: #181818;
}

/****** MOBILE NAVIGATION ******/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #181818;
  cursor: pointer;
  margin-left: 24px;
  padding: 6px 12px;
  z-index: 110;
  transition: color .15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #285943;
}
.mobile-menu {
  position: fixed;
  z-index: 200;
  top: 0; left:0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,24,24, 0.96);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.7,0,0.3,1);
  box-shadow: 0 8px 32px rgba(10,10,10,0.22);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.15rem;
  margin: 20px 0 10px 24px;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: color .14s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover { color: #A7C957; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 30px 38px;
  margin-top: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 0;
  border-radius: 5px;
  transition: background 0.12s, color 0.12s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #333;
  color: #A7C957;
}

@media (max-width: 1012px) {
  .main-nav {
    gap: 15px;
  }
  header .container {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
/****** Remove cta margin when stacked vertically ******/
@media (max-width: 650px) {
  .cta {
    margin-left: 0;
    min-width: 140px;
    width: 100%;
  }
}

/***** HERO SECTION *****/
.hero {
  background: #f4f4f9;
  color: #181818;
  padding: 68px 0 54px 0;
  min-height: 390px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.hero .container {
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.hero h1 {
  color: #181818;
  margin-bottom: 10px;
  font-size: 2.2rem;
}
.hero h2.subtitle {
  font-size: 1.32rem;
  color: #444;
}

/***** TESTIMONIALS PREVIEW (slider styles) *****/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}

/***** FOOTER *****/
footer {
  background: #181818;
  color: #fff;
  padding: 44px 0 32px 0;
  border-top: 1.5px solid #ebebeb;
  margin-top: 60px;
  font-size: 1rem;
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo img {
  max-height: 44px;
  filter: grayscale(1) brightness(1.1);
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  margin-top: 7px;
}
.footer-nav a {
  color: #A7C957;
  font-weight: 400;
  font-size: 1.02rem;
  transition: color .14s;
}
.footer-nav a:hover { color: #fff; text-decoration: underline; }
.footer-contact {
  color: #eee;
  margin-top: 8px;
  font-size: 0.97rem;
  line-height: 1.5;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline dotted;
  transition: color .12s;
}
.footer-contact a:hover, .footer-contact a:focus { color: #A7C957; }

/***** VARIOUS CTAs AND LINKS *****/
.read-more {
  margin-left: 8px;
  font-size: 1rem;
  color: #285943;
  text-decoration: underline;
  transition: color .14s;
}
.read-more:hover, .read-more:focus {
  color: #181818;
}

/***** COMPONENTS FOR ALL PAGES *****/
.featured-articles ul {
  list-style: none;
  padding-left: 0;
}
.featured-articles li {
  display: flex;
  align-items: center;
  gap:10px;
  margin-bottom: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed #E4E4EC;
}
.article-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.07rem;
  font-weight: 500;
  color: #181818;
}

/***** THANK YOU SECTION ******/
.thank-you {
  min-height:420px;
  display: flex;
  align-items: center;
}

/***** MAP PLACEHOLDER STYLE *****/
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  color: #444;
  border-radius: 9px;
  border: 1.5px dashed #d6d6d6;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

/***** RESPONSIVE DESIGN *****/
@media (max-width: 1100px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding-top: 38px; padding-bottom: 32px; }
  .feature-item { min-width: 160px; padding: 18px 10px; }
  .featured-articles li { font-size: 1rem; }
}
@media (max-width: 750px) {
  .container { padding: 0 8px; }
  .feature-grid { gap: 10px; }
  .card-container { gap: 14px; }
  .hero h1 { font-size: 1.24rem; }
  .section { margin-bottom: 38px; padding: 22px 5px; }
  .card { padding: 16px 10px; min-width: 170px; }
  .footer-logo img { max-height: 34px; }
}
@media (max-width: 700px) {
  .content-wrapper { max-width: 97vw; padding:0; }
}
@media (max-width: 600px) {
  body { font-size: 15px; }
  .main-nav { display: none !important; }
  .container { padding: 0 4vw; }
  .section { padding: 18px 1vw; }
  .hero .content-wrapper, .content-wrapper, .footer-logo {
    align-items: flex-start;
    gap: 8px;
  }
  .feature-grid,
  .card-container,
  .content-grid,
  .testimonial-slider,
  .contact-mini {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-item,
  .testimonial-card, .card {
    min-width: 0;
    width: 100%;
  }
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.18rem; }
  .footer-contact, .footer-nav { font-size: 0.93rem; }
  .feature-item { font-size: 1rem; }
}

/***** FLEX DIRECTION COLUMN ON MOBILE FOR TEXT-IMAGE SECTIONS *****/
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/***** COOKIE CONSENT BANNER & MODAL *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #181818;
  color: #fff;
  box-shadow: 0 -6px 24px rgba(14,14,18,0.13);
  padding: 22px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 5000;
  animation: fadeInBanner 0.45s cubic-bezier(0.7,0,0.3,1);
}
@keyframes fadeInBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.cookie-banner button {
  appearance: none;
  font-size: 1.06rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  padding: 7px 18px;
  background: #fff;
  color: #181818;
  cursor: pointer;
  margin-right: 8px;
  transition: background 0.13s, color 0.13s, box-shadow 0.12s;
}
.cookie-banner button.accept {
  background: #285943;
  color: #fff;
}
.cookie-banner button.accept:hover { background: #1d402f; color: #fff; }
.cookie-banner button.reject {
  background: #fff;
  color: #181818;
  border: 1px solid #b3b3b3;
}
.cookie-banner button.reject:hover {
  background: #f3f3f3;
  color: #181818;
}
.cookie-banner button.settings {
  background: #fff;
  color: #285943;
  border: 1.5px solid #A7C957;
}
.cookie-banner button.settings:hover { background: #A7C957; color: #181818; }

.cookie-modal-overlay {
  position: fixed;
  top: 0; left:0; right:0; bottom:0;
  background: rgba(18,18,22, 0.80);
  z-index: 5020;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .43s cubic-bezier(0.6,0,0.2,1);
}
@keyframes fadeInModal {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: #181818;
  border-radius: 10px;
  box-shadow: 0 12px 44px rgba(0,0,0,.19);
  padding: 40px 30px 28px 30px;
  max-width: 400px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  animation: scaleInModal .4s cubic-bezier(0.6,0,0.2,1);
}
@keyframes scaleInModal {
  from {transform: scale(0.84); opacity:0;}
  to {transform: scale(1); opacity:1;}
}
.cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 14px;
  background: none;
  border: none;
  font-size: 1.36rem;
  color: #181818;
  cursor: pointer;
}
.cookie-categories {
  margin: 18px 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cookie-category label {
  color: #181818;
  font-size: 1rem;
}
.cookie-toggle {
  width: 42px;
  height: 22px;
  background: #e6e6e6;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0; position: absolute;
}
.cookie-toggle span {
  position: absolute;
  left: 2.5px; top: 2.5px;
  width: 17px; height: 17px;
  background: #A7C957;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-toggle input:checked + span {
  background: #285943;
  left: 22px;
}
.cookie-category.essential {
  opacity: .67;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-actions button {
  font-size: 1.05rem;
}

@media (max-width: 580px) {
  .cookie-modal {
    padding: 25px 8vw 22px 8vw;
    min-width: 0;
    width: 94vw;
    font-size: 1rem;
  }
  .cookie-categories { gap: 7px; }
}

/***** SMOOTH MICRO-INTERACTIONS *****/
button, .cta, .card, .feature-item, .testimonial-card, .cookie-banner, .cookie-modal, .mobile-menu {
  will-change: transform, box-shadow, background, color, opacity;
}

::-webkit-scrollbar {
  width: 10px; background: #f4f4f9;
}
::-webkit-scrollbar-thumb {
  background: #d5d5da;
  border-radius: 10px;
}

/* === PRINTING / NOSCRIPT FALLBACKS === */
@media print {
  nav, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display:none !important; }
  body { background: #fff; color: #111; }
}

/* === Z-INDEX FOR KEY COMPONENTS === */
header { z-index: 100; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 5000; }
.cookie-modal-overlay { z-index: 5020; }

/* === BRAND FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Roboto:wght@400;500;700&display=swap');
/* ----- END OF CSS FILE ----- */