/* 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, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, main, menu, nav, output, 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 {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #fff;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #22543D;
  background: #F7F5F2;
  min-height: 100vh;
}
ul, ol {
  margin-left: 24px;
}
a {
  color: #E3B86A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #22543D;
  text-decoration: underline;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #22543D;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; margin-top: 32px; }
h3 { font-size: 1.45rem; margin-top: 24px; }
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol {
  margin-bottom: 16px;
}
strong { font-weight: 700; }

/* CONTAINER & FLEX LAYOUTS */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* HEADER */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(34,84,61,0.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  padding: 18px 20px;
  position: relative;
}
header img {
  height: 38px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #22543D;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color .15s, background .15s;
  border-radius: 5px;
  padding: 4px 8px;
}
header nav a:hover {
  color: #fff;
  background: #E3B86A;
  text-decoration: none;
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 28px;
  color: #fff;
  background: #E3B86A;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(227,184,106,0.2);
  margin-left: 12px;
  transition: background 0.2s, transform 0.08s, box-shadow 0.2s;
  display: inline-block;
  border: none;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #22543D;
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 6px 18px rgba(34,84,61,0.12);
}
.cta-link {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #E3B86A;
  letter-spacing: 0.01em;
  border-bottom: 2px solid #E3B86A;
  padding-bottom: 1px;
  transition: color .18s, border-color .18s;
}
.cta-link:hover, .cta-link:focus {
  color: #22543D;
  border-color: #22543D;
}
/* Hide burger toggle on desktop */
.mobile-menu-toggle {
  display: none;
  background: #E3B86A;
  color: #22543D;
  font-size: 2rem;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #22543D;
}

/* MOBILE NAVIGATION MENU */
.mobile-menu {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #22543D;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.7,.2,.6,1.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
  box-shadow: 4px 0 24px rgba(34,84,61,0.12);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: #E3B86A;
  color: #22543D;
  font-size: 2rem;
  margin: 22px;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  transition: background .12s;
}
.mobile-menu-close:focus {
  outline: 2px solid #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
  width: 100%;
  align-items: flex-start;
  padding-left: 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 14px 6px;
  border-radius: 6px;
  transition: background 0.12s, color 0.12s;
  width: 90%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E3B86A;
  color: #22543D;
}

/* HERO SECTION */
.hero {
  background: #22543D;
  color: #fff;
  padding: 60px 0 60px 0;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 28px;
  align-items: flex-start;
}
.hero h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 24px rgba(34,84,61,0.18);
}
.hero p {
  font-size: 1.35rem;
  color: #F7F5F2;
  margin-bottom: 28px;
}
.hero .btn-primary {
  font-size: 1.1rem;
  background: #E3B86A;
  color: #22543D;
  box-shadow: 0 4px 20px rgba(227,184,106,0.23);
}
.hero .btn-primary:hover {
  background: #fff;
  color: #22543D;
}

/* FEATURES */
.feature-grid, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 24px 0 0 0;
}
.feature, .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 15px 0 rgba(34,84,61,.07);
  padding: 30px 22px 26px 22px;
  min-width: 250px;
  flex: 1 1 260px;
  gap: 15px;
  margin-bottom: 20px;
  transition: transform .18s, box-shadow .18s;
  border: 2px solid #E3B86A44;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}
.feature h3 {
  font-size: 1.22rem;
  color: #22543D;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.feature p {
  color: #22543Dbf;
  font-size: 1.02rem;
}
.feature:hover, .feature:focus-within {
  transform: translateY(-6px) scale(1.038);
  box-shadow: 0 10px 28px 0 rgba(34,84,61,0.16);
  border-color: #E3B86A;
  z-index: 1;
}

/* Pricing Table */
.pricing-table {
  overflow-x: auto;
  margin: 18px 0 22px 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 16px rgba(34,84,61,0.1);
  padding: 18px 12px 12px 12px;
}
.pricing-table table {
  width: 100%;
  border-spacing: 0;
  font-size: 1.03rem;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 13px 14px;
}
.pricing-table th {
  background: #E3B86A22;
  color: #22543D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
}
.pricing-table tr {
  border-bottom: 1px solid #E3B86A33;
}
.pricing-table tr:last-child {
  border-bottom: none;
}
.pricing-table td {
  font-weight: 400;
  color: #22543Dc4;
}

/* SECTION STYLES & SPACING */
.section h2 {
  color: #E3B86A;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.section .text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.founder-highlight {
  background: #E3B86A55;
  color: #22543D;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 1.05em;
  box-shadow: 0 2px 8px rgba(227,184,106,0.07);
  margin-top: 8px;
}

/* CARD CONTAINER & CARDS */
.card-container, .service-cards, .testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.card, .testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px 0 rgba(34,84,61,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 2px solid #E3B86A33;
  position: relative;
  transition: transform .17s, box-shadow .17s;
}
.card:hover, .testimonial-card:hover {
  transform: translateY(-4px) scale(1.029);
  box-shadow: 0 8px 24px 0 rgba(227,184,106,0.17);
  z-index: 1;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* TESTIMONIALS */
.testimonial-card {
  min-width: 260px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fffefd;
  color: #22543D;
  border-left: 6px solid #E3B86A;
  gap: 19px;
  box-shadow: 0 3px 18px 0 rgba(34,84,61,0.10);
}
.testimonial-card p, .testimonial-card blockquote {
  font-size: 1.12rem;
  color: #22543D;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-card span, .testimonial-card footer {
  margin-top: 8px;
  color: #E3B86A;
  font-size: 1.02em;
  font-style: normal;
  font-weight: 600;
}
.testimonial-card .pet-owner-profile {
  margin-top: 10px;
  color: #22543D99;
  font-size: 0.97em;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.faq-list details {
  background: #fff;
  border-left: 4px solid #E3B86A;
  box-shadow: 0 2px 10px 0 rgba(34,84,61,0.04);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 1.10rem;
  color: #1e3228;
  transition: box-shadow 0.17s;
}
.faq-list details[open] {
  box-shadow: 0 4px 18px rgba(227,184,106,0.15) !important;
}
.faq-list summary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  color: #22543D;
  cursor: pointer;
  outline: none;
  margin-bottom: 8px;
}
.faq-list details div {
  margin-top: 8px;
  font-size: 1.04rem;
  color: #22543Dc4;
}

/* ADDRESS (STANDORT/FOOTER) */
.address, .footer-contact {
  font-size: 0.98rem;
  color: #22543Daa;
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer-contact a {
  color: #E3B86A;
  word-break: break-all;
  border-bottom: 1px dotted #E3B86A77;
}

/* FOOTER */
footer {
  background: #22543D;
  color: #fff;
  margin-top: 50px;
  padding: 38px 0 22px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px;
}
footer img {
  height: 46px;
  align-self: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}
footer nav a {
  color: #fff;
  font-size: 1.04rem;
  border-radius: 6px;
  padding: 4px 6px;
  transition: background 0.12s, color 0.12s;
}
footer nav a:hover {
  background: #E3B86A;
  color: #22543D;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #fffbe0;
  font-size: 1rem;
}
.footer-contact strong {
  color: #E3B86A;
}

/* PAGE-SPECIFIC LAYOUTS & GAPS */
.card-container, .feature-grid, .service-cards, .testimonial-slider, .testimonial-list {
  gap: 24px;
  margin-bottom: 10px;
}
.card, .testimonial-card {
  margin-bottom: 20px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* QUICK FACTS/SERVICE LIST */
.quick-facts, .service-list-overview, .included-services, .price-descriptions {
  background: #f8f3ed;
  border-left: 4px solid #E3B86A;
  border-radius: 8px;
  padding: 15px 18px;
  margin: 18px 0;
  font-size: 1.04rem;
  color: #22543D;
  box-shadow: 0 2px 8px rgba(227,184,106,.03);
}
.quick-facts ul, .quick-facts li {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style: disc inside;
}

/* TABLES */
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 10px 12px;
}
th {
  background: #E3B86A22;
  color: #22543D;
}
tr {
  border-bottom: 1px solid #E3B86A33;
}

/* CONTACT PAGE */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1.06rem;
  margin-bottom: 10px;
}
.directions-instructions {
  background: #E3B86A17;
  padding: 12px 16px;
  border-radius: 6px;
  color: #22543Dd8;
  font-size: 1rem;
  margin-top: 8px;
}

/* Responsive: MOBILE-FIRST */
@media (max-width: 1060px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .footer-contact, footer nav {
    font-size: 0.97rem;
  }
  .card, .testimonial-card, .feature, .feature-item {
    min-width: 180px;
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.1rem; }
  header .container {
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
  }
  header nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .mobile-menu {
    display: flex;
  }
  .container, footer .container {
    flex-direction: column;
    gap: 24px;
    padding: 0 8px;
  }
  .feature-grid, .service-cards, .testimonial-slider, .testimonial-list, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card, .testimonial-card, .feature {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    margin-bottom: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .founder-highlight { font-size: 1em; }
  .quick-facts, .service-list-overview, .included-services, .price-descriptions {
    font-size: 0.97rem;
    padding: 10px 10px 13px 16px;
  }
  .section {
    padding: 28px 8px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.11rem; }
  .hero h1 { font-size: 1.35rem; }
  .footer-contact, footer nav { font-size: 0.92rem; }
  footer img { height: 34px; }
}

/* Transitions & Micro-interactions */
.card, .feature, .testimonial-card, .btn-primary, .cta-link {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.17s;
}

/* Utility classes & accent colors */
.accent {
  color: #E3B86A;
}
.text-primary {
  color: #22543D;
}
.bg-accent {
  background: #E3B86A;
  color: #22543D;
}
.bg-primary {
  background: #22543D;
  color: #fff;
}
.bg-secondary {
  background: #F7F5F2;
  color: #22543D;
}

/* Cookie Consent Banner (fixed bottom) */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #fff;
  color: #22543D;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -2px 24px rgba(34,84,61,0.13);
  padding: 22px 28px;
  font-size: 1.09rem;
  border-top: 4px solid #E3B86A;
  transition: transform 0.38s;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    font-size: 1.01rem;
    gap: 18px;
    padding: 16px 10px;
    align-items: flex-start;
  }
}
.cookie-banner.hide {
  transform: translateY(140%);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  border-radius: 8px;
  padding: 9px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
  color: #fff;
  background: #E3B86A;
  border: none;
  box-shadow: 0 2px 8px rgba(227,184,106,0.09);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.cookie-btn:not(.cookie-btn-settings):hover, .cookie-btn:not(.cookie-btn-settings):focus {
  background: #22543D;
  color: #fff;
}
.cookie-btn-settings {
  background: #fff;
  color: #22543D;
  border: 2px solid #E3B86A;
  box-shadow: none;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #E3B86A;
  color: #22543D;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 100000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34,84,61, 0.46);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 34px 32px 24px 32px;
  max-width: 420px;
  width: 94vw;
  box-shadow: 0 6px 44px rgba(34,84,61,.21);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalSlideIn .36s cubic-bezier(.75,1.85,.4,.97);
}
@keyframes modalSlideIn { from { transform: translateY(100px); } to { transform: none; } }
.cookie-modal h2 {
  color: #22543D;
  font-size: 1.33rem;
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1.05em;
  color: #22543D;
}
.cookie-toggle {
  width: 46px;
  height: 24px;
  background: #F7F5F2;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  margin-left: 5px;
  transition: background .12s;
  border: 2px solid #E3B86A55;
}
.cookie-toggle input { display: none; }
.cookie-toggle-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  width: 20px;
  background: #E3B86A;
  border-radius: 10px;
  transition: left .18s, background .12s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 24px;
  background: #22543D;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #22543D;
  background: #E3B86A;
  font-size: 1.33rem;
  border-radius: 5px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #22543D;
  color: #fff;
}
@media (max-width: 510px) {
  .cookie-modal {
    padding: 18px 8px 18px 8px;
    max-width: 99vw;
  }
}

/* VIBRANT ENERGETIC EFFECTS */
.hero, .btn-primary, .feature, .card, .testimonial-card, .faq-list details, .footer-contact, .cookie-banner, .cookie-modal {
  box-shadow: 0 2px 16px rgba(34,84,61,0.08);
}

/* BOLD FONTS */
.card h3, .feature h3, .content-wrapper > h2, .pricing-table th, .btn-primary, .cookie-banner, .mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* ELECTRIC ACCENT */
.feature, .feature-item, .card, .testimonial-card, .pricing-table, .faq-list details {
  border: 2px solid #E3B86A33;
  background: #fff;
  transition: border-color .16s, box-shadow .17s;
}
.feature:hover, .feature:focus-within, .card:hover, .card:focus-within, .testimonial-card:hover {
  border-color: #E3B86A;
  box-shadow: 0 10px 28px 0 rgba(227,184,106,.19);
}

/* FORMS (if any) */
input, select, textarea {
  font-family: inherit;
  border-radius: 7px;
  border: 2px solid #E3B86A66;
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #22543D;
  background: #fff;
  transition: border-color .16s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #E3B86A;
}

/* Hide scroll in modal open */
html.modal-open {
  overflow: hidden;
}

/* Ensuring no element overlap and adequate spacing */
.feature-grid > *, .service-cards > *, .testimonial-slider > *, .testimonial-list > *, .card-container > * {
  margin-bottom: 20px;
}
/* END CSS */