/* CSS Reset & Base Styles */
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, 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: #f7f5f2;
  color: #30525d;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}
a {
  color: #30525d;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover, nav a.active {
  color: #518b5b;
  text-decoration: underline;
}
ul, ol {
  list-style-position: inside;
  margin-left: 1.2em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #30525d;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.33rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }
p, ul, ol, blockquote, table, .subheadline {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 16px;
}
.subheadline {
  color: #30525d;
  opacity: 0.92;
  font-size: 1.2rem;
  margin-bottom: 24px;
  font-weight: 500;
}
blockquote {
  padding-left: 18px;
  border-left: 4px solid #dfb77a;
  font-style: italic;
  color: #365d47;
  background: #ede5d7;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* Containers and Layouts */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper, .text-section, .about, .philosophy, .contact, .info-section, .service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(48,82,93,0.05);
  padding: 24px 18px;
  min-width: 260px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #f7f5f2;
  border-radius: 18px;
  box-shadow: 0px 2px 10px rgba(48,82,93, 0.06), 0 0.5px 2px rgba(169,167,144,0.04);
  padding: 20px;
  min-width: 240px;
  max-width: 380px;
  flex: 1 1 305px;
  margin-bottom: 24px;
  border-left: 8px solid #dfb77a;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/* --- NAVBAR AND HEADER --- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 18px 0 18px 0;
  box-shadow: 0 2px 8px rgba(48,82,93,0.07);
  position: relative;
  z-index: 1020;
  width: 100%;
}
header > a img {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #30525d;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 6px 4px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus {
  background: #ede5d7;
  color: #30525d;
}
.cta-button {
  background: #30525d;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 32px;
  border-radius: 24px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(48,82,93,0.08);
  outline: none;
  cursor: pointer;
  transition: background 0.23s, box-shadow 0.23s, transform 0.13s;
  margin-left: 24px;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #517950;
  color: #fff;
  transform: scale(1.045);
  box-shadow: 0 6px 16px 0 rgba(48,82,93,0.11);
}

/* --- MOBILE NAV (BURGER) --- */
.mobile-menu-toggle {
  display: none;
  background: #30525d;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2002;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.23s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #518b5b;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(48,82,93, 0.97);
  transform: translateX(-110vw);
  transition: transform 0.33s cubic-bezier(0.86, 0, 0.07, 1);
  z-index: 2025;
  padding: 38px 32px 24px 32px;
  box-sizing: border-box;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-top: 2px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #dfb77a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 13px 0;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #dfb77a;
  color: #30525d;
}

@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .cta-button {
    margin-left: 10px;
  }
}
@media (max-width: 900px) {
  nav {
    gap: 12px;
  }
}
@media (max-width: 850px) {
  header > a img {
    height: 38px;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 15px 0;
  }
  nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 555px) {
  .mobile-menu {
    padding: 24px 12px 20px 12px;
  }
  .mobile-nav a {
    font-size: 1.1rem;
  }
}

/* --- HERO SECTION (INDEX) --- */
.hero {
  background: #e9ecdd;
  border-radius: 0 0 44px 44px;
  padding: 56px 0 56px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 290px;
}
.hero .content-wrapper {
  max-width: 590px;
  gap: 10px;
}

/* --- FEATURES, CARDS, SECTION GRIDS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
}
.feature {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(48,82,93,0.08);
  padding: 26px 22px;
  max-width: 264px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  border-left: 7px solid #dfb77a;
  transition: box-shadow 0.22s, transform 0.21s;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 3px;
}
.feature:hover, .feature:focus-visible {
  box-shadow: 0 7px 20px 0 rgba(48,82,93,0.15);
  transform: translateY(-5px) scale(1.03);
  cursor: pointer;
}

/* Cards used in other places */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

/* Testimonial Details */
.stars {
  color: #dfb77a;
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-author {
  margin-top: 4px;
  font-size: 1.01rem;
  font-weight: 500;
  font-family: 'Roboto', Arial, sans-serif;
  color: #30525d;
  opacity: 0.88;
}

/* FAQ ACCORDION (SERVICES) */
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: column;
  margin-top: 6px;
}
.faq-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2.5px 10px rgba(48,82,93,0.05);
  padding: 18px 16px;
  margin-bottom: 8px;
  border-left: 5px solid #dfb77a;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 8px 24px rgba(48,82,93,0.12);
}
.faq-item h3 {
  font-size: 1.07rem;
  margin-bottom: 8px;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 16px 0 rgba(48,82,93,0.07);
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 13px 15px;
}
.pricing-table thead {
  background: #e9ecdd;
}
.pricing-table th {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #30525d;
  font-size: 1.05rem;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #ede5d7;
  background: #f7f5f2;
  transition: background 0.13s;
}
.pricing-table tbody tr:hover {
  background: #ede5d7;
}
.pricing-notes {
  background: #ede5d7;
  border: 1px solid #dfb77a66;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

/* LIST STYLE (Packages, Features etc.) */
ul {
  padding-left: 0;
}
ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 9px;
}
ul li::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  width: 7px;
  height: 7px;
  background: #dfb77a;
  border-radius: 50%;
}

/* Address/Contact Map */
.address-map {
  margin-top: 16px;
  background: #f7f5f2;
  border-left: 5px solid #dfb77a;
  border-radius: 7px;
  padding: 16px 18px;
  color: #30525d;
  font-size: 1rem;
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 8px;
}
.social-links a img {
  height: 29px;
  width: 29px;
  filter: grayscale(0.2) brightness(0.95) contrast(1.14);
  transition: filter 0.19s, transform 0.18s;
}
.social-links a:hover img, .social-links a:focus img {
  filter: none;
  transform: scale(1.12);
}

/* Footer Styles */
footer {
  background: #dcdfd2;
  color: #30525d;
  padding: 48px 0 16px 0;
  border-radius: 40px 40px 0 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.footer-content img {
  height: 59px;
  width: auto;
  border-radius: 17px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #30525d;;
  opacity: 0.9;
  font-size: 1rem;
  padding: 5px 0;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #517950;
  text-decoration: underline;
}
.contact-snippet {
  font-size: 1rem;
  opacity: 0.92;
}
footer small {
  display: block;
  text-align: left;
  color: #30525d;
  opacity: 0.68;
  margin-top: 7px;
  font-size: 0.98rem;
}

/* Content Spacing Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}

/* Animations for microinteractions */
.feature, .card, .testimonial-card, .faq-item {
  transition: box-shadow 0.20s, transform 0.20s;
}
.feature:hover, .card:hover, .testimonial-card:hover, .faq-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 9px 18px rgba(48,82,93,0.13);
}

/* Responsive Layouts */
@media (max-width: 1000px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .feature-grid {
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  .testimonials {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.12rem; }
  .feature {
    min-width: 170px;
  }
  .testimonial-card {
    min-width: 175px;
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .hero .container {
    padding-top: 18px;
    padding-bottom: 24px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 560px) {
  .footer-content img {
    height: 41px;
  }
  .container, .section {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    padding: 32px 7px;
    margin-bottom: 34px;
  }
  .feature {
    padding: 14px 10px;
    min-width: 110px;
  }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #30525d;
  color: #fff;
  padding: 20px 16px 18px 20px;
  box-shadow: 0 -4px 12px rgba(48,82,93,0.22);
  z-index: 2500;
  border-radius: 24px 24px 0 0;
  font-size: 1rem;
  animation: cookieBannerIn 0.61s cubic-bezier(0.86, 0, 0.07, 1);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(130%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1rem;
  flex: 1 1 60%;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  border: none;
  border-radius: 16px;
  padding: 9px 22px;
  background: #dfb77a;
  color: #30525d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, transform 0.13s;
  box-shadow: 0 1.5px 6px rgba(255,255,255,0.08);
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #30525d;
  border: 1.2px solid #dfb77a;
}
.cookie-banner button:active {
  transform: scale(0.98);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #ede5d7;
  color: #30525d;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    font-size: 0.97rem;
    padding: 13px 6px;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
}

/* --- Cookie Settings Modal Popup --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,38,32,0.74);
  z-index: 2601;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #30525d;
  padding: 32px 32px 18px 32px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(48,82,93,0.17),0 3px 12px rgba(48,82,93,0.07);
  min-width: 310px;
  max-width: 99vw;
  max-height: 96vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: modalPopIn 0.38s cubic-bezier(0.83, 0, 0.06, 1);
}
@keyframes modalPopIn {
  0% { transform: scale(0.88) translateY(80px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.15rem;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 0 0;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f7f5f2;
  padding: 12px 15px;
  border-radius: 9px;
}
.cookie-option label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-option .toggle-switch {
  position: relative;
  width: 42px;
  height: 23px;
  display: inline-block;
}
.cookie-option .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-option .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ede5d7;
  border-radius: 13px;
  transition: background 0.19s;
}
.cookie-option .toggle-switch input:checked + .slider {
  background: #dfb77a;
}
.cookie-option .slider:before {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 3px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
  box-shadow: 0 1px 2px rgba(48,82,93,0.10);
}
.cookie-option .toggle-switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.cookie-modal button {
  border: none;
  border-radius: 13px;
  padding: 10px 24px;
  background: #30525d;
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, transform 0.13s;
}
.cookie-modal button.secondary {
  background: #dfb77a;
  color: #30525d;
}
.cookie-modal button:active {
  transform: scale(0.98);
}
.cookie-modal button:hover,.cookie-modal button:focus {
  background: #517950;
  color: #fff;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 11px; right: 18px;
  background: none;
  border: none;
  color: #30525d;
  font-size: 1.55rem;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #dfb77a;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 13px 6px 12px 6px;
    min-width: 0;
  }
}

/* Miscellaneous Utility Classes */
.hide { display: none !important; }
.mt-2 { margin-top: 8px !important; }
.mt-4 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-4 { margin-bottom: 16px !important; }
.center { text-align: center; }

/* Accessibility Focus Styles */
a:focus-visible, button:focus-visible, .cta-button:focus-visible {
  outline: 2px solid #517950;
  outline-offset: 2px;
  z-index: 2;
}

/* Forms (General, in some pages) */
input, select, textarea {
  border: 1px solid #dfb77a;
  border-radius: 7px;
  padding: 9px 11px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 17px;
  background: #fff;
  color: #30525d;
  transition: border-color 0.14s, box-shadow 0.16s;
}
input:focus, select:focus, textarea:focus {
  border-color: #30525d;
  box-shadow: 0 1.5px 8px 0 #b6c8b566;
  outline: none;
}
button, [type=submit] {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Hide scrollbars for overlays/modals when open (mobile) */
body.menu-open,
body.cookie-modal-open {
  overflow: hidden;
}

/* Light earth/organic section backgrounds (ex. alternating) */
.section:nth-child(even) {
  background: #ede5d7;
}
.section.cta {
  background: #dfb77a;
  border-radius: 23px;
  color: #30525d;
  text-align: center;
  box-shadow: 0 7px 30px 0 rgba(218,179,108,0.08);
  position: relative;
  margin-bottom: 60px;
}
.section.cta .cta-button {
  background: #30525d;
  color: #fff;
  margin: 0 auto;
}

/* Add subtle organic curves (ornamental) */
@media (min-width: 900px) {
  .hero, footer {
    border-bottom-left-radius: 90px;
    border-bottom-right-radius: 90px;
  }
  footer {
    border-top-left-radius: 95px;
    border-top-right-radius: 95px;
  }
}

/* --- Responsive for columns/sections --- */
@media (max-width: 900px) {
  .content-wrapper, .text-section, .about, .philosophy, .contact, .info-section, .service-list {
    gap: 17px;
  }
}
@media (max-width: 768px) {
  .testimonials, .feature-grid, .card-container, .content-grid, .service-list {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.09rem; }
  .testimonial-card, .feature {
    min-width: 0;
    padding: 11px 8px;
  }
  .section {
    margin-bottom: 18px;
    padding: 11px 2px;
  }
}
