/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green: #2e7d32;
    --green-dark: #1b5e20;
    --green-light: #e8f5e9;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --orange: #f57c00;
    --radius: 8px;
}

html { font-size: 18px; scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* === Typography === */
h1 { font-size: 2.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

/* === Header === */
header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green-dark);
    text-decoration: none;
}
.logo:hover { text-decoration: none; }

nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
nav a { color: var(--gray-700); font-weight: 500; font-size: 0.95rem; }
nav a:hover { color: var(--green); text-decoration: none; }
.nav-cta { background: var(--green); color: var(--white) !important; padding: 8px 18px; border-radius: var(--radius); font-weight: 600; }
.nav-cta:hover { background: var(--green-dark); }

/* === Hero === */
.hero {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #1b5e20 100%);
    color: var(--white);
    padding: 60px 0;
}
.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero-text { flex: 1; }
.hero-image { flex: 1; text-align: center; }
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.hero h1 { font-size: 2.4rem; color: var(--white); }
.hero-sub { font-size: 1.1rem; opacity: 0.9; max-width: 550px; margin: 0 0 2rem; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-badge { opacity: 0.8; font-size: 0.95rem; }

@media (max-width: 768px) {
    .hero .container { flex-direction: column; text-align: center; }
    .hero-sub { margin: 0 auto 2rem; }
    .hero-buttons { justify-content: center; }
    .hero h1 { font-size: 1.9rem; }
    .hero-image { order: -1; }
    .hero-image img { max-width: 80%; }
}

/* === Page Hero (inner pages) === */
.page-hero {
    background: var(--green-dark);
    color: var(--white);
    padding: 60px 0 50px;
    text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { opacity: 0.9; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: #e06b00; text-decoration: none; }
.btn-secondary { background: rgba(255,255,255,0.15); color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { background: rgba(255,255,255,0.25); text-decoration: none; }
.btn-full { width: 100%; }

/* === Sections === */
.section { padding: 70px 0; }
.section-alt { background: var(--gray-50); }
.section h2 { text-align: center; }
.section-desc { text-align: center; color: var(--gray-500); max-width: 600px; margin: 0 auto 2rem; }

/* === Grids === */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 2rem; }
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
}
.card h3 { color: var(--green-dark); }

/* === Steps === */
.steps { text-align: center; }
.step-number {
    width: 52px; height: 52px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 16px;
}

/* === Service Area === */
.service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 1.5rem;
}
.service-area-grid ul { list-style: none; padding: 0; }
.service-area-grid li {
    padding: 8px 12px;
    background: var(--green-light);
    border-radius: var(--radius);
    margin-bottom: 6px;
    font-weight: 500;
}

/* === Service Detail (services page) === */
.service-detail {
    border-bottom: 1px solid var(--gray-200);
    padding: 28px 0;
}
.service-detail:last-child { border-bottom: none; }

/* === About === */
.about-content h3 { margin-top: 2rem; }
.features-list { list-style: none; padding: 0; }
.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}
.features-list li:last-child { border-bottom: none; }

/* === Don't Take List === */
.dont-take-list {
    list-style: none;
    padding: 0;
    max-width: 400px;
    margin: 0 auto;
}
.dont-take-list li {
    padding: 8px 16px;
    margin-bottom: 4px;
}

/* === Contact Layout === */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}
.contact-method {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}
.contact-method:last-child { border-bottom: none; }
.contact-link { font-size: 1.15rem; font-weight: 700; display: block; margin-bottom: 4px; }

/* === Form === */
.quote-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    border: 2px solid var(--green);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(46,125,50,0.15);
}
.form-note { font-size: 0.85rem; color: var(--gray-500); text-align: center; margin-top: 12px; }

/* === Testimonials === */
.testimonials-list { max-width: 750px; margin: 0 auto; }
.testimonial-card {
    border-left: 4px solid var(--green);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 24px 28px;
    margin-bottom: 20px;
    background: var(--white);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.stars { color: #f59e0b; font-size: 1.2rem; margin-bottom: 8px; }
.testimonial-text { font-style: italic; font-size: 1.05rem; margin-bottom: 10px; }
.testimonial-author { font-weight: 600; color: var(--gray-700); }

/* === CTA === */
.cta {
    background: linear-gradient(135deg, var(--green-dark), #1a3c1a);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}
.cta h2 { color: var(--white); }

/* === Footer === */
footer {
    background: var(--gray-900);
    color: var(--gray-200);
    padding: 50px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer-col h3 { color: var(--white); margin-bottom: 12px; }
.footer-col p { font-size: 0.9rem; margin-bottom: 6px; }
.footer-col a { color: var(--green-light); }
.footer-phone { 
    display: inline-block;
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 8px;
    text-decoration: none;
}
.footer-phone:hover { background: #e06b00; text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--gray-700); padding-top: 20px; text-align: center; font-size: 0.85rem; color: var(--gray-500); }

/* === Responsive === */
@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    .hero h1 { font-size: 1.9rem; }
    .hero { padding: 50px 0; }
    .contact-layout { grid-template-columns: 1fr; }
    nav { gap: 10px; }
    nav a { font-size: 0.85rem; }
}
