@font-face {
    font-family: 'IranianSans';
    src: url('/main/fonts/IranianSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* General reset and RTL setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IranianSans', Arial, sans-serif;
    direction: rtl;
    text-align: right;
}

/* Footer container */
.chami-footer-container {
    background-color: #292b76;
    color: #fff;
    padding: 40px 40px 20px;
    animation: chami-footer-fade 1s ease-out forwards;
}

/* Footer fade-in animation */
@keyframes chami-footer-fade {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer content layout */
.chami-footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

/* Logo section */
.chami-footer-logo {
    flex: 1;
    min-width: 200px;
}

.chami-footer-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.chami-footer-logo-text:hover {
    color: #e0e0e0;
    transform: scale(1.05);
}

.chami-footer-description {
    font-size: 0.9rem;
    color: #d3d3d3;
    margin-top: 10px;
}

/* Links section */
.chami-footer-links {
    flex: 1;
    min-width: 150px;
}

.chami-footer-heading {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

.chami-footer-heading::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #fff;
    bottom: -5px;
    right: 0;
    transition: width 0.3s ease;
}

.chami-footer-heading:hover::after {
    width: 80px;
}

.chami-footer-nav-list {
    list-style: none;
}

.chami-footer-link {
    color: #d3d3d3;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease, padding-right 0.3s ease;
}

.chami-footer-link:hover {
    color: #fff;
    padding-right: 10px;
}

/* Contact section */
.chami-footer-contact {
    flex: 1;
    min-width: 150px;
}

.chami-footer-contact-info {
    font-size: 0.95rem;
    color: #d3d3d3;
    margin-bottom: 10px;
}

/* Social section */
.chami-footer-social {
    flex: 1;
    min-width: 150px;
}

.chami-footer-social-icons {
    display: flex;
    gap: 15px;
}

.chami-footer-social-link {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.chami-footer-social-link:hover {
    transform: scale(1.2);
    color: #e0e0e0;
}

/* Animation for social icons */
.chami-footer-instagram,
.chami-footer-telegram,
.chami-footer-whatsapp {
    animation: chami-social-bounce 0.5s ease forwards;
    animation-delay: calc(0.2s * var(--chami-social-order));
}

@keyframes chami-social-bounce {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    60% {
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.chami-footer-instagram { --chami-social-order: 1; }
.chami-footer-telegram { --chami-social-order: 2; }
.chami-footer-whatsapp { --chami-social-order: 3; }

/* Enamad logo styling */
.chami-footer-enamad {
    margin-top: 10px;
    text-align: center;
}

.chami-footer-enamad img {
    max-width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

.chami-footer-enamad img:hover {
    transform: scale(1.1);
}

/* Bottom section */
.chami-footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #d3d3d3;
    font-size: 0.9rem;
    color: #d3d3d3;
}

/* Responsive design */
@media (max-width: 768px) {
    .chami-footer-content {
        flex-direction: column;
        text-align: right;
    }

    .chami-footer-logo,
    .chami-footer-links,
    .chami-footer-contact,
    .chami-footer-social {
        margin-bottom: 20px;
    }

    .chami-footer-logo-text {
        font-size: 1.8rem;
    }

    .chami-footer-social-icons {
        justify-content: flex-start;
    }

    .chami-footer-enamad img {
        max-width: 80px;
    }
}