body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    background-color: #fdfcfa;
    color: #5D4037;
    line-height: 1.7;
        }


.section-title {
        text-align: center;
        margin-bottom: 2.5rem;
}
.section-title h2 {
    font-size: 2rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: rgb(19, 159, 246);
}

/* Hero Section */
.hero {
    background-color: #FFE0B2; /* Light peach */
    text-align: center;
    padding: 5rem 0;
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #795548;
}

/* ============================================
   UNIFIED CTA BUTTONS - Dark Teal Theme
   ============================================ */

/* Base CTA Button - Matches Navigation Style */
.cta-btn,
.btn {
    text-decoration: none;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Primary CTA - Dark Teal (Matches Nav Last Child) */
.cta-btn-primary,
.btn-primary-cta {
    background: linear-gradient(100deg, #5A7979 0%, #4a9997 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(94, 170, 168, 0.3);
}

.cta-btn-primary:hover,
.btn-primary-cta:hover {
    background: linear-gradient(135deg, #4a9997 0%, #3d8785 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 170, 168, 0.4);
}

/* Legacy Support - Keep old .btn-primary for backwards compatibility */
.btn-primary {
    background: linear-gradient(100deg, #5A7979 0%, #4a9997 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(94, 170, 168, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4a9997 0%, #3d8785 100%);
    box-shadow: 0 6px 20px rgba(94, 170, 168, 0.4);
    transform: translateY(-2px);
}


/* Content Sections */
.content-section {
    padding: 4rem 0;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5rem;
    color: #795548;
    margin-bottom: 1rem;
}

/* Service Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card .icon {
    font-size: 3rem;
    color: #D48C70;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-top: 0;
    color: #4E342E;
}

.card a {
    color: #7986CB;
    text-decoration: none;
    font-weight: 700;
}

/* Testimonials Section */
.testimonials {
    background-color: #f1f8e9; /* Very light green */
}

.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 6px solid #AED581; /* Soft, friendly green */
}

.testimonial-card blockquote {
    margin: 0;
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
}

.testimonial-card cite {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: #4DB6AC;
}

/* Footer */
.main-footer {
    background-color: #eff6f6;
    color: #795548;
    padding: 3rem 0 1.5rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

/* Responsive grid for footer - 3 equal columns */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
    }
}

.footer-branding {
    display: flex;
    flex-direction: column;
}

/* --- FOOTER VIBRANT ANIMATED LOGO STYLES (EXACT DUPLICATE OF HEADER) --- */
.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    perspective: 1000px;
    transition: transform 0.3s ease;
}

/* The Vibrant Mark (Graphic) */
.footer-logo-mark {
    position: relative;
    width: 55px;
    height: 55px;
    /* Creative "Living" Gradient Background - Yellow/Gold Theme */
    background: linear-gradient(-45deg, #FFD200, #F7971E, #FFC837, #FFD200);
    background-size: 400% 400%;
    animation: gradientBG 8s ease infinite;
    box-shadow: 
        0 10px 25px rgba(247, 151, 30, 0.4),
        0 5px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-radius 0.4s ease;
}



/* Glass Effect overlay */
.footer-logo-mark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 50%);
    border-radius: 12px;
    z-index: 1;
}

.footer-logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-company-name {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    color: #a18017;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 0.9;
    margin-bottom: 4px;
    position: relative;
    transition: letter-spacing 0.4s ease, color 0.4s ease;
}

.footer-company-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    background: linear-gradient(90deg, #302f2f, #FFD200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-align: left;
    position: relative;
    padding-left: 2px;
    transition: all 0.4s ease;
}

/* Decorative Line */
.footer-company-tagline::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    width: 20px;
    height: 1px;
    background: #F7971E;
    margin-right: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s ease;
}

/* Gradient Animation */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* HOVER EFFECTS */
.footer-logo-wrapper:hover .footer-logo-mark {
    transform: scale(1.1) rotate(5deg);
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(255, 210, 0, 0.5),
        0 5px 15px rgba(0,0,0,0.1);
}

.footer-logo-wrapper:hover .footer-company-name {
    letter-spacing: 1.5px;
    color: #F7971E;
}

.footer-logo-wrapper:hover .footer-company-tagline {
    background: linear-gradient(90deg, #FFD200, #F7971E);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo-wrapper:hover .footer-company-tagline::before {
    opacity: 1;
    width: 25px;
    transform: translateX(0);
    margin-right: 6px;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .footer-logo-mark {
        width: 45px;
        height: 45px;
    }
    .footer-mark-symbol {
        font-size: 16px;
    }
    .footer-company-name {
        font-size: 16px;
    }
    .footer-company-tagline {
        font-size: 7px;
        letter-spacing: 1.5px;
    }
    .footer-logo-wrapper {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-logo-mark {
        width: 40px;
        height: 40px;
    }
    .footer-mark-symbol {
        font-size: 14px;
    }
    .footer-company-name {
        font-size: 14px;
    }
    .footer-company-tagline {
        font-size: 6px;
        letter-spacing: 1px;
    }
    .footer-logo-wrapper {
        gap: 8px;
    }
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #795548;
    border-bottom: 2px solid #D48C70;
    padding-bottom: 0.5rem;
    display: inline-block;
    font-weight: 700;
}

.footer-column p, .footer-column li {
    margin-bottom: 0.5rem;
    color: #795548;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column a {
    color: #795548;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-column a:hover {
    color: #D48C70;
    padding-left: 5px;
}

/* Areas We Serve - Special Styling */
.footer-column a[href*="areas-we-serve"] {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-column a[href*="areas-we-serve"]:hover {
    color: #5EAAA8;
    padding-left: 8px;
}

.footer-column a[href*="areas-we-serve"] i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-column a[href*="areas-we-serve"]:hover i {
    transform: scale(1.2);
    color: #F7971E;
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(121, 85, 72, 0.2);
    text-align: center;
    font-size: 0.9rem;
    color: #795548;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    color: #795548;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-icons a:hover {
    background: linear-gradient(100deg, #5A7979 0%, #4a9997 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(94, 170, 168, 0.3);
}


/* CUTE WELCOME SECTION STYLES */
    .welcome-section-wrapper {
        border-radius: 20px;
        padding: 1rem;
    }
    .image-content-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
        max-width: 85%; /* Make the container smaller */
        margin: 0 auto;   /* Center it horizontally */
    }
     .image-content-wrapper:hover {
        transform: scale(1.03);
    }
    /* Blue overlay removed as requested */
    /* .image-content-wrapper::before {
        content: '';
        position: absolute;
        top: -15px;
        left: -15px;
        width: 100%;
        height: 100%;
        background-color: var(--secondary-accent);
        opacity: 0.3;
        border-radius: 20px;
        z-index: 0;
        transition: all 0.3s ease;
    }
    .image-content-wrapper:hover::before {
        transform: translate(15px, 15px);
    } */
    .welcome-section-wrapper .img-responsive {
        z-index: 1;
        position: relative;
    }
     .welcome-section-wrapper .text-lg {
        line-height: 1.8;
        color: var(--text-light);
    }
     .welcome-section-wrapper h2 {
        font-family: 'Poppins', sans-serif;
        color: var(--text-dark);
     }

     /* Why Choose Us Section */
        .why-choose-us-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .why-choose-us-card {
            background-color: var(--card-bg);
            border-radius: 1rem;
            padding: 2rem 1.5rem;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .why-choose-us-card:hover {
             transform: translateY(-5px);
             box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        }

        .why-choose-us-card img {
            height: 70px;
            width: auto;
            margin-bottom: 1rem;
        }
        
        .why-choose-us-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0;
        }

        @media (min-width: 768px) {
            .locations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
             .why-choose-us-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }



