.cmp-conference-details { max-width: 1200px; margin: 0 auto; padding: 20px; }

/* ============================================
   ______ _____ _______ ___ ______ ________
   ============================================ */
.conference-thumbnail-gallery {
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.gallery-title {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 22px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.thumbnail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.thumbnail-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 120px;
}

.thumbnail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(40, 167, 69, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail-item:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-overlay i {
    color: white;
    font-size: 24px;
}

@media (max-width: 768px) {
    .thumbnail-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .thumbnail-item {
        height: 100px;
    }
}

/* _____ ___ _____ ______ */
.quick-booking {
    position: sticky;
    top: 20px;
}

.quick-ticket-select select:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
    outline: none;
}

#quick-quantity:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
    outline: none;
}

/* _____ _______ _______ */
.map-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f8f9fa;
    color: #666;
    font-size: 14px;
}

.map-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f8f9fa;
    color: #dc3545;
    padding: 20px;
    text-align: center;
}

/* _____ _______ __ _____ ______ */
.btn-quick-book:active {
    transform: translateY(0);
}

/* ___ _______ */
.conference-header { margin-bottom: 40px; }
.conference-hero { 
    position: relative; 
    height: 400px; 
    border-radius: 15px; 
    overflow: hidden; 
    margin-bottom: 30px; 
}
.conference-hero img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}
.featured-label { 
    position: absolute; 
    top: 20px; 
    left: 20px; 
    background: linear-gradient(45deg, #ffb900, #ff8c00); 
    color: white; 
    padding: 8px 15px; 
    border-radius: 20px; 
    font-weight: bold; 
    font-size: 14px; 
    box-shadow: 0 3px 10px rgba(0,0,0,0.2); 
}
.conference-title-section h1 { 
    margin: 0 0 20px 0; 
    color: #333; 
    font-size: 32px; 
}
.conference-basic-info { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px; 
    margin-bottom: 25px; 
}
.info-item { 
    display: flex; 
    gap: 15px; 
    padding: 15px; 
    background: #f8f9fa; 
    border-radius: 10px; 
    border-right: 4px solid #0073aa; 
}
.info-item i { 
    font-size: 24px; 
    color: #0073aa; 
    margin-top: 5px; 
}
.info-item div { flex: 1; }
.info-item strong { 
    display: block; 
    color: #555; 
    font-size: 14px; 
    margin-bottom: 5px; 
}
.info-item span { 
    color: #333; 
    font-size: 16px; 
    line-height: 1.5; 
}
.seats-progress { 
    background: #e9ecef; 
    height: 6px; 
    border-radius: 3px; 
    margin-top: 5px; 
    overflow: hidden; 
}
.progress-bar { 
    background: #28a745; 
    height: 100%; 
    transition: width 0.3s ease; 
}
.conference-categories { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
    margin-top: 20px; 
}
.category-badge { 
    padding: 8px 15px; 
    border-radius: 20px; 
    color: white; 
    font-size: 14px; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
}

/* _____ _______ */
.conference-content-wrapper { 
    display: grid; 
    grid-template-columns: 1fr 350px; 
    gap: 40px; 
}
@media (max-width: 992px) {
    .conference-content-wrapper { grid-template-columns: 1fr; }
}

/* _________ */
.conference-tabs { 
    background: white; 
    border-radius: 15px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
    overflow: hidden; 
}
.tabs-nav { 
    display: flex; 
    flex-wrap: wrap; 
    border-bottom: 2px solid #f0f0f0; 
    background: #f8f9fa; 
    padding: 0 20px; 
}
.tab-btn { 
    padding: 15px 25px; 
    background: none; 
    border: none; 
    font-size: 16px; 
    color: #666; 
    cursor: pointer; 
    border-bottom: 3px solid transparent; 
    transition: all 0.3s ease; 
}
.tab-btn:hover { 
    color: #0073aa; 
    background: rgba(0,115,170,0.05); 
}
.tab-btn.active { 
    color: #0073aa; 
    border-bottom-color: #0073aa; 
    font-weight: bold; 
    background: white; 
}
.tabs-content { padding: 30px; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.conference-description { 
    line-height: 1.8; 
    color: #444; 
    font-size: 16px; 
}
.conference-description h2, 
.conference-description h3 { 
    color: #333; 
    margin-top: 30px; 
    margin-bottom: 15px; 
}
.conference-description p { margin-bottom: 20px; }
.conference-description ul, 
.conference-description ol { 
    margin: 15px 0 15px 20px; 
    padding: 0; 
}
.conference-description li { margin-bottom: 10px; }
.conference-map { margin-top: 40px; }
.conference-map h3 { 
    margin: 0 0 15px 0; 
    color: #333; 
    font-size: 20px; 
}

/* ______ _____ */
.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
    gap: 15px; 
}
.gallery-item { 
    border-radius: 10px; 
    overflow: hidden; 
    cursor: pointer; 
    transition: transform 0.3s ease; 
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-thumbnail { 
    width: 100%; 
    height: 150px; 
    object-fit: cover; 
    display: block; 
}

/* Lightbox */
.lightbox { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.9); 
    z-index: 9999; 
    display: none; 
    align-items: center; 
    justify-content: center; 
    padding: 20px; 
}
.lightbox.active { display: flex; }
.lightbox-content { 
    position: relative; 
    max-width: 90%; 
    max-height: 90%; 
    text-align: center; 
}
.lightbox-content img { 
    max-width: 100%; 
    max-height: 70vh; 
    object-fit: contain; 
    border-radius: 5px; 
}
.close-lightbox { 
    position: absolute; 
    top: -50px; 
    left: 0; 
    color: white; 
    font-size: 40px; 
    cursor: pointer; 
    width: 40px; 
    height: 40px; 
    line-height: 40px; 
    text-align: center; 
}
.lightbox-controls { 
    position: absolute; 
    top: 50%; 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    transform: translateY(-50%); 
}
.lightbox-controls button { 
    background: rgba(255,255,255,0.2); 
    color: white; 
    border: none; 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    font-size: 20px; 
    cursor: pointer; 
    transition: background 0.3s ease; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.lightbox-controls button:hover { background: rgba(255,255,255,0.3); }
.lightbox-caption { 
    color: white; 
    margin-top: 15px; 
    font-size: 16px; 
}

/* __________ */
.videos-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 20px; 
}
.video-item { 
    border-radius: 10px; 
    overflow: hidden; 
    cursor: pointer; 
}
.video-wrapper { 
    position: relative; 
    height: 200px; 
    background: #000; 
    border-radius: 8px; 
    overflow: hidden; 
}
.video-thumbnail { 
    width: 100%; 
    height: 100%; 
    background-size: cover; 
    background-position: center; 
    position: relative; 
}
.video-thumbnail img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}
.play-button { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 60px; 
    height: 60px; 
    background: rgba(0,0,0,0.7); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s ease; 
}
.play-button i { 
    color: white; 
    font-size: 24px; 
    margin-left: 5px; 
}
.video-wrapper:hover .play-button { 
    background: rgba(220, 0, 0, 0.9); 
    transform: translate(-50%, -50%) scale(1.1); 
}
#video-container { 
    width: 100%; 
    max-width: 800px; 
}
#video-container iframe,
#video-container video { 
    width: 100%; 
    height: 450px; 
    border-radius: 8px; 
}
@media (max-width: 768px) {
    .quick-booking {
        position: static;
    }
    
    #conference-map,
    #sidebar-map {
        height: 250px;
    }
    #video-container iframe,
    #video-container video { 
        height: 300px; 
    }
}

/* _______ ______ */
.organizer-info { 
    background: #f8f9fa; 
    padding: 25px; 
    border-radius: 10px; 
    border-right: 4px solid #0073aa; 
}
.organizer-info h3 { 
    margin: 0 0 20px 0; 
    color: #333; 
}
.organizer-details { 
    display: flex; 
    gap: 30px; 
    align-items: flex-start; 
}
@media (max-width: 768px) {
    .organizer-details { flex-direction: column; }
}
.organizer-contact h4 { 
    margin: 0 0 15px 0; 
    color: #0073aa; 
}
.organizer-contact p { 
    margin: 10px 0; 
    color: #555; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}
.organizer-contact i { 
    color: #0073aa; 
    width: 20px; 
}

/* _______ */
.ticket-selection { }
.ticket-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 25px; 
    margin-bottom: 40px; 
}
.ticket-card { 
    position: relative; 
    border: 2px solid #e0e0e0; 
    border-radius: 15px; 
    padding: 25px; 
    transition: all 0.3s ease; 
    background: white; 
}
.ticket-card:hover { 
    border-color: #0073aa; 
    box-shadow: 0 10px 30px rgba(0,115,170,0.1); 
}
.ticket-card.selected { 
    border-color: #28a745; 
    background: rgba(40, 167, 69, 0.03); 
}
.discount-badge { 
    position: absolute; 
    top: -10px; 
    left: -10px; 
    background: linear-gradient(45deg, #ff4757, #ff3838); 
    color: white; 
    padding: 8px 15px; 
    border-radius: 20px; 
    font-weight: bold; 
    font-size: 14px; 
    box-shadow: 0 3px 10px rgba(255,56,56,0.3); 
    z-index: 1; 
}
.ticket-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    margin-bottom: 15px; 
}
.ticket-header h4 { 
    margin: 0; 
    color: #333; 
    font-size: 20px; 
    flex: 1; 
}
.ticket-price { 
    text-align: left; 
    margin-right: 10px; 
}
.original-price { 
    display: block; 
    color: #999; 
    text-decoration: line-through; 
    font-size: 14px; 
}
.current-price { 
    display: block; 
    color: #28a745; 
    font-size: 24px; 
    font-weight: bold; 
}
.ticket-description { 
    color: #666; 
    font-size: 14px; 
    line-height: 1.6; 
    margin: 0 0 15px 0; 
}
.ticket-features { 
    list-style: none; 
    padding: 0; 
    margin: 0 0 20px 0; 
}
.ticket-features li { 
    padding: 8px 0; 
    padding-right: 25px; 
    position: relative; 
    color: #555; 
}
.ticket-features li i { 
    position: absolute; 
    right: 0; 
    color: #28a745; 
}
.ticket-footer { 
    border-top: 1px solid #eee; 
    padding-top: 15px; 
}
.ticket-quantity label { 
    display: block; 
    margin-bottom: 8px; 
    color: #555; 
    font-weight: bold; 
}
.quantity-selector { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 10px; 
}
.quantity-selector button { 
    width: 35px; 
    height: 35px; 
    border: 1px solid #2e7d32 !important;
    background: #388e3c !important;
    color: white !important;
    border-radius: 5px; 
    font-size: 30px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s ease; 
}
.quantity-selector button:hover { 
    background: #2e7d32 !important;
    border-color: #1b5e20 !important;
}
.ticket-qty { 
    width: 60px; 
    height: 35px; 
    text-align: center; 
    border: 1px solid #ddd; 
    border-radius: 5px; 
    font-size: 16px; 
}
.ticket-quantity small { 
    display: block; 
    color: #666; 
    font-size: 12px; 
}

/* ____ _____ */
.booking-summary { 
    background: #f8f9fa; 
    border-radius: 15px; 
    padding: 25px; 
    margin-bottom: 30px; 
    border: 2px solid #e9ecef; 
}
.booking-summary h4 { 
    margin: 0 0 20px 0; 
    color: #333; 
    font-size: 18px; 
}
.empty-summary { 
    color: #666; 
    text-align: center; 
    padding: 20px; 
    margin: 0; 
}
.ticket-summary-list { margin-bottom: 20px; }
.summary-item { 
    display: flex; 
    justify-content: space-between; 
    padding: 12px 0; 
    border-bottom: 1px solid #e9ecef; 
}
.summary-item:last-child { border-bottom: none; }
.item-name { color: #555; }
.item-price { 
    color: #333; 
    font-weight: bold; 
}
.summary-total { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding-top: 20px; 
    border-top: 2px solid #ddd; 
    font-size: 20px; 
    margin-bottom: 20px; 
}
.summary-total strong { color: #333; }
#total-price { 
    color: #28a745; 
    font-weight: bold; 
    font-size: 24px; 
}
.summary-actions { text-align: center; }

/* ============================================
   _____ _____ _____ _____ ______ - _____ ______
   ============================================ */

/* __ ______ _____ */
.btn-continue-booking {
    width: 100%; 
    padding: 15px; 
    background: linear-gradient(45deg, #2e7d32, #1b5e20) !important;
    color: white; 
    border: none; 
    border-radius: 10px; 
    font-size: 16px; 
    font-weight: bold; 
    cursor: pointer; 
    transition: all 0.3s ease; 
}

.btn-continue-booking:not(:disabled):hover { 
    background: linear-gradient(45deg, #1b5e20, #0d4b13) !important;
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3) !important;
}

.btn-continue-booking:disabled { 
    background: #ccc !important;
    cursor: not-allowed; 
    opacity: 0.7; 
}

/* _____ _____ */
.booking-form-container { 
    background: white; 
    border-radius: 15px; 
    padding: 30px; 
    border: 2px solid #f0f0f0; 
}
.booking-form-container h4 { 
    margin: 0 0 25px 0; 
    color: #333; 
    font-size: 20px; 
}
.form-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px; 
    margin-bottom: 25px; 
}
.form-group label { 
    display: block; 
    margin-bottom: 8px; 
    color: #555; 
    font-weight: bold; 
}
.required { color: #dc3545; }
.form-group input, 
.form-group textarea { 
    width: 100%; 
    padding: 12px 15px; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    font-size: 16px; 
    transition: border-color 0.3s ease; 
}
.form-group input:focus, 
.form-group textarea:focus { 
    outline: none; 
    border-color: #0073aa; 
    box-shadow: 0 0 0 3px rgba(0,115,170,0.1); 
}
.form-group textarea { 
    resize: vertical; 
    min-height: 100px; 
}

/* ___ _____ */
.payment-methods { 
    margin: 30px 0; 
    padding: 25px; 
    background: #f8f9fa; 
    border-radius: 10px; 
}
.payment-methods h5 { 
    margin: 0 0 20px 0; 
    color: #333; 
}
.payment-options { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 15px; 
}
.payment-option { 
    position: relative; 
}
.payment-option input { 
    position: absolute; 
    opacity: 0; 
    cursor: pointer; 
}
.payment-content { 
    padding: 20px; 
    border: 2px solid #e0e0e0; 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
}
.payment-option input:checked ~ .payment-content { 
    border-color: #0073aa; 
    background: rgba(0,115,170,0.05); 
}
.payment-option:hover .payment-content { 
    border-color: #0073aa; 
}
.payment-content i { 
    font-size: 24px; 
    color: #0073aa; 
}
.payment-content span { 
    color: #333; 
    font-weight: bold; 
}

/* ____ _________ */
.terms-agreement { 
    margin: 25px 0; 
    padding: 20px; 
    background: #f8f9fa; 
    border-radius: 10px; 
}
.terms-agreement label { 
    display: flex; 
    align-items: flex-start; 
    gap: 10px; 
    color: #555; 
    cursor: pointer; 
}
.terms-agreement input[type="checkbox"] { 
    margin-top: 5px; 
    flex-shrink: 0; 
}
.terms-agreement a { 
    color: #0073aa; 
    text-decoration: none; 
}
.terms-agreement a:hover { text-decoration: underline; }

/* __ _____ _____ */
.btn-book-now { 
    width: 100%; 
    padding: 18px; 
    background: linear-gradient(45deg, #388e3c, #2e7d32) !important;
    color: white; 
    border: none; 
    border-radius: 10px; 
    font-size: 18px; 
    font-weight: bold; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
}
.btn-book-now:not(:disabled):hover { 
    background: linear-gradient(45deg, #2e7d32, #1b5e20) !important;
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(56, 142, 60, 0.3) !important;
}
.btn-book-now:disabled { 
    background: #ccc !important;
    cursor: not-allowed; 
    opacity: 0.7; 
}
.btn-book-now i { font-size: 20px; }

.booking-notice { 
    margin-top: 20px; 
    padding: 15px; 
    background: #d4edda; 
    border: 1px solid #c3e6cb; 
    border-radius: 8px; 
    color: #155724; 
    text-align: center; 
}
.booking-notice i { 
    margin-left: 5px; 
    color: #155724; 
}

/* __ ____ _____ */
.no-tickets { 
    text-align: center; 
    padding: 50px 20px; 
}
.no-tickets i { 
    font-size: 60px; 
    color: #ddd; 
    margin-bottom: 20px; 
}
.no-tickets p { 
    color: #666; 
    font-size: 18px; 
}

/* ______ _______ */
.conference-sidebar { 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
}
.sidebar-widget { 
    background: white; 
    border-radius: 15px; 
    padding: 25px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
}
.sidebar-widget h3 { 
    margin: 0 0 20px 0; 
    color: #333; 
    font-size: 18px; 
    padding-bottom: 15px; 
    border-bottom: 2px solid #f0f0f0; 
}

/* _____ ______ */
.quick-booking { }
.quick-ticket-select select { 
    width: 100%; 
    padding: 12px; 
    border: 2px solid #0073aa; 
    border-radius: 8px; 
    font-size: 16px; 
    margin-bottom: 15px; 
    background: white; 
    color: #333; 
}
.quick-quantity { 
    margin-bottom: 20px; 
}
.quick-quantity label { 
    display: block; 
    margin-bottom: 8px; 
    color: #555; 
}
.quick-quantity .quantity-selector { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.quick-quantity .quantity-selector button { 
    width: 35px;
    height: 35px;
    border: 1px solid #2e7d32 !important;
    background: #388e3c !important;
    color: white !important;
    border-radius: 5px;
    font-size: 30px;
    cursor: pointer;
}
.quick-quantity .quantity-selector button:hover { 
    background: #2e7d32 !important;
}
.quick-quantity input { 
    flex: 1; 
    padding: 8px; 
    text-align: center; 
    border: 1px solid #ddd; 
    border-radius: 5px; 
    font-size: 16px; 
}
.quick-total { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px; 
    background: #f8f9fa; 
    border-radius: 8px; 
    margin-bottom: 20px; 
    font-size: 18px; 
}
.quick-total strong { color: #333; }
#quick-total { 
    color: #28a745; 
    font-weight: bold; 
}

/* _____ _____ ______ __ ______ _______ */
.btn-quick-book {
    width: 100%; 
    padding: 15px; 
    background: linear-gradient(45deg, #2e7d32, #1b5e20) !important;
    color: white; 
    border: none; 
    border-radius: 8px; 
    font-size: 16px; 
    font-weight: bold; 
    cursor: pointer; 
    transition: all 0.3s ease; 
}

.btn-quick-book:not(:disabled):hover { 
    background: linear-gradient(45deg, #1b5e20, #0d4b13) !important;
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3) !important;
}

.btn-quick-book:disabled { 
    background: #ccc !important;
    cursor: not-allowed; 
    opacity: 0.7; 
}

/* _________ _______ */
.quick-info { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}
.quick-info li { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    padding: 12px 0; 
    border-bottom: 1px solid #f0f0f0; 
}
.quick-info li:last-child { border-bottom: none; }
.quick-info i { 
    color: #0073aa; 
    font-size: 18px; 
    width: 24px; 
}
.quick-info span { 
    color: #555; 
    flex: 1; 
}

/* ______ __ ______ _______ */
.location-widget .location-map { }
#sidebar-map { 
    margin-bottom: 15px; 
}
.location-address p { 
    margin: 8px 0; 
    color: #555; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}
.location-address i { 
    color: #0073aa; 
    width: 20px; 
}
.btn-view-map { 
    width: 100%; 
    padding: 10px; 
    background: #f8f9fa; 
    border: 2px solid #0073aa; 
    color: #0073aa; 
    border-radius: 8px; 
    font-size: 14px; 
    cursor: pointer; 
    margin-top: 15px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    transition: all 0.3s ease; 
}
.btn-view-map:hover { 
    background: #0073aa; 
    color: white; 
}

/* _____ __ ______ */
.organizer-contact p { 
    margin: 10px 0; 
    color: #555; 
}
.organizer-contact a { 
    color: #0073aa; 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}
.organizer-contact a:hover { 
    color: #005a87; 
    text-decoration: underline; 
}
.organizer-contact i { 
    width: 20px; 
    color: #0073aa; 
}

/* ______ _______ */
.share-buttons { 
    display: flex; 
    gap: 10px; 
    justify-content: center; 
}
.share-btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    color: white; 
    font-size: 18px; 
    transition: transform 0.3s ease; 
}
.share-btn:hover { 
    transform: translateY(-3px); 
    color: white; 
}
.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

/* _______ */
.cmp-notice { 
    max-width: 800px; 
    margin: 50px auto; 
    padding: 40px; 
    text-align: center; 
    border-radius: 15px; 
    font-size: 18px; 
}
.cmp-error { 
    background: #f8d7da; 
    color: #721c24; 
    border: 2px solid #f5c6cb; 
}
.cmp-warning { 
    background: #fff3cd; 
    color: #856404; 
    border: 2px solid #ffeaa7; 
}
.cmp-info { 
    background: #d1ecf1; 
    color: #0c5460; 
    border: 2px solid #bee5eb; 
}

@media (max-width: 768px) {
    .conference-hero { height: 250px; }
    .conference-title-section h1 { font-size: 24px; }
    .conference-basic-info { grid-template-columns: 1fr; }
    .tabs-nav { padding: 0 10px; }
    .tab-btn { padding: 12px 15px; font-size: 14px; }
    .tabs-content { padding: 20px; }
    .ticket-grid { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
    .payment-options { grid-template-columns: 1fr; }
    .sidebar-widget { padding: 20px; }
}

/* ============================================
   Mobile Navigation Section ________ ________
   ============================================ */

.mobile-nav-section {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid #e0e0e0;
}

.mobile-nav-content {
    width: 100%;
}

/* __ _____ ______ __ _____ */
.mobile-quick-book {
    padding: 10px 15px;
    background: linear-gradient(45deg, #2e7d32, #1b5e20);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-mobile-book {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-mobile-book i {
    font-size: 18px;
}

.book-text {
    flex: 1;
    text-align: center;
}

.book-price {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
}

/* _________ _______ */
.mobile-nav-tabs {
    display: flex;
    justify-content: space-around;
    padding: 10px 5px;
    background: white;
}

.nav-tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 8px 5px;
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 80px;
    text-align: center;
}

.nav-tab-item:hover {
    background: #f8f9fa;
    color: #0073aa;
}

.nav-tab-item.active {
    color: #0073aa;
    background: rgba(0, 115, 170, 0.1);
}

.nav-tab-item i {
    font-size: 18px;
    margin-bottom: 2px;
}

.nav-tab-item span {
    line-height: 1.2;
}

/* _____ _____ ______ ________ */
.mobile-booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.mobile-booking-modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
}

.modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #f8f9fa;
    color: #333;
}

.modal-body {
    padding: 20px;
}

.mobile-ticket-select {
    margin-bottom: 25px;
}

.mobile-ticket-select label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: bold;
    font-size: 14px;
}

.mobile-ticket-select select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #0073aa;
    border-radius: 10px;
    font-size: 16px;
    background: white;
    color: #333;
    transition: all 0.3s ease;
}

.mobile-ticket-select select:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
    outline: none;
}

.mobile-quantity-control {
    margin-bottom: 25px;
}

.mobile-quantity-control label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: bold;
    font-size: 14px;
}

.mobile-quantity-control .quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-quantity-control .quantity-selector button {
    width: 45px;
    height: 45px;
    border: 2px solid #0073aa;
    background: white;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #0073aa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-quantity-control .quantity-selector button:hover {
    background: #0073aa;
    color: white;
}

.mobile-quantity-control .quantity-selector button:active {
    transform: scale(0.95);
}

#mobile-quantity {
    flex: 1;
    text-align: center;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

#mobile-quantity:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
    outline: none;
}

.mobile-total-price {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.total-row:last-child {
    border-bottom: none;
}

.grand-total {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #ddd;
    font-size: 18px;
}

/* _____ _____ __ ________ */
.btn-mobile-confirm {
    flex: 2;
    padding: 16px;
    background: linear-gradient(45deg, #388e3c, #2e7d32) !important;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-mobile-confirm:not(:disabled):hover {
    background: linear-gradient(45deg, #2e7d32, #1b5e20) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-mobile-confirm:disabled {
    background: #ccc !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.mobile-booking-actions {
    display: flex;
    gap: 15px;
}

.btn-mobile-cancel {
    flex: 1;
    padding: 16px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    color: #666;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-mobile-cancel:hover {
    background: #e9ecef;
    border-color: #ddd;
    color: #333;
}

.no-tickets-message {
    text-align: center;
    padding: 40px 20px;
}

.no-tickets-message i {
    font-size: 50px;
    color: #ddd;
    margin-bottom: 15px;
}

.no-tickets-message p {
    color: #666;
    font-size: 16px;
}

/* ___ _____ ___ ___ ________ ________ */
@media (max-width: 1024px) {
    .mobile-nav-section {
        display: block;
    }
    
    /* _____ padding ______ ________ ______ _____ ______ */
    .cmp-conference-details {
        padding-bottom: 100px;
    }
}

/* _______ _______ _______ */
@media (max-width: 768px) {
    .mobile-nav-tabs {
        padding: 8px 3px;
    }
    
    .nav-tab-item {
        padding: 8px 3px;
        font-size: 11px;
        margin: 0 2px;
    }
    
    .nav-tab-item i {
        font-size: 16px;
    }
    
    .btn-mobile-book {
        padding: 10px;
        font-size: 15px;
    }
    
    .book-price {
        font-size: 12px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .nav-tab-item span {
        font-size: 10px;
    }
    
    .mobile-booking-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-mobile-confirm,
    .btn-mobile-cancel {
        width: 100%;
        flex: none;
    }
}


/* _____ __ _____ ______ __ ______ */
.btn-mobile-book.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-mobile-book.disabled:hover {
    background: linear-gradient(45deg, #2e7d32, #1b5e20);
    transform: none;
}

/* _____ __ _____ _____ __ _______ ________ */
.btn-mobile-confirm.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-mobile-confirm.disabled:hover {
    background: linear-gradient(45deg, #388e3c, #2e7d32) !important;
    transform: none;
    box-shadow: none;
}

/* _____ _____ _________ ___ ________ */
.nav-tab-item {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.nav-tab-item:active {
    background: rgba(0, 115, 170, 0.15);
}

/* _____ _______ ________ */
.modal-content {
    -webkit-overflow-scrolling: touch;
}

.modal-body {
    padding-bottom: 30px;
}

/* ___ _______ _______ ___ _______ */
button {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* _____ __ _____ ______ __ ____ _____ */
.btn-mobile-book:active {
    transform: scale(0.98);
}

/* _____ ________ ___ _________ */
.tab-pane {
    transition: opacity 0.3s ease;
}

.tab-pane:not(.active) {
    display: none;
}