/* ========================================
   Layanan Page Styles - MarketLab
======================================== */

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    padding: var(--space-12) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge svg {
    color: #4ade80;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-extrabold);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title span {
    display: block;
}

.hero-description {
    font-size: var(--text-lg);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    color: var(--white);
    opacity: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: var(--font-medium);
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ========== SERVICES OVERVIEW ========== */
.services-overview {
    background: var(--bg-primary);
}

.services-grid {
    margin-top: var(--space-12);
}

.service-category {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    transition: var(--transition-all);
    height: 100%;
    border: 1px solid var(--border-light);
}

.service-category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.service-category-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    color: var(--white);
    font-size: var(--text-2xl);
}

.service-category h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    text-align: center;
}

.service-category p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--space-6);
    line-height: var(--leading-relaxed);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-colors);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:hover {
    background: var(--bg-light);
    margin: 0 calc(var(--space-4) * -1);
    padding-left: var(--space-4);
    padding-right: var(--space-4);
    border-radius: var(--radius-lg);
}

.service-list li svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-list li span {
    color: var(--text-primary);
    font-weight: var(--font-medium);
}

.service-category-footer {
    text-align: center;
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-light);
}

.btn-service-details {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-color);
    font-weight: var(--font-semibold);
    text-decoration: none;
    transition: var(--transition-colors);
}

.btn-service-details:hover {
    color: var(--primary-dark);
}

/* ========== PROCESS SECTION ========== */
.process-section {
    background: var(--bg-light);
    padding: var(--space-20) 0;
}

.process-step {
    text-align: center;
    position: relative;
    margin-bottom: var(--space-6);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin: 0 auto var(--space-4);
    box-shadow: var(--shadow-md);
    transition: var(--transition-transform);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 80, 145, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    color: var(--primary-color);
    transition: var(--transition-all);
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.process-step:hover .step-icon {
    background: var(--primary-light);
    color: var(--white);
}

.process-step h5 {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.process-step p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin: 0;
    font-size: var(--text-base);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--primary-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    padding: var(--space-20) 0;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-6);
}

.cta-description {
    font-size: var(--text-lg);
    color: var(--white);
    opacity: 1;
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
}

.cta-actions .btn-modern {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-actions .btn-modern:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ========== MAIN CONTENT SPACING ========== */
.main-content {
    margin-bottom: 0;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn-modern {
        width: 100%;
        max-width: 300px;
    }

    .service-category {
        margin-bottom: var(--space-6);
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn-modern {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding: var(--space-8) 0;
    }

    .services-grid .col-lg-4 {
        margin-bottom: var(--space-6);
    }

    .process-content {
        padding: var(--space-6);
    }

    .cta-content {
        padding: var(--space-16) 0;
    }
}