/* Footer Styles */
.site-footer {
    background-color: #332C3E;
    color: #fff;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Social section */
.social-section {
    margin-bottom: 40px;
}

.social-section h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.social-section h3::before,
.social-section h3::after {
    content: "";
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    width: 100px;
    position: absolute;
    top: 50%;
}

.social-section h3::before {
    right: 100%;
    margin-right: 15px;
}

.social-section h3::after {
    left: 100%;
    margin-left: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #F05A28;
    transform: translateY(-3px);
}

/* Newsletter section */
.newsletter-section {
    margin-bottom: 40px;
}

.newsletter-section h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: #F05A28;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #e04d1d;
}

/* Footer links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-column h4 {
    color: #F05A28;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright p {
    margin: 5px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .social-section h3::before,
    .social-section h3::after {
        width: 50px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 4px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

/* Success Message Styles */
.success-message {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 