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

/* Services Hero */
.services-hero .products-hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(41, 171, 226, 0.8) 50%, rgba(233, 30, 155, 0.7) 100%);
}

/* Journey Steps */
.journey-steps {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.journey-step {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.step-num {
    width: 28px;
    height: 28px;
    background: #fff;
    color: #29ABE2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.journey-arrow {
    color: rgba(255,255,255,0.6);
    font-size: 1.25rem;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-grid.reverse {
    direction: rtl;
}

.service-grid.reverse > * {
    direction: ltr;
}

.service-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.service-badge.start {
    background: linear-gradient(135deg, #26de81 0%, #20bf6b 100%);
}

.service-badge.grow {
    background: linear-gradient(135deg, #29ABE2 0%, #1e88c9 100%);
}

.service-badge.scale {
    background: linear-gradient(135deg, #E91E9B 0%, #c41882 100%);
}

.service-badge.expand {
    background: linear-gradient(135deg, #fd9644 0%, #fa8231 100%);
}

.service-badge.infra {
    background: linear-gradient(135deg, #a55eea 0%, #8854d0 100%);
}

.service-tag {
    display: inline-block;
    color: #29ABE2;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.service-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 20px;
}

.service-content .lead {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Service Features */
.service-features {
    margin-bottom: 25px;
}

.service-features h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

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

.feature-list-simple li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.feature-list-simple li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #26de81;
    font-weight: 700;
}

/* Tag List */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: linear-gradient(135deg, #29ABE2 0%, #E91E9B 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(41, 171, 226, 0.1) 0%, rgba(233, 30, 155, 0.1) 100%);
    border-left: 4px solid #29ABE2;
    padding: 20px;
    border-radius: 0 12px 12px 0;
    margin: 25px 0;
}

.highlight-box.blue {
    background: rgba(41, 171, 226, 0.1);
    border-left-color: #29ABE2;
}

.highlight-box p {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Results Grid */
.results-grid {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.result-icon {
    font-size: 1.25rem;
}

.result-text {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.9rem;
}

/* CLMV Flags */
.clmv-flags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.flag-item {
    background: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.flag-arrow {
    color: #29ABE2;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Infrastructure Icons */
.infra-icons {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.infra-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(41, 171, 226, 0.1) 0%, rgba(233, 30, 155, 0.1) 100%);
    padding: 16px 24px;
    border-radius: 12px;
    flex: 1;
}

.infra-icon {
    font-size: 2rem;
}

.infra-item span:last-child {
    font-weight: 600;
    color: #1a1a2e;
}

/* Responsive */
@media (max-width: 968px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-grid.reverse {
        direction: ltr;
    }
    
    .service-image img {
        height: 350px;
    }
    
    .journey-steps {
        justify-content: center;
    }
    
    .results-grid {
        justify-content: center;
    }
    
    .clmv-flags {
        justify-content: center;
    }
    
    .infra-icons {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .journey-step {
        padding: 8px 14px;
    }
    
    .step-text {
        font-size: 0.8rem;
    }
    
    .journey-arrow {
        font-size: 1rem;
    }
    
    .service-image img {
        height: 280px;
    }
    
    .tag-list {
        justify-content: flex-start;
    }
    
    .flag-item {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}
