/* کانتینر و تیتر */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

#title-img {
    margin-top: 160px;
    width: 100%;
    height: auto;
}

.page-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #00ffb2, #006b62);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* لیست کارت‌ها */
.profile-list {
    display: grid;
    gap: 50px;
}

/* کارت */
.card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
}

/* تصاویر کارت */
.card-image {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.desktop-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
    transition: transform 0.6s ease;
}

.mobile-img {
    max-width: 22%;
    position: absolute;
    bottom: 25px;
    right: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card:hover .desktop-img {
    transform: scale(1.05) translateY(-6px);
}

/* سایه داخل عکس */
.color-shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--accent, #FFD700);
    opacity: 0.35;
    border-radius: 0 0 28px 28px;
    filter: blur(50px);
    z-index: 2;
    pointer-events: none;
}

.card:hover .color-shadow {
    opacity: 0.15;
}

/* SVG موج پایین عکس */
.wave-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 3;
    pointer-events: none;
}

/* لوگو پایین سمت چپ روی SVG */
.logo-overlay-left {
    position: absolute;
    bottom: 0;
    left: 10px;
    z-index: 4;
    pointer-events: none;
}

.logo-overlay-left img {
    max-width: 130px;
    mix-blend-mode: overlay;
}

/* ویژگی‌ها */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 25px;
    margin-top: 20px;
    width: 100%;
    height: auto;
}

.feature {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.21);
}

.short-desc {
    width: 80%;
    padding: 10px;
    margin: 20px auto;
    color: black;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.9;
}

/* دکمه */
.actions {
    padding: 25px;
    text-align: center;
}

.btnss {
    width: 90%;
    display: inline-block;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btnss:hover {
    background: #ffffff;
    color: black;
    transform: translateY(-3px) scale(1.05);
}

.btnss.disabled {
    background: #bbb;
    cursor: not-allowed;
    box-shadow: none;
}

@media (max-width: 1020px) {
    #title-img {
        margin-top: 40px;
        max-width: 100%;
    }

    .card {
        transition: unset;
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    }

    .card:hover {
        transform: unset;
        box-shadow: unset;
    }

    .desktop-img {
        transition: unset;
    }
    .card:hover{
        transition: unset;
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    }

    .card:hover .desktop-img {
        transform: unset;
    }

    .card:hover .color-shadow {
        opacity: .5;
    }

    .color-shadow {
        opacity: .5;
    }

    .short-desc {
        width: 100%;
    }
}