 /* FOOTER STYLES */
.site-footer {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    font-size: 1.2rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #66BB6A);
    border-radius: 2px;
}

.footer-column p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #66BB6A;
    transform: translateX(-5px);
    padding-right: 10px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #cbd5e0;
}

.footer-contact i {
    color: #66BB6A;
    width: 20px;
    margin-left: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact span {
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #4CAF50;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    color: white;
}

.footer-form {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.footer-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
}

.footer-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.footer-form input:focus {
    outline: none;
    border-color: #66BB6A;
    background: rgba(255,255,255,0.15);
}

.footer-form button {
    padding: 10px 15px;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-form button:hover {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
}

.footer-bottom a {
    color: #66BB6A;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #81C784;
}

/* Enamad Styles */
.enamad-container {
    text-align: center;
    margin-top: 10px;
}

.enamad-link {
    display: inline-block;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.enamad-link:hover {
    background: rgba(255,255,255,0.2);
    border-color: #66BB6A;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 187, 106, 0.3);
}

.enamad-text {
    color: #cbd5e0;
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-form {
        flex-direction: column;
    }
    
    .footer-form input,
    .footer-form button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .enamad-container {
        margin-top: 20px;
    }
}

/* Dark Theme Support */
[data-theme="dark"] .site-footer {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
}

[data-theme="dark"] .footer-column h3::after {
    background: linear-gradient(90deg, #66BB6A, #81C784);
}

[data-theme="dark"] .footer-links a:hover {
    color: #81C784;
}

[data-theme="dark"] .footer-contact i {
    color: #81C784;
}

[data-theme="dark"] .social-links a:hover {
    background: #66BB6A;
}

[data-theme="dark"] .footer-form input:focus {
    border-color: #81C784;
}

[data-theme="dark"] .footer-form button {
    background: linear-gradient(135deg, #66BB6A 0%, #81C784 100%);
}

[data-theme="dark"] .footer-form button:hover {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

[data-theme="dark"] .footer-bottom a {
    color: #81C784;
}

[data-theme="dark"] .footer-bottom a:hover {
    color: #A5D6A7;
}

[data-theme="dark"] .enamad-link:hover {
    border-color: #81C784;
    box-shadow: 0 5px 15px rgba(129, 199, 132, 0.3);
}