/* Premium Vagyonkezelési Szolgáltatás szekció */
.premium-section {
    background-color: #F5F0E6;
    padding: 96px 20px;
}

.premium-section .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 51px;
    color: #0F4A55;
    margin-bottom: 50px;
}

.premium-section .section-title span {
    color: #996C2D;
}

.premium-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-6px);
}

.premium-card:hover .premium-icon {
    transform: scale(1.1) rotate(3deg);
}

.premium-card .premium-icon {
    width: 140px;
    height: 140px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transform: scale(0.7) rotate(-8deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) calc(var(--delay, 0s) + 0.15s);
}

.premium-animate {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease var(--delay, 0s), transform 0.7s ease var(--delay, 0s);
}

.premium-animate.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Ikon wrapper - fancy hover/megjelenés animáció */
.premium-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.premium-icon {
    width: 140px;
    height: 140px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transform: scale(0.7) rotate(-8deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) calc(var(--delay, 0s) + 0.15s);
}

.premium-animate.visible .premium-icon {
    transform: scale(1) rotate(0deg);
}

.premium-card h5 {
    text-align: center;
    letter-spacing: 0px;
    color: #0A4B55;
    font-size: 24px;
    font-weight: bold;
    opacity: 1;
    margin-bottom: 12px;
}

.premium-card p {
    text-align: center;
    font-size: 16px;
    line-height: 23px;
    color: #0A4B55;
}

/* Cím animáció */
.premium-title-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.premium-title-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.premium-title-animate span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.3s, transform 0.7s cubic-bezier(0.34, 1.3, 0.64, 1) 0.3s;
}

.premium-title-animate.visible span {
    opacity: 1;
    transform: translateY(0);
}