/* ===================================
   SERVICE PAGES - Additional Styles
   =================================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 140px 0 80px;
    color: var(--white);
}

.breadcrumb-nav {
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary-yellow) !important;
}

/* Service Details Section */
.service-details-section {
    background: var(--white);
}

.service-details-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
}

.service-details-section .lead {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.service-details-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.service-feature i {
    font-size: 1.2rem;
}

.service-feature span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Common Issues Section */
.common-issues-section {
    background: var(--light-gray);
}

.issue-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.issue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-yellow);
}

.issue-icon {
    font-size: 3.5rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.issue-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.issue-card p {
    color: var(--text-light);
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--white);
}

.why-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background: var(--white);
}

.why-icon {
    font-size: 3.5rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.why-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Alert Customization */
.alert-warning {
    background: var(--primary-yellow);
    border: none;
    color: var(--primary-black);
    padding: 30px;
    border-radius: 15px;
}

.alert-warning .alert-heading {
    color: var(--primary-black);
    font-weight: 700;
}

/* Responsive Design for Service Pages */
@media (max-width: 991px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-details-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 110px 0 50px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .service-details-section,
    .common-issues-section,
    .why-choose-section {
        padding: 60px 0 !important;
    }
    
    .issue-card,
    .why-card {
        padding: 25px;
    }
    
    .issue-icon,
    .why-icon {
        font-size: 3rem;
    }
}

@media (max-width: 575px) {
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .service-details-section h2 {
        font-size: 1.75rem;
    }
    
    .issue-card h3,
    .why-card h3 {
        font-size: 1.1rem;
    }
    
    .alert-warning {
        padding: 20px;
    }
}

/* Animation delays for staggered effect */
.issue-card:nth-child(1) { animation-delay: 0.1s; }
.issue-card:nth-child(2) { animation-delay: 0.2s; }
.issue-card:nth-child(3) { animation-delay: 0.3s; }
.issue-card:nth-child(4) { animation-delay: 0.4s; }
.issue-card:nth-child(5) { animation-delay: 0.5s; }
.issue-card:nth-child(6) { animation-delay: 0.6s; }

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.4s; }

/* Why Choose Carousel for Mobile */
@media (max-width: 767px) {
    .why-choose-section .row {
        overflow-x: auto;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .why-choose-section .row::-webkit-scrollbar {
        display: none;
    }
    
    .why-choose-section .col-md-6.col-lg-3 {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
    }
    
    .why-card {
        height: 100%;
        margin: 0 10px;
    }
}