body {
    font-family:  sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* --- Navigation Bar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    text-align: center;
    flex-direction: column;
    line-height: 1;
    height:10px;
    padding: 5px 20px;

}


.nav-links a {
    text-decoration: none;
    color: #333;
    margin-left: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4CAF50;
}

.contact-btn {
    background-color: #4CAF50; /* Primary green button color */
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
    margin-left: 40px !important;
    font-weight: 600;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(to bottom, #E8F5E9 0%, #64883b 100%); /* Light green gradient */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 400;
    color: #263137; /* Darker text color */
    margin-bottom: 20px;
}

.hero-content h1 strong {
    font-weight: 700;
}

.hero-content p {
    font-size: 16px;
    color: #546E7A;
    margin-bottom: 30px;
    padding: 0 50px; /* Indent the paragraph to match the image */
}

/* Request a Quote Button */
.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background-color: #045c2a; 
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    /* box-shadow: 0 4px 6px rgba(0, 163, 70, 0.2); */
    transition: background-color 0.3s;
}

.quote-btn:hover {
    background-color: #134025;
}
.fas-fa-envelope{
    text-decoration-color: rgb(14, 18, 18);
}
/* 2 */
/* --- Base Styling and Font --- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
}

/* --- Section Container (The light green background area) --- */
.contact-us-section {
    background-color: #f0fff4; /* Very light green background */
    padding: 60px 20px;
    text-align: center;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* --- Typography --- */
.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

/* --- Contact Cards Grid Layout --- */
.contact-cards-grid {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between the cards */
}

/* --- Individual Contact Card Styling --- */
.contact-card {
    flex: 1; /* Allows cards to take equal space */
    max-width: 300px;
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

/* --- Icon Circle Styling --- */
.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #f0fff4; /* Very light green background for the circle */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.card-icon {
    font-size: 24px;
    color: #38c172; /* Primary green color for the icon */
}

/* --- Card Content --- */
.card-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #555;
9
}

.card-detail {
    font-size: 1rem;
    font-weight: 600;
    color: #38c172; /* Green color for the detail text/link */
    text-decoration: none;
    transition: color 0.2s;
}

.card-detail:hover {
    color: #2f9d5e;
}

/* --- Social Icons Styling (Specific to the third card) ---
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 5px;
} */

.social-icon-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #333; /* Dark background for social icons */
    color: #ffffff;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.social-icon-link:hover {
    background-color: #555;
}

/* --- Media Queries for Responsiveness --- */

@media (max-width: 600px) {
    .contact-cards-grid {
        /* Stack into a single column on mobile phones */
        flex-direction: column;
        align-items: center;
    }
    .contact-card {
        width: 100%;
        max-width: 350px;
    }
}

/* 3 */

/* --- Base Styling and Font --- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
}

/* --- Section Container (The light green background area) --- */
.contact-form-section {
    background-color: #f0fff4; /* Very light green background */
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

/* --- Form Wrapper (The white card container) --- */
.form-wrapper {
    max-width: 700px;
    width: 100%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow */
}

/* --- Form Group Styling --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    text-align: left;
}

/* --- Input and Textarea Styling --- */
.form-wrapper input[type="text"],
.form-wrapper input[type="email"],
.form-wrapper textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Important: Padding won't increase overall width */
    font-size: 1rem;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-wrapper textarea {
    resize: vertical; /* Allow resizing only vertically */
}

.form-wrapper input:focus,
.form-wrapper textarea:focus {
    border-color: #38c172; /* Green border on focus */
    outline: none;
    box-shadow: 0 0 0 1px #38c172;
}

/* --- Submit Button Styling --- */
.submit-button {
    display: block;
    padding: 12px 25px;
    background-color: #38c172; /* Primary green color */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #2f9d5e; /* Darker green on hover */
}

/* 4 */
/* --- Base Styling and Font --- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
}

/* --- Section Container (The light green background area) --- */
.reviews-section {
    background-color: #f0fff4; /* Very light green background */
    padding: 60px 20px;
    text-align: center;
}

.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* --- Header and Subtitle --- */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}

/* --- Google Reviews Button --- */
.reviews-cta {
    margin-bottom: 40px;
}

.google-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #38c172; /* Primary green color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.google-button:hover {
    background-color: #2f9d5e;
}

/* --- Testimonial Cards Grid Layout --- */
.testimonial-cards-grid {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between the cards */
}

/* --- Individual Review Card Styling --- */
.review-card {
    flex: 1; /* Allows cards to take equal space */
    max-width: 500px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    text-align: left;
}

/* --- Star Icons Styling --- */
.stars {
    margin-bottom: 15px;
    line-height: 1;
}

.star-icon {

    content: '\2605'; 
    font-size: 18px;
    color: #ffc107; 
    display: inline-block;
    margin-right: 2px;
}


.review-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin: 0;
}


@media (max-width: 800px) {
    .testimonial-cards-grid {

        flex-direction: column;
        align-items: center;
    }
    .review-card {
        width: 100%;
        max-width: 450px;
    }
}

/* fotter */
:root {
    --footer-bg: #1c232f; /* Dark background color */
    --footer-text-color: #abb3bf; /* Light grey text color */
    --footer-link-color: #fff; /* White link color */
    --heading-color: #fff; /* White heading color */
    --green-accent: #65b847; /* Bright green accent for logo/icons */
}

.main-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text-color);
    padding: 40px 0 0; 
}

.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 20px 40px; /* Padding bottom for main content area */
}

/* --- Column Styling --- */
.footer-column {
    padding-right: 20px;
}

.column-heading {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--heading-color);
    margin-top: 0;
    margin-bottom: 20px;
}

/* --- 1. Branding and Opening Times Column --- */
.branding-column {
    flex: 1; /* Allows this column to take up more space */
    min-width: 250px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    /* This filter is used to change the color of the logo image to match the site's green accent */
    filter: brightness(0) saturate(100%) invert(80%) sepia(35%) saturate(3019%) hue-rotate(59deg) brightness(85%) contrast(100%);
    margin-bottom: 25px;
}

.opening-times-list {
    list-style: none;
    padding: 0;
}

.opening-times-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95em;
}

/* --- 2. Pages Column --- */
.pages-column {
    flex: 1;
}

.pages-list {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

.pages-list a {
    color: var(--footer-text-color);
    text-decoration: none;
    transition: color 0.2s;
}

.pages-list a:hover {
    color: var(--green-accent);
}

/* --- 3. Contact Information Column --- */
.contact-column {
    flex: 1.2; /* Allows this column to take up a bit more space if needed */
    max-width: 300px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-icon {
    color: var(--green-accent);
    font-size: 1.2em;
    margin-right: 10px;
    padding-top: 3px; /* Align icon with text baseline */
}

.contact-label {
    display: block;
    color: var(--footer-text-color);
    font-size: 0.9em;
}

.contact-link {
    color: var(--footer-link-color);
    text-decoration: none;
    font-size: 1em;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--green-accent);
    text-decoration: underline;
}

/* Social Links */
.social-links {
    margin-top: 30px;
}

.social-label {
    display: block;
    color: var(--footer-text-color);
    font-size: 0.9em;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #2e3846; /* Slightly lighter box background for contrast */
    border-radius: 4px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.social-icon:hover {
    background-color: var(--green-accent);
    color: var(--footer-bg);
}

/* --- Copyright/Bottom Bar --- */
.footer-bottom {
    border-top: 1px solid #2e3846; /* Subtle divider line */
    padding: 15px 20px;
    text-align: center;
    font-size: 0.8em;
    color: #7a828f;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 768px) {
    .footer-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        padding-right: 0;
        min-width: 100%;
        text-align: left;
    }

    .branding-column {
        order: 1; /* Keep branding at the top */
    }

    .pages-column {
        order: 3; /* Move pages to the bottom */
    }
    
    .contact-column {
        order: 2; /* Keep contact info above pages */
    }

    .opening-times-list li {
        max-width: 300px; /* Optional: limit the width of the times list */
    }

    .social-links {
        margin-top: 20px;
    }
}
