/* Cleaning Services Page Specific Styles */

/* Navbar fix for Cleaning page */
#navbar {
    background-color: transparent !important;
    transition: background-color 0.3s ease !important;
    width: 100%;
    box-sizing: border-box;
}

#navbar.scrolled {
    background-color: var(--primary-navy) !important;
}

/* Breadcrumb Navigation */
.breadcrumb {
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    word-wrap: break-word;
}

.breadcrumb-item a:hover {
    color: var(--accent-orange);
}

.breadcrumb-item.active span {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.95rem;
    word-wrap: break-word;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Hero Section */
.cleaning-hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    margin-top: -80px;
    width: 100%;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.85), rgba(10, 26, 58, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--neutral-white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--neutral-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0.95;
    color: var(--neutral-white);
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
    width: 100%;
}

.stat {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    min-width: 120px;
}

.stat.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--neutral-white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    word-wrap: break-word;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-dark-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Overview Section */
.overview-section {
    padding: 100px 0;
    background: var(--neutral-white);
    width: 100%;
    box-sizing: border-box;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr 1fr;
    }
}

.overview-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-dark-gray);
    margin-bottom: 20px;
    word-wrap: break-word;
}

.overview-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    width: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 50px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--neutral-white);
}

.feature-content {
    flex: 1;
    min-width: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--neutral-dark-gray);
    line-height: 1.5;
    margin-bottom: 0;
    word-wrap: break-word;
}

.overview-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overview-image:hover .image-container img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 26, 58, 0.85);
    padding: 25px;
    color: var(--neutral-white);
    width: 100%;
    box-sizing: border-box;
}

.image-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent-orange);
    word-wrap: break-word;
}

.image-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
    word-wrap: break-word;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--neutral-light-gray);
    width: 100%;
    box-sizing: border-box;
}

.services-tabs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    width: 100%;
}

.tabs-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.tab-btn {
    padding: 15px 30px;
    background: var(--neutral-light-gray);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
    box-sizing: border-box;
    word-wrap: break-word;
}

.tab-btn:hover {
    background: var(--primary-navy);
    color: var(--neutral-white);
}

.tab-btn.active {
    background: var(--accent-orange);
    color: var(--neutral-white);
}

.tab-pane {
    display: none;
    width: 100%;
}

.tab-pane.active {
    display: block;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    background: var(--neutral-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .service-content {
        grid-template-columns: 1fr 1fr;
    }
}

.service-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    width: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--neutral-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.service-text {
    width: 100%;
    box-sizing: border-box;
}

.service-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-dark-gray);
    margin-bottom: 30px;
    word-wrap: break-word;
}

.service-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.service-features li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: var(--neutral-light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.service-features li:hover {
    transform: translateX(10px);
}

.service-features i {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--neutral-white);
    min-width: 40px;
}

.service-features div {
    flex: 1;
    min-width: 0;
}

.service-features h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.service-features p {
    font-size: 0.9rem;
    color: var(--neutral-dark-gray);
    line-height: 1.5;
    margin-bottom: 0;
    word-wrap: break-word;
}

/* Industry Section */
.industry-section {
    padding: 100px 0;
    background: var(--neutral-white);
    width: 100%;
    box-sizing: border-box;
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .industry-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.industry-card {
    background: var(--neutral-white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    border-top: 4px solid transparent;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.industry-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top-color: var(--accent-orange);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.industry-icon i {
    font-size: 2rem;
    color: var(--neutral-white);
}

.industry-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.industry-description {
    color: var(--neutral-dark-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
    word-wrap: break-word;
}

.industry-features {
    list-style: none;
    padding: 0;
    width: 100%;
}

.industry-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--neutral-dark-gray);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.industry-features i {
    color: var(--accent-orange);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Certification Section */
.certification-section {
    padding: 100px 0;
    background: var(--neutral-light-gray);
    width: 100%;
    box-sizing: border-box;
}

.certification-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .certification-content {
        grid-template-columns: 1fr 1fr;
    }
}

.certification-text {
    width: 100%;
    box-sizing: border-box;
}

.certification-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.certification-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-dark-gray);
    margin-bottom: 40px;
    word-wrap: break-word;
}

.certification-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

@media (min-width: 768px) {
    .certification-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cert-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: var(--neutral-white);
    border-radius: 10px;
    transition: transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.cert-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 50px;
}

.cert-icon i {
    font-size: 1.5rem;
    color: var(--neutral-white);
}

.cert-content {
    flex: 1;
    min-width: 0;
}

.cert-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.cert-content p {
    font-size: 0.9rem;
    color: var(--neutral-dark-gray);
    line-height: 1.5;
    margin-bottom: 0;
    word-wrap: break-word;
}

.certification-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.cert-stat {
    text-align: center;
    flex: 1;
    min-width: 100px;
    box-sizing: border-box;
}

.cert-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 5px;
    word-wrap: break-word;
}

.cert-stat .stat-label {
    font-size: 0.9rem;
    color: var(--primary-navy);
    font-weight: 500;
    word-wrap: break-word;
}

.certification-logos {
    background: var(--neutral-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

@media (min-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cert-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px;
    border: 2px solid var(--neutral-light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.cert-logo:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
}

.cert-logo i {
    font-size: 3rem;
    color: var(--primary-navy);
    flex-shrink: 0;
}

.logo-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
    text-align: center;
    word-wrap: break-word;
    width: 100%;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--neutral-white);
    width: 100%;
    box-sizing: border-box;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    position: relative;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-step {
    background: var(--neutral-white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    text-align: center;
    border-left: 4px solid transparent;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent-orange);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: black;
    flex-shrink: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--neutral-white);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.step-description {
    color: var(--neutral-dark-gray);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
    word-wrap: break-word;
}

/* Environment Section */
.environment-section {
    padding: 100px 0;
    background: var(--neutral-light-gray);
    width: 100%;
    box-sizing: border-box;
}

.environment-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .environment-content {
        grid-template-columns: 1fr 1fr;
    }
}

.environment-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.environment-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
}

.environment-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 26, 58, 0.85);
    padding: 25px;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.env-stat {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.env-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 5px;
    word-wrap: break-word;
}

.env-stat .stat-label {
    font-size: 0.9rem;
    color: var(--neutral-white);
    opacity: 0.9;
    line-height: 1.4;
    word-wrap: break-word;
}

.environment-text {
    width: 100%;
    box-sizing: border-box;
}

.environment-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.environment-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-dark-gray);
    margin-bottom: 40px;
    word-wrap: break-word;
}

.environment-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

@media (min-width: 768px) {
    .environment-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.env-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: var(--neutral-white);
    border-radius: 10px;
    transition: transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.env-feature:hover {
    transform: translateX(10px);
}

.env-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 50px;
}

.env-icon i {
    font-size: 1.5rem;
    color: var(--neutral-white);
}

.env-content {
    flex: 1;
    min-width: 0;
}

.env-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.env-content p {
    font-size: 0.9rem;
    color: var(--neutral-dark-gray);
    line-height: 1.5;
    margin-bottom: 0;
    word-wrap: break-word;
}

.environment-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-orange);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: gap 0.3s ease;
    word-wrap: break-word;
    width: fit-content;
}

.environment-link:hover {
    gap: 15px;
    color: var(--accent-orange-light);
}

.environment-link i {
    transition: transform 0.3s ease;
}

.environment-link:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cleaning-cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.9), rgba(10, 26, 58, 0.7));
    z-index: 2;
}

.cleaning-cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--neutral-white);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.cleaning-cta-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--neutral-white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    width: 100%;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    word-wrap: break-word;
    text-align: center;
}

.cta-button.primary {
    background: var(--accent-orange);
    color: var(--neutral-white);
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.3);
}

.cta-button.secondary {
    background: var(--primary-navy);
    color: var(--neutral-white);
    box-shadow: 0 8px 25px rgba(10, 26, 58, 0.3);
}

.cta-button.outline {
    background: transparent;
    color: var(--neutral-white);
    border: 2px solid var(--neutral-white);
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button.primary:hover {
    background: var(--accent-orange-light);
    box-shadow: 0 15px 30px rgba(245, 124, 0, 0.4);
}

.cta-button.secondary:hover {
    background: var(--primary-navy-dark);
    box-shadow: 0 15px 30px rgba(10, 26, 58, 0.4);
}

.cta-button.outline:hover {
    background: var(--neutral-white);
    color: var(--primary-navy);
}

.cta-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.contact-inf {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.contact-inf i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.contact-inf > div {
    flex: 1;
    min-width: 0;
}

.contact-inf h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--neutral-white);
    word-wrap: break-word;
}

.contact-inf p {
    margin-bottom: 5px;
    font-size: 0.95rem;
    opacity: 0.9;
    word-wrap: break-word;
}

.contact-number {
    font-size: 1.2rem !important;
    font-weight: 700;
    color: var(--accent-orange) !important;
    margin-top: 5px !important;
}

.contact-email {
    font-size: 1rem !important;
    color: var(--neutral-white) !important;
    opacity: 0.9 !important;
}

/* Animation Classes */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

[data-animate].animate {
    opacity: 1;
}

/* Fade Up Animation */
[data-animate="fade-up"].animate {
    transform: translateY(0);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

/* Slide Left Animation */
[data-animate="slide-left"].animate {
    transform: translateX(0);
}

[data-animate="slide-left"] {
    transform: translateX(-50px);
}

/* Slide Right Animation */
[data-animate="slide-right"].animate {
    transform: translateX(0);
}

[data-animate="slide-right"] {
    transform: translateX(50px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .cleaning-hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
        padding: 0 15px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tabs-header {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tab-btn {
        width: auto;
        min-width: 150px;
        padding: 12px 20px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-description {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .breadcrumb-list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cleaning-hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .overview-section,
    .services-section,
    .industry-section,
    .certification-section,
    .process-section,
    .environment-section {
        padding: 60px 0;
    }
    
    .overview-content {
        gap: 40px;
    }
    
    .overview-text h3,
    .service-text h3,
    .certification-text h3,
    .environment-text h3 {
        font-size: 1.8rem;
    }
    
    .overview-text p,
    .service-text p,
    .certification-text p,
    .environment-text p {
        font-size: 1rem;
    }
    
    .feature {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .service-content {
        padding: 25px 20px;
        gap: 30px;
    }
    
    .service-image {
        height: 300px;
    }
    
    .service-features li {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .service-features i {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 1rem;
    }
    
    .tabs-header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .industry-card {
        padding: 25px 20px;
    }
    
    .industry-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .industry-icon i {
        font-size: 1.8rem;
    }
    
    .industry-title {
        font-size: 1.2rem;
    }
    
    .industry-description {
        font-size: 0.95rem;
    }
    
    .industry-features li {
        font-size: 0.85rem;
    }
    
    .certification-content {
        gap: 30px;
    }
    
    .certification-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cert-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .cert-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .cert-icon i {
        font-size: 1.2rem;
    }
    
    .certification-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cert-stat {
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
    
    .certification-logos {
        padding: 25px 20px;
    }
    
    .logo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cert-logo {
        padding: 20px 15px;
    }
    
    .cert-logo i {
        font-size: 2.5rem;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .process-step {
        padding: 25px 20px;
    }
    
    .step-number {
        font-size: 1.8rem;
        top: 15px;
        right: 15px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .step-icon i {
        font-size: 2rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
    
    .environment-content {
        gap: 30px;
    }
    
    .environment-image img {
        height: 350px;
    }
    
    .environment-stats {
        padding: 20px 15px;
        flex-direction: column;
        gap: 15px;
    }
    
    .env-stat {
        min-width: auto;
        width: 100%;
    }
    
    .environment-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .env-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .env-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .env-icon i {
        font-size: 1.2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .contact-inf {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-inf i {
        font-size: 2rem;
    }
    
    .cleaning-cta-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .cleaning-hero {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat {
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .overview-section,
    .services-section,
    .industry-section,
    .certification-section,
    .process-section,
    .environment-section {
        padding: 50px 0;
    }
    
    .overview-content,
    .services-tabs,
    .industry-grid,
    .certification-content,
    .process-steps,
    .environment-content {
        padding: 0 15px;
    }
    
    .image-container {
        height: 300px;
    }
    
    .image-overlay {
        padding: 15px;
    }
    
    .image-overlay h4 {
        font-size: 1.1rem;
    }
    
    .image-overlay p {
        font-size: 0.9rem;
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-text h3 {
        font-size: 1.6rem;
    }
    
    .service-text p {
        font-size: 1rem;
    }
    
    .industry-title {
        font-size: 1.1rem;
    }
    
    .industry-description {
        font-size: 0.9rem;
    }
    
    .certification-text h3 {
        font-size: 1.6rem;
    }
    
    .certification-text p {
        font-size: 1rem;
    }
    
    .certification-logos {
        padding: 20px 15px;
    }
    
    .cert-logo {
        padding: 15px 10px;
    }
    
    .cert-logo i {
        font-size: 2rem;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .process-step {
        padding: 20px 15px;
    }
    
    .step-number {
        font-size: 1.5rem;
        top: 10px;
        right: 10px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .step-icon i {
        font-size: 1.8rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .environment-image img {
        height: 300px;
    }
    
    .environment-text h3 {
        font-size: 1.6rem;
    }
    
    .environment-text p {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
        padding: 0 10px;
    }
    
    .cta-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .cta-button {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .contact-inf {
        padding: 15px;
    }
    
    .contact-inf h4 {
        font-size: 1.1rem;
    }
    
    .contact-number {
        font-size: 1.1rem !important;
    }
    
    .cleaning-cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .overview-text h3,
    .service-text h3,
    .certification-text h3,
    .environment-text h3 {
        font-size: 1.5rem;
    }
    
    .industry-title,
    .step-title {
        font-size: 1.1rem;
    }
    
    .industry-description,
    .step-description {
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
    
    .tab-btn {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .breadcrumb-item a,
    .breadcrumb-item.active span {
        font-size: 0.85rem;
    }
}