/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    padding: 5rem 0;
    margin: 4rem 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.step-number {
    background: linear-gradient(135deg, #0EA5E9, #14B8A6);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step p {
    color: var(--gray);
    line-height: 1.8;
}

/* Pricing Section */
.pricing-section {
    background: white;
    padding: 5rem 0;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.price-card {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: #0EA5E9;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.15);
    transform: translateY(-5px);
}

.price-card.featured {
    border-color: #0EA5E9;
    border-width: 3px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    position: relative;
}

.price-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0EA5E9, #14B8A6);
    color: white;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #0EA5E9;
    margin-bottom: 1rem;
    display: block;
}

.price-card p {
    color: var(--gray);
    line-height: 1.6;
}

.pricing-note {
    text-align: center;
    max-width: 800px;
    margin: 1.5rem auto;
    padding: 1rem 2rem;
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    border-radius: 8px;
    color: #92400E;
}

/* Services Grid */
.services-section {
    padding: 5rem 0;
    background: #F9FAFB;
}

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

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.services-intro .lead {
    font-size: 1.25rem;
    color: var(--gray);
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #0EA5E9;
}

.service-card.featured {
    border-color: #0EA5E9;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    position: relative;
}

.service-card.featured::after {
    content: "⭐";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.service-description {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
}

.service-cta {
    margin-top: auto;
}

.service-cta .btn,
.service-cta .btn-primary,
.service-cta .btn-outline {
    background: linear-gradient(135deg, #14B8A6, #059669) !important;
    color: white !important;
    border: none !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-cta .btn:hover,
.service-cta .btn-primary:hover,
.service-cta .btn-outline:hover {
    background: linear-gradient(135deg, #0D9488, #047857) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0EA5E9, #14B8A6);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #0EA5E9;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1E40AF, #0EA5E9);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section a {
    color: #9CA3AF;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .how-it-works h2,
    .pricing-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}
