﻿/* ============================================
   CONFERENCE CARDS - CLEAN & SIMPLE DESIGN
   Equal Heights & Widths - No Animations
   ============================================ */

:root {
    --moif-blue-dark: #0D1B3E;
    --moif-blue: #1A2B4A;
    --moif-gold: #C9A227;
    --moif-gold-bright: #F4D03F;
    --moif-white: #FFFFFF;
    --moif-text: #495057;
    --moif-text-light: #6C757D;
}

/* ============================================
   EVENTS AREA
   ============================================ */
.events-area {
    padding: 100px 0;
    background: #FAFAFA;
}

.ptb-100 {
    padding: 100px 0;
}

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        color: var(--moif-blue-dark);
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .section-title p {
        color: var(--moif-text);
        font-size: 16px;
        margin: 0;
    }

/* ============================================
   FILTER SECTION
   ============================================ */
.filter-section-enhanced {
    margin-bottom: 50px;
}

.filter-container-modern {
    background: var(--moif-white);
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-form-enhanced {
    position: relative;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 0;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.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: 16px;
    }

/* Select Wrapper */
.select-wrapper {
    position: relative;
}

.form-select-custom {
    width: 100%;
    padding: 12px 15px;
    padding-left: 40px;
    border: 1px solid #DDD;
    border-radius: 6px;
    font-size: 14px;
    background: var(--moif-white);
    color: var(--moif-blue-dark);
    cursor: pointer;
    appearance: none;
}

[dir="ltr"] .form-select-custom {
    padding-left: 15px;
    padding-right: 40px;
}

.form-select-custom:focus {
    outline: none;
    border-color: var(--moif-gold);
}

.select-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--moif-gold);
    font-size: 20px;
    pointer-events: none;
}

[dir="rtl"] .select-arrow {
    left: 15px;
}

[dir="ltr"] .select-arrow {
    right: 15px;
}

/* Search Wrapper */
.search-wrapper {
    position: relative;
}

.search-input-custom {
    width: 100%;
    padding: 12px 15px;
    padding-right: 60px;
    border: 1px solid #DDD;
    border-radius: 6px;
    font-size: 14px;
    color: var(--moif-blue-dark);
}

[dir="ltr"] .search-input-custom {
    padding-right: 15px;
    padding-left: 60px;
}

.search-input-custom:focus {
    outline: none;
    border-color: var(--moif-gold);
}

.search-input-custom::placeholder {
    color: #999;
}

.search-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--moif-gold);
    border: none;
    color: var(--moif-white);
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

[dir="rtl"] .search-button {
    left: 8px;
}

[dir="ltr"] .search-button {
    right: 8px;
}

.search-button:hover {
    background: var(--moif-gold-bright);
}

.search-button i {
    font-size: 18px;
}

/* ============================================
   ACTIVE FILTERS
   ============================================ */
.active-filters {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed #DDD;
    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;
}

    .active-filters-label i {
        color: var(--moif-gold);
        font-size: 16px;
    }

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--moif-blue-dark);
    color: var(--moif-white);
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

    .filter-tag:hover {
        background: #dc3545;
    }

    .filter-tag i:first-child {
        font-size: 14px;
    }

    .filter-tag i:last-child {
        font-size: 14px;
    }

    .filter-tag span {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

/* ============================================
   CARDS GRID - EQUAL HEIGHTS
   ============================================ */
.row.justify-content-center {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}


.col-lg-10, .col-10, col-md-10 {
    width: 100%;
    padding: 0;
}
/* Full width for pagination row */
.row.justify-content-center > .col-12 {
    grid-column: 1 / -1;
}

.single-event-box {
    background: var(--moif-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #E5E5E5;
}

    .single-event-box:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

    /* ============================================
   IMAGE - FIXED RATIO
   ============================================ */
    .single-event-box > a {
        display: block;
        overflow: hidden;
        aspect-ratio: 16/9;
        background: #F0F0F0;
    }

        .single-event-box > a img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

/* ============================================
   CONTENT - FLEXIBLE
   ============================================ */
.event-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 15px;
}

    /* Type and Date */
    .event-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

        .event-content ul li {
            background: #F8F9FA;
            color: var(--moif-gold);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            padding: 6px 12px;
            border-radius: 20px;
            border: 1px solid #E5E5E5;
        }

            .event-content ul li span {
                color: var(--moif-blue-dark);
                margin-right: 5px;
            }

[dir="ltr"] .event-content ul li span {
    margin-left: 5px;
    margin-right: 0;
}

/* Title - Fixed Height */
.event-content h3 {
    margin: 0;
    min-height: 56px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    .event-content h3 a {
        color: var(--moif-blue-dark);
        font-size: 18px;
        font-weight: 700;
        line-height: 1.6;
        text-decoration: none;
    }

        .event-content h3 a:hover {
            color: var(--moif-gold);
        }

/* Location - Fixed Height */
.event-content > p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--moif-text);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    min-height: 42px;
}

    .event-content > p i {
        color: var(--moif-gold);
        font-size: 16px;
        flex-shrink: 0;
        margin-top: 2px;
    }

/* Read More - Always Bottom */
.event-content .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--moif-gold);
    color: var(--moif-white) !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    align-self: flex-start;
}

    .event-content .read-more:hover {
        background: var(--moif-gold-bright);
    }

    .event-content .read-more i {
        font-size: 16px;
    }

/* ============================================
   PAGINATION
   ============================================ */
.pagination-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--moif-white);
    border: 1px solid #DDD;
    border-radius: 6px;
    color: var(--moif-blue-dark);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

    .page-numbers:hover,
    .page-numbers.current {
        background: var(--moif-gold);
        color: var(--moif-white);
        border-color: var(--moif-gold);
    }

    .page-numbers.prev,
    .page-numbers.next {
        width: 40px;
    }

    .page-numbers i {
        font-size: 18px;
    }

/* ============================================
   EMPTY STATE
   ============================================ */
.text-center.py-5 {
    padding: 60px 20px !important;
    background: var(--moif-white);
    border-radius: 12px;
    border: 1px solid #E5E5E5;
}

    .text-center.py-5 i {
        display: block;
        margin-bottom: 20px;
    }

    .text-center.py-5 h4 {
        color: var(--moif-blue-dark);
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .text-center.py-5 .text-muted,
    .text-center.py-5 p {
        color: var(--moif-text-light);
        font-size: 14px;
    }

.mt-3 {
    margin-top: 1rem;
}

/* ============================================
   RESPONSIVE - LAPTOP (992px - 1199px)
   ============================================ */
@media (max-width: 1199px) {
    .row.justify-content-center {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .events-area,
    .ptb-100 {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .filter-container-modern {
        padding: 25px;
    }
}

/* ============================================
   RESPONSIVE - TABLET (768px - 991px)
   ============================================ */
@media (max-width: 991px) {
    .row.justify-content-center {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .events-area,
    .ptb-100 {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .event-content {
        padding: 20px;
    }

    .filter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .filter-item.filter-search {
        grid-column: span 2;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (< 768px)
   ============================================ */
@media (max-width: 767px) {
    .row.justify-content-center {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .events-area,
    .ptb-100 {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

        .section-title h2 {
            font-size: 26px;
        }

        .section-title p {
            font-size: 15px;
        }

    .filter-section-enhanced {
        margin-bottom: 40px;
    }

    .filter-container-modern {
        padding: 20px;
    }

    .filter-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .filter-item.filter-search {
        grid-column: span 1;
    }

    .active-filters {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-tags {
        width: 100%;
    }

    .event-content h3 a {
        font-size: 17px;
    }

    .event-content > p {
        font-size: 13px;
    }

    .pagination-area {
        margin-top: 40px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (< 576px)
   ============================================ */
@media (max-width: 575px) {
    .section-title h2 {
        font-size: 24px;
    }

    .filter-container-modern {
        padding: 18px;
    }

    .event-content {
        padding: 18px;
    }

        .event-content ul {
            flex-direction: column;
            align-items: stretch;
        }

            .event-content ul li {
                width: 100%;
                justify-content: space-between;
                display: flex;
            }

        .event-content h3 {
            min-height: 50px;
        }

            .event-content h3 a {
                font-size: 16px;
            }

        .event-content .read-more {
            width: 100%;
            justify-content: center;
        }

    .pagination-area {
        gap: 6px;
    }

    .page-numbers {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .filter-section-enhanced,
    .pagination-area,
    .event-content .read-more {
        display: none;
    }

    .single-event-box {
        box-shadow: none;
        border: 1px solid #DDD;
        break-inside: avoid;
    }

    .row.justify-content-center {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
/* ============================================
   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;
    }
}
[dir="rtl"] .read-more i {
    transform:none !important;
}
[dir="ltr"] .read-more i {
    transform: rotate(180deg) !important;
}
.read-more i{
    top: 0px!important; 
}