/* Pricing Page Styles */
.pricing-title {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    margin: 0 auto;
    width: 100%;
}

.pricing-title:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary);
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 2rem;
    text-align: center;
    color: white;
    position: relative;
}

.pricing-icon {
    background: white;
    color: var(--primary);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.pricing-card-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.pricing-card-body {
    padding: 2rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-note {
    padding: 0 2rem 2rem;
    color: var(--gray);
    font-size: 0.875rem;
    font-style: italic;
}

/* Services */
.services-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    background: var(--light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.25rem;
}

.service-details p {
    color: var(--gray);
    margin: 0;
    font-size: 0.875rem;
}

.service-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.5rem;
}

/* Contact Buttons */
.contact-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(93, 95, 239, 0.3), 0 1px 3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.contact-button:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(93, 95, 239, 0.4), 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Pricing Images */
.pricing-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 1rem 1rem 0 0;
}

.pricing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.pricing-image:hover .pricing-img {
    transform: scale(1.05);
}

/* Desktop Optimization */
@media (min-width: 1024px) {
    .pricing-image {
        height: 200px;
    }

    .pricing-card {
        max-width: 90%;
        margin: 0 auto;
    }

    .pricing-title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .pricing-card-header {
        padding: 1.5rem;
    }

    .pricing-card-body, .pricing-note {
        padding: 1.5rem;
    }

    .service-item {
        padding: 1rem;
    }

    .service-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-right: 1rem;
    }

    .service-details h3 {
        font-size: 1.125rem;
    }

    .service-price {
        font-size: 1.125rem;
    }
}
