/* Emergency Plumbing Page */
.service-page {
    background-color: #fff6f5;
    min-height: 100vh;
    padding: 80px 60px;
}

.service-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.service-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-hero.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #d62828;
    font-size: 14px;
}

.service-title {
    font-size: 48px;
    font-weight: 700;
    color: #2b2d42;
    margin: 18px 0;
    line-height: 1.2;
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4e69;
}

.service-bullets {
    margin: 30px 0 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
}

.service-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #2b2d42;
}

.service-bullets i {
    color: #d62828;
    font-size: 16px;
}

.service-hero-visual {
    position: relative;
}

.service-hero-visual img.primary-image {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 18px 45px rgba(214, 40, 40, 0.2);
}

.service-hero-badge {
    position: absolute;
    bottom: -25px;
    right: 30px;
    background-color: white;
    padding: 22px 26px;
    border-radius: 14px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-hero-badge strong {
    font-size: 32px;
    color: #d62828;
}

.service-hero-badge span {
    font-size: 14px;
    color: #4a4e69;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.service-detail-card {
    background-color: white;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-detail-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-detail-card h3 {
    margin: 0;
    font-size: 22px;
    color: #2b2d42;
}

.service-detail-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #4a4e69;
}

.service-detail-card ul {
    margin: 0;
    padding-left: 18px;
    color: #2b2d42;
    font-size: 14px;
    line-height: 1.6;
}

.service-process {
    background: linear-gradient(135deg, #d62828 0%, #ef476f 100%);
    border-radius: 16px;
    padding: 45px 50px;
    color: white;
    box-shadow: 0 20px 55px rgba(214, 40, 40, 0.25);
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.service-process-header h2 {
    margin: 0 0 10px 0;
    font-size: 34px;
}

.service-process-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.service-process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-process-card {
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-process-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-process-step {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.service-process-card h4 {
    margin: 0;
    font-size: 18px;
    color: white;
}

.service-process-card p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.service-cta {
    background: linear-gradient(135deg, #d62828 0%, #ef476f 100%);
    color: white;
    border-radius: 16px;
    padding: 40px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    box-shadow: 0 22px 55px rgba(214, 40, 40, 0.25);
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-cta.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-cta h3 {
    margin: 0 0 10px 0;
    font-size: 28px;
}

.service-cta p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.service-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 8px;
    background-color: white;
    color: #d62828;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(239, 71, 111, 0.35);
}

@media (max-width: 1200px) {
    .service-hero {
        grid-template-columns: 1fr;
    }

    .service-hero-visual {
        order: -1;
    }

    .service-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-page {
        padding: 60px 25px;
    }

    .service-container {
        gap: 50px;
    }

    .service-title {
        font-size: 36px;
    }

    .service-bullets {
        grid-template-columns: 1fr;
    }

    .service-details {
        grid-template-columns: 1fr;
    }

    .service-process-steps {
        grid-template-columns: 1fr;
    }

    .service-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .service-page {
        padding: 50px 20px;
    }

    .service-title {
        font-size: 32px;
    }
}
