/* =================================
   FOOTER ORTHOMEDOC
   ================================= */

.orthomedoc-footer {
    background: var(--color-primary-hover);
    color: var(--color-text-white);
    padding: 60px 0 40px;
    margin-top: 0;
    width: 100%;
}

.orthomedoc-footer .footer-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.orthomedoc-footer .footer-columns {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.3fr;
    gap: 60px;
    align-items: start;
}

/* Force 3 colonnes sur grands écrans */
@media (min-width: 1200px) {
    .orthomedoc-footer .footer-columns {
        grid-template-columns: 2fr 1.2fr 1.3fr;
    }
}

/* Colonne 1 - Branding */
.orthomedoc-footer .footer-branding {
    max-width: 550px;
}

.orthomedoc-footer .footer-column {
    min-width: 0; /* Évite que les colonnes se compressent */
}

.orthomedoc-footer .footer-logo-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-text-white);
    margin: 0 0 5px 0;
    letter-spacing: 2px;
}

.orthomedoc-footer .footer-logo-text h2 a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.orthomedoc-footer .footer-logo-text h2 a:hover {
    opacity: 0.8;
}

.orthomedoc-footer .footer-logo-text .script {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
}

.orthomedoc-footer .footer-logo-text .subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    margin: 0 0 3px 0;
    text-transform: uppercase;
    font-weight: 400;
}

.orthomedoc-footer .footer-logo-text .doctor {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 16px;
    margin: 0 0 20px 0;
}

.orthomedoc-footer .footer-logo {
    margin-bottom: 20px;
}

.orthomedoc-footer .footer-logo img {
    max-width: 300px;
    height: auto;
    filter: brightness(0) invert(1);
}

.orthomedoc-footer .footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 25px 0 0 0;
    max-width: 400px;
}

/* Colonne 2 - Navigation */
.orthomedoc-footer .footer-nav-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    color: var(--color-text-white);
}

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

.orthomedoc-footer .footer-links li {
    margin-bottom: 12px;
}

.orthomedoc-footer .footer-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.orthomedoc-footer .footer-links a:hover {
    color: var(--color-text-white);
    opacity: 1;
    transform: translateX(3px);
}

/* Colonne 3 - Adresse et Doctolib */
.orthomedoc-footer .footer-address-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    color: var(--color-text-white);
}

.orthomedoc-footer .footer-location {
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 30px 0;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.orthomedoc-footer .footer-location svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    opacity: 0.9;
    margin-top: 2px;
}

.orthomedoc-footer .footer-doctolib {
    margin-top: 30px;
}

.orthomedoc-footer .footer-doctolib a {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.orthomedoc-footer .footer-doctolib a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.orthomedoc-footer .doctolib-logo {
    max-width: 160px;
    height: auto;
    filter: brightness(0) invert(1);
    display: block;
}

.orthomedoc-footer .doctolib-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1400px) {
    .orthomedoc-footer .footer-columns {
        gap: 40px;
    }
}

@media (max-width: 1100px) {
    .orthomedoc-footer .footer-columns {
        grid-template-columns: 1.8fr 1fr 1.2fr;
        gap: 35px;
    }
    
    .orthomedoc-footer .footer-branding {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .orthomedoc-footer .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .orthomedoc-footer .footer-branding {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .orthomedoc-footer {
        padding: 40px 0;
    }
    
    .orthomedoc-footer .footer-content {
        padding: 0 20px;
    }
    
    .orthomedoc-footer .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .orthomedoc-footer .footer-branding,
    .orthomedoc-footer .footer-nav,
    .orthomedoc-footer .footer-address-col {
        text-align: center;
    }
    
    .orthomedoc-footer .footer-location {
        justify-content: center;
    }
    
    .orthomedoc-footer .footer-doctolib {
        display: flex;
        justify-content: center;
    }

    /* Centrer le branding (logo + textes) */
    .orthomedoc-footer .footer-branding {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }
    .orthomedoc-footer .footer-logo,
    .orthomedoc-footer .footer-logo-text,
    .orthomedoc-footer .footer-tagline {
        text-align: center;
    }
    
    .orthomedoc-footer .footer-links a:hover {
        transform: translateX(2px);
    }
}

/* ===== SECTION LÉGALE ===== */
.orthomedoc-footer .footer-legal {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.orthomedoc-footer .footer-legal-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.orthomedoc-footer .footer-copyright {
    flex: 1;
    min-width: 200px;
}

.orthomedoc-footer .footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.orthomedoc-footer .footer-legal-nav {
    flex: 1;
    min-width: 200px;
}

.orthomedoc-footer .footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
}

.orthomedoc-footer .footer-legal-links li {
    margin: 0;
}

.orthomedoc-footer .footer-legal-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.orthomedoc-footer .footer-legal-links a:hover {
    color: var(--color-text-white);
    opacity: 1;
    transform: translateX(3px);
}

/* Responsive Section Légale */
@media (max-width: 768px) {
    .orthomedoc-footer .footer-legal {
        margin-top: 40px;
        padding-top: 25px;
    }
    
    .orthomedoc-footer .footer-legal-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .orthomedoc-footer .footer-legal-links {
        justify-content: center;
        gap: 15px;
    }
    
    .orthomedoc-footer .footer-legal-links li {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .orthomedoc-footer .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .orthomedoc-footer .footer-legal-links a {
        font-size: 13px;
    }
}

