/* ===================================
   FOOTER PROFESIONAL - SVINUM
   =================================== */

.footer-professional {
    background: #1f1f1f;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

/* Footer Main Section */
.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-section {
    height: 100%;
}

/* Footer Titles */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-link i {
    font-size: 0.7rem;
    margin-right: 0.5rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-link:hover i {
    opacity: 1;
    color: #fff;
}

/* Contact Section */
.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ffffff;
}

.contact-icon {
    color: #fff;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background: #fff;
    color: #1F1F1F;
}

/* Newsletter Section */
.newsletter-text {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    margin-bottom: 1rem;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 0.5rem 0 0 0.5rem !important;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #B68299 !important;
    box-shadow: 0 0 0 0.2rem rgba(182, 130, 153, 0.25) !important;
    color: #ffffff !important;
}

.newsletter-btn {
    background: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 0 0.5rem 0.5rem 0;
    color: #1F1F1F !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-btn:hover {
    background: #1f1f1f !important;
    border-color: #1f1f1f !important;
    color: white !important;
    transform: translateY(-1px);
}

.newsletter-info {
    color: #ffffff;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.copyright strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-policies {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-end;
}

.policy-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.policy-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #fff;
    transition: width 0.3s ease;
}

.policy-link:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-policies {
        gap: 1rem;
    }
    
    .policy-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-column {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        width:90%;
        margin:auto;
        padding: 2.5rem 0 1rem;
    }
    
    .newsletter-input{
        width:100% !important;
    }
    
    .footer-bottom {
        padding: 1.25rem 0;
        text-align: center;
    }
    
    .footer-policies {
        justify-content: center;
        margin-top: 1rem;
        gap: 1rem;
    }
    
    .copyright {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: flex-start;
        text-align: left;
    }
    
    .c-copy{
        order:2;
        margin-top:20px;
    }
    
    .c-legal{
        order:1;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 2rem 0 1rem;
    }
    
    .footer-title {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-link {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 0.5rem !important;
        margin-bottom: 0.75rem;
    }
    
    .newsletter-btn {
        border-radius: 0.5rem;
        justify-content: center;
    }
    
    .footer-policies {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .policy-link {
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) .footer-section { animation-delay: 0.1s; }
.footer-column:nth-child(2) .footer-section { animation-delay: 0.2s; }
.footer-column:nth-child(3) .footer-section { animation-delay: 0.3s; }
.footer-column:nth-child(4) .footer-section { animation-delay: 0.4s; }