* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #fff;
}

/* ============== HEADER TOP ============== */
.header-top {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.header-top .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.tophead-menu {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
}

.tophead-menu li {
    margin: 0;
}

.tophead-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 20px;
    font-size: 0.95rem;
    color: #333;
    text-decoration: none;
    border-right: 1px solid #ddd;
    transition: all 0.3s ease;
    font-weight: 400;
}

.tophead-menu li:first-child a {
    padding-left: 20px;
}

.tophead-menu li:last-child a {
    border-right: none;
}

.tophead-menu li a:hover {
    background-color: #002c40;
    color: #fff;
}

/* Logo UFC International - Badge rouge */
.tophead-menu li.menu-logo {
    padding-right: 0;
    border-right: none;
}

.tophead-menu li.menu-logo a {
    padding: 5px 15px;
    border: none;
    width: auto;
    height: 50px;
    position: relative;
}

.tophead-menu li.menu-logo a:hover {
    background-color: transparent;
}

/* Container pour le logo + badge */
.ufc-logo-wrapper {
    position: relative;
    width: 55px;
    height: 40px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.tophead-menu li.menu-logo:hover .ufc-logo-wrapper {
    transform: scale(1.08);
}

/* Image des lèvres UFC d'origine */
.ufc-logo-base {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mini badge international ROUGE */
.intl-badge {
    position: absolute;
    top: -3px;
    right: -5px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #EF4035 0%, #d63530 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(239, 64, 53, 0.4);
    border: 1.5px solid #fff;
}

.intl-badge i {
    color: #fff;
    font-size: 8px;
}

/* Animation au survol */
.tophead-menu li.menu-logo:hover .intl-badge {
    animation: pulse 0.6s ease-in-out;
    box-shadow: 0 3px 6px rgba(239, 64, 53, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* ENT en gras */
.tophead-menu li.menu-ent a {
    font-weight: 700;
}

/* ACT'U' avec U rouge */
.tophead-menu li.menu-actu a {
    font-weight: 400;
}

.tophead-menu li.menu-actu a .highlight {
    color: #EF4035;
    font-weight: 700;
}

/* ============== MASTHEAD ============== */
.masthead {
    background: linear-gradient(90deg,
            #e91e63 0%,
            #e85d84 15%,
            #fcb900 40%,
            #e85d84 60%);
    padding: 30px 0;
}

.masthead .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.masthead-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    background-color: #EF4035;
}

/* ============== NAVIGATION PRINCIPALE ============== */
.nav-main {
    background-color: #002c40;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-main .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-menu {
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-menu>li {
    position: relative;
}

.main-menu>li>a {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: capitalize;
    transition: all 0.3s ease;
    gap: 8px;
}

.main-menu>li>a:hover,
.main-menu>li.active>a {
    color: #EF4035;
}

.main-menu>li>a .arrow {
    font-size: 0.7rem;
    margin-left: 5px;
}

/* Submenu */
.main-menu>li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #002c40;
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.main-menu>li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu .submenu li a {
    display: block;
    padding: 12px 25px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.main-menu .submenu li a:hover {
    background-color: #EF4035;
    padding-left: 30px;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1200px) {
    .main-menu {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .main-menu>li>a {
        padding: 15px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 1023px) {
    .header-top {
        display: none;
    }

    .masthead {
        padding: 20px 0;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .masthead .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-main {
        position: relative;
    }

    .main-menu {
        flex-direction: column;
        align-items: stretch;
    }

    .main-menu>li {
        width: 100%;
        text-align: center;
    }

    .main-menu>li>a {
        justify-content: center;
    }

    .main-menu>li .submenu {
        position: relative;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .main-menu>li:hover .submenu {
        display: block;
    }
}

/* ============== FOOTER ============== */

/* ============== FOOTER ============== */
.site-footer {
    background-color: #002c40;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-main {
    background-image: url('/medias/fond_footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0 40px;
}

/* Overlay sombre pour améliorer la lisibilité du texte */
.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Assurer que le contenu est au-dessus de l'overlay */
.footer-main .container,
.footer-content,
.footer-col {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 200px;
}

.footer-col h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    border-bottom: 3px solid rgba(255, 255, 255);
    padding-bottom: 10px;
    width: max-content;
}

/* Colonne informations */
.footer-info p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-phone {
    margin: 20px 0 30px 0!important;
    font-size: 1rem !important;
}

.footer-italic {
    font-style: italic;
}

/* Colonne liens utiles */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 15px 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    transform: translateX(5px);
    text-decoration: underline;
}

/* Footer bottom - Copyright et social */
.footer-bottom {
    background-color: #002c40;
    padding: 20px 0;
    color: #fff;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 300px;
    position: relative;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Social icons dans footer */
.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    color: #002c40;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #EF4035;
    color: #fff;
    transform: scale(1.1);
}

/* Bouton retour en haut */
.back-to-top {
    position: absolute;
    right: 20px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: #fff;
    color: #002c40;
    transform: translateY(-3px);
}

/* ============== RESPONSIVE FOOTER ============== */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .back-to-top {
        position: relative;
        right: auto;
    }

    .footer-social {
        order: 2;
    }

    .back-to-top {
        order: 3;
    }
}

@media (max-width: 480px) {
    .footer-col h3 {
        font-size: 1.1rem;
    }

    .footer-info p,
    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* ============== CONTENU PRINCIPAL ============== */
.main-content {
    background-color: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============== HERO SECTION ============== */
.hero-section {
    padding: 60px 0 40px;
    background-color: #fff;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #002c40;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #EF4035;
    font-weight: 600;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 30px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ============== SECTIONS GÉNÉRALES ============== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #002c40;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #EF4035 0%, #fcb900 100%);
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* ============== MAGAZINE SECTION ============== */
.magazine-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.magazine-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.magazine-cover {
    text-align: center;
}

.magazine-img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.magazine-img:hover {
    transform: scale(1.05);
}

.magazine-description h3 {
    font-size: 1.5rem;
    color: #002c40;
    margin-bottom: 25px;
}

.magazine-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 0.9rem;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list i {
    color: #EF4035;
    font-size: 1.2rem;
}

/* ============== BOUTONS ============== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #EF4035 0%, #d63530 100%);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d63530 0%, #c42d28 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 64, 53, 0.3);
}

.btn-secondary {
    background-color: #002c40;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #004d6b;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.btn-social {
    background-color: transparent;
    border: 2px solid currentColor;
    padding: 12px 25px;
}

/* ============== VIDEO SECTION ============== */
.video-section {
    padding: 80px 0;
    background-color: #fff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.video-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    width: 100%;
    background-color: #000;
    position: relative;
}

.video-thumbnail video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 1.4rem;
    color: #002c40;
    margin-bottom: 12px;
}

.video-info p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Video */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-thumbnail video {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .video-thumbnail video {
        max-height: 250px;
    }
    
    .video-info {
        padding: 20px;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
}


/* ============== WEBTV SECTION ============== */

.webtv-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Donne plus de place à la vidéo */
    gap: 40px;
    align-items: start;
}

/* Conteneur vidéo responsive */
.webtv-player {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    background: #000;
}

/* Wrapper pour maintenir le ratio 16:9 */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* Ratio 16:9 (9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.webtv-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.webtv-info h3 {
    font-size: 1.6rem;
    color: #002c40;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.webtv-info h3 i {
    color: #EF4035;
}

.webtv-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.webtv-schedule {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #EF4035;
    margin-bottom: 25px;
}

.webtv-schedule h4 {
    color: #002c40;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.webtv-schedule ul {
    list-style: none;
    padding: 0;
}

.webtv-schedule li {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    line-height: 1.6;
}

.webtv-schedule li:last-child {
    border-bottom: none;
}

.webtv-schedule li strong {
    color: #002c40;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.live-badge {
    display: inline-block;
    background: linear-gradient(135deg, #EF4035 0%, #d63530 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 8px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.webtv-links {
    margin-top: auto;
    /* Pousse le bouton vers le bas */
}

.webtv-links .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
}

/* Responsive WebTV */
@media (max-width: 1024px) {
    .webtv-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .webtv-section {
        padding: 50px 0;
    }

    .webtv-info {
        padding: 25px;
    }

    .webtv-schedule {
        padding: 15px;
    }
}

/* ============== PROGRAMS SECTION ============== */
.programs-section {
    padding: 80px 0;
    background-color: #fff;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.program-card {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.program-card:hover {
    border-color: #EF4035;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(239, 64, 53, 0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #EF4035 0%, #fcb900 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
}

.program-card h3 {
    font-size: 1.6rem;
    color: #002c40;
    margin-bottom: 15px;
}

.program-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ============== SOCIAL SECTION ============== */
.social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #002c40 0%, #004d6b 100%);
    color: #fff;
}

.social-section .section-title {
    color: #fff;
}

.social-section .section-title::after {
    background: linear-gradient(90deg, #fcb900 0%, #fff 100%);
}

.social-section .section-intro {
    color: rgba(255, 255, 255, 0.9);
}

.social-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.social-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.social-card i {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.social-card.linkedin i {
    color: #0077b5;
}

.social-card.instagram i {
    color: #E4405F;
}

.social-card.tiktok i {
    color: #000;
}

.social-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.social-card p {
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.95;
}

.social-card .btn-social {
    color: #fff;
    border-color: #fff;
}

.social-card .btn-social:hover {
    background-color: #fff;
    color: #002c40;
}

/* ============== CONTACT SECTION ============== */
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #002c40;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: #333;
}

.contact-item i {
    font-size: 1.5rem;
    color: #EF4035;
    width: 30px;
}

.contact-cta {
    background: linear-gradient(135deg, #EF4035 0%, #fcb900 100%);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(239, 64, 53, 0.3);
}

.contact-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-cta .btn-primary {
    background-color: #fff;
    color: #EF4035;
}

.contact-cta .btn-primary:hover {
    background-color: #002c40;
    color: #fff;
}

/* ============== RESPONSIVE CONTENT ============== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .magazine-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .webtv-container {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .magazine-section,
    .video-section,
    .webtv-section,
    .programs-section,
    .social-section,
    .contact-section {
        padding: 50px 0;
    }

    .video-grid,
    .programs-grid,
    .social-feed {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .program-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .social-card i {
        font-size: 2.5rem;
    }
}

/* ============== ÉLÉMENTS INTERNATIONAUX ============== */

/* Drapeaux dans le hero */
.hero-flags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 2.5rem;
    animation: wave 3s ease-in-out infinite;
}

.hero-flags span {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.hero-flags span:nth-child(2) { animation-delay: 0.2s; }
.hero-flags span:nth-child(3) { animation-delay: 0.4s; }
.hero-flags span:nth-child(4) { animation-delay: 0.6s; }
.hero-flags span:nth-child(5) { animation-delay: 0.8s; }
.hero-flags span:nth-child(6) { animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Description multilingue dans hero */
.hero-description-intl {
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 2.2;
    font-size: 1rem;
}

.lang-badge {
    display: inline-block;
    background-color: rgba(239, 64, 53, 0.1);
    padding: 3px 10px;
    border-radius: 15px;
    font-weight: 600;
    color: #002c40;
    margin-right: 8px;
}

/* Titres bilingues */
.title-main {
    display: block;
}

.title-sub {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: #EF4035;
    margin-top: 10px;
    opacity: 0.9;
}

/* Traductions sous les textes */
.webtv-translation,
.video-translation,
.program-translation,
.social-translation {
    font-size: 0.95rem;
    color: #777;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 3px solid #fcb900;
}

.section-intro-translation {
    font-size: 1rem;
    color: #888;
    display: block;
    margin-top: 10px;
}

/* Badge langue sur vidéo */
.video-language-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #EF4035 0%, #fcb900 100%);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Drapeaux dans les cartes programmes */
.program-flag {
    font-size: 3rem;
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.2;
}

.program-card {
    position: relative;
}

.program-subtitle {
    font-size: 1.1rem;
    color: #EF4035;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 15px;
}

.program-countries {
    font-size: 1.5rem;
    margin: 15px 0;
    text-align: center;
}

/* ============== SECTION DESTINATIONS ============== */
.destinations-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.destination-item {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.destination-item:hover {
    border-color: #EF4035;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(239, 64, 53, 0.15);
}

.destination-flag {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 15px;
}

.destination-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #002c40;
}

/* Responsive International */
@media (max-width: 768px) {
    .hero-flags {
        font-size: 2rem;
        gap: 10px;
    }
    
    .hero-description-intl {
        font-size: 0.9rem;
        line-height: 2;
    }
    
    .title-sub {
        font-size: 1rem;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .destination-flag {
        font-size: 2.5rem;
    }
}

/* ============== LANGUAGE SWITCHER ============== */
.language-switcher {
    position: fixed;
    top: 120px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 2px solid transparent;
    background-color: #f5f5f5;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    color: #002c40;
}

.lang-btn .flag {
    font-size: 1.5rem;
}

.lang-btn:hover {
    background-color: #e8e8e8;
    transform: scale(1.05);
}

.lang-btn.active {
    background: linear-gradient(135deg, #EF4035 0%, #fcb900 100%);
    color: #fff;
    border-color: #EF4035;
}

/* ============== HERO SECTION UPDATED ============== */
.hero-section {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.world-map-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cpath fill='%23002c40' opacity='0.05' d='M600 300 L650 280 L680 290 L700 270 L730 285 L750 275 L780 290 L800 280 L830 295 L850 285 L600 300 M400 320 L430 310 L450 325 L480 315 L500 330 L530 320 L550 335 L400 320'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #002c40;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #EF4035;
    font-weight: 600;
}

/* ============== MAGAZINE SECTION VISUAL ============== */
.magazine-visual {
    position: relative;
    display: inline-block;
}

.globe-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 4rem;
    animation: rotate-globe 20s linear infinite;
}

@keyframes rotate-globe {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 1.05rem;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.features-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(239, 64, 53, 0.15);
}

.feature-icon {
    font-size: 2rem;
    min-width: 40px;
    text-align: center;
}

/* ============== DESTINATIONS VISUAL - VERSION MODERNE ============== */
.destinations-visual {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.destinations-visual::before {
    content: '✈️';
    position: absolute;
    top: 50px;
    right: 100px;
    font-size: 8rem;
    opacity: 0.05;
    animation: float-plane 20s ease-in-out infinite;
}

@keyframes float-plane {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(100px, 0) rotate(0deg);
    }

    75% {
        transform: translate(50px, 30px) rotate(-5deg);
    }
}

.destinations-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.destination-card {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.destination-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.destination-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-card:hover .destination-bg {
    transform: scale(1.1);
}

.destination-flag-large {
    font-size: 8rem;
    opacity: 0.3;
    filter: blur(2px);
    transition: all 0.5s ease;
}

.destination-card:hover .destination-flag-large {
    font-size: 10rem;
    opacity: 0.5;
    filter: blur(3px);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    color: #fff;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.destination-card:hover .destination-content {
    padding: 30px;
}

.destination-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.destination-city {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-weight: 400;
}

.destination-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.destination-card:hover .destination-stats {
    opacity: 1;
    transform: translateY(0);
}

.destination-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.destination-stats i {
    color: #fcb900;
}

/* Statistiques globales */
.destinations-stats-global {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #002c40 0%, #004d6b 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 44, 64, 0.3);
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #EF4035 0%, #fcb900 100%);
    border-radius: 2px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fcb900;
    margin-bottom: 10px;
    text-shadow: 0 3px 10px rgba(252, 185, 0, 0.3);
    animation: count-up 2s ease-out;
}

@keyframes count-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Destinations */
@media (max-width: 1024px) {
    .destinations-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-card {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .destinations-visual {
        padding: 50px 0;
    }

    .destinations-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .destination-card {
        height: 260px;
    }

    .destination-content h3 {
        font-size: 1.6rem;
    }

    .destination-flag-large {
        font-size: 6rem;
    }

    .destinations-stats-global {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .destination-card {
        height: 240px;
    }

    .destination-content {
        padding: 20px;
    }

    .destination-content h3 {
        font-size: 1.4rem;
    }

    .destination-city {
        font-size: 0.85rem;
    }

    .destinations-stats-global {
        grid-template-columns: 1fr;
    }
}

@keyframes pin-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.pin-flag {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.pin-name {
    background-color: rgba(255, 255, 255, 0.95);
    color: #002c40;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* ============== VIDEO SECTION VISUAL ============== */
.video-country-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 3rem;
    z-index: 10;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
    animation: flag-wave 3s ease-in-out infinite;
}

@keyframes flag-wave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

.video-location {
    font-size: 1.2rem;
    font-weight: 600;
    color: #EF4035;
    margin: 10px 0;
}

/* ============== PROGRAMS VISUAL ============== */
.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.program-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.program-card:hover .program-icon::before {
    width: 100%;
    height: 100%;
}

.program-flags {
    font-size: 1.8rem;
    text-align: center;
    margin: 20px 0;
    line-height: 1.8;
}

/* ============== WEBTV LIVE BADGE ============== */
.live-badge {
    display: inline-block;
    background: linear-gradient(135deg, #EF4035 0%, #d63530 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 8px;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 64, 53, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(239, 64, 53, 0);
    }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
    .language-switcher {
        top: 80px;
        right: 15px;
        padding: 10px;
    }

    .destinations-map {
        height: 400px;
    }

    .destination-pin {
        animation: none;
    }

    .pin-flag {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .language-switcher {
        flex-direction: row;
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .destinations-map {
        height: 300px;
    }

    .destination-pin {
        transform: scale(0.8);
    }

    .pin-name {
        font-size: 0.75rem;
    }

    .video-country-badge {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .lang-btn {
        padding: 8px 12px;
    }

    .lang-btn .lang-text {
        display: none;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .destinations-map {
        height: 250px;
    }

    .program-flags {
        font-size: 1.4rem;
    }
}

/* ============== PROGRAMS SECTION ============== */
.programs-section {
    padding: 80px 0;
    background-color: #fff;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.program-card {
    background-color: #f9f9f9;
    padding: 40px 30px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.program-card:hover {
    border-color: #EF4035;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(239, 64, 53, 0.15);
}

.program-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.program-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.program-card:hover .program-icon::before {
    width: 100%;
    height: 100%;
}

.program-card h3 {
    font-size: 1.6rem;
    color: #002c40;
    margin-bottom: 15px;
}

.program-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.program-flags {
    font-size: 1.8rem;
    text-align: center;
    margin: 20px 0;
    line-height: 1.8;
}

.btn-program {
    width: auto;
    margin: 20px auto 0;
    display: inline-flex;
}

.program-card {
    background-color: #f9f9f9;
    padding: 40px 30px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100%;
}

/* Responsive Programs */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .programs-section {
        padding: 50px 0;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .program-card {
        padding: 35px 25px 25px;
    }
}

@media (max-width: 480px) {
    .program-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .program-card h3 {
        font-size: 1.4rem;
    }

    .program-flags {
        font-size: 1.4rem;
    }
}

/* ============== VIDEO SECTION VISUAL - FIX TAILLE ============== */
.video-section {
    padding: 80px 0;
    background-color: #fff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.video-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-thumbnail video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
}

.video-country-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(239, 64, 53, 0.95);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.video-country-badge::before {
    content: '🇨🇦';
    font-size: 1.5rem;
}

.video-info {
    padding: 25px;
    background-color: #fff;
}

.video-info h3 {
    font-size: 1.4rem;
    color: #002c40;
    margin-bottom: 12px;
    font-weight: 600;
}

.video-location {
    font-size: 1.1rem;
    font-weight: 600;
    color: #EF4035;
    margin: 10px 0 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-info p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Video */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .video-info {
        padding: 20px;
    }

    .video-info h3 {
        font-size: 1.2rem;
    }

    .video-country-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* ============== MAGAZINE SECTION - VERSION BILINGUE ============== */
.magazine-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.magazine-dual-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.magazine-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.magazine-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.magazine-lang-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.magazine-lang-badge.french {
    background: linear-gradient(135deg, #000091 0%, #E1000F 100%);
}

.magazine-lang-badge.english {
    background: linear-gradient(135deg, #012169 0%, #C8102E 50%, #012169 100%);
}

.magazine-cover {
    text-align: center;
}

.magazine-visual {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.magazine-img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.magazine-card:hover .magazine-img {
    transform: scale(1.05) rotate(2deg);
}

.globe-decoration {
    position: absolute;
    top: -15px;
    right: -20px;
    font-size: 3.5rem;
    animation: rotate-globe 20s linear infinite;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

@keyframes rotate-globe {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.magazine-info {
    text-align: center;
    margin-bottom: 25px;
}

.magazine-info h3 {
    font-size: 1.5rem;
    color: #002c40;
    margin-bottom: 12px;
    font-weight: 700;
}

.magazine-pages {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f0f0f0;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 15px;
}

.magazine-pages i {
    color: #EF4035;
}

.magazine-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 280px;
    margin: 0 auto;
}

.btn-magazine {
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

/* Features container */
.magazine-features-container {
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.magazine-features-container h3 {
    font-size: 2rem;
    color: #002c40;
    margin-bottom: 20px;
    text-align: center;
}

.magazine-features-container p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.features-list li {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.features-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(239, 64, 53, 0.15);
    background-color: #fff;
}

.feature-icon {
    font-size: 2.5rem;
    min-width: 50px;
    text-align: center;
}

/* Responsive Magazine */
@media (max-width: 1024px) {
    .magazine-dual-container {
        gap: 30px;
    }

    .magazine-features-container {
        padding: 40px 30px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .magazine-section {
        padding: 50px 0;
    }

    .magazine-dual-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .magazine-img {
        max-width: 250px;
    }

    .globe-decoration {
        font-size: 2.5rem;
        top: -10px;
        right: -10px;
    }

    .magazine-features-container {
        padding: 30px 20px;
    }

    .magazine-features-container h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .magazine-card {
        padding: 25px 20px;
    }

    .magazine-lang-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .magazine-img {
        max-width: 220px;
    }

    .magazine-info h3 {
        font-size: 1.3rem;
    }

    .feature-icon {
        font-size: 2rem;
        min-width: 40px;
    }
}

.magazine-intro {
    text-align: center;
    max-width: 900px;
    margin: 40px auto 50px;
}

.intro-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #002c40;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(239, 64, 53, 0.2);
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
}

/* ============== FAQ SECTION ============== */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background-color: #fff;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: #002c40;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question i {
    font-size: 1rem;
    color: #EF4035;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
    background-color: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px 30px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.faq-answer ul li {
    padding: 10px 0;
    color: #555;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-answer ul li i {
    color: #EF4035;
    margin-top: 3px;
}

.faq-answer a {
    color: #EF4035;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #002c40;
    text-decoration: underline;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }
}