﻿:root {
    --moif-blue-dark: #0D1B3E;
    --moif-blue: #1A2B4A;
    --moif-gold: #C9A227;
    --moif-gold-bright: #F4D03F;
    --moif-white: #FFFFFF;
}

/* ============================================
       FILTER SECTION - BASE STYLES
       ============================================ */
.filter-section-enhanced {
    margin-bottom: 50px;
    animation: filterSlideIn 0.6s ease;
}

@keyframes filterSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-container-modern {
    background: linear-gradient(135deg, rgba(13, 27, 62, 0.03) 0%, rgba(26, 43, 74, 0.05) 100%);
    border: 2px solid rgba(201, 162, 39, 0.2);
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 10px 40px rgba(13, 27, 62, 0.08);
    position: relative;
    overflow: hidden;
}

    .filter-container-modern::before {
        content: "";
        position: absolute;
        top: -50%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(244, 208, 63, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: floatBackground 15s infinite ease-in-out;
    }

/* RTL Support for floating background */
[dir="rtl"] .filter-container-modern::before {
    right: -50%;
    left: auto;
}

[dir="ltr"] .filter-container-modern::before {
    right: -50%;
}

@keyframes floatBackground {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

.filter-form-enhanced {
    position: relative;
    z-index: 1;
}

/* ============================================
       FILTER HEADER
       ============================================ */
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(201, 162, 39, 0.15);
    gap: 20px;
    flex-wrap: wrap;
}

.filter-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--moif-gold), var(--moif-gold-bright));
    color: var(--moif-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
    flex-shrink: 0;
}

.filter-title {
    color: var(--moif-blue-dark);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.reset-filters-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

    .reset-filters-btn:hover {
        background: #dc3545;
        color: var(--moif-white);
        border-color: #dc3545;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
    }

    .reset-filters-btn i {
        font-size: 18px;
    }

/* ============================================
       FILTER GRID
       ============================================ */
.filter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 0;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0; /* Prevent grid blowout */
}

.filter-search {
    grid-column: span 1;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--moif-blue-dark);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

    .filter-label i {
        color: var(--moif-gold);
        font-size: 18px;
        flex-shrink: 0;
    }

/* ============================================
       CUSTOM SELECT - RTL & LTR SUPPORT
       ============================================ */
.select-wrapper {
    position: relative;
}

.form-select-custom {
    width: 100%;
    padding: 14px 18px;
    background: var(--moif-white);
    border: 2px solid rgba(13, 27, 62, 0.15);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--moif-blue-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* RTL: Padding for arrow on left */
[dir="rtl"] .form-select-custom {
    padding-right: 18px;
    padding-left: 45px;
}

/* LTR: Padding for arrow on right */
[dir="ltr"] .form-select-custom {
    padding-right: 45px;
    padding-left: 18px;
}

.form-select-custom:hover {
    border-color: rgba(201, 162, 39, 0.4);
    background: rgba(244, 208, 63, 0.02);
}

.form-select-custom:focus {
    outline: none;
    border-color: var(--moif-gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
    background: var(--moif-white);
}

.select-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--moif-gold);
    font-size: 22px;
    pointer-events: none;
    transition: transform 0.3s ease;
}

/* RTL: Arrow on left */
[dir="rtl"] .select-arrow {
    left: 15px;
    right: auto;
}

/* LTR: Arrow on right */
[dir="ltr"] .select-arrow {
    right: 15px;
    left: auto;
}

.form-select-custom:focus ~ .select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--moif-gold-bright);
}

/* ============================================
       SEARCH INPUT - RTL & LTR SUPPORT
       ============================================ */
.search-wrapper {
    position: relative;
    display: flex;
}

.search-input-custom {
    width: 100%;
    padding: 14px 18px;
    background: var(--moif-white);
    border: 2px solid rgba(13, 27, 62, 0.15);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--moif-blue-dark);
    transition: all 0.3s ease;
}

/* RTL: Search button on right, input padding on right */
[dir="rtl"] .search-input-custom {
    padding-right: 60px;
    padding-left: 18px;
}

/* LTR: Search button on left, input padding on left */
[dir="ltr"] .search-input-custom {
    padding-right: 18px;
    padding-left: 60px;
}

.search-input-custom::placeholder {
    color: #999;
}

.search-input-custom:hover {
    border-color: rgba(201, 162, 39, 0.4);
    background: rgba(244, 208, 63, 0.02);
}

.search-input-custom:focus {
    outline: none;
    border-color: var(--moif-gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
    background: var(--moif-white);
}

.search-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--moif-gold), var(--moif-gold-bright));
    border: none;
    color: var(--moif-white);
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.25);
}

/* RTL: Search button on right */
[dir="rtl"] .search-button {
    right: 6px;
    left: auto;
}

/* LTR: Search button on left */
[dir="ltr"] .search-button {
    left: 6px;
    right: auto;
}

.search-button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.search-button:active {
    transform: translateY(-50%) scale(0.98);
}

.search-button i {
    font-size: 20px;
}

/* ============================================
       ACTIVE FILTERS SECTION
       ============================================ */
.active-filters {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px dashed rgba(201, 162, 39, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.active-filters-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--moif-blue-dark);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

    .active-filters-label i {
        color: var(--moif-gold);
        font-size: 18px;
    }

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--moif-blue-dark), var(--moif-blue));
    color: var(--moif-white);
    padding: 8px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(13, 27, 62, 0.15);
    animation: tagFadeIn 0.4s ease;
}

@keyframes tagFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.filter-tag:hover {
    background: linear-gradient(135deg, #dc3545, #c82333);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.filter-tag i:first-child {
    font-size: 14px;
}

.filter-tag i:last-child {
    font-size: 16px;
    opacity: 0.8;
}

/* RTL: Close icon margin */
[dir="rtl"] .filter-tag i:last-child {
    margin-left: -3px;
    margin-right: 0;
}

/* LTR: Close icon margin */
[dir="ltr"] .filter-tag i:last-child {
    margin-right: -3px;
    margin-left: 0;
}

.filter-tag span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ============================================
       RESPONSIVE DESIGN - LARGE SCREENS
       ============================================ */
@media (min-width: 1400px) {
    .filter-container-modern {
        padding: 40px 50px;
    }

    .filter-grid {
        gap: 30px;
    }

    .filter-title {
        font-size: 24px;
    }
}

/* ============================================
       RESPONSIVE DESIGN - DESKTOP (992px - 1199px)
       ============================================ */
@media (max-width: 1199px) {
    .filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-search {
        grid-column: span 2;
    }

    .filter-container-modern {
        padding: 30px 35px;
    }

    .filter-title {
        font-size: 20px;
    }
}

/* ============================================
       RESPONSIVE DESIGN - TABLET (768px - 991px)
       ============================================ */
@media (max-width: 991px) {
    .filter-section-enhanced {
        margin-bottom: 40px;
    }

    .filter-container-modern {
        padding: 28px 30px;
    }

    .filter-grid {
        gap: 20px;
    }

    .filter-title {
        font-size: 19px;
    }

    .filter-icon {
        width: 40px;
        height: 40px;
        font-size: 21px;
    }
}

/* ============================================
       RESPONSIVE DESIGN - MOBILE (576px - 767px)
       ============================================ */
@media (max-width: 767px) {
    .filter-section-enhanced {
        margin-bottom: 35px;
    }

    .filter-container-modern {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .filter-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .filter-title-wrapper {
        justify-content: center;
    }

    .filter-title {
        font-size: 18px;
    }

    .filter-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .reset-filters-btn {
        width: 100%;
        justify-content: center;
    }

    .filter-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filter-search {
        grid-column: span 1;
    }

    .form-select-custom,
    .search-input-custom {
        padding: 12px 16px;
        font-size: 14px;
    }

    /* RTL Mobile */
    [dir="rtl"] .form-select-custom {
        padding-left: 42px;
    }

    /* LTR Mobile */
    [dir="ltr"] .form-select-custom {
        padding-right: 42px;
    }

    /* RTL Mobile Search */
    [dir="rtl"] .search-input-custom {
        padding-right: 55px;
    }

    /* LTR Mobile Search */
    [dir="ltr"] .search-input-custom {
        padding-left: 55px;
    }

    .select-arrow {
        font-size: 20px;
    }

    [dir="rtl"] .select-arrow {
        left: 12px;
    }

    [dir="ltr"] .select-arrow {
        right: 12px;
    }

    .search-button {
        width: 42px;
        height: 42px;
    }

        .search-button i {
            font-size: 18px;
        }

    .active-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
    }

    .active-filters-label {
        font-size: 13px;
    }

    .filter-tags {
        width: 100%;
    }

    .filter-tag {
        font-size: 12px;
        padding: 7px 12px;
    }

        .filter-tag span {
            max-width: 120px;
        }
}

/* ============================================
       RESPONSIVE DESIGN - SMALL MOBILE (480px - 575px)
       ============================================ */
@media (max-width: 575px) {
    .filter-container-modern {
        padding: 22px 18px;
    }

    .filter-title {
        font-size: 17px;
    }

    .filter-icon {
        width: 36px;
        height: 36px;
        font-size: 19px;
    }

    .filter-grid {
        gap: 18px;
    }

    .filter-label {
        font-size: 13px;
    }

        .filter-label i {
            font-size: 17px;
        }
}

/* ============================================
       RESPONSIVE DESIGN - EXTRA SMALL MOBILE (< 480px)
       ============================================ */
@media (max-width: 480px) {
    .filter-section-enhanced {
        margin-bottom: 30px;
    }

    .filter-container-modern {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .filter-header {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .filter-title-wrapper {
        gap: 10px;
    }

    .filter-title {
        font-size: 16px;
    }

    .filter-icon {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .reset-filters-btn {
        padding: 9px 16px;
        font-size: 13px;
    }

        .reset-filters-btn i {
            font-size: 16px;
        }

    .filter-grid {
        gap: 16px;
    }

    .filter-label {
        font-size: 12px;
    }

        .filter-label i {
            font-size: 16px;
        }

    .form-select-custom,
    .search-input-custom {
        padding: 11px 14px;
        font-size: 13px;
        border-radius: 10px;
    }

    /* RTL Extra Small */
    [dir="rtl"] .form-select-custom {
        padding-left: 40px;
    }

    [dir="ltr"] .form-select-custom {
        padding-right: 40px;
    }

    [dir="rtl"] .search-input-custom {
        padding-right: 52px;
    }

    [dir="ltr"] .search-input-custom {
        padding-left: 52px;
    }

    .select-arrow {
        font-size: 19px;
    }

    [dir="rtl"] .select-arrow {
        left: 11px;
    }

    [dir="ltr"] .select-arrow {
        right: 11px;
    }

    .search-button {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }

        .search-button i {
            font-size: 17px;
        }

    .active-filters {
        margin-top: 18px;
        padding-top: 18px;
        gap: 10px;
    }

    .active-filters-label {
        font-size: 12px;
    }

        .active-filters-label i {
            font-size: 16px;
        }

    .filter-tag {
        font-size: 11px;
        padding: 6px 10px;
        gap: 6px;
    }

        .filter-tag i:first-child {
            font-size: 13px;
        }

        .filter-tag i:last-child {
            font-size: 14px;
        }

        .filter-tag span {
            max-width: 100px;
        }
}

/* ============================================
       RESPONSIVE DESIGN - LANDSCAPE MODE
       ============================================ */
@media (max-width: 767px) and (orientation: landscape) {
    .filter-container-modern {
        padding: 20px 25px;
    }

    .filter-header {
        flex-direction: row;
        justify-content: space-between;
    }

    .filter-title-wrapper {
        justify-content: flex-start;
    }

    .reset-filters-btn {
        width: auto;
    }

    .filter-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .filter-search {
        grid-column: span 1;
    }
}

/* ============================================
       PRINT STYLES
       ============================================ */
@media print {
    .filter-section-enhanced {
        display: none;
    }
}

/* ============================================
       ACCESSIBILITY IMPROVEMENTS
       ============================================ */
@media (prefers-reduced-motion: reduce) {
    .filter-section-enhanced,
    .filter-container-modern::before,
    .filter-tag {
        animation: none;
    }

    .form-select-custom,
    .search-input-custom,
    .search-button,
    .reset-filters-btn,
    .filter-tag,
    .select-arrow {
        transition: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .filter-container-modern {
        border: 3px solid var(--moif-gold);
    }

    .form-select-custom,
    .search-input-custom {
        border: 3px solid rgba(13, 27, 62, 0.3);
    }

        .form-select-custom:focus,
        .search-input-custom:focus {
            border: 3px solid var(--moif-gold);
        }
}

/* Focus Visible Support for Keyboard Navigation */
.form-select-custom:focus-visible,
.search-input-custom:focus-visible,
.search-button:focus-visible,
.reset-filters-btn:focus-visible,
.filter-tag:focus-visible {
    outline: 3px solid var(--moif-gold);
    outline-offset: 2px;
}


 
:root {
    --moif-blue-dark: #0D1B3E;
    --moif-blue: #1A2B4A;
    --moif-gold: #C9A227;
    --moif-gold-bright: #F4D03F;
    --moif-white: #FFFFFF;
}

/* ============================================
           PAGE TITLE / HEADER SECTION
           ============================================ */
.conference-header {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 27, 62, 0.95) 0%, rgba(26, 43, 74, 0.90) 50%, rgba(13, 27, 62, 0.95) 100%);
    z-index: 1;
}

.page-title-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.conference-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--moif-gold), var(--moif-gold-bright));
    color: var(--moif-white);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.3);
    animation: fadeInDown 0.8s ease;
}

    .conference-badge i {
        font-size: 20px;
    }

.conference-main-title {
    color: var(--moif-white);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

    .breadcrumb-list li {
        color: rgba(255, 255, 255, 0.8);
        font-size: 15px;
        font-weight: 500;
    }

        .breadcrumb-list li a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

            .breadcrumb-list li a:hover {
                color: var(--moif-gold-bright);
            }

        .breadcrumb-list li:not(:last-child)::after {
            content: "/";
            margin-left: 10px;
            color: var(--moif-gold);
        }

[dir="rtl"] .breadcrumb-list li:not(:last-child)::after {
    margin-left: 0;
    margin-right: 10px;
}

.breadcrumb-list li.active {
    color: var(--moif-gold-bright);
    font-weight: 600;
}

/* Animated Background Shapes */
.shape-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, var(--moif-gold), var(--moif-gold-bright));
    opacity: 0.08;
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: 10%;
    animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: -75px;
    animation: float 18s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
           QUICK INFO CARDS
           ============================================ */
.event-quick-info {
    margin-bottom: 40px;
}

.info-card {
    background: linear-gradient(135deg, var(--moif-blue-dark), var(--moif-blue));
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(13, 27, 62, 0.15);
    height: 100%;
}

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(13, 27, 62, 0.25);
    }

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--moif-gold), var(--moif-gold-bright));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

    .info-icon i {
        font-size: 28px;
        color: var(--moif-white);
    }

.info-content h5 {
    color: var(--moif-gold-bright);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.info-content p {
    color: var(--moif-white);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

    .info-content p small {
        display: block;
        font-size: 13px;
        opacity: 0.8;
        font-weight: 400;
    }

/* ============================================
           COVER IMAGE
           ============================================ */
.conference-cover-image {
    position: relative;
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(13, 27, 62, 0.15);
}

    .conference-cover-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .conference-cover-image:hover img {
        transform: scale(1.05);
    }

.image-overlay-badge {
    position: absolute;
    bottom: 20px;
    background: linear-gradient(135deg, var(--moif-gold), var(--moif-gold-bright));
    color: var(--moif-white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

[dir="rtl"] .image-overlay-badge {
    left: 20px;
    right: auto;
}

[dir="ltr"] .image-overlay-badge {
    right: 20px;
    left: auto;
}

.image-overlay-badge i {
    font-size: 16px;
}

/* ============================================
           CONFERENCE SECTIONS
           ============================================ */
.conference-section {
    background: var(--moif-white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(13, 27, 62, 0.08);
    transition: all 0.3s ease;
}

    .conference-section:hover {
        box-shadow: 0 10px 40px rgba(13, 27, 62, 0.12);
    }

.title-section {
    text-align: center;
}

.event-main-title {
    color: var(--moif-blue-dark);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.event-subtitle {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(201, 162, 39, 0.2);
    flex-wrap: wrap;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--moif-gold), var(--moif-gold-bright));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .section-icon i {
        font-size: 24px;
        color: var(--moif-white);
    }

.section-title {
    color: var(--moif-blue-dark);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.badge-count {
    background: linear-gradient(135deg, rgba(13, 27, 62, 0.05), rgba(26, 43, 74, 0.08));
    color: var(--moif-blue-dark);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.section-content {
    color: #444;
    font-size: 16px;
    line-height: 1.9;
}

    .section-content p {
        margin-bottom: 1.2rem;
    }

    .section-content h2,
    .section-content h3,
    .section-content h4 {
        color: var(--moif-blue-dark);
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

/* Highlight Box */
.short-description {
    margin-bottom: 40px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(244, 208, 63, 0.05));
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.highlight-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--moif-gold), var(--moif-gold-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--moif-white);
    flex-shrink: 0;
}

.highlight-box p {
    flex: 1;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: var(--moif-blue-dark);
    font-weight: 500;
}

/* ============================================
           GALLERY GRID
           ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 20px rgba(13, 27, 62, 0.1);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 27, 62, 0.8), rgba(201, 162, 39, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    color: var(--moif-white);
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
    }

    to {
        transform: scale(1);
    }
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--moif-gold), var(--moif-gold-bright));
    color: var(--moif-white);
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.3);
}

    .view-all-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
    }

    .view-all-btn i {
        font-size: 20px;
    }

/* ============================================
           VIDEOS GRID
           ============================================ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.video-item {
    background: rgba(13, 27, 62, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .video-item:hover {
        box-shadow: 0 10px 30px rgba(13, 27, 62, 0.15);
    }

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

.video-info {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .video-info i {
        font-size: 24px;
        color: var(--moif-gold);
        flex-shrink: 0;
    }

    .video-info h6 {
        color: var(--moif-blue-dark);
        font-size: 15px;
        font-weight: 600;
        margin: 0;
        line-height: 1.5;
    }

/* ============================================
           DOCUMENTS LIST
           ============================================ */
.documents-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(13, 27, 62, 0.02), rgba(26, 43, 74, 0.03));
    border: 2px solid rgba(13, 27, 62, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .document-item:hover {
        border-color: var(--moif-gold);
        background: linear-gradient(135deg, rgba(201, 162, 39, 0.05), rgba(244, 208, 63, 0.03));
        box-shadow: 0 5px 20px rgba(201, 162, 39, 0.15);
    }

[dir="rtl"] .document-item:hover {
    transform: translateX(5px);
}

[dir="ltr"] .document-item:hover {
    transform: translateX(-5px);
}

.document-icon {
    width: 50px;
    height: 50px;
    background: var(--moif-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(13, 27, 62, 0.08);
}

    .document-icon i {
        font-size: 28px;
    }

.document-info {
    flex: 1;
}

    .document-info h6 {
        color: var(--moif-blue-dark);
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 5px;
    }

    .document-info small {
        color: #666;
        font-size: 13px;
    }

.document-action {
    flex-shrink: 0;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--moif-gold), var(--moif-gold-bright));
    color: var(--moif-white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

    .download-badge i {
        font-size: 16px;
    }

/* ============================================
           SIDEBAR STYLES
           ============================================ */
.sidebar-card {
    background: var(--moif-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(13, 27, 62, 0.08);
    margin-bottom: 30px;
}

.sidebar-header {
    background: linear-gradient(135deg, var(--moif-blue-dark), var(--moif-blue));
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .sidebar-header i {
        font-size: 24px;
        color: var(--moif-gold-bright);
    }

    .sidebar-header h4 {
        color: var(--moif-white);
        font-size: 20px;
        font-weight: 700;
        margin: 0;
    }

.sidebar-content {
    padding: 30px 25px;
}

/* Info List */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-item {
    padding: 20px 0;
    border-bottom: 2px dashed rgba(13, 27, 62, 0.1);
}

    .info-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .info-item:first-child {
        padding-top: 0;
    }

.info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--moif-gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

    .info-label i {
        font-size: 18px;
    }

.info-value {
    color: var(--moif-blue-dark);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
}

[dir="rtl"] .info-value {
    padding-left: 28px;
}

[dir="ltr"] .info-value {
    padding-left: 28px;
}

/* Related Events */
.related-events .sidebar-content {
    padding: 25px;
}

.related-event-card {
    background: rgba(13, 27, 62, 0.02);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .related-event-card:hover {
        box-shadow: 0 10px 30px rgba(13, 27, 62, 0.15);
    }

.event-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
}

    .event-image-link img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.related-event-card:hover .event-image-link img {
    transform: scale(1.1);
}

.event-date-badge {
    position: absolute;
    top: 15px;
    background: var(--moif-white);
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(13, 27, 62, 0.2);
}

[dir="rtl"] .event-date-badge {
    left: 15px;
    right: auto;
}

[dir="ltr"] .event-date-badge {
    right: 15px;
    left: auto;
}

.date-day {
    font-size: 24px;
    font-weight: 800;
    color: var(--moif-gold);
    line-height: 1;
}

.date-month {
    font-size: 12px;
    font-weight: 600;
    color: var(--moif-blue-dark);
    text-transform: uppercase;
    margin-top: 2px;
}

.related-event-card .event-content {
    padding: 20px;
}

.event-type {
    display: inline-block;
    background: linear-gradient(135deg, var(--moif-gold), var(--moif-gold-bright));
    color: var(--moif-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.related-event-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.5;
}

    .related-event-card h5 a {
        color: var(--moif-blue-dark);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .related-event-card h5 a:hover {
            color: var(--moif-gold);
        }

.event-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
}

    .event-location i {
        color: var(--moif-gold);
        font-size: 16px;
    }

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--moif-blue-dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .read-more-link:hover {
        color: var(--moif-gold);
        gap: 12px;
    }

    .read-more-link i {
        font-size: 16px;
        transition: transform 0.3s ease;
    }

[dir="rtl"] .read-more-link:hover i {
    transform: translateX(5px);
}

[dir="ltr"] .read-more-link:hover i {
    transform: translateX(-5px);
}

/* ============================================
           MODAL STYLES
           ============================================ */
.modal-header {
    background: linear-gradient(135deg, var(--moif-blue-dark), var(--moif-blue));
    color: var(--moif-white);
    border-bottom: none;
    padding: 25px 30px;
}

    .modal-header .modal-title {
        font-size: 22px;
        font-weight: 700;
        display: flex;
        align-items: center;
    }

    .modal-header .btn-close {
        filter: brightness(0) invert(1);
    }

.modal-body {
    padding: 30px;
}

/* ============================================
           RESPONSIVE DESIGN
           ============================================ */
@media (max-width: 1199px) {
    .conference-main-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 24px;
    }

    .conference-section {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .conference-header {
        padding: 120px 0 80px;
    }

    .conference-main-title {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 20px;
    }

    .info-icon {
        width: 55px;
        height: 55px;
    }

    .section-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 767px) {
    .conference-header {
        padding: 100px 0 60px;
    }

    .conference-main-title {
        font-size: 28px;
    }

    .conference-badge {
        font-size: 12px;
        padding: 8px 20px;
    }

    .event-quick-info .row {
        gap: 15px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .conference-section {
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    .section-header {
        flex-wrap: wrap;
        gap: 12px;
    }

    .section-title {
        font-size: 20px;
        width: 100%;
    }

    .badge-count {
        font-size: 12px;
        padding: 6px 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .document-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 15px;
    }

    .sidebar-card {
        margin-bottom: 25px;
    }

    .sidebar-header {
        padding: 20px;
    }

        .sidebar-header h4 {
            font-size: 18px;
        }

    .sidebar-content {
        padding: 25px 20px;
    }

    .info-value {
        padding-left: 0;
    }
}

@media (max-width: 575px) {
    .conference-main-title {
        font-size: 24px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .breadcrumb-list {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media print {
    .breadcrumb-list,
    .shape-animation,
    .view-all-btn,
    .download-badge,
    .related-events {
        display: none;
    }

    .conference-section {
        box-shadow: none;
        break-inside: avoid;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}




/* ============================================
   CONFERENCE DETAILS PAGE - LIGHT THEME
   Wikin Municipality Template
   ============================================ */

:root {
    --moif-blue-dark: #0D1B3E;
    --moif-blue: #1A2B4A;
    --moif-gold: #C9A227;
    --moif-gold-bright: #F4D03F;
    --moif-white: #FFFFFF;
    --moif-light-bg: #F8F9FA;
    --moif-border: #E9ECEF;
    --moif-text: #495057;
    --moif-text-light: #6C757D;
}

 /* ============================================
   INFO CARDS - LIGHT STYLE
   ============================================ */
.event-info-cards {
    margin-bottom: 30px;
}

.info-card-light {
    background: var(--moif-white);
    border: 1px solid var(--moif-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

    .info-card-light:hover {
        border-color: var(--moif-gold);
        box-shadow: 0 4px 12px rgba(201, 162, 39, 0.15);
        transform: translateY(-3px);
    }

.info-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(244, 208, 63, 0.1));
    border: 2px solid var(--moif-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-card-icon i {
        font-size: 24px;
        color: var(--moif-gold);
    }

.info-card-content {
    flex: 1;
}

.info-label {
    display: block;
    color: var(--moif-text-light);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.info-value {
    color: var(--moif-blue-dark);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

    .info-value small {
        display: block;
        font-size: 13px;
        font-weight: 500;
        color: var(--moif-text);
        margin-top: 3px;
    }

/* ============================================
   COVER IMAGE
   ============================================ */
.conference-cover {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--moif-border);
}

    .conference-cover img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .conference-cover:hover img {
        transform: scale(1.03);
    }

.cover-badge {
    position: absolute;
    bottom: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--moif-blue-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

[dir="rtl"] .cover-badge {
    left: 15px;
}

[dir="ltr"] .cover-badge {
    right: 15px;
}

.cover-badge i {
    font-size: 14px;
}

/* ============================================
   EVENT SECTIONS
   ============================================ */
.event-section {
    background: var(--moif-white);
    border: 1px solid var(--moif-border);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
}

.title-section {
    text-align: center;
    border: 2px solid var(--moif-gold);
}

.section-main-title {
    color: var(--moif-blue-dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.section-subtitle {
    color: var(--moif-text);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.section-header-light {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--moif-border);
}

    .section-header-light i {
        font-size: 22px;
        color: var(--moif-gold);
    }

    .section-header-light h4 {
        color: var(--moif-blue-dark);
        font-size: 20px;
        font-weight: 700;
        margin: 0;
        flex: 1;
    }

.item-count {
    background: var(--moif-light-bg);
    color: var(--moif-text);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.section-body {
    color: var(--moif-text);
    font-size: 15px;
    line-height: 1.8;
}

    .section-body p {
        margin-bottom: 1rem;
    }

    .section-body h2,
    .section-body h3,
    .section-body h4 {
        color: var(--moif-blue-dark);
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .section-body ul,
    .section-body ol {
        margin: 1rem 0;
        padding-right: 20px;
    }

[dir="ltr"] .section-body ul,
[dir="ltr"] .section-body ol {
    padding-left: 20px;
    padding-right: 0;
}

/* ============================================
   HIGHLIGHT SECTION
   ============================================ */
.highlight-section {
    border: 2px solid var(--moif-gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05), rgba(244, 208, 63, 0.03));
}

.highlight-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .highlight-content i {
        width: 40px;
        height: 40px;
        background: var(--moif-gold);
        color: var(--moif-white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
    }

    .highlight-content p {
        flex: 1;
        margin: 0;
        font-size: 16px;
        line-height: 1.7;
        color: var(--moif-blue-dark);
        font-weight: 500;
    }

/* ============================================
   PHOTO GALLERY
   ============================================ */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item-light {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--moif-border);
    aspect-ratio: 4/3;
}

    .gallery-item-light img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .gallery-item-light:hover img {
        transform: scale(1.1);
    }

.gallery-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 27, 62, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-light:hover .gallery-overlay-light {
    opacity: 1;
}

.gallery-overlay-light i {
    font-size: 32px;
    color: var(--moif-white);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--moif-white);
    border: 2px solid var(--moif-gold);
    color: var(--moif-gold);
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .btn-view-all:hover {
        background: var(--moif-gold);
        color: var(--moif-white);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
    }

    .btn-view-all i {
        font-size: 18px;
    }

/* ============================================
   VIDEO GRID
   ============================================ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.video-card-light {
    background: var(--moif-light-bg);
    border: 1px solid var(--moif-border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .video-card-light:hover {
        border-color: var(--moif-gold);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

    .video-embed iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

.video-title {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .video-title i {
        font-size: 20px;
        color: var(--moif-gold);
        flex-shrink: 0;
    }

    .video-title span {
        color: var(--moif-blue-dark);
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
    }

/* ============================================
   DOCUMENTS LIST
   ============================================ */
.documents-list-light {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.document-card-light {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--moif-light-bg);
    border: 1px solid var(--moif-border);
    border-radius: 10px;
    padding: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .document-card-light:hover {
        border-color: var(--moif-gold);
        background: var(--moif-white);
        box-shadow: 0 4px 12px rgba(201, 162, 39, 0.15);
    }

[dir="rtl"] .document-card-light:hover {
    transform: translateX(5px);
}

[dir="ltr"] .document-card-light:hover {
    transform: translateX(-5px);
}

.doc-icon {
    width: 45px;
    height: 45px;
    background: var(--moif-white);
    border: 1px solid var(--moif-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .doc-icon i {
        font-size: 24px;
    }

.doc-details {
    flex: 1;
}

    .doc-details h6 {
        color: var(--moif-blue-dark);
        font-size: 15px;
        font-weight: 600;
        margin: 0 0 4px;
        line-height: 1.4;
    }

    .doc-details small {
        color: var(--moif-text-light);
        font-size: 12px;
    }

.doc-download {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--moif-gold);
    color: var(--moif-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

    .doc-download i {
        font-size: 14px;
    }

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar-box {
    background: var(--moif-white);
    border: 1px solid var(--moif-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.sidebar-box-header {
    background: linear-gradient(135deg, var(--moif-blue-dark), var(--moif-blue));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .sidebar-box-header i {
        font-size: 20px;
        color: var(--moif-gold-bright);
    }

    .sidebar-box-header h5 {
        color: var(--moif-white) !important;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }

.sidebar-box-body {
    padding: 25px 20px;
}

/* ============================================
   INFO LIST - SIDEBAR
   ============================================ */
.info-list-light {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .info-list-light li {
        padding: 15px 0;
        border-bottom: 1px dashed var(--moif-border);
    }

        .info-list-light li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .info-list-light li:first-child {
            padding-top: 0;
        }

.info-item-light {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--moif-gold);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

    .info-item-light i {
        font-size: 16px;
    }

.info-text {
    display: block;
    color: var(--moif-blue-dark);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    padding-left: 24px;
}

[dir="ltr"] .info-text {
    padding-left: 24px;
    padding-right: 0;
}

/* ============================================
   RELATED EVENTS
   ============================================ */
.related-card-light {
    background: var(--moif-light-bg);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px;
}

.related-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
}

    .related-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.related-card-light:hover .related-image img {
    transform: scale(1.08);
}

.related-date {
    position: absolute;
    top: 12px;
    background: var(--moif-white);
    width: 55px;
    height: 55px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

[dir="rtl"] .related-date {
    left: 12px;
}

[dir="ltr"] .related-date {
    right: 12px;
}

.related-date strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--moif-gold);
    line-height: 1;
}

.related-date small {
    font-size: 11px;
    font-weight: 600;
    color: var(--moif-blue-dark);
    text-transform: uppercase;
    margin-top: 2px;
}

.related-content {
    padding: 18px;
}

.related-type {
    display: inline-block;
    background: var(--moif-gold);
    color: var(--moif-white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.related-content h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

    .related-content h6 a {
        color: var(--moif-blue-dark);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .related-content h6 a:hover {
            color: var(--moif-gold);
        }

.related-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--moif-text-light);
    font-size: 12px;
    margin-bottom: 12px;
}

    .related-location i {
        color: var(--moif-gold);
        font-size: 14px;
    }

.related-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--moif-blue-dark);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .related-link:hover {
        color: var(--moif-gold);
        gap: 10px;
    }

    .related-link i {
        font-size: 14px;
    }

/* ============================================
   MODAL
   ============================================ */
.modal-light {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header-light {
    background: linear-gradient(135deg, var(--moif-blue-dark), var(--moif-blue));
    color: var(--moif-white);
    border-bottom: none;
    padding: 20px 25px;
}

    .modal-header-light .modal-title {
        font-size: 20px;
        font-weight: 700;
        display: flex;
        align-items: center;
    }

    .modal-header-light .btn-close {
        filter: brightness(0) invert(1);
    }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .conference-title {
        font-size: 36px;
    }

    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .info-card-light {
        padding: 18px;
    }

    .info-card-icon {
        width: 45px;
        height: 45px;
    }

        .info-card-icon i {
            font-size: 22px;
        }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
    .page-title-conference {
        padding: 100px 0 60px;
    }

    .conference-title {
        font-size: 28px;
    }

    .conference-type-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .event-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .section-main-title {
        font-size: 22px;
    }

    .section-header-light {
        flex-wrap: wrap;
    }

        .section-header-light h4 {
            font-size: 18px;
        }

    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .info-card-light {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .highlight-content {
        flex-direction: column;
        text-align: center;
    }

    .document-card-light {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .sidebar-box {
        margin-bottom: 20px;
    }

    .sidebar-box-header {
        padding: 18px;
    }

    .sidebar-box-body {
        padding: 20px 18px;
    }

    .info-text {
        padding-left: 0;
    }
}

/* Small Mobile (< 576px) */
@media (max-width: 575px) {
    .conference-title {
        font-size: 24px;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
    }

    .breadcrumb-nav {
        flex-wrap: wrap;
    }

    .section-header-light {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Print Styles */
@media print {
    .breadcrumb-nav,
    .btn-view-all,
    .doc-download,
    .sidebar-box:last-child {
        display: none;
    }

    .event-section {
        border: 1px solid #ddd;
        box-shadow: none;
        break-inside: avoid;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}