/* Services Page Styles */

/* Hero */
.services-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(30, 41, 59, 0.75)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding-top: 100px;
    overflow: hidden;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.2);
    z-index: 0;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.services-hero-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: var(--blue-light);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.services-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.services-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.services-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-hero {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.btn-outline-hero:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
}

/* Services Main */
.services-main {
    background: linear-gradient(rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.88)),
                url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.service-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.service-content p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--blue-light);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-light);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-btn:hover {
    color: white;
    gap: 0.8rem;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.92)),
                url('https://images.unsplash.com/photo-1540497077202-7c8a3999166f?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
}

.steps-grid {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.3);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.6;
}

.step-divider {
    color: rgba(59, 130, 246, 0.5);
    font-size: 1.5rem;
    padding: 0 0.5rem;
    flex-shrink: 0;
}

/* Pricing */
.pricing-section {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.pricing-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.pricing-card.featured {
    border-color: rgba(59, 130, 246, 0.6);
    background: rgba(30, 64, 175, 0.3);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

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

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    padding: 0.3rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-light);
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.pricing-features li i.fa-check {
    color: #22c55e;
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: rgba(255,255,255,0.3);
}

.pricing-features li.disabled i.fa-times {
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.btn-outline-pricing {
    background: transparent;
    color: var(--blue-light);
    border: 2px solid rgba(59, 130, 246, 0.5);
    width: 100%;
    justify-content: center;
}

.btn-outline-pricing:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--blue-bright);
    color: white;
}

.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Responsive */
@media (max-width: 968px) {
    .services-hero { background-attachment: scroll; }
    .services-main { background-attachment: scroll; }
    .how-it-works { background-attachment: scroll; }
    .pricing-section { background-attachment: scroll; }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        gap: 1rem;
    }

    .step-divider {
        display: none;
    }

    .step-card {
        min-width: 140px;
        max-width: 180px;
        padding: 1.5rem 1rem;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .services-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .services-hero {
        min-height: 60vh;
        padding-top: 85px;
        background-attachment: scroll;
    }

    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .step-card {
        max-width: 100%;
        min-width: unset;
    }

    .pricing-grid {
        max-width: 100%;
    }
}
