/* ============================================
   Services Page - Ultra Premium SaaS Design
   ============================================ */

/* === Services Hero === */
.services-hero {
    position: relative;
    padding: calc(80px + 100px) 0 100px;
    background: #050505;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 100% 80% at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.services-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 0 auto 24px;
}

.services-hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 24px;
    border-radius: 30px;
}

.services-hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 300;
    letter-spacing: 15px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

/* === Intro Section === */
.services-intro-section {
    padding: 60px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.intro-grid {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    gap: 50px;
    align-items: center;
}

.intro-stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.intro-stat:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

.intro-stat .stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37 0%, #f4d47c 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.intro-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.intro-text {
    text-align: center;
    padding: 0 30px;
}

.intro-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
}

/* === Main Services Section === */
.main-services-section {
    padding: 100px 0;
    background: #050505;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
}

.service-showcase-item {
    display: grid;
    grid-template-columns: 80px 100px 1fr 140px 130px;
    gap: 30px;
    align-items: center;
    padding: 30px 40px;
    background: #0a0a0a;
    transition: all 0.4s ease;
    position: relative;
}

.service-showcase-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: all 0.3s ease;
}

.service-showcase-item:hover {
    background: rgba(212, 175, 55, 0.03);
}

.service-showcase-item:hover::before {
    background: linear-gradient(180deg, transparent, #d4af37, transparent);
}

.showcase-number {
    font-size: 2.5rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-showcase-item:hover .showcase-number {
    color: #d4af37;
}

.showcase-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-showcase-item:hover .showcase-icon {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.08);
}

.showcase-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #fff;
}

.showcase-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.showcase-details {
    display: flex;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.detail-icon {
    width: 16px;
    height: 16px;
    color: #d4af37;
}

svg.detail-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.showcase-price {
    text-align: center;
}

.price-amount {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.price-currency {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.showcase-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.showcase-btn:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

.empty-state {
    padding: 80px 40px;
    text-align: center;
    background: #0a0a0a;
}

.empty-icon {
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

svg.empty-icon {
    display: block;
    margin: 0 auto 20px;
}

.empty-state p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* === Process Section === */
.process-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.process-step:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.03);
    transform: translateY(-5px);
}

.step-number {
    font-size: 4rem;
    font-weight: 200;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: linear-gradient(135deg, #d4af37 0%, #f4d47c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #fff;
}

.step-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.process-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin-top: 80px;
}

/* === Features Section === */
.features-section {
    padding: 100px 0;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.03);
    transform: translateY(-8px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: #d4af37;
}

.feature-card:hover .feature-icon {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #fff;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

/* === CTA Section === */
.services-cta-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.cta-box h2 {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: #fff;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #d4af37 0%, #b8962c 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* === Responsive === */
@media (max-width: 1200px) {
    .service-showcase-item {
        grid-template-columns: 60px 80px 1fr 120px 110px;
        gap: 20px;
        padding: 24px 30px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-stat {
        max-width: 250px;
        margin: 0 auto;
    }

    .service-showcase-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 40px 30px;
    }

    .service-showcase-item::before {
        display: none;
    }

    .showcase-number {
        font-size: 2rem;
    }

    .showcase-icon {
        margin: 0 auto;
    }

    .showcase-details {
        justify-content: center;
    }

    .showcase-price {
        margin: 10px 0;
    }

    .showcase-btn {
        max-width: 200px;
        margin: 0 auto;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .process-line {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .process-step {
        max-width: 100%;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: calc(80px + 60px) 0 60px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h2 {
        font-size: 1.6rem;
    }
}