/* =======================
    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 {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    height: 100%;
    font-family: 'Roboto', Arial, sans-serif;
    background: #F6F6F6;
    color: #1C3936;
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #1C3936;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1.18;
}
h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1.25;
}
h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    line-height: 1.3;
}
h4, h5, h6 {
    font-size: 1rem;
    margin-bottom: 6px;
}
p, ul, ol, li {
    color: #1C3936;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
}
p + p {
    margin-top: 12px;
}
strong, b {
  font-weight: 700;
}
ul, ol {
    margin-left: 1.5em;
    margin-bottom: 12px;
    padding-left: 15px;
}
li {
    margin-bottom: 4px;
    font-size: 1rem;
}
a {
    color: #1C3936;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #8DC9AE;
    outline: none;
}
button, .btn-primary, .btn-secondary {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 32px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.12s;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.04em;
}
.btn-primary {
    background: #1C3936;
    color: #F6F6F6;
    padding: 14px 36px;
    margin-top: 18px;
    box-shadow: 0 4px 18px 0 rgba(28, 57, 54, 0.09);
    text-transform: uppercase;
}
.btn-primary:hover, .btn-primary:focus {
    background: #8DC9AE;
    color: #1C3936;
    transform: translateY(-2px) scale(1.035);
    box-shadow: 0 6px 28px 0 rgba(28,57,54,0.14);
}
.btn-secondary {
    background: #8DC9AE;
    color: #1C3936;
    padding: 12px 30px;
    margin-top: 10px;
    border: 2px solid #8DC9AE;
}
.btn-secondary:hover, .btn-secondary:focus {
    background: #1C3936;
    color: #F6F6F6;
    border-color: #1C3936;
    transform: translateY(-2px) scale(1.025);
}
.text-center {
    text-align: center !important;
}

/* =======================
   LAYOUT: CONTAINER & WRAPPERS
   ======================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* =======================
   SECTIONS & SPACING RULES
   ======================= */
section {
    width: 100%;
    margin-bottom: 60px;
    padding: 40px 0 0 0;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #FFF;
    border-radius: 18px;
    box-shadow: 0 2px 12px 0 rgba(28, 57, 54, 0.08);
    margin-bottom: 20px;
    position: relative;
    padding: 32px 24px;
    flex: 1 1 300px;
    min-width: 240px;
    transition: box-shadow 0.22s, transform 0.18s;
    z-index: 1;
}
.card:hover, .card:focus-within {
    box-shadow: 0 6px 32px rgba(28,57,54,0.13);
    transform: translateY(-4px) scale(1.02);
}
.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 {
    background: #F6F6F6;
    color: #1C3936;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(28,57,54,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 1.13rem;
    font-weight: 500;
    min-width: 220px;
    max-width: 460px;
    transition: box-shadow 0.18s, transform 0.18s;
    position: relative;
}
.testimonial-card strong {
    display: block;
    margin-left: auto;
    margin-top: 12px;
    color: #8DC9AE;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
}
.testimonial-card span {
    color: #1C3936;
    font-size: 1.16rem;
    letter-spacing: 0.06em;
    margin-left: 0.5em;
}
.testimonial-card:before {
    content: '”';
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: #8DC9AE;
    opacity: 0.15;
    position: absolute;
    left: 8px;
    top: -10px;
    z-index: 0;
    pointer-events: none;
}
.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(28,57,54,0.15);
    transform: translateY(-2px) scale(1.015);
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.features-grid, .services-list, .blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    margin-top: 18px;
}
.features-grid > div, .services-list > div {
    background: #FFF;
    border-radius: 15px;
    box-shadow: 0 2px 10px 0 rgba(28, 57, 54, 0.08);
    padding: 30px 22px;
    min-width: 220px;
    margin-bottom: 20px;
    transition: box-shadow 0.21s, transform 0.12s;
    position: relative;
    z-index: 1;
}
.features-grid > div:hover, .services-list > div:hover {
    box-shadow: 0 6px 26px 0 rgba(28,57,54,0.14);
    transform: translateY(-3px) scale(1.013);
}

.blog-list {
    gap: 24px;
}
.blog-post-preview {
    background: #FFF;
    border-radius: 15px;
    box-shadow: 0 1px 8px 0 rgba(28, 57, 54, 0.06);
    padding: 24px 18px 24px 24px;
    min-width: 210px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.19s, transform 0.12s;
    position: relative;
}
.blog-post-preview h3 {
    font-size: 1.24rem;
}
.blog-post-preview a {
    color: #8DC9AE;
    margin-top: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: color 0.16s;
}
.blog-post-preview a:hover, .blog-post-preview a:focus {
    color: #1C3936;
    text-decoration: underline;
}
.blog-post-preview:hover {
    box-shadow: 0 7px 18px rgba(28,57,54,0.11);
    transform: translateY(-1px) scale(1.009);
}
.category-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 32px 0 0 0;
}
.category-filters span {
    font-weight: bold;
    color: #1C3936;
}
.category-filters a {
    background: #8DC9AE;
    color: #1C3936;
    padding: 7px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    margin-right: 2px;
    transition: background 0.13s, color 0.13s;
}
.category-filters a:hover,
.category-filters a:focus {
    background: #1C3936;
    color: #F6F6F6;
}
.content-wrapper > *,
.features-grid > *,
.services-list > *,
.blog-list > * {
    margin-right: 0;
    margin-left: 0;
}
.features-grid, .services-list, .blog-list {
    margin-bottom: 24px;
}
ul.contact-details {
    list-style: none;
    padding: 0;
    margin: 14px 0 18px 0;
}
ul.contact-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1C3936;
    font-size: 1rem;
    margin-bottom: 8px;
    font-family: 'Roboto', Arial, sans-serif;
}
.business-hours, .address-details {
    margin-top: 6px;
    font-size: 1rem;
    color: #1C3936;
    display: flex;
    align-items: center;
    gap: 10px;
}
.map-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    border: 2px dashed #8DC9AE;
    border-radius: 18px;
    color: #A0A0A0;
    font-weight: 700;
    background: #FFF;
    margin-top: 18px;
    font-size: 1rem;
}

/* ===========================
    HEADER & NAVIGATION
   =========================== */
header {
    width: 100%;
    background: #FFF;
    box-shadow: 0 2px 28px 0 rgba(28,57,54,0.06);
    position: sticky;
    top: 0;
    z-index: 1001;
}
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 18px;
    padding-bottom: 18px;
    flex-wrap: wrap;
}
.main-nav {
    display: flex;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
}
.main-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #1C3936;
    transition: color 0.17s;
    text-transform: uppercase;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    position: relative;
}
.main-nav a:hover, .main-nav a:focus {
    color: #8DC9AE;
    border-bottom: 2px solid #8DC9AE;
}
/* Hide main nav on mobile */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
}
.mobile-menu-toggle {
    display: none;
    font-size: 2.1rem;
    background: #8DC9AE;
    color: #1C3936;
    border: none;
    padding: 7px 20px 7px 17px;
    border-radius: 34px;
    position: absolute;
    right: 24px;
    top: 20px;
    z-index: 1201;
    transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    background: #1C3936;
    color: #F6F6F6;
}
/* Show burger on mobile */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
}
.mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: #1C3936;
    z-index: 1700;
    transform: translateX(-100vw);
    transition: transform 0.33s cubic-bezier(.41,.98,0,1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 0 0;
    overflow-y: auto;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    background: #F6F6F6;
    color: #1C3936;
    border: none;
    font-size: 2rem;
    border-radius: 30px;
    padding: 6px 18px;
    margin: 22px 0 10px 24px;
    align-self: flex-start;
    transition: background 0.12s, color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    background: #8DC9AE;
    color: #1C3936;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    padding: 12px 24px 30px 36px;
}
.mobile-nav a {
    color: #F6F6F6;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 5px 0;
    transition: color 0.13s, background 0.13s;
    border-radius: 10px;
    display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #8DC9AE;
    color: #1C3936;
}


/* =======================
   FOOTER
   ======================= */
footer {
    width: 100%;
    background: #1C3936;
    color: #F6F6F6;
    padding: 0;
    margin: 0;
}
.footer-section {
    display: flex;
    flex-wrap: wrap;
    gap: 38px;
    padding: 44px 0 20px 0;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 2px solid #8DC9AE;
}
.footer-brand {
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}
.footer-brand p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.04rem;
    color: #8DC9AE;
    font-weight: 600;
    margin: 0;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    min-width: 210px;
}
.footer-nav a {
    color: #8DC9AE;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.98rem;
    padding: 1px 12px;
    border-radius: 7px;
    transition: color 0.13s, background 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
    background: #8DC9AE;
    color: #1C3936;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 250px;
    font-size: 0.96rem;
}
.footer-contact div {
    color: #F6F6F6;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 1rem;
}
.footer-contact a {
    color: #8DC9AE;
}
.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    min-width: 120px;
}
.footer-social a {
    background: #F6F6F6;
    border-radius: 10px;
    padding: 6px 8px;
    transition: background 0.15s, box-shadow 0.12s;
}
.footer-social a:hover, .footer-social a:focus {
    background: #8DC9AE;
    box-shadow: 0 2px 9px 0 rgba(28,57,54,0.10);
}
.footer-social img {
    width: 22px;
    height: 22px;
}
.footer-smallprint {
    width: 100%;
    text-align: center;
    color: #8DC9AE;
    font-size: 0.95rem;
    margin-top: 24px;
    font-family: 'Roboto', Arial, sans-serif;
}

/* =======================
   COOKIE CONSENT BANNER
   ======================= */
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: #1C3936;
    color: #F6F6F6;
    width: 100%;
    z-index: 5000;
    box-shadow: 0 -2px 30px rgba(28,57,54,0.12);
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    padding: 28px 18px 20px 18px;
    transition: transform 0.33s ease, opacity 0.22s;
}
.cookie-banner.hide {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}
.cookie-banner-message {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.06rem;
    max-width: 480px;
}
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 24px;
    flex-wrap: wrap;
}
.cookie-btn {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 24px;
    padding: 12px 26px;
    margin: 0 3px;
    cursor: pointer;
    transition: background 0.16s, color 0.16s, box-shadow 0.13s;
    box-shadow: 0 2px 10px 0 rgba(28,57,54,0.10);
}
.cookie-btn.accept {
    background: #8DC9AE;
    color: #1C3936;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
    background: #F6F6F6;
    color: #1C3936;
}
.cookie-btn.reject {
    background: #F25135;
    color: #F6F6F6;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
    background: #ff7460;
    color: #FFF;
}
.cookie-btn.settings {
    background: #F6F6F6;
    color: #1C3936;
    border: 1.8px solid #8DC9AE;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
    background: #8DC9AE;
    color: #1C3936;
}

/* Cookie Modal Overlay & Dialog */
.cookie-modal-overlay {
    position: fixed;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(28,57,54,0.66);
    z-index: 5100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.23s;
}
.cookie-modal {
    background: #F6F6F6;
    color: #1C3936;
    border-radius: 24px;
    min-width: 340px;
    max-width: 95vw;
    padding: 40px 28px 32px 28px;
    box-shadow: 0 8px 40px 0 rgba(28,57,54,0.16);
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    animation: modalAppears 0.34s cubic-bezier(.41,.98,0,1);
}
@keyframes modalAppears {
    from { transform: scale(0.96) translateY(24px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
    position: absolute;
    top: 18px; right: 24px;
    background: #8DC9AE;
    color: #1C3936;
    font-size: 2rem;
    border: none;
    border-radius: 20px;
    padding: 4px 12px 4px 12px;
    transition: background 0.14s, color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    background: #1C3936;
    color: #F6F6F6;
}
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cookie-category input[type="checkbox"] {
    accent-color: #8DC9AE;
    width: 22px;
    height: 22px;
    cursor: pointer;
}
.cookie-category label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: bold;
    font-size: 1.05rem;
    color: #1C3936;
}
.cookie-category.category-essential input[type="checkbox"] {
    accent-color: #8DC9AE;
}
.cookie-category.category-essential label {
    opacity: 0.7;
}
.cookie-category.category-essential input[type="checkbox"] {
    pointer-events: none;
}

/* =======================
   HELPERS / GENERAL UI
   ======================= */
.text-section {
    max-width: 700px;
}
.text-section h1, .text-section h2, .text-section h3 {
    margin-bottom: 8px;
}
.text-section > * + * {
    margin-top: 13px;
}
.address-details {
    font-weight: 600;
    color: #1C3936;
}
/* For .thank-you, center content */
.thank-you {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 55vh;
    flex-direction: column;
}

/* =======================
   RESPONSIVE (MOBILE-FIRST)
   ======================= */
@media (max-width: 1200px) {
    .container {
        max-width: 98vw;
    }
}
@media (max-width: 992px) {
    .footer-section {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    .footer-brand, .footer-nav, .footer-contact, .footer-social {
        min-width: unset;
    }
    /* Stack hero and features cards vertically */
    .features-grid, .services-list, .blog-list {
      flex-direction: column;
      gap: 18px;
    }
}
@media (max-width: 768px) {
    html { font-size: 16px; }
    body { font-size: 1rem; }
    h1 { font-size: 2.02rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.08rem; }
    .container {
        padding-left: 11px;
        padding-right: 11px;
    }
    section {
        padding: 24px 0 0 0;
        margin-bottom: 34px;
    }
    .section {
        padding: 18px 11px;
        margin-bottom: 34px;
    }
    .text-image-section {
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }
    .card-container, .content-grid, .features-grid, .services-list, .blog-list {
        flex-direction: column;
        gap: 18px;
    }
    .testimonial-card, .features-grid > div, .services-list > div, .blog-post-preview {
        min-width: unset;
        max-width: unset;
    }
    .mobile-menu {
        align-items: stretch;
    }
    .nav-bar {
        padding-left: 0;
        padding-right: 0;
        justify-content: flex-start;
        gap: 16px;
    }
    .footer-section {
        gap: 20px;
        padding: 32px 0 16px 0;
    }
    .blog-list {
        gap: 13px;
    }
    .category-filters {
        gap: 4px;
    }
    .cookie-banner {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
        padding: 18px 8px 10px 8px;
    }
    .cookie-banner-actions {
        margin-left: 0;
        gap: 8px;
    }
    .cookie-banner-message {
        font-size: 0.98rem;
    }
}

/* =======================
   ACCESSIBILITY
   ======================= */
:focus {
    outline: 2.5px solid #8DC9AE !important;
    outline-offset: 2px;
    z-index: 10;
}
/* Hide visually from screen but accessible to screenreaders */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    border: 0 !important;
}

/* =======================
   GEOMETRIC DECORATIVE SHAPES
   ======================= */
.features-grid > div::after, .services-list > div::after {
    content: "";
    display: block;
    width: 38px;
    height: 6px;
    background: #8DC9AE;
    border-radius: 7px;
    margin-top: 22px;
    opacity: 0.18;
}

/* =======================
   MICRO-INTERACTIONS
   ======================= */
.btn-primary, .btn-secondary, .cookie-btn {
    will-change: transform, box-shadow;
}
.card, .features-grid > div, .services-list > div, .blog-post-preview,
.testimonial-card {
    will-change: transform, box-shadow;
}
.btn-primary:active,
.btn-secondary:active,
.cookie-btn:active {
    transform: scale(0.97);
}

/* =======================
   Z-INDEX RULES
   ======================= */
.mobile-menu { z-index: 1700; }
.mobile-menu-toggle { z-index: 1201; }
.cookie-banner { z-index: 5000; }
.cookie-modal-overlay { z-index: 5100; }

/* ===============
    PRINT CLEANUP
   =============== */
@media print {
    header, footer, .cookie-banner, .cookie-modal-overlay, .mobile-menu { display: none !important; }
    body { background: #FFF !important; color: #000 !important; }
}
