/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    color: #495057;
    border-top: 1px solid #e9ecef;
    padding: 0;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--purple) 0%, var(--primary) 100%);
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.footer-text {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--purple);
    transform: translateX(3px);
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.9rem;
    color: var(--primary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-contact-text {
    color: #6c757d;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #f1f3f5;
    color: var(--purple);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: var(--purple);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(100, 18, 243, 0.2);
}

.footer .container {
    width: 100%;
    max-width: 1320px;
    padding-left: 30px;
    padding-right: 30px;
}
@media (min-width:992px){
    .footer .container {
    padding-top: 30px;  
    }
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Copyright section - takes full height of footer */
.copyright {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 1.5rem;
    min-height: 60px;
}

.copyright p {
    margin: 0;
    font-weight: 500;
    color: #495057;
}

@media (min-width: 992px) {
    .copyright {
        padding: 2.5rem 1.875rem 2rem;
    }
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: #6c757d;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--purple);
}

/* Demo Form Styles */
.footer-demo-form {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    overflow: hidden;
}

.footer-demo-inline-form {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.footer-demo-input {
    flex: 1;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease;
    height: 42px;
    min-width: 0;
    /* Empêche l'input de déborder */
}

.footer-demo-input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(100, 18, 243, 0.1);
}

.footer-demo-button {
    background: linear-gradient(90deg, var(--purple) 0%, var(--primary) 100%);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: 42px;
    min-width: 90px;
    flex-shrink: 0;
    /* Empêche le bouton de rétrécir */
}

.footer-demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 18, 243, 0.2);
}
@media (max-width:1024px){
    .row {
    display: flex;
    flex-direction: column;
}
    .col-lg-4 {
        max-width: 100%;
        text-align: center;
    }
    .footer-social {
    display: flex;
    gap: 52px;
    margin-top: 1.5rem;
    justify-content: center;
}

}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-newsletter-form {
        flex-direction: column;
    }

    .footer-col {
        margin-bottom: 2rem;
    }
}
.address, .phone{
    display: none;
}