/* Service Detail Page Styles */
.service-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-navy) 100%);
    padding: 100px 0 80px;
    color: white;
}

.service-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.service-breadcrumb {
    margin-bottom: 30px;
    opacity: 0.8;
}

.service-breadcrumb a {
    color: var(--primary-gold);
    text-decoration: none;
}

.service-breadcrumb span {
    margin: 0 10px;
    opacity: 0.6;
}

.service-hero-content {
    max-width: 800px;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.service-details {
    padding: 80px 0;
    background: white;
}

.service-details .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.service-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 40px;
}

.service-features-box {
    background: var(--gray-100);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.service-features-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.service-features-list {
    list-style: none;
    padding: 0;
}

.service-features-list li {
    padding: 10px 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price-box {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.service-price-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
}

.service-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.service-price-note {
    opacity: 0.8;
    font-size: 0.9rem;
}

.other-services {
    background: var(--gray-100);
    padding: 80px 0;
}

.other-services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    text-align: center;
    margin-bottom: 50px;
}

.related-service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.related-service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.related-service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.related-service-description {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.btn-outline-gold {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 165, 114, 0.4);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }

    .service-hero {
        padding: 80px 0 60px;
    }

    .service-details,
    .other-services {
        padding: 60px 0;
    }

    .related-service-card {
        margin-bottom: 30px;
    }
}
