/* General Styles */
:root {
    --primary-orange: #FF8C42; /* A vibrant, light orange */
    --primary-accent: #E06B2E; /* A slightly darker, richer orange for accents */
    --secondary-bg: #FFF8F0; /* Very light orange/cream for subtle contrast */
    --dark-text: #333333;
    --light-text: #666666;
    --white: #ffffff;
    --dark: #212529;
    --gradient-hero: linear-gradient(135deg, rgba(255,140,66,0.8) 0%, rgba(224,107,46,0.8) 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--secondary-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
}

.text-primary-accent {
    color: var(--primary-accent) !important;
}

.bg-light-orange {
    background-color: var(--secondary-bg);
}

.btn-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    transform: translateY(-2px);
}

.btn-outline-secondary {
    color: var(--dark-text);
    border-color: var(--dark-text);
}

.btn-outline-secondary:hover {
    color: var(--white);
    background-color: var(--dark-text);
    border-color: var(--dark-text);
}

.section-title {
    font-weight: 700;
    color: var(--primary-accent);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('images/graphics/cleaning-hero-bg_2.png'); /* Placeholder for hero background image */
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 2;
}

.hero-badge-capsule {
    border: 3px solid var(--white);
    padding: 2.5rem 3.5rem;
    max-width: 800px;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.15); /* Slightly transparent white */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-logo {
    max-width: 150px;
    height: auto;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-badge-capsule {
        padding: 2rem;
    }
}

/* About Us - Interactive Map */
.about-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.interactive-map-container {
    height: 400px;
    background-color: var(--primary-orange);
    position: relative;
    overflow: hidden;
}

.interactive-map-container img {
    filter: brightness(0.8);
}

.map-pin {
    cursor: pointer;
    z-index: 10;
}

.map-pin .pin-icon {
    font-size: 2.5rem;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.map-pin:hover .pin-icon {
    transform: scale(1.1);
}

.map-pin .story-content {
    position: absolute;
    background-color: var(--white);
    color: var(--dark-text);
    padding: 15px;
    border-radius: 8px;
    width: 250px;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% + 10px); /* Position above the pin */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 11;
}

.map-pin.active .story-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px); /* Slight lift */
}

.about-list li {
    margin-bottom: 10px;
}

.about-list li strong {
    color: var(--primary-accent);
}

/* Our Services */
.services-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.service-card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--white);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.service-card .service-icon {
    font-size: 3.5rem;
    color: var(--primary-orange);
}

.service-card h3 {
    color: var(--primary-accent);
    font-weight: 600;
}

/* Key Features */
.features-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.feature-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.feature-item img {
    max-height: 300px;
    object-fit: cover;
    width: 100%;
}

.feature-item .feature-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--primary-accent);
    font-weight: 600;
}

.benefit-tag {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

/* How It Works */
.how-it-works-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.process-flow {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background-color: #e0e0e0;
    z-index: 1;
    transform: translateY(-50%);
}

.process-step {
    position: relative;
    z-index: 2;
}

.process-step .step-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 3px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.process-step .process-icon {
    font-size: 3.5rem;
    color: var(--primary-orange);
}

.process-step h3 {
    margin-top: 15px;
    color: var(--dark);
    font-weight: 600;
}

.process-step.active .step-icon-wrapper {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 5px rgba(var(--primary-accent), 0.3);
}

@media (max-width: 768px) {
    .process-line {
        display: none;
    }
    .process-flow .row {
        flex-direction: column;
        align-items: center;
    }
    .process-step {
        width: 80%;
        max-width: 300px;
        margin-bottom: 30px !important;
    }
}

/* Our Team */
.team-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}


.team-member-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--white);
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.team-member-card .team-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--primary-orange);
}

.team-member-card .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-accent), 0.9);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    color: var(--white);
    text-align: center;
    font-style: italic;
}

.team-member-card:hover .hover-overlay {
    opacity: 1;
    visibility: visible;
}

/* Testimonials */
.testimonials-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.testimonial-card {
    border: none;
    border-radius: 12px;
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card .review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--primary-orange);
}

.testimonial-card h5 {
    color: var(--primary-accent);
    font-weight: 600;
}

/* Contact Form */
.contact-form-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact-form-section .card {
    border: none;
    border-radius: 12px;
    background-color: var(--white);
}

.form-label {
    font-weight: 500;
    color: var(--dark-text);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-orange-rgb), 0.25);
}

/* FAQ Section */
.faq-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.accordion-item {
    border: none;
    border-radius: 12px;
    background-color: var(--white);
}

.accordion-button {
    background-color: var(--white);
    color: var(--dark);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-accent);
    background-color: var(--secondary-bg);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-orange);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF8C42'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--light-text);
}

/* Footer */
.main-footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
}

.main-footer .footer-logo {
    max-width: 120px;
}

.main-footer h5 {
    color: var(--white);
    font-weight: 600;
}

.main-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer a:hover {
    color: var(--primary-orange);
}

.data-widget {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.data-widget .bi {
    font-size: 1.2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background-color: var(--white);
    border: 1px solid #eee;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.cookie-banner .card-title {
    color: var(--primary-accent);
    font-weight: 600;
}

.cookie-banner .card-text {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Animations (using Animate.css if needed, but primarily custom CSS) */
/* Custom animations for Intersection Observer */


/* Specific animation delays for sequential appearance */
.animate__delay-1s { transition-delay: 0.1s; }
.animate__delay-2s { transition-delay: 0.2s; }
.animate__delay-3s { transition-delay: 0.3s; }
.animate__delay-4s { transition-delay: 0.4s; }
.animate__delay-5s { transition-delay: 0.5s; }

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Remove text-decoration from buttons */
.btn {
    text-decoration: none !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .feature-item .col-md-6.order-md-2 {
        order: 2 !important;
        text-align: start !important;
    }
    .feature-item .col-md-6.order-md-1 {
        order: 1 !important;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .hero-badge-capsule {
        padding: 1.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .interactive-map-container {
        height: 300px;
    }
    .map-pin .story-content {
        width: 200px;
        font-size: 0.8rem;
        padding: 10px;
    }
    .feature-item {
        padding: 20px;
    }
    .feature-item img {
        margin-bottom: 20px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .cookie-banner {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }
}/* New styles for .complianceVaultNode and its children */

/* Container padding for the main content area */
.complianceVaultNode {
    padding-top: 3rem; /* Top padding for the content section */
    padding-left: 1.5rem; /* Left padding for the content section */
    padding-right: 1.5rem; /* Right padding for the content section */
    padding-bottom: 3rem; /* Bottom padding for the content section */
    max-width: 1200px; /* Optional: Constrain content width for readability */
    margin-left: auto; /* Center the container */
    margin-right: auto; /* Center the container */
}

/* Heading styles within .complianceVaultNode */
.complianceVaultNode h1 {
    font-size: 2.5rem; /* Moderate size for main headings */
    font-weight: 700; /* Bold font weight */
    margin-top: 2.5rem; /* Space above heading */
    margin-bottom: 1.5rem; /* Space below heading */
    line-height: 1.2; /* Tighter line height for headings */
    color: var(--dark); /* Inherit from general heading color */
}

.complianceVaultNode h2 {
    font-size: 2rem; /* Moderate size for sub-headings */
    font-weight: 600; /* Semi-bold font weight */
    margin-top: 2rem; /* Space above heading */
    margin-bottom: 1.25rem; /* Space below heading */
    line-height: 1.3; /* Tighter line height for headings */
    color: var(--dark);
}

.complianceVaultNode h3 {
    font-size: 1.75rem; /* Smaller sub-headings */
    font-weight: 600;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--dark);
}

.complianceVaultNode h4 {
    font-size: 1.5rem; /* Even smaller sub-headings */
    font-weight: 500; /* Medium font weight */
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--dark);
}

.complianceVaultNode h5 {
    font-size: 1.25rem; /* Smallest heading size */
    font-weight: 500;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: var(--dark);
}

/* Paragraph styles within .complianceVaultNode */
.complianceVaultNode p {
    font-size: 1rem; /* Standard body text size */
    margin-bottom: 1rem; /* Space between paragraphs */
    line-height: 1.7; /* Generous line height for readability */
    color: var(--dark-text); /* Inherit from general body text color */
}

/* Unordered list styles within .complianceVaultNode */
.complianceVaultNode ul {
    list-style: disc; /* Default disc bullet points */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for bullet points */
    color: var(--dark-text);
}

/* List item styles within .complianceVaultNode */
.complianceVaultNode ul li {
    font-size: 1rem; /* Standard font size for list items */
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.6; /* Line height for list items */
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .complianceVaultNode {
        padding-top: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 2rem;
    }

    .complianceVaultNode h1 {
        font-size: 2rem;
        margin-top: 2rem;
        margin-bottom: 1.25rem;
    }

    .complianceVaultNode h2 {
        font-size: 1.75rem;
        margin-top: 1.75rem;
        margin-bottom: 1rem;
    }

    .complianceVaultNode h3 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .complianceVaultNode h4 {
        font-size: 1.25rem;
        margin-top: 1.25rem;
        margin-bottom: 0.6rem;
    }

    .complianceVaultNode h5 {
        font-size: 1.1rem;
        margin-top: 1rem;
        margin-bottom: 0.4rem;
    }

    .complianceVaultNode p,
    .complianceVaultNode ul li {
        font-size: 0.95rem;
    }

    .dop-col{
        flex-direction: column-reverse !important;
    }
}




@media (max-width: 640px) {
    .btn-for-wf{
        display: none;
    }

    .btn-for-lf{
        display: block !important;
        margin-top: 20px;
        position: relative;
        z-index: 2;
        filter: drop-shadow(2px 4px 6px black);
        -webkit-filter: drop-shadow(2px 4px 6px black);
        padding: 10px !important;
    }
}

.btn-for-wf{
    filter: drop-shadow(2px 4px 6px black);
    -webkit-filter: drop-shadow(2px 4px 6px black);
}

.btn-for-lf{
    display: none;
}

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

.footer-lgs{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.footer-lgs h2{
    font-size: clamp(18px,2.5vw,22px);
    color: #fff !important;
    margin: 0;
}