/* Modern Services Grid - Based on Team Grid Style (COMPACT V2) */

.services-section {
    padding: 40px 20px;
    background: #FBF8F6 !important;
    /* Bone White unified background */
    min-height: 100vh;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    /* Csökkentett cím méret (3.5 -> 2.5) és finomított vastagság */
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #bf9b69;
    /* Aranybézs */
    font-family: 'Montserrat', 'Roboto', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    /* Kisebb kártyákhoz: 320px -> 260px */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    /* Kisebb rés (40px -> 30px) */
    padding: 20px;
}

/* Glassmorphism Card Style */
.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    /* Kicsit kisebb kerekítés */
    overflow: hidden;
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.08);
    /* Finomabb árnyék */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(189, 146, 109, 0.25);
    border-color: rgba(189, 146, 109, 0.3);
}

/* Image Container - Landscape Aspect Ratio */
.service-image-wrapper {
    width: 100%;
    padding-top: 60%;
    /* 16:10 Aspect Ratio approx */
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

/* Content Area */
.service-content {
    padding: 20px;
    /* Kisebb belső padding (30px -> 20px) */
    text-align: center;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-name {
    font-size: 1.4rem;
    /* Kisebb cím (1.8rem -> 1.4rem) */
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 12px 0;
    font-family: 'Inter', sans-serif;
    color: #5d4037;
}

.service-divider {
    height: 3px;
    width: 40px;
    /* Kisebb elválasztó */
    background: #bd926d;
    margin: 0 auto 15px;
    border-radius: 2px;
}

.service-description {
    font-size: 0.9rem;
    /* Kisebb szöveg (1rem -> 0.9rem) */
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }
}