/**
 * Service Details Page Styles
 */

/* Page Header */
.service-detail-header {
    background: linear-gradient(135deg, rgba(45, 90, 143, 0.95), rgba(233, 30, 99, 0.85)), 
                url('../assets/images/hero/slide1 new.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0 80px;
    text-align: center;
    color: white;
    position: relative;
}

.service-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.service-detail-header .container {
    position: relative;
    z-index: 2;
}

.service-detail-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-detail-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Detail Content */
.service-detail-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

/* Service Image */
.service-detail-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 100%;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
    display: block;
    transition: transform 0.4s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

/* Service Text Content */
.service-detail-text {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.detail-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.heading-decoration {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.heading-decoration .dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 50%;
}

.heading-decoration .line {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, #e91e63, #f06292);
    border-radius: 2px;
}

.detail-description {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.detail-description p {
    margin-bottom: 1.25rem;
}

.detail-description p:last-child {
    margin-bottom: 0;
}

/* Service Features Section */
.service-features {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #e91e63;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.2);
}

.feature-icon {
    font-size: 2rem;
    color: #e91e63;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.service-detail-content + .cta {
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-detail-header {
        padding: 80px 0 60px;
    }

    .service-detail-title {
        font-size: 2rem;
    }

    .service-detail-subtitle {
        font-size: 1rem;
    }

    .service-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-image img {
        min-height: 300px;
    }

    .service-detail-text {
        padding: 30px;
    }

    .detail-heading {
        font-size: 1.75rem;
    }

    .service-features {
        padding: 30px 20px;
    }

    .features-title {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .service-detail-title {
        font-size: 1.75rem;
    }

    .service-detail-text {
        padding: 20px;
    }

    .detail-heading {
        font-size: 1.5rem;
    }

    .detail-description {
        font-size: 1rem;
    }
}
