/* css/cleaning.css */
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 80px;
}

/* Scroll indicator inside hero */
.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

.scroll-indicator .scroll-line {
    width: 2px;
    height: 40px;
    background: var(--white);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* Responsive adjustments for scroll indicator and breadcrumb */
@media (max-width: 1200px) {
    .scroll-indicator {
        bottom: 1.5rem;
        font-size: 0.75rem;
    }
    .scroll-indicator .scroll-line {
        height: 35px;
    }
}

@media (max-width: 968px) {
    .scroll-indicator {
        bottom: 2rem;
        font-size: 0.7rem;
    }
    .scroll-indicator .scroll-line {
        height: 30px;
    }
    .breadcrumb {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 2.5rem;
        font-size: 0.65rem;
    }
    .scroll-indicator .scroll-line {
        height: 25px;
    }
    .breadcrumb {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 3rem;
        font-size: 0.6rem;
        gap: 0.25rem;
    }
    .scroll-indicator .scroll-line {
        height: 20px;
    }
    .breadcrumb {
        font-size: 0.75rem;
    }
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/Concord-Mockups/imgcrd12.png') center/cover no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(11,31,51,0.6);
    background-attachment: fixed;
    z-index: 1;
}

.page-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0 50 L100 50 M0 60 L100 60 M0 70 L100 70" stroke="%23F47B20" stroke-width="0.2" opacity="0.1"/></svg>');
    background-size: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem 6rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    color: var(--light-gray);
    font-size: 0.9rem;
    white-space: nowrap; /* prevent wrapping */
    overflow-x: auto; /* allow horizontal scroll if too long */
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
} /* keep breadcrumbs on one line and scroll when necessary */

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

.breadcrumb i {
    font-size: 0.7rem;
    color: var(--accent-orange);
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--light-gray);
    max-width: 600px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: baseline;
}

.stat-value .counter {
    display: inline-block;
}

.stat-plus {
    font-size: 1.25rem;
    margin-left: 0.2rem;
    line-height: 1;
    color: var(--accent-orange);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* Intro Section */
.intro-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: center;
}

.intro-content {
    padding-right: 2rem;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 2rem 0;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.feature-item i {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.intro-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(11,31,51,0.9), transparent);
    color: var(--white);
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.intro-image:hover .image-caption {
    transform: translateY(0);
}

/* Services Grid Section */
.services-grid-section {
    padding: var(--spacing-2xl) 0;
    background: var(--light-gray);
}

.cleaning-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-orange), var(--ocean-blue));
    transition: height 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-navy), var(--ocean-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--deep-navy);
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #666;
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--accent-orange);
    font-size: 0.9rem;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.emergency-card {
    background: linear-gradient(135deg, #fff5f0, var(--white));
    border: 2px solid var(--accent-orange);
}

.emergency-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Process Section */
.process-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.process-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-orange), var(--ocean-blue));
    opacity: 0.3;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    min-width: 80px;
    text-align: center;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    opacity: 1;
    transform: scale(1.1);
}

.step-content {
    flex: 1;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover .step-content {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.step-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.step-details span i {
    color: var(--accent-orange);
}

/* Technologies Section */
.technologies-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--ocean-blue) 100%);
    color: var(--white);
}

.technologies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: center;
}

.technologies-content p {
    color: var(--light-gray);
    line-height: 1.8;
    margin: 2rem 0;
}

.tech-list {
    display: grid;
    gap: 1.5rem;
}

.tech-item {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-orange);
}

.tech-item i {
    font-size: 2rem;
    color: var(--accent-orange);
}

.tech-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.tech-item p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin: 0;
}

.technologies-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.technologies-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-stats {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    gap: 2rem;
    background: rgba(11,31,51,0.9);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.image-stats .stat {
    text-align: center;
    flex: 1;
}

.image-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.image-stats .stat-label {
    color: var(--light-gray);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* Waste Management Section */
.waste-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.waste-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: center;
}

.waste-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.waste-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.waste-image:hover img {
    transform: scale(1.05);
}

.waste-content p {
    color: #666;
    line-height: 1.8;
    margin: 2rem 0;
}

.waste-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.waste-stat .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.waste-stat .stat-label {
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.waste-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.waste-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.waste-features .feature i {
    color: var(--accent-orange);
}

/* Safety Section */
.safety-section {
    padding: var(--spacing-2xl) 0;
    background: var(--light-gray);
}

.safety-header {
    text-align: center;
    margin-bottom: 3rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
    margin-bottom: 3rem;
}

.safety-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.safety-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.safety-card i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.safety-card h3 {
    font-size: 1.2rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.safety-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.safety-certifications {
    text-align: center;
}

.safety-certifications h3 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-badge {
    background: var(--white);
    color: var(--deep-navy);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* Industries Section */
.industries-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
    margin-top: 3rem;
}

.industry-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    background: var(--accent-orange);
    transform: translateY(-10px);
}

.industry-card:hover i,
.industry-card:hover h3,
.industry-card:hover p {
    color: var(--white);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.industry-card h3 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.industry-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Projects Section */
.projects-section {
    padding: var(--spacing-2xl) 0;
    background: var(--light-gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
    margin-top: 3rem;
}

.project-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 2rem;
}

.project-location {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-content h3 {
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin: 1rem 0;
}

.project-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    color: #666;
    font-size: 0.85rem;
}

.project-meta i {
    color: var(--accent-orange);
    margin-right: 0.3rem;
}

/* Section Header Utility */
.section-header {
    margin-bottom: var(--spacing-xl);
}

.section-header.centered {
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: visible;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--deep-navy);
    margin: 0;
}

.faq-question i {
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    color: #666;
    line-height: 1.8;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-2xl) 0;
   background: linear-gradient(135deg, rgba(11, 31, 51, 0.85)), url('../assets/Concord-Mockups/img777yu7-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    border: 2px solid var(--accent-orange);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-orange);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--deep-navy);
}

.emergency-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-btn i {
    animation: ring 2s infinite;
}

@keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    70% { transform: rotate(0); }
    100% { transform: rotate(0); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .page-hero {
        min-height: 450px;
        height: 55vh;
        padding-top: 100px;
    }
    
    .page-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .cleaning-services-grid,
    .industries-grid,
    .projects-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    .page-hero {
        min-height: 400px;
        height: auto;
        padding-top: 120px;
        padding-bottom: 2rem;
    }
    
    .intro-grid,
    .technologies-grid,
    .waste-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cleaning-services-grid,
    .industries-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 350px;
        padding-top: 130px;
        padding-bottom: 2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .cleaning-services-grid,
    .industries-grid,
    .projects-grid,
    .safety-grid,
    .waste-features {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 1rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-number {
        text-align: left;
        font-size: 2.5rem;
    }
    
    .step-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .image-stats {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 1rem;
        background: var(--deep-navy);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 320px;
        padding-top: 80px;
    }
    
    .page-hero-bg {
        background-attachment: scroll;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .cert-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .cert-badge {
        width: 100%;
        text-align: center;
    }
}