/* ═══════════════════════════════════════════════════════════
   LOCAL PRO — LawnHosting Template
   Bold, high-energy design. Strong contrast, action-oriented.
   Built for companies that dominate their local market.
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --primary: #16a34a;
    --primary-dark: #15803d;
    --primary-darker: #166534;
    --primary-light: #f0fdf4;
    --secondary: #0f172a;
    --secondary-light: #1e293b;
    --accent: #f59e0b;
    --accent-light: #fffbeb;
    --danger: #ef4444;
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-slate: #f1f5f9;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 3px rgba(15,23,42,0.06);
    --shadow-md: 0 4px 12px rgba(15,23,42,0.08);
    --shadow-lg: 0 10px 30px rgba(15,23,42,0.1);
    --shadow-xl: 0 20px 50px rgba(15,23,42,0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-heading: 'Outfit', -apple-system, sans-serif;
    --font-body: 'Space Grotesk', -apple-system, sans-serif;
    --max-width: 1240px;
    --nav-height: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.7; font-size: 15px; background: var(--bg); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; color: var(--secondary); }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 900; letter-spacing: -0.5px; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -0.3px; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: var(--radius-md); font-family: var(--font-heading);
    font-weight: 700; font-size: 14px; border: 2px solid transparent;
    cursor: pointer; transition: all 0.25s; text-decoration: none; text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(22,163,74,0.3); }
.btn-secondary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-dark { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.btn-dark:hover { background: var(--secondary-light); border-color: var(--secondary-light); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--secondary); border-color: var(--accent); font-weight: 800; }
.btn-accent:hover { background: #d97706; border-color: #d97706; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--secondary); border-color: #fff; }
.btn-white:hover { background: var(--primary-light); border-color: var(--primary-light); }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ── Alert Bar ── */
.lp-alert {
    background: var(--secondary); color: #fff; padding: 10px 0;
    font-size: 13px; font-weight: 600; text-align: center; letter-spacing: 0.3px;
}
.lp-alert a { color: var(--accent); text-decoration: underline; margin-left: 8px; }

/* ── Navigation ── */
.lp-nav {
    background: #fff; position: sticky; top: 0; z-index: 1000;
    height: var(--nav-height); display: flex; align-items: center;
    border-bottom: 1px solid var(--border-light); transition: box-shadow 0.3s;
}
.lp-nav.scrolled { box-shadow: var(--shadow-md); }
.lp-nav-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
    width: 100%; display: flex; justify-content: space-between; align-items: center;
}
.lp-logo { display: flex; align-items: center; gap: 10px; color: var(--secondary); flex-shrink: 0; }
.lp-logo img { height: 42px; width: auto; border-radius: var(--radius-sm); object-fit: contain; }
.lp-logo-text { font-family: var(--font-heading); font-size: 20px; font-weight: 900; letter-spacing: -0.3px; }
.lp-nav-links { display: flex; gap: 2px; align-items: center; }
.lp-nav-links a {
    color: var(--text-light); font-family: var(--font-heading); font-weight: 600;
    font-size: 13px; padding: 8px 14px; border-radius: var(--radius-sm);
    transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.5px;
}
.lp-nav-links a:hover { color: var(--primary); background: var(--primary-light); }
.lp-nav-links a.active { color: var(--primary); }
.lp-nav-cta {
    background: var(--primary) !important; color: #fff !important;
    padding: 10px 22px !important; border-radius: var(--radius-md) !important;
    text-transform: uppercase !important; letter-spacing: 0.5px !important; margin-left: 6px;
}
.lp-nav-cta:hover { background: var(--primary-dark) !important; }

.lp-nav-login {
    border: 1.5px solid var(--border, #e5e4e0);
    padding: 8px 18px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    color: var(--text, #333) !important;
    background: transparent !important;
    transition: all 0.3s ease;
}
.lp-nav-login:hover {
    border-color: var(--primary, #16a34a);
    color: var(--primary, #16a34a) !important;
    background: transparent !important;
}

.lp-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.lp-nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--secondary); margin: 5px 0; transition: all 0.3s; border-radius: 2px; }
.lp-nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.lp-nav-toggle.active span:nth-child(2) { opacity: 0; }
.lp-nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Sections ── */
.section { padding: 88px 0; }
.section-light { background: var(--bg-light); }
.section-slate { background: var(--bg-slate); }
.section-dark { background: var(--secondary); color: rgba(255,255,255,0.85); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-green { background: var(--primary); color: #fff; }
.section-green h2, .section-green h3 { color: #fff; }
.section-green p { color: rgba(255,255,255,0.85); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { margin-bottom: 12px; }
.section-header .subtitle { color: var(--text-light); font-size: 16px; max-width: 560px; margin: 0 auto; }
.section-header .badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary-light); color: var(--primary); padding: 6px 16px;
    border-radius: var(--radius-md); font-family: var(--font-heading);
    font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px;
}

/* ── Hero ── */
.lp-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 72px 0 80px; color: #fff; position: relative; overflow: hidden;
}
.lp-hero::after {
    content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%;
    background: radial-gradient(ellipse, rgba(22,163,74,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.lp-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.lp-hero h1 { color: #fff; margin-bottom: 16px; }
.lp-hero h1 span { color: var(--primary); }
.lp-hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 28px; line-height: 1.8; }
.lp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.lp-hero-stats { display: flex; gap: 32px; }
.lp-hero-stat { text-align: left; }
.lp-hero-stat-num { font-family: var(--font-heading); font-size: 32px; font-weight: 900; color: var(--primary); line-height: 1; }
.lp-hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.lp-hero-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.lp-hero-image img { width: 100%; height: 420px; object-fit: cover; }

/* ── Service Grid ── */
.lp-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 20px; }
.lp-service-card {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border); transition: all 0.3s; position: relative;
}
.lp-service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary); }
.lp-service-card-image { height: 180px; overflow: hidden; }
.lp-service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.lp-service-card:hover .lp-service-card-image img { transform: scale(1.06); }
.lp-service-card-body { padding: 22px; }
.lp-service-card h3 { margin-bottom: 6px; font-size: 1.1rem; }
.lp-service-card p { color: var(--text-light); font-size: 13px; margin-bottom: 12px; }
.lp-service-card-price { display: inline-flex; align-items: center; gap: 4px; background: var(--primary-light); color: var(--primary-dark); padding: 4px 12px; border-radius: var(--radius-sm); font-weight: 800; font-size: 13px; font-family: var(--font-heading); }
.lp-service-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 700; font-size: 13px; margin-top: 10px; text-transform: uppercase; letter-spacing: 0.5px; transition: gap 0.2s; }
.lp-service-card-link:hover { gap: 10px; }

/* ── Why Choose Us ── */
.lp-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 20px; }
.lp-why-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); transition: all 0.3s; text-align: center; }
.lp-why-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.lp-why-icon { width: 56px; height: 56px; background: var(--primary-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--primary); font-size: 22px; }
.lp-why-card h3 { margin-bottom: 6px; font-size: 1rem; }
.lp-why-card p { color: var(--text-light); font-size: 13px; }

/* ── Content Split ── */
.lp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lp-split-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.lp-split-image img { width: 100%; height: 420px; object-fit: cover; }

/* ── Testimonials ── */
.lp-testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 20px; }
.lp-testimonial {
    background: #fff; border-radius: var(--radius-lg); padding: 28px;
    border: 1px solid var(--border); transition: all 0.3s; position: relative;
}
.lp-testimonial:hover { box-shadow: var(--shadow-md); }
.lp-testimonial::before {
    content: '\201C'; position: absolute; top: 16px; right: 20px;
    font-size: 48px; color: var(--primary-light); font-family: Georgia, serif; line-height: 1;
}
.lp-testimonial-stars { color: var(--accent); font-size: 13px; margin-bottom: 12px; display: flex; gap: 2px; }
.lp-testimonial-text { font-size: 14px; line-height: 1.8; color: var(--text-light); margin-bottom: 16px; }
.lp-testimonial-author { font-family: var(--font-heading); font-weight: 800; font-size: 14px; color: var(--secondary); }
.lp-testimonial-location { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── FAQ ── */
.lp-faq-list { max-width: 740px; margin: 0 auto; }
.lp-faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; background: #fff; transition: border-color 0.3s; }
.lp-faq-item.active { border-color: var(--primary); }
.lp-faq-question { padding: 18px 22px; font-family: var(--font-heading); font-weight: 700; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--secondary); transition: color 0.2s; }
.lp-faq-question:hover { color: var(--primary); }
.lp-faq-toggle { width: 28px; height: 28px; background: var(--bg-slate); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; font-size: 11px; color: var(--text-muted); }
.lp-faq-item.active .lp-faq-toggle { background: var(--primary); color: #fff; transform: rotate(180deg); }
.lp-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s; }
.lp-faq-item.active .lp-faq-answer { max-height: 500px; padding: 0 22px 20px; }
.lp-faq-answer p { color: var(--text-light); font-size: 14px; line-height: 1.8; }

/* ── Contact ── */
.lp-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.lp-contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.lp-contact-icon { width: 44px; height: 44px; background: var(--primary); color: #fff; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }

/* ── Forms ── */
.lp-form { display: flex; flex-direction: column; gap: 14px; }
.lp-form label { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 4px; }
.lp-form input, .lp-form textarea, .lp-form select {
    width: 100%; padding: 13px 16px; border: 2px solid var(--border);
    border-radius: var(--radius-md); font-size: 14px; font-family: var(--font-body);
    color: var(--text); background: #fff; transition: all 0.2s; outline: none;
}
.lp-form input:focus, .lp-form textarea:focus, .lp-form select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(22,163,74,0.08); }
.lp-form textarea { height: 120px; resize: vertical; }
.form-success { background: var(--primary-light); color: var(--primary-dark); padding: 14px; border-radius: var(--radius-md); font-weight: 700; text-align: center; display: none; }
.form-success.show { display: block; }

/* ── Gallery ── */
.lp-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 16px; }
.lp-gallery-item { border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; position: relative; }
.lp-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.lp-gallery-item:hover img { transform: scale(1.06); }
.lp-gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.6) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 16px; color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 14px; }
.lp-gallery-item:hover .lp-gallery-overlay { opacity: 1; }

/* ── Blog ── */
.lp-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 20px; }
.lp-blog-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--border); transition: all 0.3s; }
.lp-blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.lp-blog-card-image { height: 190px; overflow: hidden; }
.lp-blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.lp-blog-card:hover .lp-blog-card-image img { transform: scale(1.05); }
.lp-blog-card-body { padding: 22px; }
.lp-blog-card-date { font-family: var(--font-heading); font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); font-weight: 800; margin-bottom: 6px; }
.lp-blog-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.lp-blog-card p { color: var(--text-light); font-size: 13px; }

/* ── Areas ── */
.lp-areas-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.lp-area-tag { background: #fff; padding: 10px 22px; border-radius: var(--radius-md); font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--secondary); border: 2px solid var(--border); text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.25s; }
.lp-area-tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Page Header ── */
.lp-page-header { background: var(--secondary); color: #fff; padding: 56px 0 48px; position: relative; overflow: hidden; }
.lp-page-header::after { content: ''; position: absolute; top: -50%; right: -10%; width: 40%; height: 200%; background: radial-gradient(ellipse, rgba(22,163,74,0.1) 0%, transparent 70%); pointer-events: none; }
.lp-page-header .container { position: relative; z-index: 1; }
.lp-page-header h1 { color: #fff; margin-bottom: 8px; font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.lp-page-header p { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 560px; }
.lp-breadcrumbs { margin-bottom: 14px; font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.lp-breadcrumbs a { color: rgba(255,255,255,0.5); }
.lp-breadcrumbs a:hover { color: var(--primary); }

/* ── CTA Banner ── */
.lp-cta { background: var(--primary); color: #fff; padding: 56px 0; text-align: center; position: relative; overflow: hidden; }
.lp-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 100%); pointer-events: none; }
.lp-cta .container { position: relative; z-index: 1; }
.lp-cta h2 { color: #fff; margin-bottom: 10px; }
.lp-cta p { color: rgba(255,255,255,0.85); margin-bottom: 24px; font-size: 17px; }

/* ── Footer ── */
.lp-footer { background: var(--secondary); color: rgba(255,255,255,0.7); padding: 56px 0 0; }
.lp-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.lp-footer h4 { color: #fff; font-family: var(--font-heading); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.lp-footer p { font-size: 14px; line-height: 1.8; }
.lp-footer-links a { display: block; color: rgba(255,255,255,0.5); font-size: 14px; padding: 3px 0; transition: color 0.2s; }
.lp-footer-links a:hover { color: #fff; }
.lp-footer-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 14px; }
.lp-footer-contact i { color: var(--primary); width: 16px; text-align: center; }
.lp-social { display: flex; gap: 8px; margin-top: 16px; }
.lp-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 14px; transition: all 0.25s; }
.lp-social a:hover { background: var(--primary); color: #fff; }
.lp-footer-bottom { margin-top: 40px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; font-size: 12px; color: rgba(255,255,255,0.3); }
.lp-footer-bottom a { color: rgba(255,255,255,0.4); }
.lp-footer-bottom a:hover { color: var(--primary); }

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.5s, transform 0.5s; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(28px); transition: opacity 0.5s, transform 0.5s; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .lp-hero-grid, .lp-split { grid-template-columns: 1fr; gap: 36px; }
    .lp-hero-image { display: none; }
    .lp-contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
    :root { --nav-height: 62px; }
    .section { padding: 56px 0; }
    .lp-alert { display: none; }
    .lp-nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; gap: 6px; z-index: 999; }
    .lp-nav-links.open { display: flex; }
    .lp-nav-links a { font-size: 16px; padding: 12px 24px; }
    .lp-nav-toggle { display: block; }
    .lp-hero { padding: 48px 0 56px; }
    .lp-hero-stats { gap: 20px; }
    .lp-services-grid, .lp-testimonials, .lp-blog-grid, .lp-why-grid { grid-template-columns: 1fr; }
    .lp-footer-grid { grid-template-columns: 1fr; }
}
