/* Service Page Specific Styles */
.service-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(10, 10, 10, 0.95));
    z-index: -1;
}

.service-hero-content {
    text-align: center;
    padding: 3rem 1rem;
}

.service-hero-content .section-tag {
    margin-bottom: 1rem;
}

.service-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-hero-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    transition: gap 0.3s;
}

.back-link:hover {
    gap: 0.75rem;
}

/* Service Details */
.service-details {
    padding: 4rem 0;
}

.service-card-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--color-bg-card);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid var(--color-border);
}

.service-card-detail.reverse {
    flex-direction: column;
}

.service-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card-detail:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-text {
    padding: 1.5rem;
}

.service-card-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-card-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Additional Info */
.additional-info {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.additional-info h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.additional-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.service-cta {
    text-align: center;
    padding: 3rem 0;
}

.service-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-cta p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (min-width: 768px) {
    .service-hero-content h1 {
        font-size: 3.5rem;
    }

    .service-card-detail {
        flex-direction: row;
    }

    .service-card-detail.reverse {
        flex-direction: row-reverse;
    }

    .service-card-image {
        width: 40%;
        height: auto;
        min-height: 300px;
    }

    .service-card-text {
        flex: 1;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .service-card-text h3 {
        font-size: 1.75rem;
    }
}