/* ===================================
   Service Detail Page Styles
   ================================== */

.service-detail {
    padding: 5rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #0066CC, #00A3E0);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 2.5rem;
}

.service-detail-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin: 2.5rem 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-detail-content h3 i {
    color: #0066CC;
}

.service-list {
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
}

.service-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #E9ECEF;
    font-size: 1.125rem;
    color: #444444;
}

.service-list li strong {
    color: #000000;
    font-weight: 600;
}

/* Effect Cards with Background Images */
.effect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.effect-card {
    position: relative;
    background: #FFFFFF;
    border: 2px solid #E9ECEF;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.effect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    transition: all 0.3s ease;
    z-index: 0;
}

.effect-card:hover::before {
    opacity: 0.15;
    transform: scale(1.05);
}

.effect-card > * {
    position: relative;
    z-index: 1;
}

.effect-card i {
    font-size: 3rem;
    color: #0066CC;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.effect-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
}

.effect-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #444444;
    margin: 0;
}

.effect-card:hover {
    border-color: #0066CC;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.effect-card:hover i {
    transform: scale(1.1);
}

/* Info Box */
.info-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
}

.info-item strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1rem;
    color: #444444;
    margin: 0;
}

/* Customer Review Box */
.customer-review-box {
    background: linear-gradient(135deg, #4A90E2, #0066CC);
    color: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
}

.customer-review-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.customer-review-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.customer-review-box span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Sidebar */
.service-detail-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cta-box {
    background: linear-gradient(135deg, #0066CC, #00A3E0);
    color: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
}

.cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.service-menu {
    background: #FFFFFF;
    border: 2px solid #E9ECEF;
    border-radius: 15px;
    padding: 2rem;
}

.service-menu h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.service-menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    color: #444444;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.service-menu-item:hover {
    background: #F8F9FA;
    color: #0066CC;
}

.service-menu-item i {
    font-size: 1.5rem;
    color: #0066CC;
}

/* Responsive Service Detail */
@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .effect-grid {
        grid-template-columns: 1fr;
    }
    
    .info-box {
        grid-template-columns: 1fr;
    }
    
    .service-detail-content h2 {
        font-size: 2rem;
    }
    
    .service-detail-content h3 {
        font-size: 1.5rem;
    }
    
    .effect-card {
        min-height: 180px;
    }
    
    .service-detail {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .service-detail-content h2 {
        font-size: 1.75rem;
    }
    
    .service-detail-content h3 {
        font-size: 1.25rem;
    }
    
    .effect-card {
        padding: 1.5rem;
        min-height: 160px;
    }
    
    .effect-card i {
        font-size: 2.5rem;
    }
    
    .effect-card h4 {
        font-size: 1.125rem;
    }
}
