 /* ========================================
           STYLE RFI - LE CONGOLAIS (menu mobile sans overlay)
           ======================================== */
        :root {
            --rfi-red: #C00000;
            --rfi-dark: #1A1A1A;
            --rfi-gray: #666666;
            --rfi-light-gray: #E5E5E5;
            --rfi-bg: #F5F5F5;
            --rfi-white: #FFFFFF;
            --rfi-black: #222222;
            --font-roboto: 'Roboto', sans-serif;
            --transition: 0.2s ease;
        }

        /* Mode sombre */
        body.dark-mode {
            --rfi-dark: #E0E0E0;
            --rfi-gray: #AAAAAA;
            --rfi-light-gray: #444444;
            --rfi-bg: #1E1E1E;
            --rfi-white: #121212;
            --rfi-black: #FFFFFF;
            background: #121212;
            color: #E0E0E0;
        }
        body.dark-mode .main-header,
        body.dark-mode .footer-area,
        body.dark-mode .stats-bar,
        body.dark-mode .single-blog-inner,
        body.dark-mode .featured-main,
        body.dark-mode .side-article,
        body.dark-mode .redactor-card {
            background-color: #1E1E1E;
        }
        body.dark-mode .section-title,
        body.dark-mode .blog-widget .title {
            border-bottom-color: var(--rfi-red);
        }
        body.dark-mode .archives-list li,
        body.dark-mode .calendar-list li,
        body.dark-mode .featured-side .side-article {
            border-bottom-color: #333;
        }
        body.dark-mode .article-category,
        body.dark-mode .badge-category {
            color: var(--rfi-red);
        }
        body.dark-mode .read-more-btn {
            color: var(--rfi-red);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-roboto);
            color: var(--rfi-black);
            background: var(--rfi-white);
            line-height: 1.5;
            font-size: 18px;
            overflow-x: hidden;
            transition: background 0.3s, color 0.3s;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-roboto);
            font-weight: 700;
            color: var(--rfi-dark);
            margin-bottom: 0.5em;
            line-height: 1.3;
        }
        h1 { font-size: 2.4rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.7rem; }
        h4 { font-size: 1.4rem; }
        p {
            line-height: 1.6;
            color: var(--rfi-gray);
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        a {
            color: var(--rfi-red);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--rfi-dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
        }

        /* Layout */
        .container-fluid { padding: 0 15px; }
        .container-block-fluid { padding: 0 20px; }
        .ptb-100 { padding: 60px 0; }
        .pt-100 { padding-top: 60px; }
        .pb-100 { padding-bottom: 60px; }
        .ptb-70 { padding: 40px 0; }
        .pt-70 { padding-top: 40px; }
        .pb-70 { padding-bottom: 40px; }
        .ptb-20 { padding: 20px 0; }
        .pt-20 { padding-top: 20px; }
        .pb-20 { padding-bottom: 20px; }
        .pb-40 { padding-bottom: 40px; }
        .pt-30 { padding-top: 30px; }

        /* Buttons */
        .default-btn, button, input[type="button"], input[type="submit"] {
            background: var(--rfi-red);
            color: var(--rfi-white);
            border: none;
            padding: 12px 24px;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
            border-radius: 0;
        }
        .default-btn:hover, button:hover, input[type="button"]:hover, input[type="submit"]:hover {
            background: var(--rfi-dark);
            color: var(--rfi-white);
            text-decoration: none;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--rfi-white);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .preloader .loader {
            width: 60px;
            height: 60px;
            border: 3px solid var(--rfi-light-gray);
            border-top-color: var(--rfi-red);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* ========== HEADER RFI ========== */
        .top-bar {
            background: #000;
            color: #aaa;
            font-size: 13px;
            padding: 6px 0;
        }
        .top-bar .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
        }
        .top-bar a {
            color: #fff;
            text-decoration: none;
            margin-left: 15px;
        }
        .top-bar a i { margin-right: 5px; }
        .direct-link {
            background: #c00000;
            color: #fff !important;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
        }

        .main-header {
            border-bottom: 1px solid var(--rfi-light-gray);
            background: var(--rfi-white);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .main-mainmenu { padding: 0; }
        .header-navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
        }
        .header-logo img { max-height: 45px; width: auto; }

        /* ========== MENU PRINCIPAL (desktop) ========== */
        .mainmenu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .mainmenu > li {
            position: relative;
            margin: 0 12px;
        }
        .mainmenu > li > a {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--rfi-dark);
            text-transform: uppercase;
            letter-spacing: 0.3px;
            padding: 20px 0;
            display: inline-block;
        }
        .mainmenu > li > a:hover,
        .mainmenu > li > a.active {
            color: var(--rfi-red);
            text-decoration: none;
        }
        /* Dropdown */
        .mainmenu .main-submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--rfi-white);
            min-width: 220px;
            padding: 10px 0;
            list-style: none;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 100;
            border-top: 2px solid var(--rfi-red);
            border-radius: 0;
        }
        .mainmenu > li:hover .main-submenu {
            opacity: 1;
            visibility: visible;
        }
        .main-submenu li a {
            display: block;
            padding: 8px 20px;
            font-size: 0.85rem;
            color: var(--rfi-dark);
        }
        .main-submenu li a:hover {
            background: var(--rfi-bg);
            color: var(--rfi-red);
            text-decoration: none;
        }

        /* ========== MENU MOBILE (sans overlay) ========== */
        .mobile-menu-btn .btn-wrap {
            background: transparent;
            border: none;
            padding: 10px;
            cursor: pointer;
        }
        .mobile-menu-btn .btn-wrap span {
            display: block;
            width: 25px;
            height: 2px;
            background: var(--rfi-dark);
            margin: 5px 0;
            border-radius: 0;
        }
        .mainmenu-nav {
            position: fixed;
            top: 0;
            left: -280px;
            width: 280px;
            height: 100%;
            background: var(--rfi-white);
            z-index: 1050;
            padding: 0;
            transition: left 0.3s ease;
            overflow-y: auto;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        }
        .mainmenu-nav.active {
            left: 0;
        }
        .mobile-header {
            padding: 15px;
            border-bottom: 1px solid var(--rfi-light-gray);
        }
        .btn-close-custom {
            background: transparent;
            border: none;
            font-size: 1.3rem;
            cursor: pointer;
            color: var(--rfi-dark);
        }
        /* Version desktop : le menu redevient normal */
        @media (min-width: 992px) {
            .mainmenu-nav {
                position: static;
                left: auto;
                width: auto;
                height: auto;
                background: transparent;
                box-shadow: none;
                padding: 0;
                overflow: visible;
            }
            .mainmenu-nav.active {
                left: auto;
            }
            .mobile-menu-btn {
                display: none;
            }
            .mobile-header {
                display: none;
            }
            .mainmenu {
                display: flex;
            }
            .mainmenu > li {
                border-bottom: none;
            }
        }

        /* Header Actions */
        .header-action ul {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .search-box {
            font-size: 1.3rem;
            cursor: pointer;
            color: var(--rfi-dark);
        }
        .search-box:hover { color: var(--rfi-red); }
        .dark-mode-toggle {
            background: none;
            border: none;
            font-size: 1.3rem;
            cursor: pointer;
            color: var(--rfi-dark);
            padding: 0;
        }
        .dark-mode-toggle:hover { color: var(--rfi-red); }

        /* Search Overlay */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }
        .search-overlay.search-overlay-active { opacity: 1; visibility: visible; }
        .search-overlay-form {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 600px;
        }
        .search-overlay-form form {
            display: flex;
            background: var(--rfi-white);
        }
        .search-overlay-form input {
            flex: 1;
            border: none;
            padding: 15px 20px;
            font-size: 16px;
            outline: none;
        }
        .search-overlay-form button {
            background: var(--rfi-red);
            border: none;
            padding: 0 25px;
            color: var(--rfi-white);
            cursor: pointer;
            border-radius: 0;
        }
        .search-overlay-close {
            position: absolute;
            top: 30px;
            right: 30px;
            cursor: pointer;
        }
        .search-overlay-close-line {
            display: block;
            width: 30px;
            height: 3px;
            background: var(--rfi-white);
            margin: 6px 0;
        }
        .search-overlay-close-line:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
        .search-overlay-close-line:nth-child(2) { transform: rotate(-45deg) translate(6px, -6px); }

        /* Breaking News */
        .breaking-news-content {
            background: var(--rfi-bg);
            border-top: 1px solid var(--rfi-light-gray);
            border-bottom: 1px solid var(--rfi-light-gray);
            padding: 8px 0;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            margin: 10px 0 20px;
        }
        .breaking-news-content span {
            background: var(--rfi-red);
            color: var(--rfi-white);
            padding: 4px 15px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            margin-left: 20px;
        }
        .breaking-news-slider { flex: 1; }
        .breaking-news-slider p { margin: 0; font-size: 0.9rem; color: var(--rfi-dark); }
        .breaking-news-slider a:hover p { color: var(--rfi-red); }

        /* Hero Slider */
        .main-slider-image {
            position: relative;
            min-height: 500px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
        }
        .main-slider-content {
            background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
            padding: 40px 30px 20px;
            width: 100%;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }
        .main-slider-content h1 {
            font-size: 2rem;
            color: var(--rfi-white);
            margin-bottom: 10px;
        }
        .main-slider-content p {
            color: rgba(255,255,255,0.8);
            font-size: 1rem;
        }

        /* Section Title */
        .section-title {
            margin-bottom: 35px;
            border-bottom: 2px solid var(--rfi-red);
            padding-bottom: 12px;
            text-align: left;
        }
        .section-title.centered {
            text-align: center;
        }

        /* Badge catégorie (genre) en RECTANGLE */
        .genre-badge {
            display: inline-block;
            background: var(--rfi-red);
            color: white;
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 0;
            margin-bottom: 8px;
        }

        /* ===== DISPOSITION À LA UNE ===== */
        .featured-row {
            display: flex;
            gap: 40px;
            margin: 40px 0;
        }
        .featured-main {
            flex: 2;
        }
        .featured-main img {
            width: 100%;
            margin-bottom: 15px;
        }
        .featured-main h2 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        .featured-side {
            flex: 1;
        }
        .featured-side .side-article {
            display: flex;
            flex-direction: row;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--rfi-light-gray);
        }
        .featured-side .side-article img {
            width: 100px;
            height: 70px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .featured-side .side-article.no-image img {
            display: none;
        }
        .featured-side .side-article .no-image-placeholder {
            width: 100px;
            height: 70px;
            background: var(--rfi-light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: var(--rfi-gray);
            flex-shrink: 0;
        }
        .featured-side .side-content {
            flex: 1;
        }
        .featured-side h3 {
            font-size: 1rem;
            margin: 5px 0 0;
            line-height: 1.3;
        }
        .featured-side .meta {
            font-size: 0.7rem;
            color: var(--rfi-gray);
            margin-top: 5px;
        }
        .featured-side .side-article.no-description .side-content p {
            display: none;
        }

        @media (max-width: 767px) {
            .featured-row { flex-direction: column; }
            .featured-side { margin-top: 30px; }
            .featured-side .side-article { flex-direction: row; gap: 15px; }
            .featured-side .side-article img,
            .featured-side .side-article .no-image-placeholder { width: 80px; height: 60px; }
            .featured-side h3 { font-size: 1rem; }
        }

        /* Blog Cards */
        .single-blog-inner {
            margin-bottom: 30px;
            overflow: hidden;
            background: #fff;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .single-blog-inner:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .single-blog-inner .thumb {
            margin-bottom: 12px;
            overflow: hidden;
        }
        .single-blog-inner .thumb img {
            width: 100%;
            transition: transform 0.3s ease;
        }
        .single-blog-inner:hover .thumb img { transform: scale(1.02); }
        .single-blog-inner .details {
            padding: 0;
            background: transparent;
        }
        .single-blog-inner .details h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .single-blog-inner .details h4 a { color: var(--rfi-dark); }
        .single-blog-inner .details h4 a:hover { color: var(--rfi-red); text-decoration: none; }
        .single-blog-inner .details p {
            font-size: 0.95rem;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .read-more-btn {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--rfi-red);
            text-transform: uppercase;
        }
        .read-more-btn:hover { color: var(--rfi-dark); text-decoration: none; }

        /* Sidebar Widgets (pour plus tard) */
        .blog-details-right-area .blog-widget { margin-bottom: 35px; background: transparent; box-shadow: none; padding: 0; }
        .blog-widget .title {
            font-size: 1.2rem;
            font-weight: 700;
            border-bottom: 2px solid var(--rfi-red);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .search-widget .search-form {
            display: flex;
            border: 1px solid var(--rfi-light-gray);
        }
        .search-widget .search-form .form-control {
            flex: 1;
            border: none;
            padding: 12px 15px;
            outline: none;
            height: auto;
        }
        .search-widget .search-form button {
            background: var(--rfi-red);
            border: none;
            padding: 0 20px;
            color: var(--rfi-white);
            cursor: pointer;
            border-radius: 0;
        }
        .recent-post-widget ul { list-style: none; }
        .recent-post-widget ul li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--rfi-light-gray);
        }
        .recent-post-widget ul li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .recent-post-widget ul li a {
            display: flex;
            gap: 15px;
        }
        .recent-post-widget ul li a img {
            width: 80px;
            height: 60px;
            object-fit: cover;
        }
        .recent-post-widget ul li a h3 {
            font-size: 0.9rem;
            font-weight: 500;
            margin: 0;
            flex: 1;
            color: var(--rfi-dark);
        }
        .recent-post-widget ul li a:hover h3 { color: var(--rfi-red); }

        /* Compteur */
        .stats-bar {
            background: var(--rfi-bg);
            padding: 20px;
            margin: 30px 0;
            text-align: center;
            border: 1px solid var(--rfi-light-gray);
        }
        .stats-bar .stat-item {
            display: inline-block;
            margin: 0 30px;
            font-size: 1.1rem;
        }
        .stats-bar .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--rfi-red);
        }

        /* Archives + Calendrier côte à côte */
        .archive-calendar-row {
            display: flex;
            gap: 40px;
            margin: 40px 0;
        }
        .archive-col { flex: 1; }
        .calendar-col { flex: 1; }
        .archives-list {
            list-style: none;
            padding: 0;
        }
        .archives-list li {
            padding: 8px 0;
            border-bottom: 1px dashed var(--rfi-light-gray);
        }
        .calendar-list {
            list-style: none;
            padding: 0;
        }
        .calendar-list li {
            display: flex;
            flex-direction: row;
            gap: 20px;
            border-bottom: 1px solid var(--rfi-light-gray);
            padding: 15px 0;
            align-items: flex-start;
        }
        .calendar-list li img {
            width: 100px;
            height: 70px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .calendar-list li .no-image-placeholder {
            width: 100px;
            height: 70px;
            background: var(--rfi-light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: var(--rfi-gray);
            flex-shrink: 0;
        }
        .calendar-list .calendar-content {
            flex: 1;
        }
        .calendar-list .calendar-category {
            display: inline-block;
            background: var(--rfi-red);
            color: white;
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 0;
            margin-bottom: 5px;
        }
        .calendar-list h4 {
            font-size: 1rem;
            margin: 5px 0 5px;
        }
        .calendar-list .calendar-date {
            font-size: 0.75rem;
            color: var(--rfi-gray);
        }
        @media (max-width: 768px) {
            .archive-calendar-row { flex-direction: column; }
            .calendar-list li img,
            .calendar-list li .no-image-placeholder { width: 80px; height: 60px; }
        }

        /* Pagination */
        .pagination-area {
            text-align: center;
            margin: 30px 0 50px;
        }
        .pagination-area .page-numbers {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 38px;
            text-align: center;
            border: 1px solid var(--rfi-light-gray);
            color: var(--rfi-dark);
            margin: 0 3px;
            transition: var(--transition);
        }
        .pagination-area .page-numbers:hover,
        .pagination-area .page-numbers.current {
            background: var(--rfi-red);
            color: white;
            border-color: var(--rfi-red);
            text-decoration: none;
        }

        /* Grille */
        .grid-articles {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        @media (max-width: 992px) { .grid-articles { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) { .grid-articles { grid-template-columns: 1fr; } }

        /* Section Rédacteurs centrée */
        .redactors-section {
            margin: 40px 0;
            text-align: center;
        }
        .redactors-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            justify-items: center;
        }
        .redactor-card {
            background: var(--rfi-white);
            border: 1px solid var(--rfi-light-gray);
            padding: 20px;
            text-align: center;
            transition: transform 0.2s;
            width: 100%;
            max-width: 300px;
        }
        .redactor-card:hover {
            transform: translateY(-5px);
        }
        .redactor-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid var(--rfi-red);
        }
        .redactor-name {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        .redactor-specialty {
            font-size: 0.85rem;
            color: var(--rfi-red);
            margin-bottom: 10px;
        }
        .redactor-stats {
            font-size: 0.8rem;
            color: var(--rfi-gray);
            margin-bottom: 15px;
        }
        .redactor-social a {
            color: var(--rfi-dark);
            margin: 0 8px;
            font-size: 1.2rem;
        }
        .redactor-social a:hover {
            color: var(--rfi-red);
        }
        @media (max-width: 992px) { .redactors-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) { .redactors-grid { grid-template-columns: 1fr; justify-items: center; } }

        /* Espaces AdSense */
        .adsense-slot {
            background: var(--rfi-bg);
            border: 1px dashed var(--rfi-light-gray);
            text-align: center;
            padding: 20px;
            margin: 30px 0;
            font-size: 0.9rem;
            color: var(--rfi-gray);
        }
        .adsense-slot::before {
            content: "Publicité";
            display: block;
            font-size: 0.7rem;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        /* Footer */
        .footer-area {
            background: var(--rfi-dark);
            margin-top: 60px;
        }
        .footer-top { padding: 50px 0 30px; }
        .footer-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--rfi-white);
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        .footer-logo img { max-height: 40px; margin-bottom: 15px; }
        .textwidget p { color: #999; font-size: 0.85rem; }
        .site-map, .address-widget { list-style: none; }
        .site-map li, .address-widget li { margin-bottom: 10px; }
        .site-map li a { color: #999; font-size: 0.85rem; }
        .site-map li a:hover { color: var(--rfi-red); }
        .address-widget li { display: flex; gap: 10px; }
        .address-widget li i { color: var(--rfi-red); font-size: 1.1rem; }
        .address-widget li .desc { color: #999; font-size: 0.85rem; flex: 1; }
        .footer-top input[type="email"] {
            width: 100%;
            padding: 10px;
            background: #333;
            border: none;
            color: white;
            margin-bottom: 10px;
        }
        .footer-top input[type="submit"] {
            width: 100%;
            background: var(--rfi-red);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
        }
        .footer-bottom {
            background: #111;
            padding: 20px 0;
            border-top: 1px solid #333;
        }
        .copyright p { color: #999; font-size: 0.8rem; margin: 0; }
        .footer-social {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            list-style: none;
        }
        .footer-social li a i { color: #999; font-size: 1.2rem; }
        .footer-social li a i:hover { color: var(--rfi-red); }
        .row.y-middle { align-items: center; }
        .text-lg-end { text-align: right; }

        /* Go Top */
        .go-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: var(--rfi-red);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 99;
            border-radius: 0;
        }
        .go-top.active { opacity: 1; visibility: visible; }
        .go-top:hover { background: var(--rfi-dark); }
        .go-top i { font-size: 1.3rem; }

        /* Owl Carousel */
        .owl-theme .owl-dots { text-align: center; margin-top: 20px; }
        .owl-theme .owl-dots .owl-dot span { width: 8px; height: 8px; margin: 0 4px; background: var(--rfi-light-gray); border-radius: 50%; }
        .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { background: var(--rfi-red); }
        .owl-theme .owl-nav [class*="owl-"] { background: rgba(0,0,0,0.4); border-radius: 0; color: white; padding: 8px 16px; }
        .owl-theme .owl-nav [class*="owl-"]:hover { background: var(--rfi-red); }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-item { min-height: 350px; }
            .footer-social { justify-content: center; margin-top: 15px; }
            .copyright { text-align: center; }
        }
        @media (max-width: 767px) {
            .main-slider-image { min-height: 280px; }
            .main-slider-content { padding: 20px 15px; }
            .main-slider-content h1 { font-size: 1.3rem; }
            .breaking-news-content { flex-direction: column; text-align: center; }
            .breaking-news-content span { margin: 0 0 10px; }
            .section-title h2 { font-size: 1.5rem; }
            .stats-bar .stat-item { margin: 0 15px; }
        }