/* Base Styles */
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);
}

/* --- Variables and General Styling --- */
:root {
    --primary-green: #4CAF50; /* A standard green color for buttons/accents */
    --secondary-green: #38761d; /* Darker green for hover */
    --card-bg: #fff;
    --text-color: #333;
    --light-gray: #f8f8f8; /* Very subtle background for the section */
}

/* 1 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--light-gray);
}

.about-section {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

/* --- Main Card Styling --- */
.bio-card {
    display: flex; 
    max-width: 1000px;
   
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden; 
    text-align: left;
}

/* --- Left Column: Image Container --- */
.bio-image-container {
    flex-shrink: 0;
    width: 40%; /* Adjust as needed */
    max-width: 400px;
}

.bio-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the container without distortion */
    display: block;
}

/* --- Right Column: Content --- */
.bio-content {
    flex-grow: 1;
    padding: 30px 40px;
    color: var(--text-color);
}

.content-heading {
    color: var(--primary-green);
    font-size: 1.8em;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
}

.bio-text {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- Areas We Serve Box --- */
.areas-box {
    background-color: #f7f9fc; /* Very light background for the box */
    border-left: 3px solid var(--primary-green);
    padding: 15px;
    margin: 30px 0;
}

.areas-heading {
    font-size: 1em;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 5px;
}

.areas-list {
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
}

/* --- Action Buttons --- */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-end; 
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    font-size: 1em;
}

.btn-outline {
    background-color: #fff;
    color: var(--text-color);
    border: 1px solid #ccc;
}

.btn-outline:hover {
    background-color: #f1f1f1;
    border-color: #aaa;
}

.btn-primary {
    background-color: var(--primary-green);
    color: #fff;
    border: 1px solid var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
}


/* --- Media Query for Mobile Responsiveness --- */
@media (max-width: 768px) {
    .bio-card {
        flex-direction: column; /* Stack image and content vertically */
        max-width: 450px; /* Constrain card width on small screens */
    }

    .bio-image-container {
        width: 100%;
        max-width: 100%;
        height: 300px; /* Fixed height for image when stacked */
    }
    
    .bio-image {
        /* Ensure the top corners remain rounded when stacked */
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        border-bottom-left-radius: 0;
    }

    .bio-content {
        padding: 25px;
    }

    .action-buttons {
        justify-content: center; /* Center buttons on mobile */
    }



}



/* 2 */


/* --- Google Fonts (for the clean look) --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* --- Base Styling --- */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7fcf8; /* Light background for context */
    margin: 0;
    padding: 20px;
}

/* --- Section Container --- */
.areas-served-section {
    padding: 40px 0;
    text-align: center;
}

.container {
    max-width: 900px; /* Limits the overall width */
    margin: 0 auto;
}

/* --- Typography --- */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

/* --- Main Content Box (The light green container) --- */
.locations-grid-container {
    background-color: #f4fff7;
    border: 1px solid #d0ffd0;
    border-radius: 10px;
    padding: 30px;
}

/* --- Location Grid Styling --- */
.locations-grid {
    display: grid;
    /* Create 5 columns for desktop view */
    grid-template-columns: repeat(5, 1fr); 
    gap: 15px;
    background-color: #ffffff; /* Inner white background */
    border-radius: 5px;
    padding: 20px 0; /* Add padding above and below the cards */
}

/* --- Location Card Styling --- */
.location-card {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
}

.location-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.location-icon {
    /* To simulate the green map pin icon */
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 2px solid #38c172; /* Green border for the pin */
    border-radius: 50%;
    position: relative;
    margin-bottom: 5px;
}

.location-icon::before {
    /* The inner dot of the pin */
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #38c172; /* Green fill */
    border-radius: 50%;
}

.location-name {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
    font-weight: 400;
}

/* --- Call to Action (CTA) Box Styling --- */
.cta-box {
    background-color: #ffffff; /* Inner white background */
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
}

.cta-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

/* --- Contact Button Styling --- */
.contact-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #38c172; /* Primary green color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.2s;
}

.contact-button:hover {
    background-color: #2f9d5e; /* Darker green on hover */
}

.contact-button i {
    margin-right: 8px;
    /* Note: To make the icon work, you would need to link a library like Font Awesome */
}

/* --- Media Queries for Responsiveness (Optional but recommended) --- */
@media (max-width: 768px) {
    .locations-grid {
        /* Change to 3 columns on tablets */
        grid-template-columns: repeat(3, 1fr); 
    }
}

@media (max-width: 480px) {
    .locations-grid {
        /* Change to 2 columns on mobile phones */
        grid-template-columns: repeat(2, 1fr);
    }
}
/* 2 */
/* --- Base Styling --- */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* Assuming a white background for the surrounding page */
    margin: 0;
    padding: 30px 20px;
}

/* --- Gallery Container (The row of images) --- */
.gallery-container {
    display: flex; /* Use Flexbox for side-by-side layout */
    justify-content: center;
    gap: 15px; /* Space between the images */
    max-width: 1200px; /* Optional: Limit the max width of the gallery row */
    margin: 0 auto;
}

/* --- Individual Gallery Item (Image Card) --- */
.gallery-item {
    /* flex: 1 1 0% ensures all four items take equal space regardless of their content */
    flex: 1 1 0%; 
    overflow: hidden; 
    border-radius: 12px; /* Prominent rounded corners */
    /* Optional: Add a subtle shadow if desired, though not strongly visible in the source */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.gallery-item img {
    width: 100%; /* Image takes full width of its container */
    /* Maintain aspect ratio and cover the container area */
    display: block;
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.3s ease;
}

/* Optional: Hover effect for a professional touch */
.gallery-item img:hover {
    transform: scale(1.03); 
}

/* --- Media Queries for Responsiveness --- */

/* Tablet View: Stack into two columns */
@media (max-width: 992px) {
    .gallery-container {
        /* Change from a single row to two rows of two */
        flex-wrap: wrap; 
    }
    .gallery-item {
        /* Each item takes slightly less than 50% to account for gap */
        flex: 1 1 calc(50% - 15px); 
        max-width: calc(50% - 15px);
    }
}

/* Mobile View: Stack into a single column */
@media (max-width: 576px) {
    .gallery-container {
        flex-direction: column;
        gap: 10px; /* Reduce gap slightly for mobile */
    }
    .gallery-item {
        /* Each item takes the full available width */
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* 3 */

.spotless-clean-section {
    background-color: var(--primary-green);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.spotless-content-container {
    max-width: 900px;
    margin: 0 auto;
}

.spotless-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}

.spotless-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.spotless-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.request-quote {
    background-color: #fff;
    color: var(--primary-green);
    border: none;
}

.request-quote:hover {
    background-color: #e2e6ea;
}

.view-services {
    background-color: var(--primary-green);
    color: #fff;
    border: 2px solid #fff;
}

.view-services:hover {
    background-color: #016a2d; /* Slightly darker green on hover */
    border-color: #e2e6ea;
}

/* fotter */

/* --- Variables and General Footer Styling --- */
: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; /* Padding top for the main content */
}

.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1200px; /* Center the content */
    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;
    }
}