body {
    margin: 0;
    font-family: Arial, sans-serif; /* A good base, you can choose a more specific font */
    color: #F0F8FF; /* Light, attractive contrast color for main text */
    background-image: url('images/dense-forest-background.jpg'); /* Path to your dense forest image */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    line-height: 1.6;
}

header {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background for readability */
    color: white;
    padding: 1rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 70px; /* Adjust as needed for SVG logo */
    width: auto;
    margin-right: 15px;
}

h1 {
    margin: 0;
    color: #ADFF2F; /* Bright green for contrast */
}

nav .nav-button, .social-icon-button, .contact-form-button, .service-button {
    background-color: #004d00; /* Dark Forest Green */
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    text-decoration: none; /* For links */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

nav .nav-button:hover, .social-icon-button:hover, .contact-form-button:hover, .service-button:hover {
    background-color: #006400; /* Slightly lighter green on hover */
}

.social-icon-button {
    font-size: 1.5rem;
    padding: 8px 12px;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background for content sections */
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

section {
    margin-bottom: 40px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

section:last-child {
    border-bottom: none;
}

h2, h3, h4 {
    color: #ADFF2F; /* Bright green for headings */
    text-align: center;
    margin-bottom: 20px;
}

p {
    color: #F0F8FF; /* Light, attractive contrast color */
    text-align: justify;
}

.intro-section {
    text-align: center;
}

.intro-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
}

/* Contact Form Overlay */
.form-overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1001; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be adjusted */
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 10px;
    position: relative;
    color: #333; /* Dark text for form readability */
}

.form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="tel"],
.form-container textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-container button[type="submit"] {
    background-color: #004d00; /* Dark Forest Green */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.form-container button[type="submit"]:hover {
    background-color: #006400;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


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

.service-item {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.service-item h3 {
    color: #ADFF2F;
    margin-top: 0;
}

.service-item .service-image {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures images cover the area without distortion */
    border-radius: 8px;
    margin-top: 15px;
}

/* Reviews Section */
.reviews-section {
    text-align: center;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.review-item {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.review-item .profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #ADFF2F;
}

.review-item .reviewer-name {
    font-weight: bold;
    color: #ADFF2F;
    margin-bottom: 5px;
}

.review-item .stars {
    color: gold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-item {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    color: #ADFF2F;
    cursor: pointer;
    margin: 0;
    font-size: 1.1rem;
}

.faq-answer {
    display: none; /* Hidden by default, toggled by JS */
    color: #F0F8FF;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

/* Location Section */
.location-section {
    text-align: center;
}

.map-container {
    margin-top: 20px;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
    height: 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 8px;
}

/* Call to Action Section */
.call-to-action-section {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    margin-top: 40px;
}

.call-to-action-section h2 {
    font-size: 2.5rem;
    color: #ADFF2F;
    margin-bottom: 15px;
}

.call-to-action-section p {
    font-size: 1.2rem;
    color: #F0F8FF;
    max-width: 800px;
    margin: 0 auto;
}


footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.footer .disclaimer {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    nav {
        margin-top: 10px;
    }

    .site-logo {
        height: 60px; /* Adjust for smaller screens */
    }

    h1 {
        font-size: 1.8rem;
    }

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

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