/**
 * CARLISI - CRELAN LIÈGE
 * Styles pour les pages internes : Contact, Équipe, Actualités
 */

/* =====================================================
   BREADCRUMB
   ===================================================== */

.breadcrumb-container {
    background: var(--color-white);
    /* Fond blanc */
    padding: 0.5rem 0;
    /* Hauteur encore plus réduite */
    border-bottom: 1px solid #e5e7eb;
    /* Bordure plus subtile */
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-home {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.breadcrumb a {
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--color-pistachio);
}

.breadcrumb .separator {
    color: var(--color-gray);
}

.breadcrumb .current {
    color: var(--color-gray-dark);
    font-weight: 500;
}

/* =====================================================
   PAGE CONTACT - LAYOUT
   ===================================================== */

.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Formulaire de contact */
.contact-form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.contact-form {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-gray);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-pistachio);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Info cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--color-pistachio);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--color-black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h3 i {
    color: var(--color-pistachio);
    font-size: 1.5rem;
}

.info-content p {
    margin-bottom: 1rem;
}

.info-content .agency-name {
    font-size: 1.1rem;
    color: var(--color-black);
}

.info-content .address {
    color: var(--color-gray-dark);
    line-height: 1.6;
}

.info-content .phone,
.info-content .email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-content .phone i,
.info-content .email i {
    color: var(--color-pistachio);
    min-width: 20px;
}

.info-content .phone a,
.info-content .email a {
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s;
}

.info-content .phone a:hover,
.info-content .email a:hover {
    color: var(--color-pistachio);
}

/* Status badge */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.status-badge.status-open {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-closed {
    background: #f8d7da;
    color: #721c24;
}

.status-badge.status-appointment {
    background: #fff3cd;
    color: #856404;
}

/* Hours items */
.hours-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-black);
}

.hours-item p {
    color: var(--color-gray-dark);
    margin-bottom: 0;
}

.link-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-pistachio);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: gap 0.3s;
}

.link-with-icon:hover {
    gap: 0.75rem;
}

/* Google Maps */
.map-section {
    padding: 0 0 4rem;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

.alert i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert strong {
    display: block;
    margin-bottom: 0.25rem;
}

.alert ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.25rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* =====================================================
   PAGE ÉQUIPE
   ===================================================== */

.team-intro {
    padding: 3rem 0;
    background: var(--color-gray-light);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content .text-large {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-content p {
    color: var(--color-gray-dark);
    line-height: 1.7;
}

/* Team Members Grid */
.team-members {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--color-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-gray) 100%);
}

.photo-placeholder i {
    font-size: 4rem;
    color: var(--color-gray-dark);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.team-function {
    color: var(--color-gray-dark);
    font-size: 0.95rem;
}

/* =====================================================
   PAGE ACTUALITÉS
   ===================================================== */

.actualites-content {
    padding: 3rem 0 4rem;
}

/* Filters Bar */
.filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filters-left .results-count {
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    margin: 0;
}

.filters-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-dropdown label {
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    white-space: nowrap;
}

.filter-dropdown label i {
    color: var(--color-pistachio);
}

.filter-dropdown select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-gray);
    border-radius: 4px;
    font-size: 0.95rem;
    background: var(--color-white);
    cursor: pointer;
}

.btn-reset-filter {
    padding: 0.5rem 1rem;
    background: var(--color-gray-light);
    color: var(--color-gray-dark);
    border: 1px solid var(--color-gray);
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s, color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-reset-filter:hover {
    background: var(--color-gray);
    color: var(--color-black);
}

/* Actualités Grid */
.actualites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.actualite-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.actualite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--color-gray-light);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.actualite-card:hover .card-image img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-gray) 100%);
}

.image-placeholder i {
    font-size: 3rem;
    color: var(--color-gray-dark);
}

.category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-pistachio);
    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

.card-content {
    padding: 1.5rem;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-gray-dark);
    margin-bottom: 1rem;
}

.card-meta i {
    color: var(--color-pistachio);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-black);
    line-height: 1.4;
}

.card-excerpt {
    color: var(--color-gray-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-pistachio);
    font-weight: 600;
    transition: gap 0.3s;
}

.actualite-card:hover .read-more {
    gap: 0.75rem;
}

/* Pagination */
.pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-link,
.pagination-prev,
.pagination-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-gray);
    border-radius: 4px;
    background: var(--color-white);
    color: var(--color-black);
    text-decoration: none;
    transition: all 0.3s;
}

.pagination-link:hover,
.pagination-prev:hover,
.pagination-next:hover {
    background: var(--color-pistachio);
    color: var(--color-white);
    border-color: var(--color-pistachio);
}

.pagination-link.active {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.pagination-dots {
    color: var(--color-gray-dark);
    padding: 0 0.5rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-gray-light);
    border-radius: 8px;
}

.no-results i {
    font-size: 4rem;
    color: var(--color-gray-dark);
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.no-results p {
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
}

.cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    color: var(--color-white);
}

.cta-content h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* =====================================================
   RESPONSIVE - TABLETTE
   ===================================================== */

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .actualites-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/* =====================================================
   PAGE ACTUALITÉ - DÉTAIL
   ===================================================== */

.actualite-detail {
    padding: 3rem 0 4rem;
}

.article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.article-category {
    display: inline-block;
    background: var(--color-pistachio);
    color: var(--color-white);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 0.95rem;
    color: var(--color-gray-dark);
}

.article-meta i {
    color: var(--color-pistachio);
    margin-right: 0.5rem;
}

.article-featured-image {
    max-width: 1200px;
    margin: 0 auto 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
}

.article-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--color-black);
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--color-black);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.article-content a {
    color: var(--color-pistachio);
    text-decoration: underline;
}

.article-content a:hover {
    color: var(--color-green-dark);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-content blockquote {
    border-left: 4px solid var(--color-pistachio);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-gray-dark);
}

.article-actions {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 2px solid var(--color-gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-share span {
    font-weight: 600;
    color: var(--color-gray-dark);
}

.share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.share-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-link.facebook {
    background: #1877f2;
    color: white;
}

.share-link.linkedin {
    background: #0a66c2;
    color: white;
}

.share-link.email {
    background: var(--color-gray-dark);
    color: white;
}

.related-actualites {
    padding: 4rem 0;
    background: var(--color-gray-light);
}

.related-actualites h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--color-black);
}

/* =====================================================
   PAGE JOURS DE FERMETURE
   ===================================================== */

.closure-days-content {
    padding: 3rem 0 4rem;
}

.closure-section {
    margin-bottom: 4rem;
}

.closure-section h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--color-black);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.closure-section h2 i {
    color: var(--color-pistachio);
}

.closure-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.closure-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.closure-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.closure-item.upcoming {
    border-left: 4px solid var(--color-pistachio);
}

.closure-item.past {
    opacity: 0.7;
}

.closure-date {
    flex-shrink: 0;
    width: 100px;
    text-align: center;
    background: linear-gradient(135deg, var(--color-pistachio) 0%, var(--color-green-dark) 100%);
    color: var(--color-white);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.closure-date.small {
    width: 80px;
    padding: 0.75rem;
}

.date-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.date-year {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.closure-details {
    flex: 1;
}

.closure-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.closure-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    color: var(--color-black);
}

.closure-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    margin: 0;
}

.closure-meta i {
    color: var(--color-pistachio);
}

.closure-type-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.closure-type-badge.type-bank_holiday {
    background: #e3f2fd;
    color: #1565c0;
}

.closure-type-badge.type-exceptional {
    background: #fff3e0;
    color: #e65100;
}

.closure-type-badge.type-maintenance {
    background: #f3e5f5;
    color: #6a1b9a;
}

.no-closures {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-white);
    border-radius: 8px;
    border: 2px dashed var(--color-gray);
}

.no-closures i {
    font-size: 3rem;
    color: var(--color-pistachio);
    margin-bottom: 1rem;
}

.no-closures p {
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
}

.past-closures {
    opacity: 0.85;
}

.info-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    border-radius: 8px;
    margin-top: 3rem;
}

.info-icon {
    flex-shrink: 0;
}

.info-icon i {
    font-size: 2rem;
    color: #2e7d32;
}

.info-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-gray-dark);
    line-height: 1.6;
}

.info-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* =====================================================
   RESPONSIVE - TABLETTE
   ===================================================== */

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .actualites-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-content {
        font-size: 1.05rem;
    }
}

/* =====================================================
   RESPONSIVE - MOBILE
   ===================================================== */

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero .lead {
        font-size: 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .filters-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filters-left,
    .filters-right {
        width: 100%;
    }

    .filters-right {
        flex-direction: column;
        gap: 0.75rem;
    }

    .filter-dropdown {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-dropdown select {
        width: 100%;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .actualites-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .pagination ul {
        flex-wrap: wrap;
    }

    /* Actualité détail - mobile */
    .article-header h1 {
        font-size: 1.75rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .article-share {
        justify-content: center;
    }

    /* Jours de fermeture - mobile */
    .closure-item {
        flex-direction: column;
        gap: 1rem;
    }

    .closure-date {
        width: 100%;
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
    }

    .info-box {
        flex-direction: column;
    }
}

/* =====================================================
   CATEGORY PAGE MENUS (Banque & Assurances) - CARDS
   ===================================================== */

.full-menu-display .mega-menu-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: transparent;
    box-shadow: none;
    padding: 0;
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    max-height: none;
    width: 100%;
}

.full-menu-display .mega-menu-column {
    flex: 1 1 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    border-top: 5px solid var(--color-green-1, #00703c);
}

.full-menu-display .mega-menu-column h3 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 1.4rem;
    color: var(--color-green-1, #00703c);
}

.full-menu-display .menu-section {
    margin-bottom: 25px;
    /* Force visibility overrides against main.css defaults */
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    /* Fix: Override responsive.css max-height:0 collapsing */
    max-height: none !important;
    overflow: visible !important;
}

/* =====================================================
   PARTNERS LOGO STYLES (Used on Assurances & Banque)
   ===================================================== */
.partners-carousel-section {
    margin: 30px auto 50px;
    max-width: 1000px;
}

.partners-title {
    text-align: center;
    font-size: 1.3rem;
    color: var(--color-green-1);
    margin-bottom: 25px;
    font-weight: 600;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.partners-track {
    display: flex;
    gap: 40px;
    animation: scroll 25s linear infinite;
}

/* Single logo display (for Banque) */
.single-partner-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.partner-logo {
    flex-shrink: 0;
    width: 280px;
    /* Doubled for single main logo, or kept variable */
    height: 140px;
    /* Doubled height for main logo */
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    border-color: var(--color-green-1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Remove grayscale for main branding if requested, but user said "same style" so we keep default or override? */
    /* Let's keep the filter base but maybe optionalize it */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Modifier for main branding logo (no grayscale) */
.partner-logo.branding-logo {
    width: auto;
    height: auto;
    min-width: 200px;
    min-height: 100px;
}

.partner-logo.branding-logo img {
    filter: none;
    opacity: 1;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-140px * 6 - 40px * 6));
    }
}

.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}

.full-menu-display .menu-section:last-child {
    margin-bottom: 0;
}

.full-menu-display .menu-section h4 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.full-menu-display .menu-section h4::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--color-green-2, #87b926);
    border-radius: 50%;
    margin-right: 10px;
}

.full-menu-display .menu-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 16px;
    border-left: 2px solid #f0f0f0;
    /* Force visibility overrides against main.css defaults */
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
}

.full-menu-display .menu-section ul li {
    margin-bottom: 8px;
}

.full-menu-display .menu-section ul li a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    display: block;
    padding: 4px 0;
    transition: color 0.2s, transform 0.2s;
}

.full-menu-display .menu-section ul li a:hover {
    color: var(--color-green-1, #00703c);
    transform: translateX(5px);
}

/* Responsive Mobile Specifics */
@media (max-width: 768px) {
    .full-menu-display .mega-menu-content {
        flex-direction: column;
        gap: 20px;
    }

    .full-menu-display .mega-menu-column {
        flex: 1 1 100%;
        padding: 20px;
        border-radius: 8px;
    }

    .full-menu-display .mega-menu-column h3 {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    /* Make links bigger touch targets on mobile */
    .full-menu-display .menu-section ul li a {
        padding: 8px 0;
        font-size: 1rem;
        border-bottom: 1px dashed #eee;
    }
}