/* Service Detail Page Styling */

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Modern minimalist button styling */
.btn {
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-primary {
    background-color: #212529;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(33, 37, 41, 0.1);
}

.btn-primary:hover {
    background-color: #1a1e21;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(33, 37, 41, 0.2);
}

.btn-outline {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    color: #6c757d;
}

.btn-outline:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
    color: #495057;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-ghost {
    background: none;
    border: none;
    color: #6c757d;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-ghost:hover {
    background-color: #f8f9fa;
    color: #495057;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* Breadcrumb styling */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    font-weight: bold;
}

.breadcrumb-item a {
    color: #212529;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #495057;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Service image container */
.service-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-image-container:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image:hover {
    transform: scale(1.05);
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

/* Service details styling */
.service-details {
    padding: 1rem 0;
}

.service-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
}

.popular-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.service-category {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
}

/* Service info cards */
.service-info {
    margin: 1.5rem 0;
}

.info-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    background: #e9ecef;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.info-card i {
    font-size: 1.5rem;
    display: block;
}

.info-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0.5rem 0 0.25rem 0;
}

.info-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Short description */
.short-description {
    margin: 1.5rem 0;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin: 0;
}

/* Action buttons */
.action-buttons {
    margin: 2rem 0;
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Service includes */
.service-includes {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #212529;
}

.includes-title {
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #495057;
}

/* Section styling */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #212529, #495057);
    border-radius: 2px;
}

.service-description-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.description-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
}

/* Option Selection Steps Styling */
.option-selection-steps {
    max-width: 800px;
    margin: 0 auto;
}

.option-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.option-card:hover {
    border-color: #212529;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.option-card.selected {
    border-color: #212529;
    background: #f8f9fa;
}

.option-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.option-card .option-content {
    flex: 1;
    min-width: 0;
}

.option-card .option-content h6 {
    color: #212529;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.option-card .option-content .text-muted {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.option-pricing {
    text-align: right;
    font-weight: 600;
    flex-shrink: 0;
}

.price-adjustment {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
    color: #212529;
    display: inline-block;
}

.price-adjustment.positive {
    color: #dc3545;
}

.price-adjustment.negative {
    color: #198754;
}

.selection-summary {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.breadcrumb-selection {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.breadcrumb-item {
    color: #6c757d;
    font-size: 0.875rem;
}

.breadcrumb-separator {
    color: #adb5bd;
}

.hidden {
    display: none !important;
}

/* No options section */
.no-options-section {
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.no-options-content {
    max-width: 450px;
    margin: 0 auto;
}

.no-options-content h3 {
    color: #212529;
    font-weight: 600;
}

.no-options-content .text-muted {
    font-size: 1.1rem;
    line-height: 1.6;
}

.text-primary {
    color: #212529 !important;
}

/* Related content styling */
.related-service-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.related-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-color: #212529;
}

.related-image {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-image:hover img {
    transform: scale(1.05);
}

.placeholder-image-small {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e9ecef;
}

.related-content {
    padding: 1rem;
}

.related-title {
    color: #212529;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-description {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.related-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.related-price {
    font-weight: 600;
    color: #212529;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    background-color: #ffffff;
    color: #6c757d;
}

.btn-sm:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
    color: #495057;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Call to action section */
.bg-light {
    background-color: #f8f9fa !important;
}

/* Subtle booking button styling */
.btn-dark {
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
    font-weight: 500;
}

.btn-dark:hover {
    background-color: #e9ecef;
    color: #343a40;
    border-color: #adb5bd;
    transform: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .service-image {
        height: 300px;
    }
    
    .placeholder-image {
        height: 300px;
    }
    
    .service-title {
        font-size: 1.75rem;
    }
    
    .no-options-section {
        padding: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .service-image {
        height: 250px;
    }
    
    .placeholder-image {
        height: 250px;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-description-section {
        padding: 1.5rem;
    }
    
    .related-service-card {
        padding: 0.75rem;
    }
    
    .option-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .option-pricing {
        text-align: left;
    }
    
    .no-options-section {
        padding: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
} 