/* ===== Pansee Footer ===== */
.pansee-footer {
    direction: rtl;
    text-align: right;
}

.pansee-footer .footer-main {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: rgb(247, 221, 230);
}

.pansee-footer__grid {
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.5rem);
    grid-template-columns: 1fr;
}

.pansee-footer__title {
    margin: 0 0 1.1rem;
    padding-bottom: 0.65rem;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    font-weight: 700;
    color: #4a4a4a;
    letter-spacing: 0.02em;
    position: relative;
}

.pansee-footer__title::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fda2c0, #ff6d9e);
}

.pansee-footer__text p {
    margin: 0 0 0.85rem;
    color: rgba(0, 0, 0, 0.58);
    font-size: clamp(0.88rem, 2vw, 0.95rem);
    line-height: 1.85;
}

.pansee-footer__text p:last-child {
    margin-bottom: 0;
}

.pansee-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.pansee-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.55);
    color: #c2185b;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.pansee-footer__social a:hover {
    background: #ff6d9e;
    border-color: #ff6d9e;
    color: #fff;
    transform: translateY(-2px);
}

.pansee-footer__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pansee-footer__nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(0, 0, 0, 0.58);
    font-size: clamp(0.9rem, 2vw, 0.97rem);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.pansee-footer__nav a i {
    width: 18px;
    color: #ff6d9e;
    text-align: center;
}

.pansee-footer__nav a:hover {
    color: #c2185b;
    transform: translateX(-4px);
}

.pansee-footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.pansee-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: rgba(0, 0, 0, 0.58);
    font-size: clamp(0.88rem, 2vw, 0.95rem);
    line-height: 1.75;
}

.pansee-footer__contact-item > i {
    flex-shrink: 0;
    width: 20px;
    margin-top: 0.2rem;
    color: #ff6d9e;
    text-align: center;
}

.pansee-footer__contact-item a {
    color: inherit;
    text-decoration: none;
    word-break: break-word;
}

.pansee-footer__contact-item a:hover {
    color: #c2185b;
}

.pansee-footer__copyright {
    background: #e8a8bc;
    padding: 1rem 1.25rem;
}

.pansee-footer__copyright p {
    margin: 0;
    text-align: center;
    color: rgba(0, 0, 0, 0.62);
    font-size: clamp(0.82rem, 2vw, 0.92rem);
}

.pansee-footer__copyright a {
    color: #8e244f;
    text-decoration: none;
    font-weight: 600;
}

.pansee-footer__copyright a:hover {
    color: #c2185b;
}

@media (min-width: 768px) {
    .pansee-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pansee-footer__col--about {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) {
    .pansee-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
    }

    .pansee-footer__col--about {
        grid-column: auto;
    }
}

@media (max-width: 575.98px) {
    .pansee-footer .footer-main .container {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .pansee-footer__social {
        justify-content: flex-start;
    }
}
