.ingatlan-section {
    background-color: #0F4A55;
    padding: 80px 20px;
    text-align: center;
}

.ingatlan-felso-cim {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.ingatlan-focim {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 1.3;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 24px;
}

.ingatlan-focim span {
    color: #D7AF96;
}

.ingatlan-hr {
    width: 100px !important;
    height: 1px;
    background-color: #D7AF96 !important;
    border: none !important;
    margin: 40px auto !important;
    opacity: 1 !important;
}

.ingatlan-hr-white {
    width: 100px !important;
    height: 2px;
    background-color: #FFF !important;
    border: none !important;
    margin: 20px auto !important;
}

.ingatlan-leiras {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    opacity: 0.85;
    max-width: 620px;
    margin: 0 auto 32px;
}

.ingatlan-kiemelt {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    line-height: 37px;
    color: #2DE68C;
    margin: 0 auto 60px;
}

/* Statisztikák */
.ingatlan-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
}

.ingatlan-stat-item {
    flex: 1 1 280px;
    text-align: center;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s ease var(--stat-delay, 0s), transform 0.9s cubic-bezier(0.34, 1.2, 0.64, 1) var(--stat-delay, 0s);
    background: #0A454E;
    padding: 40px 20px;
    border-radius: 24px;
}

.ingatlan-stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-szam {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 25px;
    font-weight: 400;
    color: #D7AF96;
    margin-bottom: 8px;
    line-height: 1.1;
}

.stat-cim {
    font-family: 'Work Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 25px;
}

.stat-cim-sm {
    font-family: 'Work Sans', sans-serif;
    color: #ffffff;
    font-size: 16px;
    line-height: 25px;
}

.stat-szoveg {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 23px;
    color: #ffffff;
    margin-bottom: 0;
}

.ingatlan-anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease var(--delay, 0s), transform 0.7s cubic-bezier(0.34, 1.3, 0.64, 1) var(--delay, 0s);
}

.ingatlan-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .ingatlan-focim {
        font-size: 28px;
    }

    .stat-szam {
        font-size: 36px;
    }

    .ingatlan-stats {
        flex-direction: column;
        align-items: center;
    }

    .ingatlan-stat-item {
        max-width: 100%;
    }
}