/* Premium Service Detail Pages Styles */

/* Service Hero Section */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: url('../images/hero-bh.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    margin-top: var(--navbar-height);
    overflow: hidden;
    border-radius: 0 0 80px 0;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    z-index: 1;
}

.service-hero::after {
    display: none;
}

.service-hero-overlay {
    display: none;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

.service-hero-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    letter-spacing: var(--letter-spacing-tight);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-hero-description {
    font-size: var(--font-size-md);
    color: var(--text-light-bright);
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-light);
    max-width: 800px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Service Content Section */
.service-content-section {
    background: var(--accent-beige);
    padding: var(--spacing-5xl) 0;
    position: relative;
}

.service-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-2xl);
}

.service-main-content {
    background: var(--text-light);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
}

.service-main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.service-main-content img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-slow);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-main-content img:hover {
    transform: scale(1.02);
}

.service-content-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height-snug);
    letter-spacing: var(--letter-spacing-tight);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.service-content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: var(--radius-full);
}

.service-content-text {
    font-size: var(--font-size-base);
    color: var(--text-muted);
    line-height: var(--line-height-loose);
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-light);
}

.service-benefits {
    margin-top: var(--spacing-lg);
}

.service-benefits h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-xl);
    letter-spacing: var(--letter-spacing-tight);
}

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

.service-benefits li {
    font-size: var(--font-size-base);
    color: var(--text-muted);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-sm);
    padding-left: 36px;
    position: relative;
    font-weight: var(--font-weight-light);
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.05) 100%);
    color: var(--accent-gold-dark);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.service-cta-card {
    background: var(--primary-bg);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.service-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
    border-radius: var(--radius-full);
}

.service-cta-card h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    letter-spacing: var(--letter-spacing-tight);
    position: relative;
    z-index: 1;
}

.service-cta-card p {
    font-size: var(--font-size-sm);
    color: var(--text-light-faint);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-light);
    position: relative;
    z-index: 1;
}

.service-cta-button {
    background: var(--text-light);
    color: var(--primary-bg);
    border: none;
    padding: 14px var(--spacing-lg);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-wide);
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: all var(--transition-medium);
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition-medium);
}

.service-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.service-cta-button:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.service-info-card {
    background: var(--text-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201, 169, 97, 0.1);
    transition: all var(--transition-medium);
}

.service-info-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold-light);
}

.service-info-card h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: var(--letter-spacing-tight);
}

.service-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.service-info-item:hover {
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.05) 0%, transparent 100%);
}

.service-info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-gold-dark);
}

.service-info-item span {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-light);
}

/* Related Services Section */
.related-services-section {
    background: var(--accent-cream);
    padding: var(--spacing-5xl) 0;
    position: relative;
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    letter-spacing: var(--letter-spacing-tight);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: var(--radius-full);
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.related-service-card {
    background: var(--text-light);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-medium);
    text-decoration: none;
    display: block;
    border: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
    overflow: hidden;
}

.related-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.related-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold-light);
}

.related-service-card:hover::before {
    transform: scaleX(1);
}

.related-service-card h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    letter-spacing: var(--letter-spacing-tight);
    transition: color var(--transition-fast);
}

.related-service-card:hover h3 {
    color: var(--accent-gold-dark);
}

.related-service-card p {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .related-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        height: 45vh;
        min-height: 350px;
    }

    .service-hero-title {
        font-size: var(--font-size-3xl);
    }

    .service-hero-description {
        font-size: var(--font-size-base);
    }

    .service-content-grid {
        grid-template-columns: 1fr;
    }

    .service-main-content {
        padding: var(--spacing-xl);
    }

    .related-services-grid {
        grid-template-columns: 1fr;
    }

    .service-content-section,
    .related-services-section {
        padding: var(--spacing-3xl) 0;
    }
}