/* Service Pages */
.service-header {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(120deg, rgba(13, 43, 69, 0.9), rgba(0, 0, 0, 0.8)),
        url('../images/vivoz_musora/vivoz_musora_main.jpg') no-repeat center center/cover;
    color: var(--header-text);
}

.service-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 10;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.service-image .image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-image img:hover {
    transform: scale(1.03);
}

.work-steps {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
    margin: var(--spacing-lg) 0;
}

.work-steps li {
    counter-increment: step-counter;
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-left: 2.5rem;
}

.work-steps li::before {
    content: counter(step-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.price-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.price-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

@media (max-width: 768px) {
    .price-card.featured {
        transform: scale(1);
    }
    .price-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }
}

.price-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-header {
    text-align: center;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: var(--spacing-md);
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-features {
    flex-grow: 1;
    margin-bottom: var(--spacing-lg);
}

.price-features li {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    align-items: flex-start;
}

.price-features i {
    color: var(--primary);
    margin-top: 5px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.price-note {
    margin-top: var(--spacing-lg);
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: var(--spacing-sm);
    text-align: center;
    font-weight: 500;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: var(--spacing-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    cursor: pointer;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        order: -1;
        margin-bottom: var(--spacing-lg);
    }
}