.services-section {
    padding: 3.5rem 0 3rem;
    background-color: #000;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* Stat Card Styles - Matching user reference */
.service-card.stat-card {
    background: rgba(136, 168, 136, 0.05);
    /* Transparan yeşilimsi arka plan */
    border: 2px solid #88a888;
    /* Kalın Yeşil border - Reduced to 2px */
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 1.25rem;
    box-shadow: var(--shadow-sm);
    aspect-ratio: auto;
    /* Stat kartlarında sabit orana gerek yok, padding belirlesin */
    min-height: auto;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.stat-card:hover {
    background: rgba(136, 168, 136, 0.1);
    border-color: #a5c4a5;
    /* Hoverda hafif parlat */
}

/* Remove gradient overlay from stat cards */
.service-card.stat-card::before {
    display: none;
}

.service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
}

.service-title {
    font-size: 3.5rem;
    /* Büyük rakamlar - Reduced from 5rem */
    font-weight: 700;
    /* Görseldeki gibi orta kalınlık */
    color: #88a888;
    /* Yumuşak yeşil */
    margin: 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.service-subtitle {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    /* Görseldeki gibi büyük harf */
    letter-spacing: 0.05em;
    margin: 0;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .service-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 2.5rem 0 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card.stat-card {
        padding: 2rem;
        min-height: auto;
    }
}

/* Inline Editor Resets */
body.edit-mode .service-card.stat-card:hover {
    transform: none !important;
    background: rgba(136, 168, 136, 0.05) !important;
    border-color: rgba(136, 168, 136, 0.3) !important;
}