/* ============================================================================
   SERVICES PAGE STYLES
   About.css yapısına uygun - Section'lara değil içeriklere arka plan
   ============================================================================ */

/* Quick Stats */
.quick-stats {
    padding: 40px 0;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 20px 28px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    min-width: 110px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
}

.stat-box strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-box span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 60px 0;
}

/* Service Card - About.css stat-card yapısına benzer */
.service-card {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 28px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
}

.service-card:last-child {
    margin-bottom: 0;
}

.service-card__number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-dark);
}

.service-card__body {
    flex: 1;
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 20px;
    align-items: start;
}

.service-card__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 14px;
    font-size: 1.3rem;
    color: var(--primary);
}

.service-card__content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.service-card__content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    list-style: none;
    margin-bottom: 14px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.service-features i {
    color: #10B981;
    font-size: 0.7rem;
}

.related-tool {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    font-size: 0.85rem;
}

.related-tool i {
    color: #10B981;
}

.related-tool a {
    color: #10B981;
    font-weight: 600;
}

.related-tool a:hover {
    color: #34D399;
}

.service-card__modules {
    flex-shrink: 0;
    text-align: right;
}

.modules-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-tags {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.module-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 30px;
    padding: 0 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s ease;
}

.module-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

/* Modules Reference Section - Arka plan section'a değil wrapper'a */
.modules-ref {
    padding: 80px 0;
}

.modules-ref-wrapper {
    padding: 50px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 35px;
}

.mod-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mod-card:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.mod-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 24px;
    padding: 0 8px;
    background: var(--gradient-primary);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-dark);
}

.mod-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modules-ref__cta {
    text-align: center;
    margin-top: 35px;
}

/* Tools Section */
.tools-section {
    padding: 80px 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 35px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.tool-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tool-card--active {
    border-color: rgba(16, 185, 129, 0.2);
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(17, 24, 39, 0.6));
}

.tool-card--active:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.35);
}

.tool-card--soon {
    opacity: 0.6;
    cursor: default;
}

.tool-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tool-card--active .tool-card__icon {
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
}

.tool-card--soon .tool-card__icon {
    color: var(--text-muted);
}

.tool-card__info {
    flex: 1;
    min-width: 0;
}

.tool-card__info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 6px;
}

.tool-card__info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.tool-card__status {
    flex-shrink: 0;
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tool-card--active .tool-card__status {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}

.tool-card--soon .tool-card__status {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.tools-section__cta {
    text-align: center;
    margin-top: 30px;
}

/* CTA Section - About.css mv-card yapısına benzer */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    padding: 60px 50px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.4s ease;
}

.cta-box:hover {
    border-color: rgba(0, 212, 255, 0.2);
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 992px) {
    .service-card__body {
        grid-template-columns: 50px 1fr;
    }
    
    .service-card__modules {
        grid-column: 1 / -1;
        text-align: left;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .module-tags {
        justify-content: flex-start;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-ref-wrapper {
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .stats-row {
        gap: 16px;
    }
    
    .stat-box {
        padding: 16px 20px;
        min-width: 90px;
    }
    
    .stat-box strong {
        font-size: 1.4rem;
    }
    
    .service-card {
        flex-direction: column;
        padding: 22px;
    }
    
    .service-card__number {
        width: 38px;
        height: 38px;
    }
    
    .service-card__body {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card__icon {
        display: none;
    }
    
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .modules-ref-wrapper {
        padding: 30px 20px;
    }
    
    .cta-box {
        padding: 40px 25px;
    }
    
    .cta-box h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-features {
        flex-direction: column;
        gap: 8px;
    }
}
