:root {
    --primary-green: #2d8a30;
    --dark-green: #1a3a1a;
    --light-green: #e8f5e9;
    --accent-green: #34a035;
    --text-color: #222222;
    --text-muted: #333333;
    --bg-light: #f5f5f5;
    --bg-cream: #faf5ec;
    --card-cream: #fdf9f2;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --radius: 8px;
    --container-width: 1200px;
    --section-padding: 80px;
    --heading-font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --body-font: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6,
.section-title {
    font-family: var(--heading-font);
}

img {
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

.btn-contact {
    background: #6f7378;
    color: #fff;
    padding: 10px 22px;
}

.btn-contact:hover {
    background: #565a5e;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 45px;
}

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

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-green);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Hero */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: var(--dark-green);
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: kenburns 20s ease-in-out infinite;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 40, 20, 0.45) 0%, rgba(20, 40, 20, 0.18) 45%, rgba(20, 40, 20, 0.05) 100%);
    z-index: 2;
}

@keyframes kenburns {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(52, 160, 53, 0.85), 0 0 4px rgba(52, 160, 53, 0.9), 0 2px 6px rgba(0, 0, 0, 0.35);
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.hero-form-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 22px 24px;
    box-shadow: var(--shadow);
}

.hero-form-card h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 6px;
}

.hero-form-card p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.hero-form-card .form-group {
    margin-bottom: 9px;
}

.hero-form-card .form-control {
    padding: 9px 13px;
}

.hero-form-card textarea.form-control {
    min-height: 60px;
}

.hero-form-card .btn {
    padding: 10px 28px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-control::placeholder {
    color: #555555;
    opacity: 1;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
}

.alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Services Section */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-cream);
    border: 1px solid #efe7d8;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
}

.service-tag {
    display: inline-block;
    background: rgba(45, 138, 48, 0.1);
    color: var(--primary-green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* Clutter Section */
.clutter-section {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
}

.clutter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.clutter-content h2 {
    font-size: 2.3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 500;
}

.clutter-content > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.clutter-item {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
}

.clutter-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    color: var(--primary-green);
    background: rgba(45, 138, 48, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.clutter-item h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.clutter-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.clutter-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Dumpster Section */
.dumpster-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

/* Commitment Section */
.commitment-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.commitment-box {
    background: #eef0ee;
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
}

.commitment-section h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 15px;
}

.commitment-section p {
    font-size: 1.35rem;
    color: var(--primary-green);
    font-weight: 500;
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.95);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand img {
    height: 55px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.footer h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.95);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.95);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: var(--primary-green);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom p {
    white-space: nowrap;
}

.footer-bottom .brand-accent {
    color: #f26a1b;
    font-weight: 600;
}

/* Schedule Page */
.page-header {
    background: var(--dark-green);
    color: #fff;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.page-content-section {
    padding: var(--section-padding) 0;
}

.schedule-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

.schedule-form .form-group {
    margin-bottom: 10px;
}

.schedule-form .form-control {
    padding: 8px 12px;
}

.schedule-form textarea.form-control {
    min-height: 70px;
}

.schedule-form select.form-control {
    padding: 8px 12px;
}

.schedule-form .btn {
    padding: 9px 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--text-color);
}

.form-label .required {
    color: #dc3545;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Page Hero (image banner) */
.page-hero {
    position: relative;
    min-height: 30vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--dark-green);
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 40, 20, 0.6) 0%, rgba(20, 40, 20, 0.25) 45%, rgba(20, 40, 20, 0.05) 100%);
    z-index: 1;
}

/* Darker, more even overlay variant (e.g. Our Services banner) */
.page-hero.overlay-dark .page-hero-overlay {
    background: linear-gradient(90deg, rgba(12, 20, 12, 0.72) 0%, rgba(12, 20, 12, 0.55) 55%, rgba(12, 20, 12, 0.5) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* About Page */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-green);
    margin-bottom: 22px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.about-text .btn {
    margin-top: 12px;
}

.about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Services Page */
.services-intro {
    margin-bottom: 45px;
}

.services-intro h2 {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-color);
    margin-bottom: 10px;
}

.services-intro p {
    font-size: 1.35rem;
    color: var(--primary-green);
    line-height: 1.4;
}

.service-detail {
    margin-bottom: 40px;
}

.service-detail h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.service-detail p {
    color: var(--text-muted);
}

/* Admin */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.admin-login-box {
    width: 100%;
    max-width: 420px;
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.admin-login-box h2 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.admin-header {
    background: var(--bg-dark);
    color: #fff;
    padding: 15px 0;
}

.admin-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header a {
    color: #fff;
    font-weight: 600;
}

.admin-dashboard {
    padding: 40px 0;
}

.admin-dashboard h2 {
    color: var(--primary-green);
    margin-bottom: 25px;
}

.admin-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.admin-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.admin-card h3 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.admin-card .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-inner,
    .clutter-grid,
    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 3rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .main-nav.active {
        right: 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h2 {
        font-size: 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        font-size: 2.4vw;
        padding: 16px 0;
    }

    .footer-bottom .container {
        padding: 0 10px;
    }
}
