/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-navy) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.services-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    padding: 80px 0;
    background: var(--gray-100);
}

.services-grid .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
}

/* Вся картка клікабельна */
.service-card .card-stretch-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 20px;
    font-size: 0;
    text-indent: -9999px;
}
.service-card .btn-service { position: relative; z-index: 2; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.service-features li {
    padding: 5px 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.btn-service {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 165, 114, 0.4);
    color: white;
    text-decoration: none;
}

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

    .services-hero {
        padding: 60px 0;
    }

    .services-grid {
        padding: 60px 0;
    }

    .service-card {
        margin-bottom: 30px;
    }
}
