:root {
    /* Pastel Green Palette (Updated from Logo) */
    --primary-color: #7BCAAF;
    /* Soft Mint Green */
    --primary-dark: #63a890;
    /* Darker shade */
    /* Slightly darker for hover */
    --secondary-color: #d4e6e1;
    /* Very pale green background */
    --accent-color: #e8f5f2;
    /* Lightest green for sections */
    --text-dark: #2c3e50;
    /* Dark slate for contrast */
    --text-light: #5d6d7e;
    /* Muted grey text */
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: --text-dark;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 10px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 10px;
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: 0.3s;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: block;
    text-decoration: none;
}

.logo-desktop {
    height: 50px;
    /* Adjust based on preference */
    display: block;
    width: auto;
}

.logo-mobile {
    height: 45px;
    display: none;
    width: auto;
}

/* Hide desktop logo on small screens, show mobile symbol */
@media (max-width: 600px) {
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.nav-links .btn-nav {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(136, 192, 179, 0.3);
    transition: 0.3s;
    text-transform: none;
    /* Reset uppercase */
}

.nav-links .btn-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(136, 192, 179, 0.4);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #f0f7f5 0%, #ffffff 100%);
    padding: 8rem 0 6rem;
    /* Increased top padding */
    min-height: 100vh;
    /* Full height */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Decorative Circle Background */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: rgba(136, 192, 179, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* More space for image */
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    /* Larger Title */
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-img {
    width: 100%;
    border-radius: 30px;
    /* Modern rounding */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.hero-img:hover {
    transform: scale(1.01);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.profile-img {
    width: 300px;
    /* Fixed size for circle */
    height: 300px;
    object-fit: cover;
    object-position: top;
    /* Adjust focus */
    border-radius: 50%;
    /* Circular Crop */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
    /* White border for polish */
    margin: 0 auto;
    display: block;
}

.about h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.highlights {
    margin-top: 1.5rem;
}

.highlights li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

.highlights i {
    color: var(--primary-color);
}

/* Info Section (What is) */
.info-section {
    padding: 5rem 0;
    background-color: var(--accent-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/logo_mobile.png');
    background-size: 150px;
    /* Size of the pattern */
    background-repeat: repeat;
    opacity: 0.07;
    /* Very subtle texture */
    z-index: -1;
    animation: floatPattern 60s linear infinite;
    /* Optional: slow movement */
}

@keyframes floatPattern {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 100%;
    }
}

.info-content {
    text-align: center;
}

.info-content>p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 200px;
    text-align: center;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Services */
.services {
    padding: 5rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    border: 1px solid #eee;
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: 0.3s;
    background-color: #fafafa;
}

.service-card:hover {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-center {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

/* Carousel Styles */
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonials-carousel {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    /* Adjust based on content */
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
    /* Hide all by default */
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.testimonial-card.active {
    opacity: 1;
    display: block;
    /* Show active */
    position: relative;
    /* Return to flow */
    transform: scale(1.02);
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-card h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.stars-card {
    color: #fbbc05;
    margin-top: 10px;
}

.carousel-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 1rem;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Responsiveness for Carousel */
@media (max-width: 600px) {
    .testimonial-card {
        padding: 1.5rem;
    }

    .carousel-btn {
        display: none;
        /* Hide arrows on small screens, rely on swipe/dots (or keep small) */
    }
}

/* Gallery */
.gallery {
    padding: 5rem 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: 0.3s;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Specific contrast fix for buttons on green background */
.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Mobile adjustments for CTA */
@media (max-width: 600px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 350px;
        /* Full width but contained */
        margin-left: 0;
        /* Reset any margin from other classes */
    }
}

/* Google Reviews Section */
.google-reviews-section {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.g-review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.g-logo {
    height: 30px;
}

.stars {
    color: #fbbc05;
    font-size: 1.2rem;
}

.g-rating-text {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-google {
    background-color: #4285f4;
    color: #fff;
    border: none;
    transition: 0.3s;
}

.btn-google:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-col p {
    color: #aeb6bf;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.location-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-item i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    background-color: #1a252f;
    text-align: center;
    padding: 1.5rem 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-grid .image-content {
        order: -1;
    }

    /* Mobile specific adjustments for Cards */
    @media (max-width: 480px) {
        .container {
            padding: 0 15px;
            /* Reduce side margins */
        }

        .benefit-card {
            width: 100%;
            /* Cards take full width */
            max-width: 350px;
            /* But don't get ridiculously huge */
        }

        .section-header h2 {
            font-size: 1.8rem;
            /* Slightly smaller headers for better mobile flow */
        }

        /* Footer Mobile Optimization */
        .footer-content {
            text-align: center;
            gap: 2rem;
        }

        .location-item {
            justify-content: center;
            /* Center the icon and text */
        }

        .social-links {
            justify-content: center;
            /* Center social icons */
        }
    }
}