/* Services Page Styles */

.services-hero {
    position: relative;
    padding: 200px 0 120px;
    text-align: center;
    overflow: hidden;
}

.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* ADD YOUR SERVICES HERO BACKGROUND IMAGE HERE */
    /* background-image: url('services-hero-image.jpg'); */
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

.services-hero .container {
    position: relative;
    z-index: 10;
}

/* Plans Section */
.plans-section {
    padding: 120px 0;
    background: var(--color-white);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.plan-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: 16px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
}

.plan-card:hover {
    border-color: var(--color-black);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.plan-card.featured {
    border-color: var(--color-black);
    background: linear-gradient(135deg, #000 0%, #1f1f1f 100%);
    color: var(--color-white);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-gray-900);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 24px;
    width: fit-content;
}

.plan-badge.popular {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.plan-card.featured .plan-badge {
    background: var(--color-white);
    color: var(--color-black);
}

.plan-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-gray-900);
}

.plan-card.featured .plan-title {
    color: var(--color-white);
}

.plan-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-gray-200);
}

.plan-card.featured .plan-price {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 8px;
}

.plan-card.featured .price-amount {
    color: var(--color-white);
}

.price-label {
    font-size: 14px;
    color: var(--color-gray-600);
    letter-spacing: 0.3px;
}

.plan-card.featured .price-label {
    color: rgba(255, 255, 255, 0.7);
}

.plan-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-gray-600);
    margin-bottom: 32px;
}

.plan-card.featured .plan-description {
    color: rgba(255, 255, 255, 0.8);
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.plan-features li {
    font-size: 15px;
    color: var(--color-gray-700);
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.plan-card.featured .plan-features li {
    color: rgba(255, 255, 255, 0.9);
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-black);
    font-weight: 700;
}

.plan-card.featured .plan-features li::before {
    color: var(--color-white);
}

.full-width {
    width: 100%;
    justify-content: center;
}

.plan-card.featured .btn-dark {
    background: var(--color-white);
    color: var(--color-black);
}

.plan-card.featured .btn-dark:hover {
    background: var(--color-gray-100);
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background: var(--color-gray-50);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.process-step {
    text-align: center;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-gray-300);
    margin-bottom: 24px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-gray-900);
}

.step-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-gray-600);
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: var(--color-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.benefit-card {
    background: var(--color-gray-50);
    padding: 40px 32px;
    border-radius: 12px;
    transition: all 0.3s var(--ease-smooth);
}

.benefit-card:hover {
    background: var(--color-white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-gray-900);
}

.benefit-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-gray-600);
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: var(--color-gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.faq-item {
    background: var(--color-white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--color-gray-200);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-gray-900);
}

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray-600);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #000 0%, #1f1f1f 100%);
    color: var(--color-white);
    text-align: center;
}

.cta-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: 14px 46px;
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
}

/* Responsive */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .plan-card.featured:hover {
        transform: scale(1) translateY(-8px);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 150px 0 80px;
    }
    
    .plans-section,
    .process-section,
    .benefits-section,
    .faq-section,
    .cta-section {
        padding: 80px 0;
    }
    
    .process-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
