/* Base Styles */
:root {
    --primary-green: #3B5B43;
    --primary-green-hover: #2d4533;
    --text-dark: #2D3748;
    --text-light: #F7FAFC;
    --bg-color: #F5F0E8; /* Cream */
    --border-color: #E2E8F0;
    --transition: all 0.3s ease;
    /* Structural tokens (no new colors — alpha over existing green/black) */
    --radius: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 4px 12px rgba(45,69,51,0.08);
    --shadow-md: 0 14px 30px rgba(45,69,51,0.14);
    --shadow-lg: 0 22px 45px rgba(45,69,51,0.22);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo-icon, .logo-text {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 48px;
    height: 72px;
    background-color: #0d1f14;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    line-height: 1;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-subtext {
    font-size: 0.6rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    color: #718096;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #c9c9c9;
    font-weight: normal;
    opacity: 0.85;
    transition: var(--transition);
}

.nav-links a:hover {
    color: #fff;
    opacity: 1;
}

/* Animated underline on nav links */
.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

/* Shine sweep across buttons on hover */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    pointer-events: none;
}

.btn:hover::before {
    animation: btnShine 0.8s ease;
}

@keyframes btnShine {
    to { left: 125%; }
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.btn:active {
    transform: translateY(0);
}

/* Animated arrow inside buttons / links */
.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn:hover .arrow,
.link-btn:hover .arrow {
    transform: translateX(5px);
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--text-light);
    border: 1px solid var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--primary-green-hover);
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
    animation: zoomOut 20s ease-out forwards;
}

@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(250,250,247,0.95) 0%, rgba(250,250,247,0.5) 50%, rgba(0,0,0,0) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

/* Staggered entrance for each hero element */
.hero-content > * {
    opacity: 0;
    animation: heroRise 0.9s var(--ease) forwards;
}

.hero-subtitle { animation-delay: 0.15s; }
.hero-title    { animation-delay: 0.30s; }
.hero-desc     { animation-delay: 0.50s; }
.hero-buttons  { animation-delay: 0.70s; }

@keyframes heroRise {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-green);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #4A5568;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero social proof row */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-content > .hero-trust { animation-delay: 0.88s; }

.trust-stars {
    display: flex;
    gap: 2px;
    color: var(--primary-green);
}

.trust-stars svg {
    width: 18px;
    height: 18px;
}

.trust-text {
    font-size: 0.9rem;
    color: #4A5568;
}

.trust-text strong {
    color: var(--primary-green);
    font-weight: 600;
}

.btn-light {
    background-color: var(--bg-color);
    color: var(--primary-green);
    border: 1px solid var(--bg-color);
}
.btn-light:hover {
    background-color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}
.btn-outline:hover {
    background-color: var(--primary-green);
    color: #fff;
}

/* Services Intro */
.services-intro {
    padding: 6rem 4rem 3rem 4rem;
    display: flex;
    justify-content: flex-start;
}

.services-intro-content {
    max-width: 700px;
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.1rem;
    color: #4A5568;
    margin-bottom: 2rem;
}

.link-btn {
    font-size: 1rem;
    color: #718096;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.link-btn:hover {
    color: var(--primary-green);
}

/* Services Grid */
.services-grid {
    padding: 0 4rem 6rem 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 1.5rem;
    grid-auto-rows: 350px;
}

.service-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover .service-bg {
    transform: scale(1.05);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(45,69,51,0.92) 0%, rgba(59,91,67,0.45) 45%, rgba(59,91,67,0.05) 75%, rgba(0,0,0,0) 100%);
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(59,91,67,0.95) 0%, rgba(59,91,67,0.5) 60%, rgba(0,0,0,0.1) 100%);
}

.service-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: #fff;
    z-index: 2;
    transform: translateY(20px);
    transition: var(--transition);
}

.service-card:hover .service-info {
    transform: translateY(0);
}

.service-num {
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    display: block;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-info p {
    font-size: 0.95rem;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    line-height: 1.5;
}

.service-card:hover .service-info p {
    opacity: 0.9;
}

/* Grid layout specifics */
.large, .small, .horizontal {
    grid-column: span 1;
    grid-row: span 1;
    height: 100%;
}

/* Eco Strip */
.eco-strip {
    background-color: var(--primary-green);
    color: #fff;
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.eco-strip-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
}

.eco-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.eco-icon svg {
    width: 24px;
    height: 24px;
}

.eco-text strong {
    font-size: 1.1rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.eco-text span {
    font-size: 1rem;
    opacity: 0.9;
}

/* Why Us Section */
.why-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 6rem 4rem;
    align-items: center;
}

.why-us-image {
    position: relative;
    height: 600px;
    border-radius: var(--radius);
    overflow: hidden;
}

.why-us-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.satisfaction-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-green);
    color: #fff;
    padding: 1.5rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.satisfaction-badge strong {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.satisfaction-badge span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.section-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #718096;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-subtitle.center {
    text-align: center;
}

.section-subtitle.light {
    color: rgba(255,255,255,0.7);
}

.section-title.center {
    text-align: center;
}

.section-title.light {
    color: #fff;
}

.feature-list {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    background-color: rgba(59,91,67,0.10);
    color: var(--primary-green);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-item:hover .feature-icon {
    background-color: rgba(59,91,67,0.16);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 6px 14px rgba(45,69,51,0.15);
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.feature-text p {
    font-size: 0.95rem;
    color: #4A5568;
}

/* Testimonials */
.testimonials {
    padding: 6rem 4rem;
    background-color: #f0f0eb; /* Slightly darker beige */
}

.testimonials-header {
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    position: relative;
    background-color: var(--bg-color);
    padding: 2.75rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(59,91,67,0.06);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* faint decorative quotation mark in the corner */
.quote-mark {
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    line-height: 1;
    color: rgba(59,91,67,0.08);
    pointer-events: none;
    user-select: none;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: var(--primary-green);
    margin-bottom: 1.25rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #4A5568;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.9rem;
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(59,91,67,0.12);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}

.testimonial-card:hover .avatar {
    transform: scale(1.08);
    background-color: rgba(59,91,67,0.18);
}

.author-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 0.95rem;
    color: var(--primary-green);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: #718096;
}

/* About Us */
.about-us {
    padding: 6rem 4rem;
    background-color: #fff;
}

.about-us-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}

.about-us-header {
    position: sticky;
    top: 100px;
}

.about-us-header .section-title {
    font-size: 2.2rem;
    line-height: 1.25;
}

.about-us-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-us-body p {
    font-size: 1.05rem;
    color: #4A5568;
    line-height: 1.8;
}

.about-us-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem !important;
    color: var(--primary-green) !important;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .about-us { padding: 4rem 2rem; }
    .about-us-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-us-header { position: static; }
}

/* Reviews summary line */
.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #4A5568;
    flex-wrap: wrap;
}

.reviews-summary-stars {
    display: flex;
    gap: 2px;
    color: var(--primary-green);
}

.reviews-summary-stars svg {
    width: 16px;
    height: 16px;
}

.platform-link {
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.platform-link:hover { opacity: 0.75; }

.thumbtack-link { color: #009FD9; }
.nextdoor-link  { color: #00B246; }

/* Platform badge on review card */
.review-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.thumbtack-badge {
    background-color: rgba(0, 159, 217, 0.10);
    color: #007fb0;
    border: 1px solid rgba(0, 159, 217, 0.25);
}

.nextdoor-badge {
    background-color: rgba(0, 178, 70, 0.10);
    color: #008a35;
    border: 1px solid rgba(0, 178, 70, 0.25);
}

/* Leave a Review strip */
.leave-review {
    margin-top: 4rem;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.leave-review-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.leave-review-text h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 0.4rem;
}

.leave-review-text p {
    font-size: 0.95rem;
    color: #4A5568;
}

.leave-review-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-platform {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.4rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), opacity 0.2s ease;
    white-space: nowrap;
}

.btn-platform:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.thumbtack-btn {
    background-color: #009FD9;
    color: #fff;
}

.thumbtack-btn:hover { background-color: #007fb0; }

.nextdoor-btn {
    background-color: #00B246;
    color: #fff;
}

.nextdoor-btn:hover { background-color: #008a35; }

@media (max-width: 768px) {
    .leave-review { padding: 2rem 1.5rem; }
    .leave-review-inner { flex-direction: column; }
    .leave-review-btns { width: 100%; }
    .btn-platform { flex: 1; justify-content: center; }
}

/* Service Area */
.service-area {
    padding: 6rem 4rem;
}

.area-header {
    margin-bottom: 3rem;
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.city-tag {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: #4A5568;
    font-size: 0.95rem;
    transition: var(--transition);
}

.city-tag {
    transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.city-tag:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background-color: #f0f0eb;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(45,69,51,0.1);
}

/* CTA */
.cta {
    padding: 6rem 4rem;
    background-color: var(--primary-green);
    text-align: center;
}

.cta-desc {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.btn-white {
    background-color: #fff;
    color: var(--primary-green);
    border: 1px solid #fff;
}

.btn-white:hover {
    background-color: var(--bg-color);
}

/* Footer */
.footer {
    background-color: #2d4533;
    color: #fff;
    padding: 6rem 4rem 2rem 4rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo.light .logo-icon,
.footer-brand .logo.light .logo-text {
    color: #fff;
}

.footer-brand .logo.light .logo-subtext {
    color: rgba(255,255,255,0.6);
}

.footer-brand p {
    margin: 1.5rem 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    max-width: 300px;
}

.eco-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #fff;
    padding: 0.5rem 0;
}

.eco-badge svg,
.location-pin svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    vertical-align: middle;
}

.location-pin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col ul a {
    color: #fff;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    opacity: 0.7;
}

.location-pin {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.footer-cities li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .large, .horizontal {
        grid-column: span 2;
    }
    .why-us {
        grid-template-columns: 1fr;
    }
    .why-us-image {
        height: 400px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar { padding: 1rem 2rem; }
    .nav-links { display: none; }
    .hero { padding: 0 2rem; height: 70vh; }
    .hero-title { font-size: 3rem; letter-spacing: -1px; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { justify-content: center; }
    .services-intro { padding: 4rem 2rem 2rem 2rem; }
    .section-title { font-size: 2.5rem; }
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 2rem 4rem 2rem;
    }
    .large, .small, .horizontal {
        grid-column: span 1;
    }
    .why-us, .testimonials, .service-area, .cta {
        padding: 4rem 2rem;
    }
    .footer {
        padding: 4rem 2rem 2rem 2rem;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .eco-strip {
        padding: 2.5rem 2rem;
    }
    .eco-strip-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .eco-text strong {
        display: block;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

/* --- WordPress-style Blog CSS --- */
.blog-header {
    background-color: #f0f0eb;
    padding: 6rem 4rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.blog-header h1 {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.1rem;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 4rem;
}

.blog-post-single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.blog-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-post-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.blog-post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.blog-post-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease);
}

.blog-post-card:hover .blog-post-image {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 2.5rem;
}

.blog-post-meta {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-post-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post-title a {
    transition: var(--transition);
}

.blog-post-title a:hover {
    color: var(--primary-green);
}

.blog-post-excerpt {
    color: #4A5568;
    margin-bottom: 1.5rem;
}

.read-more-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition);
}

.read-more-btn:hover {
    background-color: var(--primary-green);
    color: #fff;
}

.read-more-btn.btn-back {
    border: none;
    background: #E2E8F0;
    color: #4A5568;
}

.read-more-btn.btn-back:hover {
    background: #cbd5e0;
    color: var(--text-dark);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.blog-widget {
    background: #F5F0E8;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.blog-widget:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.widget-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-green);
    display: inline-block;
}

.widget-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.widget-list a {
    color: #4A5568;
    transition: var(--transition);
}

.widget-list a:hover {
    color: var(--primary-green);
}

/* Single Post */
.single-post-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.single-post-title {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.single-post-subtitle {
    color: #718096;
    margin-top: 1rem;
}

.single-post-image {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 0 auto 4rem auto;
    display: block;
}

.single-post-content {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A5568;
}

.single-post-content h2, 
.single-post-content h3 {
    color: var(--text-dark);
    margin: 2.5rem 0 1rem 0;
    font-family: 'Playfair Display', serif;
}

.single-post-content p {
    margin-bottom: 1.5rem;
}

.single-post-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.single-post-content li {
    margin-bottom: 0.5rem;
}

.single-post-content a {
    color: var(--primary-green);
    text-decoration: underline;
}

.single-post-content hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 3rem 0;
}

.post-footer-nav {
    max-width: 750px;
    margin: 4rem auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

/* --- Scroll Reveal & Navbar Enhancements --- */

/* Navbar shrink + stronger shadow on scroll */
.navbar {
    transition: height 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.navbar.scrolled {
    height: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    background-color: #0a1810;
}

/* Reveal-on-scroll base + directional variants (applied via JS) */
.reveal {
    opacity: 0;
    transform: translateY(48px) scale(0.96);
    filter: blur(6px);
    transition: opacity 1s var(--ease), transform 1.1s var(--ease), filter 1s var(--ease);
    will-change: opacity, transform, filter;
}

.reveal.reveal-left { transform: translateX(-56px) scale(0.96); }
.reveal.reveal-right { transform: translateX(56px) scale(0.96); }

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
}

/* Keep hover lifts working after reveal (override is-visible transform) */
.reveal.is-visible.service-card:hover,
.reveal.is-visible.testimonial-card:hover {
    transform: translateY(-6px);
}

.reveal.is-visible.city-tag:hover {
    transform: translateY(-3px);
}

/* --- Section-specific dynamic animations --- */

/* Eco-strip: floating leaf + entrance */
.eco-icon {
    display: inline-block;
    animation: ecoFloat 3.5s ease-in-out infinite;
}

@keyframes ecoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(6deg); }
}

/* Why-us feature list: stagger items once the column reveals */
.why-us-content .feature-item {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.why-us-content.is-visible .feature-item {
    opacity: 1;
    transform: translateX(0);
}

.why-us-content.is-visible .feature-item:nth-child(1) { transition-delay: 0.15s; }
.why-us-content.is-visible .feature-item:nth-child(2) { transition-delay: 0.30s; }
.why-us-content.is-visible .feature-item:nth-child(3) { transition-delay: 0.45s; }

/* Service number highlight on hover */
.service-num {
    transition: opacity 0.3s var(--ease), letter-spacing 0.3s var(--ease);
}

.service-card:hover .service-num {
    opacity: 1;
    letter-spacing: 3px;
}

/* Single post hero image: zoom-in on load */
.single-post-image {
    animation: imgZoomIn 1.2s var(--ease) both;
}

@keyframes imgZoomIn {
    from { opacity: 0; transform: scale(1.06); }
    to   { opacity: 1; transform: scale(1); }
}

/* Blog read/nav buttons: nudge on hover */
.read-more-btn,
.post-footer-nav a {
    transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.post-footer-nav a:hover {
    transform: translateX(4px);
}

.post-footer-nav a.btn-back:hover {
    transform: translateX(-4px);
}

/* Accessible keyboard focus (uses existing brand green) */
a:focus-visible,
.btn:focus-visible,
.city-tag:focus-visible,
.read-more-btn:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 3px;
    border-radius: var(--radius);
}

.navbar a:focus-visible {
    outline-color: #fff;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===========================================================
   New beautiful elements (within existing green/cream palette)
   =========================================================== */

/* --- Hero scroll indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 2;
    color: var(--primary-green);
    animation: scrollBob 2.4s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--primary-green);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background-color: var(--primary-green);
    animation: scrollWheel 1.8s var(--ease) infinite;
}

.scroll-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

@keyframes scrollWheel {
    0% { opacity: 0; transform: translateY(-4px); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes scrollBob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Stats band --- */
.stats-band {
    background-color: var(--primary-green);
    padding: 3.5rem 4rem;
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 40%;
    height: 200%;
    background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-18deg);
    animation: statsSheen 9s ease-in-out infinite;
    pointer-events: none;
}

@keyframes statsSheen {
    0% { left: -40%; }
    55%, 100% { left: 140%; }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.stat-item {
    text-align: center;
    color: #fff;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: rgba(255,255,255,0.18);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1;
    display: block;
    margin-bottom: 0.4rem;
}

.stat-item span {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
}

/* --- Process / How It Works --- */
.process {
    padding: 6rem 4rem;
}

.process-header {
    margin-bottom: 4rem;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* connecting dashed line behind the steps */
.process-steps::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 16%;
    right: 16%;
    height: 2px;
    background-image: linear-gradient(90deg, var(--primary-green) 50%, transparent 50%);
    background-size: 14px 2px;
    opacity: 0.3;
    z-index: 0;
}

.process-step {
    background-color: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.process-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(45,69,51,0.25);
}

.process-icon {
    margin: 1rem auto 1.25rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(59,91,67,0.10);
    color: var(--primary-green);
    transition: transform 0.4s var(--ease), background-color 0.4s var(--ease);
}

.process-icon svg {
    width: 30px;
    height: 30px;
}

.process-step:hover .process-icon {
    background-color: rgba(59,91,67,0.18);
}

.process-step:hover .process-icon {
    transform: scale(1.15) translateY(-4px);
}

.process-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.95rem;
    color: #4A5568;
}

/* --- Gallery --- */
.gallery {
    padding: 6rem 4rem;
    background-color: #f0f0eb;
}

.gallery-header {
    margin-bottom: 4rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item.g-tall { grid-row: span 2; }
.gallery-item.g-wide { grid-column: span 2; }

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45,69,51,0.85) 0%, rgba(45,69,51,0.15) 50%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity 0.45s var(--ease);
}

.gallery-item figcaption {
    position: absolute;
    left: 1.5rem;
    bottom: 1.25rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.gallery-item:hover {
    transform: scale(1.015);
    box-shadow: var(--shadow-lg);
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

/* --- Back to top --- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary-green);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.85);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background-color 0.3s ease, visibility 0.4s;
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-3px) scale(1.05);
}

/* Stagger gallery reveal */
.gallery-item {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.gallery-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Process step reveal */
.process-step {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), box-shadow 0.4s var(--ease);
}

.process-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step.is-visible:hover {
    transform: translateY(-8px);
}

/* Responsive for new elements */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
    .stat-item:nth-child(2)::after { display: none; }
    .process-steps { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.g-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    .stats-band { padding: 3rem 2rem; }
    .stat-item::after { display: none !important; }
    .stat-num { font-size: 2.4rem; }
    .process { padding: 4rem 2rem; }
    .gallery { padding: 4rem 2rem; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-item.g-tall { grid-row: span 1; }
    .gallery-item.g-wide { grid-column: span 1; }
    .scroll-indicator { display: none; }
}

@media (max-width: 992px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .single-post-image {
        height: 300px;
    }
    .blog-header {
        padding: 4rem 2rem;
    }
}

/* ===========================================================
   Smooth, elegant motion layer (palette-safe)
   =========================================================== */

/* Gentle page load fade-in */
body {
    opacity: 0;
    animation: pageFadeIn 0.9s var(--ease) 0.05s forwards;
}

@keyframes pageFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Scroll reading-progress bar (top of page) */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--primary-green), #7d9d85);
    z-index: 200;
    transform-origin: left center;
    transition: width 0.12s linear;
    box-shadow: 0 0 8px rgba(59,91,67,0.4);
}

/* Decorative accent line under centered section titles */
.section-title.center {
    position: relative;
    padding-bottom: 1.4rem;
}

.section-title.center::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 64px;
    height: 3px;
    border-radius: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    background-size: 200% 100%;
    animation: accentShimmer 4.5s ease-in-out infinite;
}

.section-title.center.light::after {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
    background-size: 200% 100%;
}

@keyframes accentShimmer {
    0%, 100% { background-position: 0% 0; opacity: 0.65; }
    50% { background-position: 100% 0; opacity: 1; }
}

/* Soft glow ring on icon circles when hovered */
.feature-item:hover .feature-icon,
.process-step:hover .process-icon {
    box-shadow: 0 0 0 8px rgba(59,91,67,0.07);
}

/* Idle breathing on the satisfaction badge number is preserved;
   add a soft pulse ring to the process step numbers */
.process-num::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(59,91,67,0.35);
    opacity: 0;
}

.process-step:hover .process-num::after {
    animation: numPulse 1.4s var(--ease) infinite;
}

@keyframes numPulse {
    0%   { transform: scale(0.85); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* 3D cursor tilt for cards (JS-driven). Smooth springy return. */
.tilt {
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    transform-style: preserve-3d;
    will-change: transform;
}

.tilt.tilting {
    transition: box-shadow 0.4s var(--ease);
}

/* Hero title subtle gradient sheen (keeps brand green).
   Must re-declare heroRise here so the entrance opacity still runs —
   the animation shorthand would otherwise override .hero-content > *. */
.hero-title {
    background: linear-gradient(100deg, var(--primary-green) 0%, #4f7a5b 45%, var(--primary-green) 70%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroRise 0.9s var(--ease) 0.30s forwards,
               heroSheen 8s ease-in-out 1.3s infinite;
}

@keyframes heroSheen {
    0%, 100% { background-position: 0% 0; }
    50% { background-position: 100% 0; }
}

/* Smooth scroll for the whole document */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    body { opacity: 1 !important; animation: none !important; }
    .section-title.center::after,
    .hero-title { animation: none !important; }
    .hero-title {
        -webkit-text-fill-color: var(--primary-green);
        opacity: 1 !important;
    }
    .scroll-progress { display: none; }
    html { scroll-behavior: auto !important; }
}
