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

.section-padding {
    padding: 100px 0;
}

/* Page Header */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 20px;
    color: #666666;
    position: relative;
    z-index: 1;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(242, 101, 34, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 164, 200, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(139, 47, 92, 0.15) 0%, transparent 50%);
    z-index: 0;
}

/* Services Overview */
.services-overview {
    background: #F8F9FA;
    padding: 60px 0;
    position: relative;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.overview-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all var(--transition-fast);
}

.overview-card:hover {
    transform: translateY(-10px);
    border-color: rgba(242, 101, 34, 0.3);
    box-shadow: var(--shadow-card);
}

.overview-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.overview-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.overview-card p {
    color: #666666;
    font-size: 14px;
}

/* Service Detail Sections */
.service-detail {
    padding: 100px 0;
    position: relative;
    background: #FFFFFF;
}

.service-detail.alt {
    background: #F8F9FA;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.service-grid.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.service-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon-large {
    width: 200px;
    height: 200px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-accent {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--color-orange);
    border-radius: 40px;
    z-index: 0;
}

.service-content {
    position: relative;
}

.service-tag {
    display: inline-block;
    font-size: 72px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: 10px;
}

.service-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.service-desc {
    color: #666666;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(242, 101, 34, 0.2);
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    color: #888888;
    font-size: 15px;
}

.service-cta {
    display: flex;
    gap: 20px;
}

/* CTA Banner */
.cta-banner {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: #FFFFFF;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: #666666;
    margin-bottom: 40px;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .page-header h1 {
        font-size: 42px;
    }

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

    .service-grid,
    .service-grid.reverse {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-grid.reverse .service-visual {
        order: -1;
    }

    .service-icon-large {
        width: 150px;
        height: 150px;
    }

    .service-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

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

    .service-icon-large {
        width: 120px;
        height: 120px;
    }

    .service-icon-large svg {
        width: 40px;
        height: 40px;
    }

    .service-tag {
        font-size: 48px;
    }

    .service-content h2 {
        font-size: 26px;
    }

    .service-cta {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
