/* ========== SERVICES HERO BANNER ========== */

.services-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.services-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.services-hero .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.services-hero .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    font-weight: 300;
}

/* ========== PRICING SECTION ========== */

.pricing-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--secondary-color) 0%, #ffffff 100%);
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

/* Featured Card Badge */
.pricing-card.featured {
    background: #fafafa;
    border-color: rgba(212, 175, 55, 0.5);
}

.pricing-card.featured::before {
    content: attr(data-badge);
    position: absolute;
    top: 30px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 5px 30px;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

/* ========== LEGAL SECTION ========== */

.legal-section {
    padding: var(--section-padding);
    background-color: #ffffff;
}

.terms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

/* ========== RESPONSIVE - SERVICES SPECIFIC ========== */

@media (max-width: 768px) {
    .services-hero {
        height: 50vh;
        min-height: 300px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 4rem;
    }

    .pricing-card.featured::before {
        font-size: 0.5rem;
        padding: 4px 25px;
    }

    .terms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .card-price {
        font-size: 1.5rem;
    }
}