/* ============================================
   SERVICE DETAIL PAGES - COMMON STYLES
   For: AI & Automation, Cloud Solutions, Cybersecurity, etc.
   Colors: #00676d, #0099b0, #f47a20
   ============================================ */

/* SERVICE OVERVIEW SECTION */
.service-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-overview-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-overview-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* HIGHLIGHT STATS */
.service-highlights {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fc;
    padding: 12px 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 140px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0,153,176,0.3);
    box-shadow: 0 5px 15px rgba(0,103,109,0.08);
}

.highlight-item i {
    font-size: 32px;
    background: linear-gradient(135deg, #00676d, #0099b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight-item strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #00676d, #0099b0, #f47a20);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight-item span {
    font-size: 12px;
    color: #666;
}

/* OVERVIEW ICON */
.service-overview-icon {
    text-align: center;
}

.overview-icon-box {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0,103,109,0.08), rgba(0,153,176,0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 1px solid rgba(0,153,176,0.2);
}

.overview-icon-box i {
    font-size: 80px;
    background: linear-gradient(135deg, #00676d, #0099b0, #f47a20);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* TECH STACK GRID */
.tech-stack-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.tech-stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: #f8f9fc;
    border-radius: 16px;
    min-width: 100px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

.tech-stack-item i {
    font-size: 32px;
    background: linear-gradient(135deg, #00676d, #0099b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tech-stack-item span {
    font-size: 13px;
    font-weight: 500;
    color: #4a4a6a;
}

.tech-stack-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,103,109,0.1);
    border-color: rgba(0,153,176,0.3);
}

/* WHY GRID for Benefits section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,103,109,0.08);
    border-color: rgba(0,153,176,0.3);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00676d, #0099b0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 28px;
    color: white;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.why-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* PROCESS CARDS (reuse from services.css but ensure consistency) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,103,109,0.12);
}

.process-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    background: linear-gradient(135deg, #00676d, #0099b0, #f47a20);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.process-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #00676d, #0099b0);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
}

.process-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.process-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.75;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .service-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .service-highlights {
        justify-content: center;
    }
    
    .highlight-item {
        justify-content: center;
        text-align: left;
    }
    
    .overview-icon-box {
        width: 160px;
        height: 160px;
    }
    
    .overview-icon-box i {
        font-size: 60px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-overview-content h2 {
        font-size: 28px;
    }
    
    .service-highlights {
        flex-direction: column;
        align-items: stretch;
    }
    
    .highlight-item {
        justify-content: flex-start;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-stack-item {
        padding: 12px 16px;
        min-width: 80px;
    }
    
    .tech-stack-item i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .highlight-item strong {
        font-size: 18px;
    }
    
    .highlight-item i {
        font-size: 24px;
    }
}