body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    box-sizing: border-box;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: #007bff; /* Primary blue */
    border-radius: 2px;
}

.text-white .section-title::after {
    background-color: #fff;
}

.header-logo {
    height: 40px;
    width: auto;
}

.site-title {
    font-size: 1.8rem;
    color: #007bff;
}

.navbar-brand .site-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

.offcanvas-header {
    background-color: #f8f9fa;
}

.offcanvas-title {
    color: #2c3e50;
}

.hero-section {
    background: linear-gradient(rgba(0, 123, 255, 0.7), rgba(0, 123, 255, 0.7)), url('media/graphics/cleaning-hero-background.webp') no-repeat center center / cover;
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Offset for sticky header */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: -50px; /* Adjust if needed to clear header */
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
}

.statistic-wrapper {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 20px 40px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.statistic-number {
    font-size: 4rem;
}

.statistic-text {
    font-size: 1.2rem;
    opacity: 0.8;
}

.custom-btn-primary {
    background-color: #28a745; /* Green */
    border-color: #28a745;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.custom-btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-3px);
}

.about-section {
    padding: 80px 0;
}

.about-image {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.badge-overlay {
    background: linear-gradient(45deg, #007bff, #6610f2);
    padding: 15px 25px;
    border-radius: 0 10px 10px 0;
    font-size: 1.2rem;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.services-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 1rem;
}

.service-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-plans-section {
    background: linear-gradient(rgba(0, 123, 255, 0.85), rgba(0, 123, 255, 0.85)), url('media/graphics/pricing-background.jpg') no-repeat center center / cover;
    padding: 80px 0;
}

.pricing-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #28a745;
}

.price-tag small {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

.pricing-card ul {
    padding-left: 0;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.select-plan-btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 10px 20px;
}

.who-it-for-section {
    padding: 80px 0;
}

.benefit-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    font-size: 3.5rem;
    color: #007bff;
}

.benefit-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.why-choose-us-section {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), url('media/graphics/why-choose-background.jpg') no-repeat center center / cover;
    padding: 80px 0;
}

.why-card {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.why-icon {
    font-size: 3rem;
    color: #007bff;
}

.why-card .card-title {
    font-size: 1.4rem;
    font-weight: 600;
}

.how-we-work-section {
    padding: 80px 0;
}

.work-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.advantages-section {
    background: linear-gradient(rgba(0, 123, 255, 0.85), rgba(0, 123, 255, 0.85)), url('media/graphics/advantages-background.webp') no-repeat center center / cover;
    padding: 80px 0;
}

.advantage-item {
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    background-color: #e9ecef;
}

.advantage-icon {
    font-size: 3.5rem;
    color: #28a745; /* Green */
}

.advantage-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #007bff;
}

.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid #007bff;
}

.stars i {
    color: #ffc107; /* Gold star color */
    font-size: 1.2rem;
}

.faq-section {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), url('media/graphics/faq-background_2.webp') no-repeat center center / cover;
    padding: 80px 0;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item .accordion-button {
    font-weight: 600;
    color: #2c3e50;
    background-color: transparent;
    border-bottom: 1px solid #dee2e6;
    padding: 15px 20px;
    font-size: 1.1rem;
}

.faq-item .accordion-button:not(.collapsed) {
    color: #007bff;
    background-color: #f0f8ff;
    box-shadow: none;
}

.faq-item .accordion-body {
    padding: 20px;
    background-color: #fff;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-section {
    background: linear-gradient(rgba(0, 123, 255, 0.85), rgba(0, 123, 255, 0.85)), url('media/graphics/contact-background_3.jpeg') no-repeat center center / cover;
    padding: 80px 0;
}

.contact-form .form-control,
.contact-form .form-select {
    border-width: 2px;
    border-radius: 8px;
    padding: 12px 15px;
    color: #fff;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-select option {
    color: #333;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.contact-form .invalid-feedback {
    color: #ffdddd;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0;
}

.main-footer a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer a:hover {
    color: #007bff;
}

.email-break {
    word-break: break-all;
}

/* Animations */
.hero-section .hero-title, .hero-section .hero-subtitle, .hero-section .statistic-wrapper, .hero-section .custom-btn-primary {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-section.animate .hero-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-section.animate .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.hero-section.animate .statistic-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.hero-section.animate .custom-btn-primary {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.about-section .col-md-6 {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.about-section .col-md-6:last-child {
    transform: translateX(50px);
}

.about-section.animate .col-md-6 {
    opacity: 1;
    transform: translateX(0);
}

.about-section.animate .col-md-6:last-child {
    transition-delay: 0.2s;
}

.contact-section {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.contact-section.animate {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Typography */
@media (min-width: 1024px) {
    .site-title { font-size: 2.2rem; }
    .hero-title { font-size: 3.8rem; }
    .hero-subtitle { font-size: 1.8rem; }
    .section-title { font-size: 2.5rem; }
    .pricing-card .card-title { font-size: 2rem; }
    .price-tag { font-size: 3rem; }
    .benefit-card .card-title, .why-card .card-title, .advantage-title { font-size: 1.6rem; }
    .faq-item .accordion-button { font-size: 1.2rem; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .site-title { font-size: 2rem; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.6rem; }
    .section-title { font-size: 2.2rem; }
    .pricing-card .card-title { font-size: 1.8rem; }
    .price-tag { font-size: 2.8rem; }
    .benefit-card .card-title, .why-card .card-title, .advantage-title { font-size: 1.5rem; }
    .faq-item .accordion-button { font-size: 1.1rem; }
    .navbar-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 767px) {
    .site-title { font-size: 1.5rem; }
    .hero-title { font-size: 2.2rem; margin-top: 0; }
    .hero-subtitle { font-size: 1.2rem; }
    .section-title { font-size: 1.8rem; }
    .pricing-card .card-title { font-size: 1.6rem; }
    .price-tag { font-size: 2.2rem; }
    .benefit-card .card-title, .why-card .card-title, .advantage-title { font-size: 1.25rem; }
    .faq-item .accordion-button { font-size: 1rem; }
    .navbar-toggler {
        display: block;
    }
    .navbar-collapse {
        display: none;
    }
    .offcanvas-body .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .offcanvas-body .nav-link {
        padding: 0.5rem 1rem;
    }
    .badge-overlay {
        position: static;
        transform: translateY(0);
        border-radius: 10px;
        margin-top: 15px;
        text-align: center;
    }
    .about-section .col-md-6, .about-section .col-md-6:last-child {
        transform: translateX(0);
        opacity: 1;
    }
    .row-cols-md-2.row-cols-lg-3 > .col {
        width: 100%;
    }
}
/*
 * Base styles for the data clause frame container.
 * Provides top margin for separation and horizontal padding for content.
 */
.dataClauseFrame {
    margin-top: 2.5em; /* Space above the entire frame */
    padding-left: 1.5em; /* Padding on the left side */
    padding-right: 1.5em; /* Padding on the right side */
    /* Add any other base styles for .dataClauseFrame here if needed,
       but the request was specifically for margins and padding. */
}

/*
 * Stock styles for headings (h1-h5), paragraphs (p),
 * unordered lists (ul), and list items (li)
 * within the .dataClauseFrame.
 * Font sizes are kept moderate as requested.
 */

/* Heading 1 styles */
.dataClauseFrame h1 {
    font-size: 1.7em; /* Moderate font size for main heading */
    margin-top: 1.8em; /* Space above h1 */
    margin-bottom: 0.8em; /* Space below h1 */
    font-weight: 700; /* Bold font weight */
    line-height: 1.2; /* Line height for readability */
}

/* Heading 2 styles */
.dataClauseFrame h2 {
    font-size: 1.4em; /* Moderate font size for sub-heading */
    margin-top: 1.5em; /* Space above h2 */
    margin-bottom: 0.7em; /* Space below h2 */
    font-weight: 600; /* Semi-bold font weight */
    line-height: 1.3; /* Line height for readability */
}

/* Heading 3 styles */
.dataClauseFrame h3 {
    font-size: 1.2em; /* Slightly larger than body text */
    margin-top: 1.2em; /* Space above h3 */
    margin-bottom: 0.6em; /* Space below h3 */
    font-weight: 600; /* Semi-bold font weight */
    line-height: 1.4; /* Line height for readability */
}

/* Heading 4 styles */
.dataClauseFrame h4 {
    font-size: 1.1em; /* Slightly larger than body text */
    margin-top: 1em; /* Space above h4 */
    margin-bottom: 0.5em; /* Space below h4 */
    font-weight: 500; /* Medium font weight */
    line-height: 1.4; /* Line height for readability */
}

/* Heading 5 styles */
.dataClauseFrame h5 {
    font-size: 1em; /* Standard body text size */
    margin-top: 0.8em; /* Space above h5 */
    margin-bottom: 0.4em; /* Space below h5 */
    font-weight: 500; /* Medium font weight */
    line-height: 1.5; /* Line height for readability */
}

/* Paragraph styles */
.dataClauseFrame p {
    font-size: 1em; /* Standard body text size */
    margin-top: 0; /* No top margin for paragraphs */
    margin-bottom: 1em; /* Space below each paragraph */
    line-height: 1.6; /* Generous line height for readability */
}

/* Unordered list styles */
.dataClauseFrame ul {
    font-size: 1em; /* Standard body text size */
    margin-top: 0.8em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 1.8em; /* Indentation for bullet points */
    list-style-type: disc; /* Default disc bullet style */
}

/* List item styles */
.dataClauseFrame li {
    font-size: 1em; /* Standard body text size */
    margin-bottom: 0.5em; /* Space between list items */
    line-height: 1.6; /* Generous line height for readability */
}


@media(max-width: 575px){
    .badge-overlay span{
        font-size: 14px;
    }

    nav{
        padding: 0 10px !important;
    }
}

main{
    overflow: hidden !important;
}