/* Janitorial Services Page Styles */
/* ========================================= */

@import url('design-tokens.css');

/* Hero Section */
.janitorial-hero {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.janitorial-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #03143A 0%, #162E73 35%, #7A0832 70%, #C70532 100%);
    z-index: 1;
}

.janitorial-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
    z-index: 1;
}

.janitorial-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.janitorial-hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.janitorial-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 300;
}

.janitorial-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Section */
.janitorial-services-section {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.janitorial-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 16px 40px rgba(199, 5, 50, 0.15);
    transform: translateY(-8px);
    border-color: rgba(199, 5, 50, 0.2);
}

.service-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #F3E5F5 0%, #E8D5F2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(199, 5, 50, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    z-index: 1;
}

.service-card-image svg {
    width: 60px;
    height: 60px;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
}

.service-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.service-card-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: auto;
}

/* Why Choose Prime Section */
.why-choose-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #F3F6FA 100%);
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-choose-image {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-text {
    padding: 2rem 0;
}

.why-choose-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.benefits-list {
    list-style: none;
    margin-bottom: 3rem;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--color-text-primary);
}

.benefits-list li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: 800;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--color-primary);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    font-weight: 600;
}

/* Industries We Serve Section */
.industries-section {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.industries-container {
    max-width: 1200px;
    margin: 0 auto;
}

.industries-header {
    text-align: center;
    margin-bottom: 4rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #E5E7EB;
}

.industry-card:hover {
    box-shadow: 0 16px 40px rgba(199, 5, 50, 0.15);
    transform: translateY(-8px);
    background: linear-gradient(135deg, #FAFBFC 0%, #F8FAFC 100%);
}

.industry-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.industry-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

/* Cleaning Process Section */
.cleaning-process-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #F3F6FA 100%);
}

.cleaning-process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 50%, transparent 50%, transparent 100%);
    display: none;
}

.process-step {
    text-align: center;
    position: relative;
    padding-top: 2rem;
}

.process-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(199, 5, 50, 0.25);
}

.process-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

/* Equipment & Products Section */
.equipment-section {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.equipment-container {
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.equipment-image {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-list {
    list-style: none;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--color-text-primary);
    font-weight: 500;
}

.equipment-item::before {
    content: '•';
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Service Coverage Section - Reused from Contact */
.coverage-section {
    position: relative;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F3F6FA 100%);
}

.coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 5% 50%, rgba(199, 5, 50, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 95% 50%, rgba(37, 99, 235, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.coverage-container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
}

.coverage-header {
    text-align: center;
    margin-bottom: 4rem;
}

.coverage-section .section-title {
    color: #03143A;
    position: relative;
    z-index: 2;
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.5px;
}

.coverage-section .section-subtitle {
    color: #5B6B7F;
    position: relative;
    z-index: 2;
    font-size: 1.15rem;
    font-weight: 500;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 3rem;
}

.coverage-map-wrapper {
    width: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(199, 5, 50, 0.1);
    background: white;
    aspect-ratio: 16 / 14;
    max-width: 80%;
    margin: 0 auto;
}

.coverage-map {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    padding: 1.5rem;
}

.coverage-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199, 5, 50, 0.01) 0%, rgba(37, 99, 235, 0.01) 100%);
    pointer-events: none;
    z-index: 2;
}

.service-coverage-map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    position: relative;
    z-index: 3;
}

.coverage-cities-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 0;
}

.sidebar-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #03143A;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.coverage-city-card {
    padding: 2.5rem;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.coverage-city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #C70532 0%, #E63A6B 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.coverage-city-card:hover {
    box-shadow: 0 12px 35px rgba(199, 5, 50, 0.12);
    transform: translateY(-6px);
    border-color: rgba(199, 5, 50, 0.2);
    background: #FAFBFC;
}

.coverage-city-card:hover::before {
    transform: scaleY(1);
}

.city-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.city-marker-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.85rem;
    color: white;
    flex-shrink: 0;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 20px rgba(199, 5, 50, 0.25);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #C70532 0%, #E63A6B 100%);
}

.coverage-city-card:hover .city-marker-badge {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(199, 5, 50, 0.35);
}

.city-card-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #03143A;
    letter-spacing: -0.3px;
    margin-bottom: 0.5rem;
}

.city-card-desc {
    font-size: 1rem;
    color: #3B4552;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.city-card-highlight {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #C70532;
    padding: 0.5rem 1rem;
    background: rgba(199, 5, 50, 0.08);
    border-radius: 8px;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-list {
    list-style: none;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-question {
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    padding: 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 1.05rem;
}

.faq-question:hover {
    background: #F3F6FA;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question.active {
    background: linear-gradient(135deg, rgba(199, 5, 50, 0.08), rgba(37, 99, 235, 0.08));
    border-color: var(--color-primary);
}

.faq-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: #FAFBFC;
    border: 1px solid #E5E7EB;
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin-top: -1px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.faq-answer.active {
    display: block;
}

/* Final CTA Section */
.cta-final-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(90deg, #03143A 0%, #162E73 35%, #7A0832 70%, #C70532 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.cta-final-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-final-title {
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-final-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background: #A70428;
    box-shadow: 0 12px 30px rgba(199, 5, 50, 0.3);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--color-primary);
    border-color: white;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .janitorial-hero {
        height: 400px;
    }

    .janitorial-hero-title {
        font-size: 2rem;
    }

    .janitorial-hero-subtitle {
        font-size: 1rem;
    }

    .janitorial-hero-buttons {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .equipment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .coverage-content-wrapper {
        grid-template-columns: 1fr;
    }

    .coverage-map-wrapper {
        max-width: 100%;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-final-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .janitorial-services-section,
    .why-choose-section,
    .industries-section,
    .cleaning-process-section,
    .equipment-section,
    .faq-section,
    .cta-final-section {
        padding: 3rem 1rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .janitorial-hero-title {
        font-size: 1.5rem;
    }
}
