/* Service Page Specific Styles */

.cta-button-small {
    padding: 10px 24px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    transition: var(--transition);
}

.cta-button-small:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
}

/* Page Hero */
.page-hero {
    padding: 140px 0 80px;
    background: var(--bg-gradient);
    color: var(--text-light);
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    opacity: 0.8;
}

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

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

.page-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Service Overview */
.service-overview {
    padding: 100px 0;
}

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

.overview-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    padding-left: 32px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 18px;
}

.overview-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3/2;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Details */
.service-details {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.detail-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.detail-card.featured {
    border: 2px solid var(--accent-gold);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.detail-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.detail-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.detail-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.price-tag {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-display);
}

/* Process Timeline */
.service-process {
    padding: 100px 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    top: 40px;
    right: -20px;
    font-size: 24px;
    color: var(--accent-gold);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-gradient);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-display);
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--bg-gradient);
    text-align: center;
    color: var(--text-light);
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 500;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-overview,
    .service-details,
    .service-process,
    .cta-section {
        padding: 60px 0;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        content: '↓';
        top: auto;
        bottom: -30px;
        right: 50%;
        transform: translateX(50%);
    }
}
