/* Global Styles */
body {
    font-family: 'Arial', sans-serif; /* Placeholder font, will refine */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4; /* Light background for contrast */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

h1, h2, h3 {
    color: #333; /* Darker text for headings */
}

a {
    text-decoration: none;
    color: #007bff; /* Primary blue for links, will adjust with user's palette */
}

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

/* Color Palette (Placeholders - to be refined with blue, aqua, purple) */
:root {
    --primary-color: #007bff; /* Example Blue */
    --secondary-color: #17a2b8; /* Example Aqua/Teal */
    --accent-color: #6f42c1; /* Example Purple */
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --logo-pink: #D92E5A; /* From logo analysis - approximate */
    --logo-blue-grey: #4A5C6A; /* From logo analysis - approximate */
}

/* Header & Navigation */
header {
    background: var(--dark-color);
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
}

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

header .logo img {
    height: 50px; /* Adjust as needed */
}

header .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header .nav-links li {
    margin-left: 20px;
}

header .nav-links a {
    color: #fff;
    font-weight: bold;
}

header .nav-links a:hover {
    color: var(--primary-color);
}

/* Dropdown for Locations */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Burger Menu for Mobile */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: url('../images/placeholder_hero.jpg') no-repeat center center/cover; /* Placeholder */
    color: #fff;
    height: 70vh; /* Adjust height as needed */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero::before { /* Overlay for better text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative; /* To sit on top of the overlay */
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f0f0f0;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #0056b3; /* Darker shade of primary blue */
}

/* Intro Section */
.intro-section {
    padding: 40px 0;
    text-align: center;
    background-color: var(--light-color);
}

/* Key Features Section */
.key-features {
    padding: 40px 0;
    background-color: #fff;
}

.key-features .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.key-features .feature {
    flex-basis: 23%; /* Adjust for 4 features */
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
}

.key-features .feature img {
    width: 80px; /* Placeholder icon size */
    height: 80px;
    margin-bottom: 15px;
    background-color: #ddd; /* Placeholder background for icon */
    border-radius: 50%;
}

/* Service Highlights Section */
.service-highlights {
    padding: 40px 0;
    background-color: var(--light-color);
}

.service-highlights .container > h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 30px; /* Increased margin for better separation */
}

.service-highlights .service-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between cards */
    justify-content: center; /* Center cards if they don't fill the row */
}

.service-card {
    box-sizing: border-box; /* Crucial for percentage widths with padding */
    flex-basis: calc(33.333% - (40px / 3)); /* 3 cards per row, accounting for 2 gaps of 20px. (20px*2)/3 */
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
    background-color: #ccc; /* Placeholder background */
}

.learn-more-button {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.learn-more-button:hover {
    background: #138496; /* Darker shade of secondary */
}

/* Testimonials Section */
.testimonials {
    padding: 40px 0;
    background-color: #fff;
}

.testimonial-card {
    background: var(--light-color);
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
}

.testimonial-card cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 40px 0;
    background-color: var(--dark-color);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #222; /* Darker than header for distinction */
    color: #ccc;
    text-align: center;
    padding: 20px 0;
}

footer .social-links a {
    color: #ccc;
    margin: 0 10px;
}

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

/* Responsive Styles */
@media(max-width: 768px) {
    header .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh; /* Adjust based on header height */
        background: var(--dark-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    header .nav-links.nav-active {
        transform: translateX(0%);
    }

    header .nav-links li {
        opacity: 0;
        margin-left: 0;
        padding: 15px 0;
    }

    .burger {
        display: block;
    }

    .key-features .feature {
        flex-basis: 48%; /* 2 features per row */
    }

    .service-card {
        flex-basis: 100%; /* Full width on smaller screens */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }
}

/* Animation for nav links on mobile */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}



/* Google Reviews Section */
.google-reviews-section {
    padding: 40px 0;
    background-color: var(--light-color);
    text-align: center;
}

.google-reviews-section h2 {
    margin-bottom: 30px;
}

.review-placeholder {
    background: #fff; 
    padding: 20px;
    margin: 0 auto 20px auto;
    border-left: 5px solid var(--accent-color); 
    max-width: 700px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review-placeholder cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: bold;
    text-align: right;
}

.google-reviews-link-container {
    margin-top: 30px;
}

.google-reviews-button {
    display: inline-block;
    background-color: #DB4437; /* Google Red */
    color: white !important; /* Ensure text is white */
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.google-reviews-button:hover {
    background-color: #c33d2e; /* Darker Google Red */
    color: white !important;
}

