* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; line-height: 1.6; color: #333; scroll-behavior: smooth; }
.container { max-width: 1100px; margin: auto; padding: 0 20px; }

/* Navigation */
header { background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 50px; }
.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 2px; }
.logo span { color: #004a99; }
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li a { text-decoration: none; color: #333; margin-left: 25px; font-weight: 400; font-size: 0.9rem; transition: 0.3s; }
.btn-book { background: #004a99; color: #fff !important; padding: 10px 20px; border-radius: 5px; }

/* Mobile Menu Toggle */
.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: #333; transition: 0.3s; }

/* Hero */
.hero { background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/cleaning-image.png') no-repeat center center/cover; height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero h1 { font-size: 3rem; }
.cta-button { display: inline-block; margin-top: 20px; padding: 15px 30px; background: #004a99; color: #fff; text-decoration: none; border-radius: 5px; font-weight: bold; }

/* Sections */
.about {padding: 80px 0px 40px 0px; text-align: center; }
.services { background: #f9f9f9; padding: 80px 0; text-align: center;}
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.service-card { background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.service-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 5px; }

/* Testimonials */
.testimonials { padding: 80px 0; background: #004a99; color: #fff; text-align: center; }
.testimonial-swiper { padding: 40px 0; max-width: 700px; }
.testimonial-card { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 10px; }
.client-name { display: block; margin-top: 15px; color: #ffd700; font-weight: bold; }

/* Footer */
footer { background: #222; color: #bbb; padding: 60px 0 20px; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; margin-bottom: 40px; }
.footer-section h3 { color: #fff; margin-bottom: 20px; }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 20px; font-size: 0.8rem; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links { display: none; flex-direction: column; width: 100%; position: absolute; top: 70px; left: 0; background: #fff; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 10px 0; width: 100%; text-align: center; }
    .nav-links li a { margin: 0; }
    .hero h1 { font-size: 2rem; }
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close-button {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

#contact-form input, #contact-form select, #contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

#contact-form textarea { height: 100px; }

/* Trust Section Styles */
.trust-section {
    padding: 60px 0;
    background: #fff;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.experience-box {
    text-align: center;
    padding: 30px;
    border-right: 1px solid #eee;
}

.years-badge {
    font-size: 4rem;
    font-weight: 700;
    color: #004a99;
    line-height: 1;
    margin-bottom: 10px;
}

.coverage-box h3 {
    margin-bottom: 15px;
    color: #004a99;
}

.area-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.area-list li::before {
    content: "✓";
    color: #004a99;
    font-weight: bold;
    margin-right: 8px;
}

/* Mobile Responsive for Trust Section */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .experience-box {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .area-list {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: flex; /* Keep as flex but hide visually */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%; /* Sits right below the header */
        left: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 999;
        
        /* Transition Properties */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px); /* Slight lift effect */
        transition: all 0.4s ease-in-out;
    }

    /* When the 'active' class is added via JS */
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0); /* Slides down into place */
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
}
/* Star Styling */
.stars {
    color: #ffd700; /* Bright Gold */
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
    animation: starFade 0.8s ease-in-out;
}

@keyframes starFade {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Logo Container Alignment */
.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none; /* Removes underline on ALL screens */
    color: #333;           /* Sets base color on ALL screens */
    transition: 0.3s ease;
}

.header-logo {
    height: 60px; /* Desktop Height */
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
    /* No need to set color here as .logo-link handles it */
}

.logo-text span {
    color: #004a99; /* Keeps the blue color for "& CLAUD" */
}

/* Hover effect for the whole logo area */
.logo-link:hover {
    opacity: 0.8;
}

/* --- 2. Mobile Specific Overrides --- */
@media (max-width: 768px) {
    .navbar {
        height: 70px;
        padding: 0 20px;
    }

    .header-logo {
        height: 50px; /* Smaller for mobile */
    }

    .logo-text {
        font-size: 1.1rem; /* Smaller for mobile */
    }
    
    .logo-link {
        gap: 10px; /* Tighter gap on small screens */
    }
}
.form-scroll-container {
    height: 600px;         /* Adjust this height to your preference */
    overflow-y: auto;      /* Adds the scrollbar when content is longer */
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

/* Optional: Styling the scrollbar for a cleaner look */
.form-scroll-container::-webkit-scrollbar {
    width: 8px;
}
.form-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.form-scroll-container::-webkit-scrollbar-thumb {
    background: #004a99; /* Matches your brand blue */
    border-radius: 10px;
}
#enquiry-form {
    scroll-margin-top: 100px;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 40px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}
.faq-header {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}
.faq-item {
    border-bottom: 1px solid #ddd;
}
.faq-button {
    background-color: transparent;
    color: #2c3e50;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-button:after {
    content: '\002B';
    font-size: 1.5rem;
    color: #777;
}
.faq-item.active .faq-button:after {
    content: "\2212"; 
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f9f9f9;
}
.faq-text {
    padding: 12px 18px 18px 18px;
    color: #555;
    line-height: 1.6;
	font-size: 14px;
}