/* ===== DETAIL PAGE STYLES ===== */

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: #f8f8f8;
}

.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

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

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

.breadcrumb li:not(:last-child)::after {
    content: '/';
    color: var(--gray-color);
}

.breadcrumb li:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

/* Service Overview */
.service-overview {
    padding: 80px 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overview-content .subtitle {
    font-size: 20px;
    color: var(--gray-color);
    margin-bottom: 30px;
    font-style: italic;
}

.overview-content > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background: linear-gradient(135deg, #fef9f0 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-box i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-box .stat-label {
    font-size: 12px;
    color: var(--gray-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.stat-box .stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef9f0 0%, #ffffff 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.3);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-color);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: white;
}

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

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
}

/* Price Section */
.price-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef9f0 0%, #ffffff 100%);
}

.price-table {
    max-width: 900px;
    margin: 50px auto 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.price-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%) !important;
    color: white !important;
    padding: 40px;
    text-align: center;
}

.price-header h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: white !important;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
    color: white !important;
}

.price-amount sup {
    font-size: 24px;
    color: white !important;
}

.price-note {
    font-size: 14px;
    opacity: 0.9;
    color: white !important;
}

.price-body {
    padding: 40px;
    color: var(--dark-color);
}

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

.price-includes li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: var(--dark-color);
}

.price-includes li:last-child {
    border-bottom: none;
}

.price-includes i {
    color: var(--primary-color);
    font-size: 20px;
}

.price-cta {
    padding: 0 40px 40px;
    text-align: center;
}

.btn-book-now {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-book-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.5);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: linear-gradient(135deg, #fef9f0 0%, #ffffff 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(212, 165, 116, 0.1);
}

.faq-question h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 0;
}

.faq-question i {
    font-size: 20px;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-color);
}

/* Related Services */
.related-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef9f0 0%, #ffffff 100%);
}

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

.related-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.3);
}

.related-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.related-info {
    padding: 25px;
}

.related-info h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.related-info p {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 15px;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(167, 49, 67, 0.98) 0%, rgba(196, 30, 58, 0.98) 50%, rgba(212, 165, 116, 0.98) 100%);
    padding: 20px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.sticky-cta-info {
    color: white;
}

.sticky-cta-info h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.sticky-cta-info p {
    font-size: 16px;
    opacity: 0.9;
}

.sticky-cta-buttons {
    display: flex;
    gap: 15px;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-cta-primary:hover {
    background: transparent;
    color: white;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 968px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-image {
        height: 400px;
    }
    
    .overview-content h1 {
        font-size: 36px;
    }
    
    .overview-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sticky-cta-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .sticky-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}
