.site-footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a3a6e 100%);
    color: var(--text-dark);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    border-top: 3px solid var(--accent-dark);
}

.light-mode .site-footer {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e6f2ff 100%);
    color: var(--text-light);
    border-top: 3px solid var(--accent-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 5rem;
}

.footer-section {
    flex: 1 1 300px;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: var(--accent-dark);
}

.light-mode .footer-title {
    color: var(--accent-light);
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-dark);
}

.light-mode .footer-title::after {
    background-color: var(--accent-light);
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.light-mode .social-links a {
    background-color: rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
}

.social-links a:hover i {
    color: var(--bg-dark);
}

.light-mode .social-links a:hover {
    background-color: var(--accent-light);
}

.light-mode .social-links a:hover i {
    color: var(--bg-light);
}

.social-links i {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.light-mode .social-links i {
    color: var(--text-light);
}

#feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#feedback-form input,
#feedback-form textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.light-mode #feedback-form input,
.light-mode #feedback-form textarea {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--text-light);
}

#feedback-form input:focus,
#feedback-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent-dark);
}

.light-mode #feedback-form input:focus,
.light-mode #feedback-form textarea:focus {
    box-shadow: 0 0 0 2px var(--accent-light);
}

#feedback-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--accent-dark);
    color: var(--text-light);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.light-mode .submit-btn {
    background-color: var(--accent-light);
    color: var(--bg-light);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.light-mode .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    color: var(--accent-dark);
}

.light-mode .footer-bottom p {
    color: var(--accent-light);
}

.feedback-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.feedback-message-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feedback-message i {
    font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}