/* ═══════════════════════════════════════════════════════════
   MODERN CLEAN — LawnHosting Template
   Elegant, minimal design with generous whitespace.
   Journey concept layout, photo cards, upscale aesthetic.
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
    --primary: #16a34a;
    --primary-dark: #2d6148;
    --primary-light: #f0f7f3;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --accent-light: #fdf6f0;
    --text: #2a2f2c;
    --text-light: #6b7770;
    --text-muted: #a3afa7;
    --bg: #ffffff;
    --bg-warm: #fafaf8;
    --bg-cream: #f7f5f0;
    --border: #e8e6e1;
    --border-light: #f0eeea;
    --shadow-sm: 0 1px 3px rgba(28,43,31,0.04);
    --shadow-md: 0 6px 20px rgba(28,43,31,0.06);
    --shadow-lg: 0 12px 40px rgba(28,43,31,0.08);
    --shadow-xl: 0 20px 60px rgba(28,43,31,0.1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-heading: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --max-width: 1200px;
    --nav-height: 76px;
}

*, *::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 28px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.25; color: var(--secondary); font-weight: 400; }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px; font-family: var(--font-body);
    font-weight: 600; font-size: 14px; border: none;
    cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #b8844f; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--secondary); }
.btn-white:hover { background: var(--bg-cream); transform: translateY(-2px); }
.btn-lg { padding: 16px 40px; font-size: 15px; }
.btn-ghost { background: none; color: var(--text-light); padding: 8px 0; border-radius: 0; border-bottom: 1.5px solid var(--text-muted); }
.btn-ghost:hover { color: var(--primary); border-color: var(--primary); }

/* ── Navigation ── */
.mc-nav {
    background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
    position: sticky; top: 0; z-index: 1000; height: var(--nav-height);
    display: flex; align-items: center; border-bottom: 1px solid transparent;
    transition: all 0.3s;
}
.mc-nav.scrolled { border-bottom-color: var(--border-light); box-shadow: var(--shadow-sm); }
.mc-nav-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 28px;
    width: 100%; display: flex; justify-content: space-between; align-items: center;
}
.mc-logo { display: flex; align-items: center; gap: 12px; color: var(--secondary); flex-shrink: 0; }
.mc-logo img { height: 42px; width: auto; border-radius: var(--radius-sm); object-fit: contain; }
.mc-logo-text { font-family: var(--font-heading); font-size: 22px; }
.mc-nav-links { display: flex; gap: 8px; align-items: center; }
.mc-nav-links a {
    color: var(--text-light); font-weight: 500; font-size: 14px; padding: 8px 14px;
    border-radius: 50px; transition: all 0.25s;
}
.mc-nav-links a:hover { color: var(--primary); background: var(--primary-light); }
.mc-nav-links a.active { color: var(--primary); }
.mc-nav-cta {
    background: var(--primary) !important; color: #fff !important;
    padding: 10px 24px !important; border-radius: 50px !important; font-weight: 600 !important; margin-left: 8px;
}
.mc-nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

.mc-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;
}
.mc-nav-login:hover {
    border-color: var(--primary, #16a34a);
    color: var(--primary, #16a34a) !important;
    background: transparent !important;
}

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

/* ── Sections ── */
.section { padding: 100px 0; }
.section-warm { background: var(--bg-warm); }
.section-cream { background: var(--bg-cream); }
.section-dark { background: var(--secondary); color: rgba(255,255,255,0.85); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-primary { background: var(--primary); color: #fff; }
.section-primary h2 { color: #fff; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header .subtitle { color: var(--text-light); font-size: 17px; max-width: 520px; margin: 0 auto; line-height: 1.8; }
.section-header .label {
    display: inline-block; color: var(--accent); font-weight: 600;
    font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}

/* ── Hero ── */
.mc-hero { padding: 80px 0 100px; position: relative; overflow: hidden; }
.mc-hero-inner { text-align: center; max-width: 780px; margin: 0 auto; padding: 0 28px; }
.mc-hero .label { display: inline-flex; align-items: center; gap: 6px; background: var(--primary-light); color: var(--primary); padding: 8px 20px; border-radius: 50px; font-weight: 600; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px; }
.mc-hero h1 { margin-bottom: 20px; }
.mc-hero-subtitle { font-size: 18px; color: var(--text-light); line-height: 1.9; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; }
.mc-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.mc-hero-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); max-width: 960px; margin: 0 auto; aspect-ratio: 21/9; }
.mc-hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Photo Cards (Services) ── */
.mc-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 24px; }
.mc-card {
    border-radius: var(--radius-lg); overflow: hidden; background: #fff;
    box-shadow: var(--shadow-sm); transition: all 0.4s ease; border: 1px solid var(--border-light);
}
.mc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.mc-card-image { height: 220px; overflow: hidden; position: relative; }
.mc-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.mc-card:hover .mc-card-image img { transform: scale(1.06); }
.mc-card-body { padding: 28px; }
.mc-card-body h3 { margin-bottom: 8px; }
.mc-card-body p { color: var(--text-light); font-size: 14px; margin-bottom: 16px; }
.mc-card-link { color: var(--primary); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.mc-card-link:hover { gap: 10px; }
.mc-card-icon { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.9); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 18px; backdrop-filter: blur(10px); }

/* ── Content Split ── */
.mc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.mc-split-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.mc-split-image img { width: 100%; height: 440px; object-fit: cover; }
.mc-split-body h2 { margin-bottom: 16px; }
.mc-split-body p { color: var(--text-light); margin-bottom: 12px; font-size: 15px; line-height: 1.9; }

.mc-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.mc-feature { display: flex; gap: 10px; align-items: flex-start; }
.mc-feature-icon { width: 36px; height: 36px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); font-size: 14px; }
.mc-feature h4 { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--secondary); }
.mc-feature p { font-size: 12px; color: var(--text-muted); }

/* ── Testimonials ── */
.mc-testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 24px; }
.mc-testimonial {
    background: #fff; border-radius: var(--radius-lg); padding: 32px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: box-shadow 0.3s;
}
.mc-testimonial:hover { box-shadow: var(--shadow-md); }
.mc-testimonial-stars { color: var(--accent); font-size: 13px; margin-bottom: 14px; display: flex; gap: 2px; }
.mc-testimonial-text { font-size: 15px; line-height: 1.8; color: var(--text-light); margin-bottom: 20px; font-style: italic; }
.mc-testimonial-footer { display: flex; align-items: center; gap: 12px; }
.mc-testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-light), var(--accent-light)); display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.mc-testimonial-name { font-weight: 700; font-size: 14px; color: var(--secondary); }
.mc-testimonial-location { font-size: 12px; color: var(--text-muted); }

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

/* ── Contact ── */
.mc-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.mc-contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.mc-contact-icon { width: 44px; height: 44px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }

/* ── Forms ── */
.mc-form { display: flex; flex-direction: column; gap: 16px; }
.mc-form label { display: block; font-weight: 600; font-size: 13px; color: var(--text-light); margin-bottom: 6px; }
.mc-form input, .mc-form textarea, .mc-form select {
    width: 100%; padding: 14px 18px; border: 1.5px solid var(--border);
    border-radius: var(--radius-md); font-size: 14px; font-family: var(--font-body);
    color: var(--text); background: #fff; transition: all 0.25s; outline: none;
}
.mc-form input:focus, .mc-form textarea:focus, .mc-form select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(58,125,92,0.08); }
.mc-form textarea { height: 130px; resize: vertical; }

.form-success { background: var(--primary-light); color: var(--primary-dark); padding: 16px; border-radius: var(--radius-md); font-weight: 600; text-align: center; display: none; }
.form-success.show { display: block; }

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

/* ── Blog ── */
.mc-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 24px; }
.mc-blog-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: all 0.3s; }
.mc-blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.mc-blog-card-image { height: 200px; overflow: hidden; }
.mc-blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.mc-blog-card:hover .mc-blog-card-image img { transform: scale(1.05); }
.mc-blog-card-body { padding: 24px; }
.mc-blog-card-date { font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.mc-blog-card h3 { margin-bottom: 8px; }
.mc-blog-card p { color: var(--text-light); font-size: 14px; }

/* ── Areas ── */
.mc-areas-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.mc-area-tag { background: #fff; padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 13px; color: var(--text-light); border: 1.5px solid var(--border); transition: all 0.25s; }
.mc-area-tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Page Header ── */
.mc-page-header { padding: 64px 0 56px; text-align: center; background: var(--bg-cream); border-bottom: 1px solid var(--border-light); }
.mc-page-header h1 { margin-bottom: 10px; }
.mc-page-header p { color: var(--text-light); font-size: 17px; max-width: 520px; margin: 0 auto; }
.mc-breadcrumbs { margin-bottom: 16px; font-size: 13px; color: var(--text-muted); }
.mc-breadcrumbs a { color: var(--text-light); }
.mc-breadcrumbs a:hover { color: var(--primary); }

/* ── CTA Banner ── */
.mc-cta { background: var(--secondary); color: #fff; padding: 64px 0; text-align: center; border-radius: 0; }
.mc-cta h2 { color: #fff; margin-bottom: 12px; }
.mc-cta p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 17px; }

/* ── Footer ── */
.mc-footer { background: var(--secondary); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.mc-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.mc-footer h4 { color: #fff; font-family: var(--font-body); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.mc-footer p { font-size: 14px; line-height: 1.8; }
.mc-footer-links a { display: block; color: rgba(255,255,255,0.5); font-size: 14px; padding: 4px 0; transition: color 0.2s; }
.mc-footer-links a:hover { color: #fff; }
.mc-footer-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 14px; }
.mc-footer-contact i { color: var(--accent); width: 16px; text-align: center; }
.mc-social { display: flex; gap: 10px; margin-top: 20px; }
.mc-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 14px; transition: all 0.25s; }
.mc-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.mc-footer-bottom { margin-top: 48px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; font-size: 13px; color: rgba(255,255,255,0.3); }
.mc-footer-bottom a { color: rgba(255,255,255,0.4); }
.mc-footer-bottom a:hover { color: var(--accent); }

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

/* ── Responsive ── */
@media (max-width: 1024px) {
    .mc-split { grid-template-columns: 1fr; gap: 40px; }
    .mc-contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .mc-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .mc-features { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    :root { --nav-height: 64px; }
    .section { padding: 64px 0; }
    .mc-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: 8px; z-index: 999; }
    .mc-nav-links.open { display: flex; }
    .mc-nav-links a { font-size: 18px; padding: 12px 24px; }
    .mc-nav-toggle { display: block; }
    .mc-hero { padding: 48px 0 64px; }
    .mc-hero-image { border-radius: var(--radius-lg); }
    .mc-cards, .mc-testimonials, .mc-blog-grid { grid-template-columns: 1fr; }
    .mc-footer-grid { grid-template-columns: 1fr; }
}
