/* ==========================================================================  
   CSS RESET & NORMALIZATION
   ========================================================================== */
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,main,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 { height: 100%; }
body { min-height: 100vh; line-height: 1.5; background: #F8F8F6; color: #193347; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section { display: block; }
ul,ol { list-style: none; }
a { text-decoration: none; color: inherit; transition: color .2s; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
:focus { outline: 2px solid #7B9C6B; outline-offset: 2px; }

/* ==========================================================================  
   FONT FACE & TYPOGRAPHY
   ========================================================================== */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background-color: #F8F8F6;
  color: #193347;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #193347;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.375rem; margin-bottom: 12px; }
h4, h5, h6 { margin-bottom: 10px; font-weight: 600; }
.lead {
  font-size: 1.25rem;
  color: #345d41;
  margin-bottom: 18px;
}
p {
  margin-bottom: 16px;
  color: #304034;
  font-size: 1.125rem;
  line-height: 1.7;
}
strong { font-weight: 700; color: #345d41; }
em { font-style: italic; color: #5C7553; }

/* Typography hierarchy */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .lead { font-size: 1.08rem; }
  p { font-size: 1rem; }
}

/* ==========================================================================  
   COLOR PALETTE (nature_organic earth tones)
   ========================================================================== */
:root {
  --color-primary: #193347;
  --color-secondary: #D3B886;
  --color-accent: #F8F8F6;
  --color-green: #7B9C6B; /* Organic green accent */
  --color-olive: #A2A271; /* Soft olive accent */
  --color-brown: #BDA877;
  --color-bg-section: #F0EDE4;
  --color-bg-card: #fffdf6;
  --color-text-dark: #193347;
  --color-text-light: #fff;
  --color-text-muted: #47605C;
  --color-shadow: rgba(40,60,35,0.06);
}

/* ==========================================================================  
   LAYOUT STRUCTURE
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: 30px 30px 40px 16px/20px 40px 30px 16px;
  box-shadow: 0 4px 32px var(--color-shadow);
}
@media (max-width: 900px) {
  .section { padding: 32px 12px; }
}

/* Feature grid & cards (using only flex) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  background: var(--color-bg-card);
  padding: 26px 24px;
  border-radius: 22px 32px 20px 24px/24px 18px 16px 36px;
  box-shadow: 0 2px 13px var(--color-shadow);
  flex: 1 1 240px;
  min-width: 250px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow .22s, background .22s;
  border-left: 6px solid var(--color-green);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 6px rgba(121,169,104,0.09));
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px rgba(89, 121, 80, 0.16), 0 1.5px 0px var(--color-green);
  background: #f7fbe9;
}
@media (max-width: 700px) {
  .feature-grid { flex-direction: column; gap: 18px; }
  .feature-grid > div { min-width: 0; max-width: unset; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: var(--color-bg-card);
  border-radius: 28px;
  box-shadow: 0 4px 32px var(--color-shadow);
  margin-bottom: 20px;
  padding: 22px 22px 16px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 350px;
  gap: 20px;
  transition: box-shadow .2s, transform .16s;
}
.card:hover {
  box-shadow: 0 8px 40px rgba(121,169,104,0.15);
  transform: translateY(-4px) scale(1.01);
}

.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;
}
@media (max-width: 768px) {
  .content-grid { flex-direction: column; gap: 18px; }
  .text-image-section { flex-direction: column; align-items: flex-start; }
}

/* Cards, Features, Testimonials, USPs, Services */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin: 20px 0 20px 0;
  background: #fff;
  box-shadow: 0 2px 14px rgba(89, 121, 80, 0.11);
  border-radius: 24px 30px 18px 32px/24px 16px 22px 18px;
  border-left: 6px solid var(--color-green);
  color: var(--color-text-dark);
  transition: box-shadow .15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px #BAD6AE55, 0 1px 0 var(--color-green);
}
.testimonial-card p {
  margin-bottom: 4px;
  color: #304034;
  font-size: 1.11rem;
  font-style: italic;
}
.testimonial-card div {
  font-size: 1rem;
  color: #60804F;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.usp, .usp ul, .usc ul {
  margin-top: 18px;
  color: #426642;
  font-size: 1.04rem;
}
.usp strong {
  color: #789e58;
}

.service-list {
  margin-bottom: 22px;
  padding-left: 2px;
  color: #2A4832;
  font-size: 1.06rem;
}
.service-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 26px;
}
.service-list li:before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--color-green);
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 6px;
  opacity: 0.6;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.contact-mini, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.contact-mini li, .contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #456C3B;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.contact-mini img, .contact-details img {
  width: 22px;
  height: 22px;
  filter: grayscale(48%) brightness(1.08) sepia(0.3) hue-rotate(40deg) saturate(120%) drop-shadow(0 1.5px 5px #bcd09d37);
}
.contact-info-note { font-size: 0.97rem; color: #567658; margin-bottom: 10px; }

.quick-links {
  color: #789e58;
  font-size: 1rem;
  margin: 12px 0 18px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.quick-links a {
  color: #789e58;
  text-decoration: underline;
  transition: color .15s;
  padding-bottom: 2px;
}
.quick-links a:hover,
.quick-links a:focus { color: var(--color-primary); }

/* ==========================================================================  
   HEADER & NAVIGATION (NATURE ORGANIC STYLE)
   ========================================================================== */
header {
  background: var(--color-accent);
  border-bottom: 4px solid var(--color-green);
  padding: 0 0 0 0;
  position: relative;
  box-shadow: 0 1px 10px var(--color-shadow);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 36px;
  flex-direction: row;
}
header nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #345d41;
  padding: 6px 9px;
  border-radius: 12px;
  transition: color .18s, background .18s, box-shadow .18s;
}
header nav a:hover,
header nav a:focus {
  background: #E8F2E0;
  color: #193347;
  box-shadow: 0 2px 12px #b8c4a271;
}
header img {
  max-height: 52px;
  width: auto;
  margin-right: 2vw;
}
.cta-primary {
  background: linear-gradient(97deg,#7B9C6B 65%,#A2A271 100%);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 10px 28px 10px 24px;
  border-radius: 28px 20px 26px 24px/20px 24px 22px 30px;
  box-shadow: 0 3px 21px 1px rgba(121,169,104,0.13);
  border: none;
  margin-left: 12px;
  transition: background .19s, box-shadow .21s, transform .14s;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(98deg,#A2A271 30%,#7B9C6B 100%);
  color: #fff;
  box-shadow: 0 12px 36px 0 #b8d47f57, 0 1px 0 #68852421;
  transform: translateY(-2px) scale(1.025);
}

/* Hide .mobile-menu, .mobile-menu-toggle on desktop */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 950px) {
  header .container {
    gap: 10px;
  }
  header nav { gap: 10px; }
  .cta-primary {
    padding: 9px 18px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: fixed;
    top: 18px;
    right: 24px;
    z-index: 104;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    color: #7B9C6B;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1.5px 10px #b8d47f27;
    border: none;
    transition: background .18s, box-shadow .18s;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: #E8F2E0;
    color: #345d41;
    box-shadow: 0 8px 24px #a2a2712a;
  }
}

/* Mobile Menu Styles */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(127deg,#F8F8F6 85%,#E8F2E0 100%);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.74,.04,.27,1.12);
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
  box-shadow: 0 0 48px 16px #BDA8771a inset;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: #7B9C6B;
  color: #fff;
  border: none;
  font-size: 2.05rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 6px #b8d47f27;
  z-index: 221;
  transition: background .12s, color .14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #345d41;
  color: #e8f2e0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 100px 36px 28px 34px;
}
.mobile-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.28rem;
  color: #193347;
  padding: 12px 15px 12px 9px;
  border-radius: 18px;
  background: #E8F2E0;
  margin-bottom: 2px;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #7B9C6B;
  color: #fff;
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ==========================================================================  
   HERO SECTIONS
   ========================================================================== */
.hero {
  padding: 52px 0 38px 0;
  margin-bottom: 32px;
  background: linear-gradient(116deg, #F8F8F6 85%, #E8F2E0 100%);
  border-radius: 0 0 40px 40px/0 0 64px 24px;
  box-shadow: 0 8px 32px rgba(89,121,80,0.06);
}
.hero .container {
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  font-size: 2.35rem;
  color: #193347;
  margin-bottom: 11px;
}
.hero p {
  font-size: 1.17rem;
  color: #688524;
  margin-bottom: 19px;
}
.hero .cta-primary { margin-top: 18px; }
@media (max-width: 700px) {
  .hero {
    padding: 30px 0 18px 0;
    border-radius: 0 0 22px 22px/0 0 32px 14px;
  }
  .hero h1 { font-size: 1.38rem; }
}

/* ==========================================================================  
   FOOTER
   ========================================================================== */
footer {
  background: #E8F2E0;
  color: #304034;
  font-size: 0.98rem;
  border-top: 4px solid #A2A271;
  padding: 20px 0 16px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
footer img {
  max-height: 46px;
  margin-bottom: 7px;
}
footer nav {
  color: #5C7553;
  gap: 12px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
footer nav a {
  color: #7B9C6B;
  text-decoration: underline;
  padding: 3px 7px;
  border-radius: 7px;
  font-size: 0.98rem;
  transition: color .15s, background .11s;
}
footer nav a:hover {
  color: #193347;
  background: #fff;
}
footer p { margin-bottom: 3px; }

/* ==========================================================================  
   BUTTONS, LINKS, FORMS
   ========================================================================== */
button, .cta-primary, .btn {
  transition: background .16s, color .16s, transform .13s, box-shadow .16s;
}
.btn, .cta-primary {
  background: #7B9C6B;
  color: #fff;
  padding: 8px 26px;
  border-radius: 28px 24px 26px 22px/18px 18px 16px 22px;
  box-shadow: 0 2px 18px 1px rgba(132,170,86,0.08);
  font-size: 1rem;
  border: none;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .07em;
}
.btn:hover, .btn:focus, .cta-primary:hover, .cta-primary:focus {
  background: #193347;
  color: #D3B886;
  transform: translateY(-1.5px) scale(1.02);
  box-shadow: 0 5px 24px #99bb7a3d;
}

/* Links */
a { color: #304034; }
a:hover, a:active, a:focus { color: #7B9C6B; }

/* ==========================================================================  
   MODALS, COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffdf6;
  color: #304034;
  border-top: 4px solid #A2A271;
  box-shadow: 0 -2px 16px #bda87722;
  z-index: 9999;
  padding: 18px 18px 18px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 1rem;
  animation: fadeInUp .5s;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(100px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  margin-left: auto;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 22px;
  border-radius: 18px;
  background: #7B9C6B;
  color: #fff;
  font-size: 1.01rem;
  font-family: 'Roboto', Arial, sans-serif;
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 6px #b8d47f24;
  transition: background .17s, color .13s;
}
.cookie-btn.settings {
  background: #BDA877;
  color: #fff;
}
.cookie-btn.reject {
  background: #BDA877;
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #345d41;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus { background: #8b774c; }
.cookie-btn.settings:hover,
.cookie-btn.settings:focus { background: #A2A271; }

/* Cookie Modal Popup Styles */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 10001;
  background: rgba(25,51,71,0.27);
  align-items: center;
  justify-content: center;
  animation: fadeIn .22s;
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #F8F8F6;
  border-radius: 24px 40px 20px 18px/22px 34px 12px 28px;
  box-shadow: 0 4px 36px #bda87721;
  padding: 32px 28px 26px 28px;
  max-width: 470px;
  min-width: 290px;
  color: #193347;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #345d41;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: #7B9C6B;
}
.cookie-category.essential input[type="checkbox"] {
  background: #BDA877;
}
.cookie-category label {
  font-size: 1rem;
  color: #426642;
  font-weight: 500;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 28px;
  right: 32px;
  background: #7B9C6B;
  color: #fff;
  border: none;
  font-size: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 1.5px 6px #b8d47f2c;
  z-index: 10034;
  transition: background .13s, color .12s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #345d41;
}

@media (max-width: 500px) {
  .cookie-banner {
    padding: 10px 6px 10px 10px;
    font-size: .97rem;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .cookie-modal-content { padding: 14px 6px 14px 8px; min-width: unset; }
  .cookie-modal-close { top: 13px; right: 12px; font-size: 1.1rem; width: 30px; height: 30px; }
}

/* ==========================================================================  
   RESPONSIVE UTILITIES & GLOBAL SPACING
   ========================================================================== */
@media (max-width: 1250px) {
  .container { max-width: 98vw; }
}
@media (max-width: 950px) {
  header .container { max-width: 100vw; padding: 0 6px; }
  .container { padding: 0 6px; }
}

@media (max-width: 600px) {
  .container { padding: 0 3vw; }
  .section { margin-bottom: 34px; padding: 18px 3vw; }
}

/* Ensure minimum margin between section cards */
.section, .card, .testimonial-card, .feature-grid > div {
  margin-bottom: 20px;
}

/* Flexbox settings for all main layout wrappers */
main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  main { gap: 28px; }
}

/* Ensure no overlap and adequate spacing */
.card, .testimonial-card, .feature-grid > div {
  margin-right: 0;
  margin-left: 0;
}

/* Misc Organic Shapes */
section, .card, .testimonial-card, .cookie-modal-content {
  /* Soft organic curves by border-radius, see above for custom use */
}

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

/* ==========================================================================  
   MICRO-INTERACTIONS & ANIMATIONS
   ========================================================================== */
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow .19s, transform .13s, background .16s;
}
.card:active, .testimonial-card:active, .feature-grid > div:active {
  transform: scale(0.98);
}

/* ==========================================================================  
   PRINT & SELECTION
   ========================================================================== */
::selection {
  background: #BDA87733;
}

/* ==========================================================================  
   CUSTOM UTILITIES
   ========================================================================== */
.mb-20 { margin-bottom: 20px!important; }
.mb-40 { margin-bottom: 40px!important; }
.mt-24 { margin-top: 24px!important; }
.pt-16 { padding-top: 16px!important; }
.pb-24 { padding-bottom: 24px!important; }
.gap-20 { gap: 20px!important; }
.d-flex { display: flex!important; }
.flex-dir-col { flex-direction: column!important; }

/* ==========================================================================  
   END OF STYLE.CSS
   ========================================================================== */
