/* ========================================
   GLOBAL CSS - Xe Hưng Thịnh
   Dùng chung cho tất cả các trang
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Playfair+Display:wght@700;800;900&display=swap');

/* CSS Variables */
:root {
    --font-display: 'Playfair Display', Georgia, serif;
    --primary: #d32f2f;
    --primary-dark: #b71c1c;
    --primary-gradient: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    --secondary: #0066cc;
    --secondary-dark: #004499;
    --red-brand: #d32f2f;
    --green-brand: #0d5c2e;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --text-main: #333;
    --text-muted: #777;
    --border: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* ----------------------------------------
   Base
   ---------------------------------------- */
body {
    font-family: 'Be Vietnam Pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-main);
    overflow-x: clip;
}

/* ----------------------------------------
   FUTA Navbar (dùng chung)
   ---------------------------------------- */
.futa-navbar {
    background: linear-gradient(135deg, #c62828 0%, #d32f2f 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo link wrapper */
.futa-logo-link {
    text-decoration: none !important;
    flex-shrink: 0;
}
.futa-logo-link:hover .futa-logo-section {
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transform: translateY(-1px);
}

.futa-logo-section {
    background: white;
    padding: 8px 20px;
    border-radius: 0 0 20px 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.futa-logo-section .logo-icon {
    font-size: 1.6rem;
    color: var(--red-brand);
}

.futa-logo-section .logo-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red-brand);
    margin: 0;
    line-height: 1.1;
}

.futa-logo-section .logo-subtitle {
    font-size: 0.6rem;
    color: var(--green-brand);
    font-weight: 600;
    margin: 2px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.futa-navbar .nav-link {
    color: white !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 16px 14px !important;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
}

.futa-navbar .nav-link:hover,
.futa-navbar .nav-link.active {
    background: rgba(255,255,255,0.15);
    border-bottom-color: white;
}

.futa-login-btn,
.futa-navbar .futa-login-btn,
.futa-navbar a.futa-login-btn {
    color: #d32f2f !important;
    background: white !important;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 25px;
    border: 2px solid white;
    transition: all 0.3s;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.futa-login-btn:hover {
    background: rgba(255,255,255,0.9) !important;
    color: #b71c1c !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 991px) {
    .futa-logo-section {
        border-radius: 0;
        padding: 6px 12px;
    }
    .futa-logo-section .logo-title {
        font-size: 0.95rem;
    }
    .futa-logo-section .logo-subtitle {
        font-size: 0.55rem;
    }
    .futa-logo-section .logo-icon {
        font-size: 1.3rem;
    }
    .futa-navbar .nav-link {
        padding: 10px 15px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        border-right: none;
    }
}

/* ----------------------------------------
   Footer (dùng chung)
   ---------------------------------------- */
.site-footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 0 0 0;
    margin-top: 60px;
    border-top: 4px solid var(--primary);
    position: relative;
}
.site-footer > .container {
    padding-top: 44px;
}

.footer-brand-icon {
    font-size: 1.7rem;
    color: var(--primary);
}

.footer-brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.footer-brand-tagline {
    font-size: 0.65rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 0;
}

.footer-social-link {
    color: #aaa;
    font-size: 1.15rem;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-link:hover {
    color: var(--primary) !important;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-section-title {
    color: white;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s, padding-left 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-links a i {
    font-size: 0.65rem;
    opacity: 0.6;
}

.footer-contact-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.footer-contact-icon {
    color: var(--primary);
    margin-top: 3px;
    min-width: 16px;
    font-size: 0.95rem;
}

.footer-contact-label {
    color: white;
    font-weight: 600;
    font-size: 0.88rem;
    line-height: 1.3;
}

.footer-contact-value {
    color: #aaa;
    font-size: 0.88rem;
}

.footer-contact-value.hotline {
    color: #ff4d4d;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    text-align: center;
    font-size: 0.82rem;
    color: #888;
    margin-top: 8px;
    background: rgba(0,0,0,0.15);
}

/* ----------------------------------------
   Buttons (dùng chung)
   ---------------------------------------- */
.btn-primary-brand {
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    padding: 10px 24px;
    transition: all 0.2s;
}

.btn-primary-brand:hover {
    background: linear-gradient(135deg, var(--primary-dark), #b71c1c);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(211,47,47,0.4);
}

.btn-outline-brand {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    padding: 8px 22px;
    transition: all 0.2s;
}

.btn-outline-brand:hover {
    background: var(--primary);
    color: white;
}

/* ----------------------------------------
   Cards (dùng chung)
   ---------------------------------------- */
.card-brand {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.card-brand:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary);
}

/* ----------------------------------------
   Form Controls (dùng chung)
   ---------------------------------------- */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(211,47,47,0.15);
}

/* ----------------------------------------
   Badge / Price
   ---------------------------------------- */
.price-tag {
    background: var(--primary-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
}

/* ----------------------------------------
   Section Title (dùng chung)
   ---------------------------------------- */
.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 28px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ----------------------------------------
   Hero Banner (dùng chung)
   ---------------------------------------- */
.page-hero {
    background: linear-gradient(135deg, #9b1a1a 0%, #d32f2f 55%, #b71c1c 100%);
    color: white;
    padding: 60px 0 78px;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), 0 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.page-hero > .container { position: relative; z-index: 1; }

.page-hero h1 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    text-shadow: 0 3px 16px rgba(0,0,0,0.2);
}

.page-hero p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 576px) {
    .page-hero h1 { font-size: 1.9rem; }
    .page-hero { padding: 44px 0 60px; }
}

/* ----------------------------------------
   Floating Contact (dùng chung)
   ---------------------------------------- */
.floating-contact-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s, transform 0.3s;
}
.floating-contact-container.visible {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.floating-contact-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c62828, #d32f2f);
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.45);
    transition: all 0.3s;
    animation: pulse-contact 2s infinite;
}

.floating-contact-toggle:hover {
    transform: scale(1.1);
}

.floating-contact-buttons {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.floating-contact-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.floating-contact-btn:hover {
    transform: scale(1.1);
    color: white;
}

.floating-contact-btn.hotline  { background: linear-gradient(135deg, #28a745, #20c997); }
.floating-contact-btn.messenger { background: linear-gradient(135deg, #0084ff, #00c6ff); }
.floating-contact-btn.zalo      { background: linear-gradient(135deg, #0068ff, #0180ff); }

@keyframes pulse-contact {
    0%, 100% { box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4); }
    50%       { box-shadow: 0 4px 28px rgba(211, 47, 47, 0.7); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ----------------------------------------
   Loading Spinner
   ---------------------------------------- */
.loading-overlay {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.loading-overlay .spinner-border {
    color: var(--primary);
}

/* ----------------------------------------
   Empty State
   ---------------------------------------- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 16px;
}

.empty-state h4 {
    color: #555;
    margin-bottom: 8px;
}

/* ----------------------------------------
   Alert improvements
   ---------------------------------------- */
.alert {
    border-radius: var(--radius-sm);
    border: none;
}

/* ----------------------------------------
   Smooth Scroll & Page Fade-in
   ---------------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    animation: pageFadeIn 0.25s ease-out both;
}

@keyframes pageFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ----------------------------------------
   Skeleton Loading
   ---------------------------------------- */
@keyframes shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.skeleton {
    background: linear-gradient(90deg, #ececec 25%, #d8d8d8 50%, #ececec 75%);
    background-size: 800px 100%;
    animation: shimmer 1.4s infinite linear;
    border-radius: var(--radius-sm);
    display: block;
}

.skeleton-line {
    height: 14px;
    margin-bottom: 10px;
}

.skeleton-line.short  { width: 55%; }
.skeleton-line.medium { width: 75%; }
.skeleton-line.full   { width: 100%; }

.skeleton-title {
    height: 22px;
    margin-bottom: 14px;
    width: 70%;
}

.skeleton-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.skeleton-img {
    width: 100%;
    padding-top: 56%;   /* 16:9 aspect ratio */
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
}

/* Applied by JS while <img> is loading — background visible before img pixels arrive */
img.img-sk {
    background: linear-gradient(90deg, #ececec 25%, #d8d8d8 50%, #ececec 75%);
    background-size: 800px 100%;
    animation: shimmer 1.4s infinite linear;
}

/* ----------------------------------------
   Button States
   ---------------------------------------- */
.btn {
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:disabled,
.btn[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
    padding-right: 40px !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: white;
    border-radius: 50%;
    animation: btnSpin 0.65s linear infinite;
    transform: translateY(-50%);
}

@keyframes btnSpin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* ----------------------------------------
   Form Controls
   ---------------------------------------- */
.form-control,
.form-select {
    border-radius: var(--radius-sm) !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(211,47,47,0.15);
    outline: none;
}

textarea.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(211,47,47,0.15);
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 5px;
}

.form-label .required {
    color: var(--danger);
    margin-left: 2px;
}

/* ----------------------------------------
   Focus Accessibility
   ---------------------------------------- */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* ----------------------------------------
   Transitions — Cards & Images
   ---------------------------------------- */
.card {
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}
img[loading="lazy"].loaded {
    opacity: 1;
}

/* ----------------------------------------
   Back-to-Top Button
   ---------------------------------------- */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d32f2f, #c62828);
    color: white;
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(211,47,47,0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
}
#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(211,47,47,0.55);
}
#backToTop:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* ----------------------------------------
   Footer Social Icons (CSS hover override)
   ---------------------------------------- */
footer a[aria-label] {
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

footer a[aria-label]:hover {
    color: var(--primary) !important;
    transform: translateY(-2px);
}

/* ----------------------------------------
   Seat Map (search / booking)
   ---------------------------------------- */
.seat-btn {
    transition: all 0.15s ease;
    border-radius: 6px !important;
    font-size: 0.8rem;
    font-weight: 600;
}

.seat-btn:not(:disabled):hover {
    transform: scale(1.08);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.seat-btn:disabled {
    cursor: not-allowed !important;
    opacity: 0.45;
}

.seat-btn.seat-selected {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
    box-shadow: 0 3px 10px rgba(211,47,47,0.4);
}

/* ----------------------------------------
   Toast Notifications
   ---------------------------------------- */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast-notify {
    background: #1a1a2e;
    color: white;
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    min-width: 240px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    animation: toastSlideIn 0.3s ease;
}

.toast-notify.toast-success { border-left: 4px solid #28a745; }
.toast-notify.toast-error   { border-left: 4px solid #dc3545; }
.toast-notify.toast-info    { border-left: 4px solid var(--primary); }

@keyframes toastSlideIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ----------------------------------------
   Empty State (improved)
   ---------------------------------------- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 4rem;
    color: #d0d0d0;
    margin-bottom: 16px;
    display: block;
}

.empty-state h5 {
    color: #555;
    font-weight: 700;
    margin-bottom: 8px;
}

.empty-state p {
    color: #999;
    font-size: 0.92rem;
    margin-bottom: 20px;
}

/* ----------------------------------------
   Input Group Enhancements
   ---------------------------------------- */
.input-group-text {
    background: #f8f9fa;
    border-color: #ced4da;
    color: var(--text-muted);
}

/* ----------------------------------------
   Nav Tabs / Pills (category tabs)
   ---------------------------------------- */
.nav-pills .nav-link {
    color: #555;
    background: #f0f0f0;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.nav-pills .nav-link:hover {
    background: #e8e8e8;
    color: var(--primary);
    border-color: rgba(211,47,47,0.3);
}

.nav-pills .nav-link.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 3px 10px rgba(211,47,47,0.35);
}

/* ----------------------------------------
   Section Dividers
   ---------------------------------------- */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 40px 0;
}

/* ----------------------------------------
   Responsive Images
   ---------------------------------------- */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----------------------------------------
   Badge enhancements
   ---------------------------------------- */
.badge {
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ----------------------------------------
   Mobile Utilities
   ---------------------------------------- */
@media (max-width: 576px) {
    .page-hero h1 { font-size: 1.5rem; }
    .section-title { font-size: 1.3rem; }
    .btn-lg { font-size: 0.95rem; padding: 10px 20px; }
}

@media (max-width: 768px) {
    .toast-container { right: 10px; left: 10px; }
    .toast-notify { min-width: unset; }
}

/* ----------------------------------------
   Page Fade-in
   ---------------------------------------- */
@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
body {
    animation: pageFadeIn 0.32s ease both;
}

/* ----------------------------------------
   Text Clamp Utilities
   ---------------------------------------- */
.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ----------------------------------------
   Badge Brand
   ---------------------------------------- */
.badge-brand {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 12px;
    letter-spacing: 0.3px;
}
.badge-brand-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}
.badge-brand-success { background: var(--success); }
.badge-brand-warning  { background: var(--warning); color: #333; }

/* ----------------------------------------
   Breadcrumb Separator
   ---------------------------------------- */
.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    font-size: 1.1em;
    line-height: 1;
}

/* ----------------------------------------
   News / Content Card Image Zoom
   ---------------------------------------- */
.news-card {
    overflow: hidden;
}
.news-card img {
    transition: transform 0.4s ease;
    display: block;
}
.news-card:hover img {
    transform: scale(1.06);
}

/* ----------------------------------------
   Tag Hover (article tags)
   ---------------------------------------- */
.tag {
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}
.tag:hover {
    background: var(--primary);
    color: white;
}

/* ----------------------------------------
   Popular / Related item hover
   ---------------------------------------- */
.popular-item {
    transition: background 0.2s ease;
    border-radius: 6px;
}
.popular-item:hover {
    background: #fff5f5;
}
.popular-item:hover .popular-item-content h6 {
    color: var(--primary);
}

.related-item:hover {
    background: #fff5f5;
}
.related-item:hover .related-item-content h5 {
    color: var(--primary);
}

/* ----------------------------------------
   Featured Small Item hover
   ---------------------------------------- */
.featured-small:hover {
    background: #fff5f5;
}
.featured-small:hover .featured-small-content h5 {
    color: var(--primary);
}

/* ----------------------------------------
   Pagination Polish
   ---------------------------------------- */
.pagination-btn {
    min-width: 38px;
    font-weight: 600;
    font-size: 0.88rem;
}
.pagination-btn.active {
    box-shadow: 0 3px 10px rgba(211,47,47,0.3);
}
.pagination-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
