.mobile-action-buttons {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    flex-direction: column;
    gap: 15px;
}
.mobile-action-buttons a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: transform 0.3s;
}
.m-btn-call { background: #5191fa; }
.m-btn-wa { background: #25d366; }

@media (max-width: 768px) {
    .mobile-action-buttons { display: flex; }
}

/* ======= PREMIUM NEWS WIDGET ======= */
.news-widget-tab {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0;
}
.news-widget-tab-inner {
    background: linear-gradient(180deg, #0A1325 0%, #1a2b48 100%);
    color: #D4AF37;
    padding: 18px 10px;
    border-radius: 0 12px 12px 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 4px 0 20px rgba(0,0,0,0.25);
    border-left: 3px solid #D4AF37;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    user-select: none;
}
.news-widget-tab-inner:hover {
    background: linear-gradient(180deg, #1a2b48 0%, #253d6b 100%);
    padding-right: 14px;
}
.news-widget-tab-inner .tab-icon {
    font-size: 16px;
    transform: rotate(90deg);
    animation: bellRing 3s ease-in-out infinite;
}
.news-widget-tab .news-badge {
    position: absolute;
    top: 12px;
    right: -5px;
    background: #D4AF37;
    color: #0A1325;
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

@keyframes bellRing {
    0%, 90%, 100% { transform: rotate(90deg); }
    92% { transform: rotate(80deg); }
    94% { transform: rotate(100deg); }
    96% { transform: rotate(83deg); }
    98% { transform: rotate(95deg); }
}

/* Panel */
.news-panel {
    position: fixed;
    top: 0;
    left: -400px;
    width: 370px;
    height: 100vh;
    background: #0A1325;
    z-index: 10001;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 8px 0 40px rgba(0,0,0,0.4);
}
.news-panel.is-open { left: 0; }

.news-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.news-panel-overlay.is-open { opacity: 1; pointer-events: all; }

/* Panel Header */
.news-panel-header {
    background: linear-gradient(135deg, #0d1e3a 0%, #152844 100%);
    padding: 24px 20px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    flex-shrink: 0;
}
.news-panel-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.news-panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}
.news-panel-title-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #D4AF37, #c09a2f);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A1325;
    font-size: 15px;
}
.news-panel-count {
    font-size: 11px;
    color: rgba(212,175,55,0.8);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}
.news-panel-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}
.news-panel-close:hover {
    background: rgba(231,76,60,0.15);
    border-color: rgba(231,76,60,0.3);
    color: #e74c3c;
}

/* Panel Body */
.news-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,0.3) transparent;
}
.news-panel-body::-webkit-scrollbar { width: 4px; }
.news-panel-body::-webkit-scrollbar-track { background: transparent; }
.news-panel-body::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); border-radius: 4px; }

/* News Card */
.news-card {
    display: block;
    text-decoration: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
    position: relative;
}
.news-card:hover {
    background: rgba(212,175,55,0.07);
    border-color: rgba(212,175,55,0.25);
    transform: translateX(4px);
    text-decoration: none;
}
.news-card-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}
.news-card-body { padding: 14px; }
.news-card-date {
    font-size: 10px;
    color: rgba(212,175,55,0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}
.news-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}
.news-card:hover .news-card-title { color: #D4AF37; }
.news-card-excerpt {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}
.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    font-size: 11px;
    color: #D4AF37;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.news-card-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 26px;
    height: 26px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 11px;
    transition: all 0.2s;
}
.news-card:hover .news-card-arrow {
    background: #D4AF37;
    color: #0A1325;
    transform: translateX(3px);
}

.news-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255,255,255,0.3);
}
.news-empty i { font-size: 40px; display: block; margin-bottom: 12px; color: rgba(212,175,55,0.2); }
.news-empty p { font-size: 13px; }

/* Panel Footer */
.news-panel-footer {
    padding: 14px 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.25);
}
.news-panel-footer i { color: #D4AF37; }