.services-container {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.services-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

/* ===== GRID ELRENDEZÉS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ===== ELEGÁNS SERVICE CARD ===== */
.service-card {
    background: rgba(255, 255, 255, 0.08); /* Áttetsző sötét/világos üveghatás */
    backdrop-filter: blur(10px); /* Üveghatás */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px; /* Lekerekített cukrászdás forma */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #c08d5d; /* Az arany/barna keret hoverre */
}

/* Kép formázása */
.service-image {
    width: 100%;
    height: 220px;
    border-radius: 18px; /* Belső kártya-lekerekítés */
    overflow: hidden;
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Szöveg és Cirádás cím */
.service-card h3 { 
    font-size: 1.8rem; /* Cirádásnál nagyobb méret kell */
    font-weight: 400; 
    margin: 10px 0; 
    /* A színt nem adom meg fixre, hogy az adatbázisból jöhessen */
    font-family: 'Great Vibes', cursive;
    line-height: 1.2;
    color: #e8c239;
}

.service-card p { 
    font-size: 1rem; 
    color: rgba(255, 255, 255, 0.8); /* Enyhén áttetsző fehér szöveg */
    margin: 0 0 10px; 
    line-height: 1.6;
    font-weight: 300;
}

/* Reszponzív finomítás */
@media (max-width: 768px) {
    .services-title { margin-bottom: 40px; }
    .service-card { padding: 15px; }
    .service-card h3 { font-size: 1.8rem; }
}