.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-bg) 100%);
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.page-hero h1 {
    color: var(--primary-color);
    font-size: 4rem;
    margin: 0 0 1rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    letter-spacing: 4px;
}

.page-hero p {
    color: var(--text-color);
    font-size: 1.2rem;
}

.services-section {
    padding: 6rem 0;
    background: var(--secondary-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.5),
        0 0 30px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-modal-content {
    max-width: 700px;
}

.service-detail h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.service-detail .service-price {
    background: var(--secondary-bg);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    border: 2px solid var(--border-color);
}

.service-detail .service-price .price-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-detail .service-price .price-value {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    letter-spacing: 2px;
}

.service-detail .service-description {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail .service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-detail .service-features li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    line-height: 1.6;
}

.service-detail .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
}

.service-detail .service-duration {
    background: var(--secondary-bg);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.service-detail .service-duration strong {
    color: var(--primary-color);
}

/* Contact Modal Styles */
#contactModal .social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

#contactModal .social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: var(--secondary-bg);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    font-weight: 600;
    border: 2px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

#contactModal .social-link i {
    font-size: 1.2rem;
    transition: var(--transition);
    min-width: 1.2rem;
}

#contactModal .social-link:hover {
    transform: translateX(10px);
}

#contactModal .social-link:hover i {
    transform: scale(1.2) rotate(10deg);
}

#contactModal .social-link.telegram:hover {
    background: linear-gradient(135deg, #0088cc, #00a0e9);
    color: var(--white);
    border-color: #0088cc;
}

#contactModal .social-link.vk:hover {
    background: linear-gradient(135deg, #0077ff, #0099ff);
    color: var(--white);
    border-color: #0077ff;
}

#contactModal .social-link.whatsapp:hover {
    background: linear-gradient(135deg, #25D366, #2ecc71);
    color: var(--white);
    border-color: #25D366;
}

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

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

    .service-detail h2 {
        font-size: 1.5rem;
    }

    .service-detail .service-price .price-value {
        font-size: 2rem;
    }
}
