/* ========================================
   PROFESSIONAL SERVICES PAGE STYLING
   - Service Detail Sections
   - Additional Services Grid
   - Enhanced Badges and Highlights
   ======================================== */

/* ========================================
   SERVICE DETAIL SECTIONS
   ======================================== */

.service-detail-pro {
    position: relative;
    overflow: hidden;
}

.service-detail-grid-pro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-grid-pro.reverse {
    direction: rtl;
}

.service-detail-grid-pro.reverse > * {
    direction: ltr;
}

.service-detail-image-pro {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 600px;
    min-height: 500px;
}

.service-detail-image-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .service-detail-image-pro {
        max-height: 350px;
        min-height: 300px;
    }
}

.service-quality-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #0066cc;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.service-quality-badge.emergency-badge {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
}

.service-quality-badge.popular-badge {
    background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
    color: white;
}

.service-quality-badge.recommended-badge {
    background: linear-gradient(135deg, #00cc66 0%, #009944 100%);
    color: white;
}

.service-quality-badge i {
    font-size: 16px;
}

.service-detail-content-pro {
    padding: 20px 0;
}

.service-badge-pro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.service-badge-pro.emergency {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
}

.service-badge-pro.popular {
    background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
}

.service-badge-pro.recommended {
    background: linear-gradient(135deg, #00cc66 0%, #009944 100%);
}

.service-badge-pro i {
    font-size: 18px;
}

.service-detail-content-pro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lead-pro {
    font-size: 20px;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-detail-content-pro > p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Service Highlights */
.service-highlights-pro {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    border-radius: 15px;
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #0066cc;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

.highlight-item i {
    font-size: 18px;
}

/* Service Features */
.service-features-pro {
    margin: 30px 0;
}

.service-features-pro h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.check-list-pro {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list-pro li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.check-list-pro li:last-child {
    border-bottom: none;
}

.check-list-pro li:hover {
    padding-left: 10px;
    background: rgba(0, 102, 204, 0.02);
}

.check-list-pro li i {
    color: #00cc66;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.check-list-pro li span {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Service CTA Buttons */
.service-cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn-primary-pro,
.btn-secondary-pro {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary-pro {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.btn-primary-pro:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
}

.btn-secondary-pro {
    background: white;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-secondary-pro:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

/* ========================================
   ADDITIONAL SERVICES SECTION
   ======================================== */

.additional-services-pro {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.additional-services-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.additional-service-card-pro {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.additional-service-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #00ccff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.additional-service-card-pro:hover::before {
    transform: scaleX(1);
}

.additional-service-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.15);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e6f2ff 0%, #cce5ff 100%);
    color: #0066cc;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.additional-service-card-pro:hover .service-icon-wrapper {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    transform: rotateY(360deg) scale(1.1);
}

.additional-service-card-pro h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.additional-service-card-pro p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #0066cc;
    font-size: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.additional-service-card-pro:hover .service-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Additional Services CTA */
.additional-services-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
}

.additional-services-cta .cta-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.additional-services-cta .btn-primary-pro {
    background: white;
    color: #0066cc;
}

.additional-services-cta .btn-primary-pro:hover {
    transform: translateY(-5px) scale(1.05);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .service-detail-grid-pro {
        gap: 40px;
    }

    .service-detail-content-pro h2 {
        font-size: 32px;
    }

    .lead-pro {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .service-detail-grid-pro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-grid-pro.reverse {
        direction: ltr;
    }

    .service-quality-badge {
        top: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 13px;
    }

    .service-detail-content-pro h2 {
        font-size: 28px;
    }

    .lead-pro {
        font-size: 17px;
    }

    .service-highlights-pro {
        flex-direction: column;
        gap: 15px;
    }

    .highlight-item {
        width: 100%;
        justify-content: center;
    }

    .service-cta-buttons {
        flex-direction: column;
    }

    .btn-primary-pro,
    .btn-secondary-pro {
        width: 100%;
        justify-content: center;
    }

    .additional-services-grid-pro {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .service-badge-pro {
        padding: 8px 18px;
        font-size: 13px;
    }

    .service-detail-content-pro h2 {
        font-size: 24px;
    }

    .lead-pro {
        font-size: 16px;
    }

    .service-features-pro h3 {
        font-size: 20px;
    }

    .check-list-pro li {
        gap: 12px;
    }

    .check-list-pro li i {
        font-size: 16px;
    }

    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .additional-service-card-pro h3 {
        font-size: 20px;
    }

    .additional-services-cta .cta-text {
        font-size: 16px;
    }
}

/* ========================================
   MAINTENANCE SLIDER PROFESSIONAL FEATURES
   ======================================== */

.maintenance-slider-container.professional-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
    min-height: 500px;
}

.maintenance-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.maintenance-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.maintenance-slide.active {
    opacity: 1;
    z-index: 1;
}

.maintenance-slide:last-child {
    padding: 0;
}

.maintenance-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.maintenance-slide:last-child img {
    border-radius: 0;
    box-shadow: none;
}

.maintenance-slide.active img {
    transform: scale(1.05);
}

.slide-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.slide-info-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.maintenance-slide.active .slide-info-card {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #0099ff, #00d4ff);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 153, 255, 0.3);
}

.info-badge i {
    font-size: 14px;
}

.slide-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a1929;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.slide-info-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.slide-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(0, 153, 255, 0.1);
    border: 1px solid rgba(0, 153, 255, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #0066ff;
    transition: all 0.3s ease;
}

.stat-pill:hover {
    background: rgba(0, 153, 255, 0.15);
    border-color: rgba(0, 153, 255, 0.4);
    transform: translateY(-2px);
}

.stat-pill i {
    font-size: 13px;
}

/* Progress Bar */
.slider-progress-bar {
    position: absolute;
    bottom: 60px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    z-index: 3;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #0099ff);
    border-radius: 2px;
    width: 0%;
    transition: width 5s linear;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

/* Enhanced Dots with Labels */
.maintenance-slider-container .slider-dots {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
}

.maintenance-slider-container .dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.maintenance-slider-container .dot:hover {
    background: rgba(0, 153, 255, 0.5);
    transform: scale(1.2);
}

.maintenance-slider-container .dot.active {
    background: linear-gradient(135deg, #0099ff, #00d4ff);
    border-color: rgba(0, 153, 255, 0.3);
    box-shadow: 0 0 12px rgba(0, 153, 255, 0.6);
}

.dot-label {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.maintenance-slider-container .dot:hover .dot-label,
.maintenance-slider-container .dot.active .dot-label {
    opacity: 1;
    top: 24px;
}

.maintenance-slider-container .dot.active .dot-label {
    color: #0099ff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .slide-info-card {
        padding: 16px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .slide-info-card h3 {
        font-size: 18px;
    }
    
    .slide-info-card p {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .stat-pill {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .slider-progress-bar {
        bottom: 50px;
        left: 15px;
        right: 15px;
    }
    
    .dot-label {
        display: none;
    }
}

