/* Service Detail Page Styles */
:root {
    --primary: #d4af37;
    --primary-light: #f4d03f;
    --text-dark: #333;
    --text-light: #666;
    --border-light: #e9ecef;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Breadcrumb */
/* .breadcrumb-section {
    padding: 20px 0;
    background: var(--bg-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-light);
}

.breadcrumb i {
    font-size: 12px;
} */

/* Service Detail Grid */
.service-detail-section {
    padding: 60px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Service Images */
.service-images {
    position: sticky;
    top: 100px;
}

.main-service-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.main-service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.service-badges {
    position: absolute;
    top: 20px;
    left: 20px;
}

.badge {
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.popular {
    background: #e74c3c;
}

/* Service Gallery */
.service-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-thumb {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.gallery-thumb.active {
    border-color: var(--primary);
}

.gallery-thumb:hover {
    border-color: var(--primary-light);
}

.gallery-thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

/* Service Info */
.service-info {
    padding-left: 20px;
}

.service-category {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 15px 0 20px;
    line-height: 1.2;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: #ffc107;
    font-size: 18px;
}

.rating-text {
    color: var(--text-light);
    font-weight: 500;
}

.service-price {
    margin-bottom: 30px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.service-description h3,
.service-options h3,
.service-duration h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-description p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Service Options */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.option-name {
    font-weight: 500;
}

.option-price {
    color: var(--primary);
    font-weight: 600;
}

/* Duration */
.duration-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 30px;
}

.duration-info i {
    color: var(--primary);
    font-size: 18px;
}

/* Action Buttons */
.service-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--border-light);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
}

.feature-item i {
    color: var(--primary);
    font-size: 18px;
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Tabs Section */
.service-tabs-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid var(--border-light);
    margin-bottom: 40px;
    gap: 5px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 15px 25px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    font-size: 16px;
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tab Content */
.detail-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.process-steps {
    display: grid;
    gap: 25px;
}

.process-step {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.step-number {
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.5;
}

.aftercare-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.aftercare-list {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.aftercare-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.aftercare-item i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
}

.aftercare-item div h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.aftercare-item div p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Reviews */
.reviews-grid {
    display: grid;
    gap: 25px;
}

.review-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.review-date {
    font-size: 14px;
    color: var(--text-light);
}

.review-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.review-rating i {
    color: #ffc107;
    font-size: 16px;
}

.review-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* Related Services */
.related-services {
    padding: 60px 0;
}

.related-services h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card-content {
    padding: 20px;
}

.related-card-content h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.related-card-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.related-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-info {
        padding-left: 0;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        flex-wrap: wrap;
        gap: 0;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 120px;
        text-align: center;
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .service-images {
        position: static;
    }
}

@media (max-width: 480px) {
    .service-detail-section {
        padding: 30px 0;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .tab-btn {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .gallery-thumb img {
        height: 70px;
    }
}