/* ============================================
   SERVICES PAGE STYLES - COMPLETE REDESIGN
   28+ Services across 9 Categories
============================================ */

/* ============================================
   HERO SECTION
============================================ */
.services-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.services-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb--1 {
    width: 500px;
    height: 500px;
    background: rgba(99, 102, 241, 0.3);
    top: -200px;
    left: -100px;
}

.hero-orb--2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.25);
    bottom: -150px;
    right: -100px;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 20px); }
}

.services-hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: #a5b4fc;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.services-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.1;
}

.services-hero__subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 40px;
}

.services-hero__subtitle strong {
    color: #6366f1;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.hero-stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #6366f1;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 6px;
    display: block;
}

.services-hero__ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CATEGORY NAVIGATION
============================================ */
.category-nav {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.category-nav__list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
}

.category-nav__list::-webkit-scrollbar {
    height: 4px;
}

.category-nav__list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.category-nav__item {
    padding: 10px 18px;
    background: #f1f5f9;
    border-radius: 50px;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-nav__item:hover {
    background: #6366f1;
    color: #ffffff;
    border-color: #6366f1;
}

/* ============================================
   SERVICES LIST
============================================ */
.services-list {
    padding: 80px 0;
    background: #f8fafc;
}

/* ============================================
   SERVICE CATEGORY
============================================ */
.service-category {
    margin-bottom: 80px;
    scroll-margin-top: 150px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.category-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-info h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.category-info p {
    font-size: 1rem;
    color: #64748b;
}

.category-tag {
    margin-left: auto;
    padding: 8px 20px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
}

.category-tag--premium {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

/* ============================================
   SERVICES GRID
============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* ============================================
   SERVICE CARD
============================================ */
.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.service-card__number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1;
}

.service-card__badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    padding-right: 50px;
}

.service-card__desc {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.service-card__features li {
    position: relative;
    padding-left: 24px;
    font-size: 0.88rem;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.5;
}

.service-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.service-card__actions {
    margin-top: auto;
}

/* Featured Card */
.service-card--featured {
    border-color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.service-card--featured .service-card__number {
    color: rgba(99, 102, 241, 0.15);
}

/* Premium Card */
.service-card--premium {
    border-left: 4px solid #8b5cf6;
}

.service-card--premium .service-card__number {
    color: rgba(139, 92, 246, 0.15);
}

/* Industry Card */
.service-card--industry {
    padding-top: 50px;
}

.service-card__industry-icon {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* Highlight Card */
.service-card--highlight {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
}

.service-card--highlight .service-card__badge {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.service-card__highlight-text {
    padding: 12px 16px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 10px;
    color: #d97706;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ============================================
   WHY CHOOSE SECTION
============================================ */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.why-choose__content {
    text-align: center;
}

.why-choose h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.why-choose__tagline {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
    font-style: italic;
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
}

.why-item__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.why-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.why-item p {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* ============================================
   CTA SECTION
============================================ */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    text-align: center;
}

.services-cta__content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.services-cta__content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
}

.services-cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn--whatsapp {
    background: #25D366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn--whatsapp:hover {
    background: #1da851;
}

.services-cta__trust {
    display: flex;
    gap: 30px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.services-cta__trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   BUTTON STYLES
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn--primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn--small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn--large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media screen and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .services-hero {
        padding: 140px 0 80px;
    }

    .services-hero__title {
        font-size: 2.5rem;
    }

    .services-hero__subtitle {
        font-size: 1.1rem;
    }

    .hero-stats-row {
        gap: 30px;
    }

    .stat-num {
        font-size: 2rem;
    }

    .category-nav {
        top: 60px;
    }

    .category-nav__list {
        gap: 8px;
    }

    .category-nav__item {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .category-header {
        padding: 20px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .category-info h2 {
        font-size: 1.4rem;
    }

    .category-tag {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 25px;
    }

    .why-choose h2 {
        font-size: 2rem;
    }

    .why-choose__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .why-item {
        padding: 20px;
    }

    .services-cta__content h2 {
        font-size: 2rem;
    }

    .services-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-cta__trust {
        flex-direction: column;
        gap: 10px;
    }
}

@media screen and (max-width: 480px) {
    .services-hero__title {
        font-size: 2rem;
    }

    .hero-stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .services-hero__ctas {
        flex-direction: column;
    }

    .services-hero__ctas .btn {
        width: 100%;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .category-info h2 {
        font-size: 1.25rem;
    }

    .why-choose__grid {
        grid-template-columns: 1fr;
    }

    .btn--large {
        width: 100%;
        justify-content: center;
    }
}
