/**
 * Auj24 Theme - Modern Arabic News Design
 * Brand: Gold (#C8A84E) + Navy (#1B3A5C)
 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@400;500;600;700;800&display=swap');

:root {
    --brand-gold: #C8A84E;
    --brand-gold-light: #D4B96A;
    --brand-gold-dark: #B08E30;
    --brand-blue: #1E5A8C;
    --brand-blue-light: #D6EAF8;
    --brand-blue-pale: #EBF5FB;
    --brand-blue-sky: #AED6F1;
    --brand-navy: #1B3A5C;
    --brand-navy-light: #2A4F78;
    --brand-navy-dark: #0F2540;
    --text-primary: #1a1a1a;
    --text-secondary: #555;
    --text-muted: #999;
    --bg-body: #f0f1f3;
    --bg-light: #f5f6f8;
    --bg-white: #fff;
    --border-color: #e4e4e4;
    --header-height: 56px;
    /* Override theme-base.css variables */
    --vr-theme-color: #C8A84E;
    --vr-block-color: #1E5A8C;
}

/* ===== Base ===== */
body {
    font-family: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, sans-serif !important;
    background-color: var(--bg-body);
}

/* ===== Top Bar ===== */
#nav-top {
    background: linear-gradient(135deg, #1a4f7a, #1E5A8C) !important;
    color: rgba(255,255,255,0.85) !important;
    font-size: 12px;
    padding: 5px 0;
    border-bottom: 3px solid var(--brand-gold);
}
.top-date { font-size: 12px; color: rgba(255,255,255,0.7); }
.top-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 12px;
    padding: 0 8px;
    transition: color 0.2s;
}
.top-link:hover { color: var(--brand-gold); }
#nav-top .nav-link { color: rgba(255,255,255,0.8); font-size: 12px; padding: 0 8px; }
#nav-top .nav-link:hover { color: var(--brand-gold); }
.btn-switch-mode {
    background: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: rgba(255,255,255,0.8) !important;
    border-radius: 50% !important;
    width: 28px !important; height: 28px !important;
    min-width: 28px !important;
    display: flex !important; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s;
    padding: 0 !important; margin: 0 !important;
}
.btn-switch-mode:hover { background: var(--brand-gold) !important; border-color: var(--brand-gold) !important; color: #fff !important; }

/* ===== Main Header ===== */
#header {
    background: linear-gradient(180deg, var(--brand-blue-pale) 0%, var(--brand-blue-light) 100%) !important;
    box-shadow: 0 2px 20px rgba(30,90,140,0.12);
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(30,90,140,0.1);
}
.nav-main {
    background: transparent !important;
    border-bottom: none !important;
}
.nav-main { padding: 0; }
.nav-main .container-xl { display: flex; align-items: center; }
.navbar-brand .logo {
    height: 80px !important;
    width: auto;
    padding: 6px 10px;
    border-radius: 8px;
    max-height: 80px !important;
    background: transparent;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}
.nav-main .container-xl { padding-top: 8px; padding-bottom: 8px; }
.navbar-left {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.navbar-left::-webkit-scrollbar { display: none; }
.navbar-left .nav-link {
    color: var(--brand-blue) !important;
    font-size: 13px;
    font-weight: 700;
    padding: 16px 12px !important;
    transition: all 0.2s;
    position: relative;
    white-space: nowrap;
}
.navbar-left .nav-link:hover,
.navbar-left .nav-item.active .nav-link {
    color: var(--brand-navy-dark) !important;
}
.navbar-left .nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0; left: 0;
    height: 3px;
    background: var(--brand-navy-dark);
    border-radius: 3px 3px 0 0;
}
.dropdown-menu.nav-dropdown-menu {
    background: #fff;
    border: 1px solid rgba(30,90,140,0.12);
    border-radius: 0 0 8px 8px;
    padding: 5px 0;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(30,90,140,0.15);
}
.dropdown-menu .dropdown-item { color: var(--brand-blue) !important; padding: 8px 16px; font-size: 13px; }
.dropdown-menu .dropdown-item:hover { background: var(--brand-blue-pale); color: var(--brand-gold) !important; }
.navbar-toggler { border-color: rgba(30,90,140,0.3); }
.navbar-toggler-icon { filter: none; }
.navbar-right .search-icon { color: var(--brand-blue) !important; background: none; border: none; }
.navbar-right .search-icon:hover { color: var(--brand-gold) !important; }

/* ===== Search Overlay ===== */
.search-form {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    padding: 15px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 25px rgba(30,90,140,0.15);
    border: 1px solid rgba(30,90,140,0.1);
    z-index: 1050;
}
.search-form.active { display: block; }
.search-form form { display: flex; gap: 5px; }
.search-form .form-input {
    flex: 1;
    background: var(--brand-blue-pale);
    border: 1px solid var(--brand-blue-sky);
    color: var(--text-primary);
    border-radius: 6px;
}
.search-form .form-input::placeholder { color: var(--text-muted); }
.search-form .btn-custom { background: var(--brand-gold) !important; border: none; border-radius: 6px; color: #fff; }

/* ===== News Ticker ===== */
.section-newsticker {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
}
.newsticker-container { padding: 10px 0; }
.newsticker-title {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    display: flex; align-items: center; gap: 6px;
    margin-inline-start: 15px;
    animation: ticker-pulse 2s ease-in-out infinite;
}
@keyframes ticker-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}
.newsticker { margin: 0; flex: 1; height: 36px; line-height: 36px; overflow: hidden; position: relative; padding: 0; }
.newsticker li { display: block !important; list-style: none; height: 36px; line-height: 36px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.newsticker li a { color: var(--text-primary); text-decoration: none; font-size: 14px; font-weight: 500; line-height: 36px; }
.newsticker li a:hover { color: var(--brand-gold); }
.nav-sm-buttons button {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.nav-sm-buttons button:hover { background: var(--brand-gold); border-color: var(--brand-gold); color: #fff; }

/* ===== Featured Slider ===== */
.section-featured {
    padding: 20px 0;
    background: var(--bg-body);
}
.main-slider-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.main-slider .slick-list,
.main-slider .slick-track { height: 100%; }
.main-slider-item { position: relative; outline: none; }
.main-slider-item img.img-cover {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.main-slider-item .caption {
    position: absolute;
    bottom: 0; right: 0; left: 0;
    padding: 40px 25px 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
}
.main-slider-item .caption .title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.5;
}
.main-slider-item .caption .post-meta { font-size: 12px; color: rgba(255,255,255,0.7); margin: 0; }
.main-slider-nav {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex; gap: 6px;
    z-index: 10;
}
.main-slider-nav button {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.main-slider-nav button:hover { background: var(--brand-gold); border-color: var(--brand-gold); }
.badge-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
}
.col-featured-right .item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.col-featured-right .item img { width: 100%; height: auto; transition: transform 0.3s; }
.col-featured-right .item:hover img { transform: scale(1.03); }
.col-featured-right .item .caption {
    position: absolute;
    bottom: 0; right: 0; left: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
}
.col-featured-right .item .caption .title { font-size: 14px; margin: 0; }
.col-featured-right .item .caption .title a { color: #fff; text-decoration: none; }
.col-featured-right .item .caption .post-meta { font-size: 11px; color: rgba(255,255,255,0.7); margin: 3px 0 0; }
.item-large .caption .title { font-size: 17px !important; font-weight: 700; line-height: 1.5; }

/* ===== Section Titles ===== */
.section-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}
.section-title .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.section-title .title a { color: inherit; text-decoration: none; }
.section-title .title a:hover { color: var(--brand-gold); }
.title-dot {
    display: inline-block;
    width: 5px;
    height: 22px;
    border-radius: 3px;
    flex-shrink: 0;
}
.link-see-more {
    font-size: 13px;
    color: var(--brand-gold);
    text-decoration: none;
    display: flex; align-items: center; gap: 4px;
    font-weight: 600;
    white-space: nowrap;
}
.link-see-more:hover { color: var(--brand-gold-dark); }

/* ===== Category Blocks ===== */
.section-category {
    margin-bottom: 15px;
    padding: 20px 0;
}
.section-category:nth-child(even) { background: var(--bg-light); }

/* --- Category Hero Card (default layout) --- */
.cat-hero-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    height: 100%;
}
.cat-hero-img-link { display: block; overflow: hidden; }
.cat-hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.cat-hero-card:hover .cat-hero-img { transform: scale(1.03); }
.cat-hero-body { padding: 18px; }
.cat-hero-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    margin: 8px 0;
}
.cat-hero-title a { color: var(--text-primary); text-decoration: none; }
.cat-hero-title a:hover { color: var(--brand-gold); }
.cat-hero-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
}
.cat-hero-meta { font-size: 12px; color: var(--text-muted); }

/* --- Category Side Posts (default layout) --- */
.cat-side-posts { display: flex; flex-direction: column; height: 100%; }
.cat-side-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    gap: 12px;
}
.cat-side-item:last-child { border-bottom: none; }
.cat-side-img img {
    width: 100px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}
.cat-side-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 6px;
}
.cat-side-title a { color: var(--text-primary); text-decoration: none; }
.cat-side-title a:hover { color: var(--brand-gold); }
.cat-side-meta { font-size: 12px; color: var(--text-muted); }

/* ===== Post Item (content.php) — Grid Cards ===== */
.post-item {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.post-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.post-item .image { position: relative; overflow: hidden; }
.post-item .image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.post-item:hover .image img { transform: scale(1.05); }
.post-item .title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
    margin: 0 0 6px;
    padding: 14px 14px 0;
}
.post-item .title a { color: var(--text-primary); text-decoration: none; }
.post-item .title a:hover { color: var(--brand-gold); }
.post-item .post-meta { font-size: 12px; color: var(--text-muted); padding: 0 14px; margin-bottom: 5px; }
.post-item .description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 0 14px 14px;
    margin: 0;
}
.post-item.no-image .title { padding-top: 14px; }

/* ===== Post Item Small ===== */
.post-item-small {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}
.post-item-small:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.post-item-small .image img {
    width: 80px; height: 60px;
    object-fit: cover;
    border-radius: 8px;
}
.post-item-small .title { font-size: 14px; line-height: 1.6; margin: 0 0 4px; font-weight: 600; }
.post-item-small .title a { color: inherit; text-decoration: none; }
.post-item-small .title a:hover { color: var(--brand-gold); }
.post-item-small .small-post-meta { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ===== Post Item Horizontal ===== */
.post-item-horizontal {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}
.post-item-horizontal:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.post-item-horizontal .image img {
    width: 130px; height: 90px;
    object-fit: cover;
    border-radius: 8px;
}
.post-item-horizontal .title { font-size: 14px; line-height: 1.6; margin: 0 0 5px; font-weight: 600; }
.post-item-horizontal .title a { color: var(--text-primary); text-decoration: none; }
.post-item-horizontal .title a:hover { color: var(--brand-gold); }
.post-item-horizontal .small-post-meta { font-size: 12px; color: var(--text-muted); }

/* ===== Latest Posts Section ===== */
.section-latest-posts {
    margin-bottom: 30px;
    padding-top: 15px;
}

/* ===== Sidebar ===== */
.col-sidebar {
    top: calc(var(--header-height) + 15px) !important;
}
.widget {
    margin-bottom: 20px;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.widget-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--brand-gold);
    color: var(--text-primary);
}
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li { padding: 5px 0; }
.widget ul li a { color: inherit; text-decoration: none; }
.widget ul li a:hover { color: var(--brand-gold); }

/* --- Sidebar Post Items --- */
.sidebar-post-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    gap: 10px;
}
.sidebar-post-item:last-child { border-bottom: none; }
.sidebar-post-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-gold);
    min-width: 32px;
    text-align: center;
    line-height: 1;
    opacity: 0.6;
}
.sidebar-post-img img {
    width: 85px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.sidebar-post-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 4px;
}
.sidebar-post-title a { color: var(--text-primary); text-decoration: none; }
.sidebar-post-title a:hover { color: var(--brand-gold); }
.sidebar-post-date { font-size: 11px; color: var(--text-muted); }
.sidebar-post-item-compact .sidebar-post-img img { width: 70px; height: 50px; }

/* ===== Buttons ===== */
.btn-custom {
    background: var(--brand-gold) !important;
    border: none;
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 28px;
    transition: all 0.2s;
}
.btn-custom:hover {
    background: var(--brand-gold-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200,168,78,0.3);
}

/* ===== Share Buttons ===== */
.btn-share {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    color: #fff;
    margin-left: 5px;
    font-size: 14px;
    transition: opacity 0.2s, transform 0.2s;
}
.btn-share:hover { opacity: 0.85; color: #fff; transform: translateY(-1px); }
.btn-facebook { background-color: #3b5998; }
.btn-twitter { background-color: #1da1f2; }
.btn-linkedin { background-color: #0077b5; }
.btn-whatsapp { background-color: #25d366; }
.btn-telegram { background-color: #0088cc; }

/* ===== Pagination ===== */
.nav-links { display: flex; justify-content: center; gap: 5px; padding: 20px 0; }
.nav-links .page-numbers {
    display: inline-flex;
    align-items: center; justify-content: center;
    min-width: 38px; height: 38px;
    padding: 0 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
    background-color: var(--brand-gold);
    border-color: var(--brand-gold);
    color: #fff;
}

/* ===== Footer ===== */
#footer .footer-inner {
    background: linear-gradient(180deg, var(--brand-blue-light) 0%, #c4ddf0 100%);
    background-image:
        radial-gradient(ellipse at 20% 80%, rgba(174,214,241,0.5) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(214,234,248,0.6) 0%, transparent 50%),
        linear-gradient(180deg, var(--brand-blue-light) 0%, #c4ddf0 100%);
    color: var(--brand-blue);
    padding: 50px 0 30px;
    position: relative;
}
#footer .footer-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-light), var(--brand-gold));
}
.footer-logo { margin-bottom: 15px; text-align: center; }
.footer-logo .logo { height: 50px; padding: 4px 8px; border-radius: 6px; background: transparent; }
.footer-about { font-size: 13px; line-height: 1.8; color: rgba(30,90,140,0.7); }
.footer-about p { margin-bottom: 0.5rem; }
.footer-brand-name { color: var(--brand-gold-dark); font-weight: 700; font-size: 15px; margin-bottom: 0.5rem; }
#footer .widget-title { color: var(--brand-blue); border-color: var(--brand-gold); font-size: 16px; background: transparent; }
#footer .widget { background: transparent; box-shadow: none; padding: 0; }

/* Footer Social */
.footer-social { display: flex; gap: 8px; }
.footer-social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(30,90,140,0.1);
    color: var(--brand-blue);
    transition: all 0.2s;
}
.footer-social-link:hover { background: var(--brand-gold); color: #fff; }

/* Footer Post Items */
.footer-post-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(30,90,140,0.1);
    gap: 10px;
}
.footer-post-item:last-child { border-bottom: none; }
.footer-post-img img {
    width: 70px; height: 50px;
    object-fit: cover; border-radius: 6px; display: block;
}
.footer-post-title { font-size: 13px; font-weight: 600; line-height: 1.6; margin: 0 0 4px; }
.footer-post-title a { color: var(--brand-blue); text-decoration: none; }
.footer-post-title a:hover { color: var(--brand-gold); }
.footer-post-date { font-size: 11px; color: rgba(30,90,140,0.5); }

/* Footer Contact */
.footer-contact { margin-top: 5px; }
.footer-contact-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(30,90,140,0.1);
    color: rgba(30,90,140,0.7);
    font-size: 14px;
}
.footer-contact-item:last-child { border-bottom: none; }
.footer-contact-item svg { flex-shrink: 0; color: var(--brand-gold); }
.footer-contact-item a { color: var(--brand-blue); text-decoration: none; }
.footer-contact-item a:hover { color: var(--brand-gold); }

/* Footer Copyright */
.footer-copyright {
    background: linear-gradient(135deg, #1a4f7a, #1E5A8C);
    padding: 15px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    border-top: none;
}
.footer-copyright .copyright { color: rgba(255,255,255,0.7); }
.footer-credit { color: rgba(255,255,255,0.7); font-size: 13px; }
.footer-credit a { color: inherit; text-decoration: none; }
.footer-credit a:hover { color: #fff; }
.footer-credit strong { color: var(--brand-gold); }
.footer-copyright .nav-footer ul li a { color: rgba(255,255,255,0.7); font-size: 13px; }
.footer-copyright .nav-footer ul li a:hover { color: var(--brand-gold); }

/* ===== Comments ===== */
.comments-area { margin-top: 2rem; }
.comments-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text-primary); }
.comment-list { list-style: none; padding: 0; margin: 0; }
.comment-list .comment-item { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-color); }
.comment-avatar img { width: 50px; height: 50px; object-fit: cover; }
.comment-meta { margin-bottom: 0.5rem; }
.comment-author { color: var(--text-primary); font-size: 14px; }
.comment-author a { color: var(--text-primary); text-decoration: none; }
.comment-date { color: var(--text-secondary); font-size: 12px; margin-inline-start: 10px; }
.comment-text { font-size: 14px; line-height: 1.7; color: var(--text-primary); }
.comment-text p { margin-bottom: 0.5rem; }
.comment-reply a { font-size: 12px; color: var(--brand-gold); text-decoration: none; font-weight: 600; }
.comment-reply a:hover { text-decoration: underline; }
.comment-list .children { padding-inline-start: 2rem; margin-top: 1.5rem; }
.comment-form { margin-top: 2rem; }
.comment-form label { font-weight: 600; font-size: 14px; color: var(--text-primary); margin-bottom: 0.25rem; display: block; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--border-color); border-radius: 6px; font-size: 14px; background: var(--bg-white); color: var(--text-primary); margin-bottom: 1rem; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--brand-gold); outline: none; box-shadow: 0 0 0 3px rgba(200,168,78,0.15); }
.comment-form .form-submit { margin-top: 0.5rem; }
.no-comments { color: var(--text-secondary); font-style: italic; }

/* ===== About This Story ===== */
.section-about-story { background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 8px; padding: 20px; }
.section-about-story .section-title { margin-bottom: 15px; }
.section-about-story .section-title .title { font-size: 18px; }
.about-story-list { display: flex; flex-direction: column; gap: 15px; }
.about-story-item { gap: 12px; padding-bottom: 15px; border-bottom: 1px solid var(--border-color); }
.about-story-item:last-child { padding-bottom: 0; border-bottom: none; }
.about-story-img { width: 90px; height: 65px; border-radius: 6px; overflow: hidden; }
.about-story-img img { width: 100%; height: 100%; object-fit: cover; }
.about-story-title { font-size: 14px; font-weight: 600; margin: 0 0 5px; line-height: 1.6; }
.about-story-title a { color: var(--text-primary); text-decoration: none; }
.about-story-title a:hover { color: var(--brand-gold); }
.about-story-date { font-size: 12px; color: var(--text-secondary); }
.dark-mode .section-about-story { background: var(--bg-white); border-color: #333; }

/* ===== Post Taxonomy Meta (Location & Source) ===== */
.post-taxonomy-meta {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 10px 0;
}
.taxonomy-item {
    background: var(--bg-light);
    padding: 6px 14px;
    border-radius: 8px;
}
.taxonomy-label {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 13px;
}
.taxonomy-value {
    color: var(--brand-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}
.taxonomy-value:hover {
    color: var(--brand-gold-dark);
    text-decoration: underline;
}
.dark-mode .taxonomy-item {
    background: #2a2a2a;
}

/* ===== Read More Button ===== */
.btn-read-more {
    display: inline-block;
    padding: 6px 18px;
    background: var(--brand-gold);
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    margin: 0 14px 14px;
}
.btn-read-more:hover {
    background: var(--brand-gold-dark);
    color: #fff;
    transform: translateY(-1px);
}

/* ===== Scroll Up ===== */
.scrollup {
    position: fixed;
    bottom: 30px; left: 30px; right: auto;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--brand-gold);
    color: #fff;
    border-radius: 12px;
    opacity: 0; visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(200,168,78,0.3);
}
.scrollup.active { opacity: 1; visibility: visible; }
.scrollup:hover { background: var(--brand-gold-dark); color: #fff; transform: translateY(-2px); }

/* ===== Breadcrumb ===== */
.breadcrumb { background: transparent; padding: 0; margin-bottom: 15px; font-size: 13px; }
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item.active { color: var(--brand-gold); }

/* ===== About Us Page ===== */
.section-about { padding: 30px 0 50px; }
.about-hero { padding: 30px 0; }
.about-logo-wrapper {
    display: inline-block;
    background: var(--bg-white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.about-logo { height: 70px; width: auto; }
.about-main-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--brand-navy);
    margin: 15px 0 5px;
}
.about-subtitle {
    font-size: 18px;
    color: var(--brand-gold);
    font-weight: 600;
}
.about-content-block {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.about-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-heading-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    background: var(--brand-gold);
    color: #fff;
    border-radius: 10px;
    flex-shrink: 0;
}
.about-section p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.about-features { margin-top: 10px; }
.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.about-feature-dot {
    width: 8px; height: 8px;
    background: var(--brand-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.about-brand-name { color: var(--brand-gold); font-weight: 700; font-size: 1.2rem; margin-bottom: 0.5rem; }
.about-email-link { color: var(--brand-gold); font-weight: 600; text-decoration: none; font-size: 1.1rem; }
.about-email-link:hover { text-decoration: underline; }

/* ===== Contact Page ===== */
.section-contact { padding: 30px 0 50px; }
.contact-intro {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}
.contact-info-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}
.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.contact-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px; height: 60px;
    background: rgba(200,168,78,0.1);
    color: var(--brand-gold);
    border-radius: 50%;
    margin-bottom: 15px;
}
.contact-info-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.contact-info-value {
    font-size: 14px;
    color: var(--brand-gold);
    text-decoration: none;
    font-weight: 600;
}
.contact-info-value:hover { color: var(--brand-gold-dark); }
.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.contact-form-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}
.contact-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}
.contact-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color 0.2s;
}
.contact-form .form-control:focus {
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(200,168,78,0.15);
}
.dark-mode .about-main-title { color: var(--text-primary); }
.dark-mode .about-content-block { background: var(--bg-white); }
.dark-mode .about-logo-wrapper { background: var(--bg-white); }
.dark-mode .contact-info-card { background: var(--bg-white); }
.dark-mode .contact-form-wrapper { background: var(--bg-white); }
.dark-mode .contact-form .form-control {
    background: #2a2a2a;
    border-color: #444;
    color: #ddd;
}

/* ===== Post Content (Single) ===== */
.post-text img { max-width: 100%; height: auto; border-radius: 10px; }
.post-text iframe { max-width: 100%; }
.post-text table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.post-text table th, .post-text table td { padding: 10px; border: 1px solid var(--border-color); }

/* ===== Comments ===== */
.comment-list { list-style: none; padding: 0; }
.comment-list .comment { padding: 15px 0; border-bottom: 1px solid var(--border-color); }
.comment-list .comment .comment-author img { border-radius: 50%; margin-left: 10px; }
.comment-list .comment .comment-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 5px; }
.comment-list .children { padding-right: 30px; list-style: none; }
#respond { margin-top: 20px; }
#respond .comment-form label { display: block; margin-bottom: 5px; font-weight: 600; }
#respond .comment-form input[type="text"],
#respond .comment-form input[type="email"],
#respond .comment-form input[type="url"],
#respond .comment-form textarea {
    width: 100%; padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px; margin-bottom: 15px;
}
#respond .comment-form .form-submit input {
    background-color: var(--brand-gold); color: #fff; border: none;
    padding: 10px 25px; border-radius: 8px; cursor: pointer; font-weight: 600;
}
#respond .comment-form .form-submit input:hover { background-color: var(--brand-gold-dark); }

/* ===== Page Title ===== */
.page-title { font-size: 24px; font-weight: 700; margin-bottom: 20px; }

/* ===== Screen Reader ===== */
.screen-reader-text {
    border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
    height: 1px; margin: -1px; overflow: hidden; padding: 0;
    position: absolute; width: 1px; word-wrap: normal !important;
}

/* ===== WordPress Alignments (RTL) ===== */
.alignleft { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.alignright { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin: 1rem auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); padding: 5px 0; }

/* ===== Gallery ===== */
.gallery { display: flex; flex-wrap: wrap; gap: 5px; }
.gallery-item { flex: 1 1 200px; max-width: 100%; }
.gallery-caption { font-size: 0.85rem; }

/* ===== Admin Bar ===== */
body.admin-bar #header { top: 32px; }
body.admin-bar .col-sidebar { top: calc(var(--header-height) + 32px + 15px) !important; }
@media (max-width: 782px) {
    body.admin-bar #header { top: 46px; }
    body.admin-bar .col-sidebar { top: auto !important; }
}

/* ===== Site Title ===== */
.site-title-text { font-size: 22px; font-weight: 700; color: var(--brand-gold); }

/* ===== Single Post Styles ===== */
.post-title { font-size: 28px; font-weight: 800; line-height: 1.6; margin-bottom: 15px; text-align: center; }
.post-summary { font-size: 16px; color: var(--text-secondary); font-weight: 400; line-height: 1.7; text-align: center; margin-bottom: 20px; }
.post-details-meta {
    gap: 15px; font-size: 13px; color: var(--text-muted);
    padding-bottom: 15px; border-bottom: 1px solid var(--border-color);
}
.post-details-meta .item-meta { display: flex; align-items: center; gap: 5px; }
.post-details-meta .item-meta a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 5px; }
.post-details-meta .item-meta a:hover { color: var(--brand-gold); }
.post-details-meta img { border-radius: 50%; }
.post-text { font-size: 16px; line-height: 2; color: var(--text-primary); }
.post-tags { gap: 10px; padding: 15px 0; border-top: 1px solid var(--border-color); }
.post-tags .title { font-size: 16px; font-weight: 700; margin: 0; white-space: nowrap; }
.post-tags ul { list-style: none; padding: 0; margin: 0; gap: 8px; flex-wrap: wrap; }
.post-tags ul li a {
    display: inline-block; padding: 4px 12px; background: var(--bg-light);
    border-radius: 4px; font-size: 13px; color: var(--text-secondary);
    text-decoration: none; transition: all 0.2s;
}
.post-tags ul li a:hover { background: var(--brand-gold); color: #fff; }
.about-author { padding: 20px; background: var(--bg-light); border-radius: 12px; }
.about-author .img-author { border-radius: 50%; width: 80px; height: 80px; object-fit: cover; }
.about-author .username a { color: var(--text-primary); text-decoration: none; font-size: 16px; }
.about-author .username a:hover { color: var(--brand-gold); }
.about-author p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-top: 5px; }
.post-share-buttons { gap: 8px; justify-content: center; }
.post-image img { border-radius: 12px; }

/* ===== YouTube Embed ===== */
.vr-youtube-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.vr-youtube-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

/* ===== Social Embeds ===== */
.vr-tweet-wrap,
.vr-fb-wrap {
    max-width: 550px;
    margin: 20px auto;
}

/* ===== Post Source (Below Content) ===== */
.post-source-bottom {
    padding: 14px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    border-right: 4px solid var(--brand-blue);
    font-size: 14px;
}
.post-source-bottom svg {
    color: var(--brand-blue);
    flex-shrink: 0;
}
.post-source-bottom .source-label {
    font-weight: 600;
    color: var(--text-primary);
}
.post-source-bottom .source-value {
    color: var(--brand-blue);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.post-source-bottom .source-value:hover {
    color: var(--brand-navy-dark);
    text-decoration: underline;
}

/* ===== Dark Mode ===== */
.dark-mode {
    --text-primary: #e0e0e0;
    --text-secondary: #aaa;
    --text-muted: #777;
    --bg-body: #111;
    --bg-light: #1a1a1a;
    --bg-white: #1e1e1e;
    --border-color: #333;
}
.dark-mode body, .dark-mode { background-color: #111; color: var(--text-primary); }
.dark-mode #nav-top { background: #0a0a0a !important; border-bottom-color: var(--brand-gold) !important; }
.dark-mode #header { background: #111 !important; border-bottom-color: #222 !important; }
.dark-mode .nav-main { background: #111 !important; }
.dark-mode .navbar-left .nav-link { color: rgba(255,255,255,0.85) !important; }
.dark-mode .navbar-right .search-icon { color: rgba(255,255,255,0.8) !important; }
.dark-mode .dropdown-menu.nav-dropdown-menu { background: #1a1a1a; border-color: #333; }
.dark-mode .dropdown-menu .dropdown-item { color: rgba(255,255,255,0.8) !important; }
.dark-mode .dropdown-menu .dropdown-item:hover { background: #222; color: var(--brand-gold) !important; }
.dark-mode .btn-switch-mode { background: rgba(255,255,255,0.1) !important; border-color: rgba(255,255,255,0.15) !important; color: rgba(255,255,255,0.7) !important; }
.dark-mode .header-mobile-container { background: #111 !important; }
.dark-mode .navbar-toggler { color: #fff !important; }
.dark-mode .btn-mobile-search { color: #fff !important; }
.dark-mode .mobile-logo img { background: transparent; }
.dark-mode .mobile-nav-list { background: #0a0a0a; }
.dark-mode .mobile-nav-secondary { background: #0a0a0a; }
.dark-mode .mobile-search-form .form-control { background: #1a1a1a; border-color: #333; color: #ddd; }
.dark-mode #footer .footer-inner { background: #0a0a0a !important; color: rgba(255,255,255,0.7); }
.dark-mode #footer .footer-inner::before { background: var(--brand-gold); }
.dark-mode #footer .widget-title { color: #fff; }
.dark-mode .footer-about { color: rgba(255,255,255,0.55); }
.dark-mode .footer-brand-name { color: var(--brand-gold); }
.dark-mode .footer-contact-item { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.08); }
.dark-mode .footer-contact-item a { color: rgba(255,255,255,0.7); }
.dark-mode .footer-post-title a { color: rgba(255,255,255,0.85); }
.dark-mode .footer-post-item { border-color: rgba(255,255,255,0.08); }
.dark-mode .footer-post-date { color: rgba(255,255,255,0.35); }
.dark-mode .footer-copyright { background: #050505; color: rgba(255,255,255,0.5); border-top-color: rgba(255,255,255,0.05); }
.dark-mode .footer-copyright .copyright { color: rgba(255,255,255,0.5); }
.dark-mode .footer-credit { color: rgba(255,255,255,0.5); }
.dark-mode .footer-social-icon { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.05); }
.dark-mode .section-newsticker { background: var(--bg-white); border-color: #333; }
.dark-mode .newsticker li a { color: var(--text-primary); }
.dark-mode .section-featured { background: #111; }
.dark-mode .post-item { background: var(--bg-white); box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.dark-mode .post-item .title a { color: var(--text-primary); }
.dark-mode .post-item .description { color: var(--text-secondary); }
.dark-mode .cat-hero-card { background: var(--bg-white); box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.dark-mode .cat-hero-title a { color: var(--text-primary); }
.dark-mode .cat-side-title a { color: var(--text-primary); }
.dark-mode .cat-side-item { border-color: #333; }
.dark-mode .post-item-horizontal { background: var(--bg-white); }
.dark-mode .post-item-horizontal .title a { color: var(--text-primary); }
.dark-mode .section-title .title { color: var(--text-primary); }
.dark-mode .section-title .title a { color: var(--text-primary); }
.dark-mode .widget { background: var(--bg-white); }
.dark-mode .widget-title { color: var(--text-primary); }
.dark-mode .nav-links .page-numbers { border-color: #444; color: #ccc; }
.dark-mode .nav-links .page-numbers.current,
.dark-mode .nav-links .page-numbers:hover { background-color: var(--brand-gold); border-color: var(--brand-gold); color: #fff; }
.dark-mode .nav-sm-buttons button { border-color: #444; color: #aaa; }
.dark-mode .post-text table th, .dark-mode .post-text table td { border-color: #444; }
.dark-mode .comment-list .comment { border-bottom-color: #333; }
.dark-mode #respond .comment-form input[type="text"],
.dark-mode #respond .comment-form input[type="email"],
.dark-mode #respond .comment-form input[type="url"],
.dark-mode #respond .comment-form textarea { background-color: #2a2a2a; border-color: #444; color: #ddd; }
.dark-mode .post-item-small { border-bottom-color: #333; }
.dark-mode .search-form { background: #1a1a1a; border-color: #333; }
.dark-mode .search-form .form-input { background: #2a2a2a; border-color: #444; color: #ddd; }
.dark-mode .search-form .form-input::placeholder { color: #888; }
.dark-mode .site-title-text { color: var(--brand-gold); }
.dark-mode .sidebar-post-title a { color: var(--text-primary); }
.dark-mode .sidebar-post-item { border-color: #333; }
.dark-mode .footer-post-title a { color: rgba(255,255,255,0.85); }
.dark-mode .post-source-bottom { background: #1a1a1a; border-right-color: var(--brand-gold); }
.dark-mode .post-source-bottom svg { color: var(--brand-gold); }
.dark-mode .post-source-bottom .source-value { color: var(--brand-gold); }
.dark-mode .post-source-bottom .source-value:hover { color: var(--brand-gold-light); }

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .navbar-collapse {
        max-height: 70vh;
        overflow-y: auto;
    }
    .navbar-left {
        flex-wrap: wrap !important;
        overflow: visible;
    }
    .navbar-left .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .navbar-left .nav-item.active .nav-link::after { display: none; }
    #mainNavbar { padding: 15px 0; }
    .main-slider-item img.img-cover { height: 280px; }
    .col-featured-right { margin-top: 10px; }
    .col-sidebar { position: static !important; top: auto !important; }
}
@media (max-width: 767px) {
    .main-slider-item img.img-cover { height: 220px; }
    .main-slider-item .caption .title { font-size: 17px; }
    .section-title .title { font-size: 17px; }
    .top-date { display: none; }
    .post-title { font-size: 22px; }
    .post-details-meta { flex-wrap: wrap; }
    .about-author { flex-direction: column; text-align: center; }
    .about-author .flex-grow-1 { margin-right: 0 !important; margin-top: 10px; }
    .cat-side-img img { width: 80px !important; height: 58px !important; }
}

/* ===== Mobile Header ===== */
.header-mobile-container {
    display: none;
    background: linear-gradient(180deg, var(--brand-blue-pale), var(--brand-blue-light));
    padding: 0;
}
@media (max-width: 991.98px) {
    .header-mobile-container {
        display: block !important;
    }
    #header { min-height: auto; margin-bottom: 0; }
}
.header-mobile-container > .container-xl:not(.mobile-header-row) { padding: 0 15px; }
.navbar-toggler {
    border: none !important;
    background: none !important;
    padding: 6px !important;
    outline: none !important;
    box-shadow: none !important;
}
.btn-mobile-search {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: var(--brand-blue);
}
.navbar-toggler { color: var(--brand-blue) !important; }
.header-mobile-container .btn-switch-mode {
    background: rgba(30,90,140,0.1) !important;
    border: 1px solid rgba(30,90,140,0.15) !important;
    color: var(--brand-blue) !important;
}
.mobile-search-form {
    padding: 10px 0;
    border-top: 1px solid rgba(30,90,140,0.1);
    margin-top: 10px;
}
.mobile-search-form .form-control {
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--brand-blue-sky);
    color: var(--text-primary);
    border-radius: 6px;
    padding: 8px 15px;
}
.mobile-search-form .form-control::placeholder { color: var(--text-muted); }
.mobile-nav-list {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-top: 1px solid rgba(30,90,140,0.1);
    background: linear-gradient(135deg, #1a4f7a, #1E5A8C);
    border-radius: 0 0 10px 10px;
    padding: 10px 15px;
    margin: 0 10px 10px;
}
.mobile-nav-list li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-list li a {
    display: block;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 12px 5px;
    font-size: 15px;
    transition: color 0.2s;
}
.mobile-nav-list li a:hover { color: var(--brand-gold); }
.mobile-nav-secondary {
    border-top: 2px solid var(--brand-gold);
    padding-top: 5px;
    background: rgba(30,90,140,0.15);
    border-radius: 0 0 10px 10px;
    margin: 0 10px 10px;
    padding: 5px 15px 10px;
}
.mobile-nav-secondary li a { font-size: 13px; color: rgba(255,255,255,0.7); }

/* Mobile header: 3-column layout with centered logo */
.mobile-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
}
.mobile-header-side {
    flex: 1;
    min-width: 0;
}
.mobile-header-center {
    flex: 0 0 auto;
    text-align: center;
}
.mobile-header-right { text-align: right; }
.mobile-header-left { justify-content: flex-end; }
.mobile-logo img {
    height: 60px !important;
    width: auto;
    background: transparent;
    padding: 4px 8px;
    border-radius: 6px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08));
}
@media (max-width: 991.98px) {
    #nav_newsticker { display: none !important; }
}

/* ===== Footer Social Media ===== */
.footer-social {
    background: transparent;
    padding: 30px 0 10px;
    text-align: center;
    border-top: none;
}
.footer-social-title {
    color: var(--brand-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    color: var(--brand-blue);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(30,90,140,0.1);
    backdrop-filter: blur(4px);
}
.footer-social-icon:hover { transform: translateY(-3px); color: white; box-shadow: 0 4px 15px rgba(0,0,0,0.12); }
.footer-social-facebook:hover { background: #1877F2; border-color: #1877F2; }
.footer-social-twitter:hover { background: #000; border-color: #000; }
.footer-social-instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.footer-social-youtube:hover { background: #FF0000; border-color: #FF0000; }
.footer-social-linkedin:hover { background: #0A66C2; border-color: #0A66C2; }
.footer-social-telegram:hover { background: #0088CC; border-color: #0088CC; }
.footer-social-tiktok:hover { background: #000; border-color: #000; }
.footer-social-whatsapp:hover { background: #25D366; border-color: #25D366; }

/* Dark mode social */
.dark-mode .footer-social { background: #0a0a0a; border-top-color: rgba(255,255,255,0.05); }
