:root {
    --primary-color: #0d47a1; /* Professional Blue */
    --secondary-color: #f5f5f5; /* Light Grey */
    --accent-color: #ff6f00; /* Orange for urgency */
    --success-color: #2e7d32; /* Green for eco-friendly */
    --text-color: #333;
    --light-text-color: #fff;
    --font-family: 'Poppins', sans-serif;
    --border-radius: 5px;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: var(--light-text-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--light-text-color);
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--light-text-color);
}

.btn-tertiary {
    background: var(--success-color);
    color: var(--light-text-color);
}

.btn-quaternary {
    background: #6c757d; /* A neutral grey for less urgent CTAs */
    color: var(--light-text-color);
}

/* Hero */
#hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/home.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text-color);
    padding: 8rem 0;
    text-align: center;
}

#hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card-detailed {
    background: var(--light-text-color);
    padding: 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-card-detailed i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card-detailed h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card-detailed {
    text-decoration: none; /* Remove underline from the entire card */
    color: inherit; /* Inherit color from parent */
}

.service-card-detailed:hover {
    text-decoration: none; /* Ensure no underline on hover */
}


/* Why Choose Us */
#why-choose-us {
    background: var(--secondary-color);
}

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

.feature {
    text-align: center;
    background: var(--light-text-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature i {
    font-size: 3.5rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Testimonials */
#testimonials {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/cleaning-268112_1280.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text-color);
}

#testimonials h2 {
    color: var(--light-text-color);
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
    padding-bottom: 1rem;
}

.testimonial {
    flex: 0 0 90%; /* Adjust for mobile */
    max-width: 600px;
    scroll-snap-align: start;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial h4 {
    text-align: right;
    font-weight: 600;
    color: var(--accent-color);
}

/* CTA Banner */
#cta-banner {
    background: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 4rem 0;
}

#cta-banner h2 {
    color: var(--light-text-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

#cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

#cta-banner .btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    background: var(--accent-color);
}

.animated-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 111, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 111, 0, 0);
    }
}

/* Before/After Gallery */
#before-after-gallery {
    padding: 4rem 0;
    background: var(--light-text-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    padding-bottom: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-item p {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Service Calculator */
#service-calculator {
    background: var(--secondary-color);
    padding: 4rem 0;
    text-align: center;
}

#service-calculator h2 {
    color: var(--primary-color);
}

.calculator-form {
    background: var(--light-text-color);
    max-width: 600px;
    margin: 2rem auto;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.calculator-form .form-group {
    margin-bottom: 1.5rem;
}

.calculator-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.calculator-form select,
.calculator-form input[type="number"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.calculator-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

.estimate-result {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.estimate-result h3 {
    color: var(--success-color);
    font-size: 1.8rem;
}

.estimate-result i {
    font-size: 0.9rem;
    color: #777;
}

/* Trust Badges */
#trust-badges {
    padding: 3rem 0;
    text-align: center;
}

.badge-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-badge {
    max-width: 120px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
}

/* Client Logos */
#client-logos {
    background: var(--secondary-color);
    padding: 3rem 0;
    text-align: center;
}

.logo-carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-carousel {
    display: flex;
    animation: carousel-scroll 20s linear infinite;
}

.client-logo {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    margin: 0 2rem;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Quote Page */
#quote-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/quote-hero.jpg');
    background-size: cover;
    background-position: center;
}

.quote-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: var(--light-text-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.quote-form .form-group {
    margin-bottom: 1.5rem;
}

.quote-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form input[type="number"],
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.quote-form textarea {
    resize: vertical;
}

.quote-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

#quote-cta {
    background: var(--accent-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 4rem 0;
}

#quote-cta h2 {
    color: var(--light-text-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

#quote-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

#quote-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    background: var(--primary-color);
}

/* Footer */
footer {
    background: #222;
    color: var(--light-text-color);
    padding: 3rem 0 1rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.footer-section ul li a {
    color: var(--light-text-color);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    #hero h1 {
        font-size: 2.8rem;
    }

    #hero p {
        font-size: 1.1rem;
    }

    .testimonial {
        flex: 0 0 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonial Slider */
.testimonial-slider.active {
    cursor: grabbing;
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 10px;
}

/* About Page */
#about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/office-730681_1280.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text-color);
    padding: 6rem 0;
    text-align: center;
}

#about-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

#about-hero p {
    font-size: 1.2rem;
}

#company-story {
    padding: 4rem 0;
    background: var(--secondary-color);
}

#company-story h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

#company-story p {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.8;
}

#our-team {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    background: var(--light-text-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--primary-color);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.team-member p {
    font-style: italic;
    color: #666;
    margin-bottom: 0.5rem;
}

.team-role {
    font-weight: 600;
    color: var(--accent-color);
}

#certifications {
    background: var(--secondary-color);
    padding: 4rem 0;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.certification-item {
    text-align: center;
    background: var(--light-text-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.certification-item i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.certification-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.certification-item p {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
}

.certification-item span {
    font-size: 0.9rem;
    color: #777;
}

#cta-about {
    background: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 4rem 0;
}

#cta-about h2 {
    color: var(--light-text-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

#cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

#cta-about .btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    background: var(--accent-color);
}

/* Blog Page */
#blog-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/blog-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text-color);
    padding: 6rem 0;
    text-align: center;
}

#blog-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

#blog-hero p {
    font-size: 1.2rem;
}

#blog-featured-post {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-post-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.featured-post-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.featured-post-content .post-meta {
    margin-bottom: 1rem;
}

.featured-post-content p {
    margin-bottom: 2rem;
}

#blog-posts {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-post-card {
    background: var(--light-text-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.blog-post-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post-card-content {
    padding: 1.5rem;
}

.blog-post-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.post-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
}

.blog-post-card-content p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.social-share {
    margin-top: 1.5rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.social-share a {
    color: #777;
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

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

#newsletter-signup {
    background: var(--secondary-color);
    padding: 4rem 0;
    text-align: center;
}

#newsletter-signup h2 {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 2rem auto 0;
}

.newsletter-form input[type="email"] {
    width: 70%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
    border-right: none;
}

.newsletter-form button {
    width: 30%;
    padding: 0.8rem;
    border: none;
    background: var(--primary-color);
    color: var(--light-text-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

/* Contact Page */
#contact-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text-color);
    padding: 6rem 0;
    text-align: center;
}

#contact-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

#contact-hero p {
    font-size: 1.2rem;
}

#contact-methods {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    text-align: center;
    background: var(--light-text-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-info i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-detail-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

#contact-form-section {
    padding: 4rem 0;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--light-text-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-content {
    padding: 3rem;
}

.contact-form-content h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-form-content p {
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="subject"],
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    background: var(--accent-color);
}

#google-map-full {
    padding: 0;
}

#google-map-full iframe {
    display: block;
}

/* Services Page */
#services-hero-new {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/cleaning-services-9663247_1280.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text-color);
    padding: 6rem 0;
    text-align: center;
}

#services-hero-new h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

#services-hero-new p {
    font-size: 1.2rem;
}

#services-list {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item-new {
    background: var(--light-text-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    text-align: center;
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color */
}

.service-item-new:hover {
    text-decoration: none; /* Ensure no underline on hover */
}

.service-item-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-item-new-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-item-new h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

#cta-services-new {
    background: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 4rem 0;
}

#cta-services-new h2 {
    color: var(--light-text-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

#cta-services-new p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

#cta-services-new .btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    background: var(--accent-color);
}

/* Individual Service Page Styles */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #eee;
    z-index: 1001;
}

.reading-progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--accent-color);
}

#service-hero {
    background-size: cover;
    background-position: center;
    color: var(--light-text-color);
    padding: 6rem 0;
    text-align: center;
}

#service-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

#service-hero p {
    font-size: 1.2rem;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb > span {
    margin: 0 5px;
}

#service-content {
    padding: 4rem 0;
}

#service-content .container {
    display: flex;
    justify-content: center;
}

.content-wrapper {
    max-width: 800px;
    line-height: 1.8;
}

.content-wrapper h2,
.content-wrapper h3 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-wrapper h2 {
    font-size: 2.2rem;
}

.content-wrapper h3 {
    font-size: 1.8rem;
}

.content-wrapper p {
    margin-bottom: 1rem;
}

.content-wrapper ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.content-wrapper ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 25px;
}

.content-wrapper ul li::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--success-color);
    position: absolute;
    left: 0;
    top: 0;
}

.content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.content-wrapper ol li {
    margin-bottom: 0.5rem;
}

.introduction {
    font-size: 1.15rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 2rem;
}

.info-box {
    background-color: #e3f2fd; /* Light blue */
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-box i {
    font-size: 2rem;
    color: var(--primary-color);
}

.info-box h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-box p {
    margin-bottom: 0;
}

.section-divider {
    border-bottom: 1px dashed #ccc;
    margin: 3rem 0;
}

.icon-left {
    margin-right: 10px;
    color: var(--accent-color);
}

.icon-right {
    margin-left: 10px;
    color: var(--accent-color);
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    display: block;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.content-image.small-image {
    max-width: 200px;
    margin: 1.5rem auto;
}

.content-image + em {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.cta-section {
    background: linear-gradient(to right, var(--primary-color), #1976d2);
    color: var(--light-text-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
}

.cta-section h2 {
    color: var(--light-text-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section .btn {
    margin: 0 1rem;
}

.related-articles {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.social-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.social-share h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.social-share a {
    font-size: 1.8rem;
    margin: 0 1rem;
    color: #555;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Hide the nav links by default on mobile */
        flex-direction: column;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    nav ul.nav-active {
        display: flex; /* Show when active */
    }

    .nav-toggle {
        display: block; /* Show the toggle button on mobile */
    }

    .contact-form-container {
        grid-template-columns: 1fr;
    }

    .contact-form-image {
        display: none;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .service-grid-detailed {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .cta-section .btn {
        margin: 0.5rem 0;
    }
}

.nav-toggle {
    display: none; /* Hide by default */
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    nav ul {
        display: none; /* Hide the nav links by default on mobile */
        flex-direction: column;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    nav ul.nav-active {
        display: flex; /* Show when active */
    }

    .nav-toggle {
        display: block; /* Show the toggle button on mobile */
    }

    .contact-form-container {
        grid-template-columns: 1fr;
    }

    .contact-form-image {
        display: none;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .service-grid-detailed {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
