/* Service Detail Page Styles */

/* Service Detail Page Styles */

/* Hero Section */
.service-detail-hero {
    padding: 100px 0 80px 0;
    background: linear-gradient(135deg, #003a66 0%, #002a4d 100%);
    position: relative;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="serviceDetailPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23serviceDetailPattern)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e12355 0%, #c41e4a 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(225, 35, 85, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7), 0 0 20px rgba(255,255,255,0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.text-gradient {
    background: linear-gradient(135deg, #e12355 0%, #c41e4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6), 0 0 15px rgba(255,255,255,0.2);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.btn-whatsapp-hero {
    background: linear-gradient(135deg, #e12355 0%, #c41e4a 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(225, 35, 85, 0.4);
}

.btn-whatsapp-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(225, 35, 85, 0.5);
    color: #ffffff;
}

.btn-call-hero {
    background: linear-gradient(135deg, #004d7a 0%, #003a66 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 58, 102, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-call-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 58, 102, 0.5);
    color: #ffffff;
}

/* Content Section */
.service-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.service-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contentPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contentPattern)"/></svg>');
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.content-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 58, 102, 0.1);
    border: 1px solid rgba(0, 58, 102, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 58, 102, 0.15);
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003a66;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    border-radius: 2px;
}

.content-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e12355;
    margin-bottom: 20px;
    margin-top: 40px;
    position: relative;
    padding-left: 20px;
}

.content-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #e12355 0%, #c41e4a 100%);
    border-radius: 2px;
}

.content-text {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.content-text:last-child {
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 58, 102, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 58, 102, 0.1);
    border-color: #003a66;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 58, 102, 0.3);
}

.feature-icon i {
    font-size: 24px;
    color: #ffffff;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #003a66;
    margin-bottom: 15px;
}

.feature-description {
    color: #374151;
    line-height: 1.6;
    font-weight: 500;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 30px;
    }
    
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .service-detail-hero {
        padding: 80px 0 60px 0;
    }
    
    .service-content-section {
        padding: 60px 0;
    }
    
    
    .hero-title {
        font-size: 2rem;
    }
    
    .content-title {
        font-size: 1.75rem;
    }
    
    
    .content-card {
        padding: 20px;
    }
}

/* Related Services Section */
.related-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.related-service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.related-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.related-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e12355 0%, #c41e4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.related-service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.related-service-description {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.related-service-link {
    color: #e12355;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.related-service-link:hover {
    color: #c41e4a;
    transform: translateX(5px);
}

/* Responsive adjustments for related services */
@media (max-width: 768px) {
    .related-services-section {
        padding: 60px 0;
    }
    
    .related-service-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .related-service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .related-service-title {
        font-size: 1.25rem;
    }
}
