/* Service Detail Page Specific Styles */

/* Main container */
.service-detail-container {
    background-color: var(--light-bg);
}

/* Cards with white background */
.service-card-white {
    background: white !important;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card-white:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* Form inputs with white background and black text */
.form-control-white {
    background: white !important;
    color: black !important;
    border: 1px solid var(--border-color);
}

.form-control-white:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

/* Related services container */
.related-services-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Scrollbar styling */
.related-services-container::-webkit-scrollbar {
    width: 6px;
}

.related-services-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.related-services-container::-webkit-scrollbar-thumb {
    background: var(--warning);
    border-radius: 10px;
}

.related-services-container::-webkit-scrollbar-thumb:hover {
    background: #e0a800;
}

/* Service image */
.service-image-main {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Price tag */
.price-tag-badge {
    font-size: 1.25rem;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--warning) 0%, #e0a800 100%);
    color: black;
    border: none;
}

/* Related service item */
.related-service-item {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.related-service-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.related-service-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

/* Booking form sticky */
.booking-form-sticky {
    position: sticky;
    top: 100px;
    z-index: 100;
}

/* Make sure booking form stays above */
.z-index-100 {
    z-index: 100;
}

.z-index-50 {
    z-index: 50;
}

/* Text colors */
.text-dark-service {
    color: var(--text-dark) !important;
}

.text-dark-service h1,
.text-dark-service h2,
.text-dark-service h3,
.text-dark-service h4,
.text-dark-service h5,
.text-dark-service h6 {
    color: var(--text-dark);
}

/* List items */
.service-features-list li {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-features-list li:last-child {
    border-bottom: none;
}

/* Breadcrumb */
.breadcrumb-service {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}