/* ==========================================================================
   SERVICE 5: LANDSCAPING (ARCHITECTURE 4, 7-SECTION FUNNEL)
   ========================================================================== */

:root {
    --primary: #0f172a;       /* Deep Slate */
    --brand-primary: #15803d; /* Forest Green */
    --brand-accent: #22c55e;  /* Bright Leaf Green */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-muted: #64748b;
    --border: #e2e8f0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography limits enforced */
h1, h2, h3, .logo { color: var(--primary); font-weight: 700; line-height: 1.2; }
h2 { font-size: 2.2rem; margin-bottom: 15px; }

.container { max-width: 1150px; margin: 0 auto; padding: 0 5%; }
img { max-width: 100%; display: block; border-radius: 8px; }
a { text-decoration: none; }

/* Utilities & Spacing Limits */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.bg-light { background-color: var(--bg-light); }
.border-bottom { border-bottom: 1px solid var(--border); }
.flex-between { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.eyebrow { color: var(--brand-primary); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.font-sm { font-size: 0.9rem; }

/* Banner */
.josef-preview-banner { background: var(--bg-light); color: var(--text-main); text-align: center; padding: 8px; font-size: 13px; border-bottom: 1px solid var(--border); }

/* =========================================================
   MASTER PROTOCOL: ARCHITECTURE 4 (DUAL-BAR TRUST HEADER)
   ========================================================= */
.header-4 { position: sticky; top: 0; z-index: 100; }
.header-4-top { background: var(--primary); color: white; padding: 8px 0; font-size: 0.85rem; font-weight: 500; }
.h4-top-container { display: flex; justify-content: space-between; align-items: center; }
.h4-trust-signals { display: flex; gap: 20px; color: #cbd5e1; }
.h4-trust-signals span { display: flex; align-items: center; gap: 6px; }
.h4-trust-signals i { color: var(--brand-accent); }

.header-4-main { background: white; padding: 15px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.04); border-bottom: 1px solid var(--border); }
.h4-main-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 900; letter-spacing: -0.5px; }
.logo span { color: var(--brand-primary); }

.h4-nav { display: flex; gap: 30px; align-items: center; }
.nav-link { color: var(--text-muted); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.nav-link:hover { color: var(--brand-primary); }

/* Animated Action Button */
.h4-action-btn {
    background: var(--brand-primary); color: white; padding: 12px 24px; border-radius: 8px;
    font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 15px rgba(21, 128, 61, 0.3); transition: all 0.3s;
}
.h4-action-btn i { font-size: 1.2rem; animation: pulse 2s infinite; }
.h4-action-btn:hover { background: #166534; transform: translateY(-2px); }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.15); } 100% { transform: scale(1); } }

/* 1. Hero Section */
.service-hero { padding: 60px 0; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.rating-badge { display: inline-flex; align-items: center; gap: 10px; background: #f0fdf4; border: 1px solid #bbf7d0; padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; color: var(--brand-primary); }
.rating-badge .stars { color: #eab308; }
.hero-text h1 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 20px; letter-spacing: -0.5px; } /* Medium Text Enforced */
.hero-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-primary { background: var(--primary); color: white; padding: 14px 28px; border-radius: 8px; font-weight: 700; transition: background 0.2s; }
.btn-primary:hover { background: #1e293b; }
.btn-outline { border: 2px solid var(--border); color: var(--primary); padding: 14px 28px; border-radius: 8px; font-weight: 700; transition: all 0.2s; }
.btn-outline:hover { border-color: var(--primary); }

.hero-image img { box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

/* 2. Trust Bar */
.trust-bar { padding: 25px 0; }
.trust-logos { display: flex; gap: 30px; flex-wrap: wrap; }
.fake-logo { font-weight: 700; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.fake-logo i { color: var(--brand-primary); font-size: 1.2rem; }

/* 3. About Section */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content p { font-size: 1.05rem; margin-bottom: 25px; }
.check-list { list-style: none; }
.check-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-weight: 600; color: var(--primary); }
.check-list i { color: var(--brand-primary); font-size: 1.2rem; }

/* 4. Services Section */
.services-section { padding: 80px 0; }
.section-header { margin-bottom: 50px; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: white; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.02); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-5px); border-color: var(--brand-primary); }
.service-card img { border-radius: 0; height: 220px; width: 100%; object-fit: cover; }
.card-body { padding: 25px; }
.card-body h3 { font-size: 1.3rem; margin-bottom: 10px; }

/* 5. Process Section */
.process-section { padding: 80px 0; }
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.step-box { text-align: center; padding: 30px; border: 1px solid var(--border); border-radius: 12px; background: var(--bg-light); }
.step-num { width: 50px; height: 50px; background: var(--brand-primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin: 0 auto 20px auto; }
.step-box h3 { font-size: 1.2rem; margin-bottom: 10px; }

/* 6. Reviews Section */
.review-section { padding: 80px 0; }
.review-card { max-width: 800px; margin: 0 auto; background: white; padding: 40px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid var(--border); }
.review-card .stars { color: #eab308; font-size: 1.5rem; margin-bottom: 20px; }
.review-card blockquote { font-size: 1.2rem; font-style: italic; color: var(--primary); margin-bottom: 20px; line-height: 1.6; }

/* 7. CTA / Footer */
.service-footer { background: var(--primary); color: white; }
.cta-banner { background: var(--brand-primary); padding: 50px 0; }
.cta-banner h2 { color: white; margin-bottom: 5px; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; }
.btn-secondary { background: white; color: var(--brand-primary); padding: 14px 28px; border-radius: 8px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; transition: transform 0.2s; }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.footer-bottom { padding: 30px 5%; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 0; }

/* Animations */
.fade-in-up { animation: fadeInUp 0.8s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.2s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile */
@media (max-width: 992px) {
    .hide-mobile { display: none; }
    .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-text h1 { font-size: 2.2rem; }
}