/* ==========================================================================
   🌟 PROFESSIONAL NEWS WEBSITE - CREATIVE DESIGN 🌟
   Version: 3.0 - Revolutionary Creative Redesign
   ========================================================================== */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   ✨ CSS VARIABLES - Creative Professional Color Scheme ✨
   ========================================================================== */
:root {
    /* Primary Colors - Brand Crimson/Red Theme */
    --primary-color: #d9232a;
    --primary-dark: #a91217;
    --primary-light: #f73f47;
    --primary-gradient: linear-gradient(135deg, #d9232a 0%, #a91217 50%, #76080b 100%);
    --primary-glow: 0 0 30px rgba(217, 35, 42, 0.4);

    /* Secondary Colors - Brand Navy Theme */
    --secondary-color: #0a1c3f;
    --secondary-light: #162c59;
    --secondary-gradient: linear-gradient(180deg, #0a1c3f 0%, #162c59 100%);

    /* Accent Colors - Brand Identity Based (Crimson & Navy) */
    --accent-gold: #d9232a;
    --accent-gold-light: #f73f47;
    --accent-blue: #0a1c3f;
    --accent-teal: #162c59;
    --accent-purple: #a91217;

    /* Glass Effect Colors */
    --glass-bg: rgba(255, 255, 255, 0.98);
    --glass-light: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Neutral Colors */
    --bg-primary: #f0f2f5;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f8fafc;
    --bg-dark: #0a1c3f;
    --bg-gradient: linear-gradient(135deg, #f0f2f5 0%, #e8ecf1 100%);

    /* Text Colors */
    --text-primary: #0f0f1a;
    --text-secondary: #3d4852;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;

    /* Border Colors */
    --border-light: rgba(0, 0, 0, 0.06);
    --border-medium: rgba(0, 0, 0, 0.1);
    --border-accent: var(--primary-color);

    /* Premium Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.12), 0 12px 24px rgba(0, 0, 0, 0.08);
    --shadow-2xl: 0 32px 64px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(184, 0, 31, 0.2);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
}

/* ==========================================================================
   ✨ BASE STYLES - Creative Foundation ✨
   ========================================================================== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    direction: rtl;
    font-family: "Cairo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    /* background-color: #d3d3d3; */
    color: #1a1a2e;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* overflow-x: hidden; */
    position: relative;
    letter-spacing: -0.01em;
}

@media (max-width: 1439px) {
    body {
        overflow-x: hidden;

    }
}

/* Decorative Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(184, 0, 31, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.02) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   📦 CONTAINER - Responsive Wrapper
   ========================================================================== */
.container {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

@media (min-width: 1400px) {
    .container {
        width: 1320px;
    }
}

/* ==========================================================================
   🎭 OVERLAY - Premium Modal Backdrop
   ========================================================================== */
.over-lay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    transition: all var(--transition-slow);
}

.over-lay.active {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==========================================================================
   🎨 SECTION HEADERS - Creative Titles
   ========================================================================== */
.slider-wrap {
    position: relative;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
}

.slider-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, var(--primary-color), transparent);
    border-radius: 2px;
}

.section-header h2 {
    background: var(--primary-gradient);
    color: #ffffff;
    padding: 12px 28px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    border-radius: 8px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(184, 0, 31, 0.25);
}

.section-header h2::before {
    display: none;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary-dark);
}

/* Pulse Animation */
.pulse-animation {
    animation: none;
}

@keyframes pulse-elegant {

    0%,
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-md);
    }

    50% {
        transform: scale(1.01);
        box-shadow: var(--shadow-lg), var(--shadow-glow);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.95;
    }
}

/* ==========================================================================
   TOP DATE BADGE
   ========================================================================== */
.top_date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    /* background: var(--secondary-color); */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top_date::before {
    display: none;
}

.top_date::after {
    display: none;
}

/* ==========================================================================
   MAIN BOX - Professional Card Design
   ========================================================================== */
.main-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.main-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 0 16px 16px 0;
}

.main-box::after {
    display: none;
}

.main-box:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* ==========================================================================
   SLIDER CONTROLS
   ========================================================================== */
.slider-wrap .right-1,
.slider-wrap .left-1 {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.slider-wrap .right-1:hover,
.slider-wrap .left-1:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.slider-wrap .right-1:active,
.slider-wrap .left-1:active {
    transform: scale(0.95);
}

/* ==========================================================================
   PRODUCT SLIDE - Carousel
   ========================================================================== */
.product-slide .crates {
    padding: 20px;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 16px;
}

.product-slide .crates::-webkit-scrollbar {
    display: none;
}

.product-slide .crates .crate {
    display: flex;
    gap: 20px;
    padding: 16px 8px;
    flex: none;
}

.product-slide .box {
    max-width: 300px;
    min-width: 260px;
    display: flex;
    gap: 12px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
}

.product-slide .box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 0 12px 12px 0;
}

.product-slide .box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.product-slide .box:hover::before {
    height: 100%;
}

.product-slide .title p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    transition: color 0.2s ease;
}

.product-slide .box:hover .title p {
    color: var(--primary-color);
}

.product-slide .title span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-slide .title span::before {
    display: none;
}

/* ==========================================================================
   MAIN SECTION - Grid Layout
   ========================================================================== */
.main-section {
    display: flex;
    align-items: flex-start;
    /* grid-template-areas: "content content content content content content content content side side side side"; */
    gap: 32px;
    margin-bottom: 32px;
    padding-top: 32px;
    /* max-width: 75%; */
    /* margin: auto; */
    position: relative;
}

.main-section::before {
    display: none;
}

@media (max-width: 860px) {
    .main-section {
        display: block;


        grid-template-areas:
            "content content content content"
            "side side side side";
        gap: var(--space-lg);
    }
}

.main-section .content {
    grid-area: content;
}

.main-section .side {
    grid-area: side;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.main-section .side .box-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.main-section .side .box-image::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-lg);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.main-section .side .box-image:hover::before {
    opacity: 1;
}

.main-section .side .box-image .main-image {
    width: 370px;
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-spring);
}

.main-section .side .box-image .main-image:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.center-content {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/*md*/
@media (max-width: 768px) {
    .center-content {
        flex-wrap: wrap;
    }
}



/* ==========================================================================
   SIDE BOX - Professional Sidebar Cards (Dark Theme)
   ========================================================================== */
.side-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.side-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            var(--secondary-color) 100%);
}

.side-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.side-box .side-title {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(10, 28, 63, 0.08);
}

.side-box .side-title::before {
    display: none;
}

.side-box .side-title h2 {
    background: transparent;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    width: fit-content;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: none;
}

.side-box .side-title h2::before {
    content: '';
    width: 5px;
    height: 25px;
    background: linear-gradient(180deg, var(--primary-color), #ff6b6b);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(184, 0, 31, 0.5);
}

.side-box .content-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-box .content-box .image-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    transition: all 0.3s ease;
}

.side-box .content-box .image-title:hover {
    padding-right: 8px;
}

.side-box .content-box .image-title .image {
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.side-box .content-box .image-title .image::after {
    display: none;
}

.side-box .content-box .image-title .image:hover::after {
    opacity: 0;
}

.side-box .content-box .image-title .image img {
    width: 370px;
    max-width: 100%;
    transition: transform 0.3s ease;
    border-radius: var(--radius-lg);
}

.side-box .content-box .image-title .image:hover img {
    transform: scale(1.08);
}

.side-box .content-box .image-title .title {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.side-box .content-box .image-title .title .head {
    display: flex;
    gap: var(--space-md);
    justify-content: space-between;
}

.side-box .content-box .image-title .title .head h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.7;
    color: #ffffff;
    transition: color var(--transition-fast);
}

.side-box .content-box .image-title .title .head h3:hover {
    color: #ff6b6b;
}

.side-box .content-box .image-title .title .head span {
    font-size: 2rem;
    font-style: italic;
    padding: var(--space-sm);
    color: #ff6b6b;
    font-weight: 700;
    border-right: 3px solid #ff6b6b;
    opacity: 0.8;
}

.side-box .content-box .image-title .title .share {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.side-box .content-box .image-title .title p {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.side-box .content-box .image-title .title p i {
    margin-left: var(--space-sm);
    color: #ff6b6b;
}

.side-box .content-box .image-title .title .social {
    display: flex;
    gap: var(--space-md);
}

.side-box .content-box .image-title .title .social li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
}

.side-box .content-box .image-title .title .social li a:hover {
    color: #ffffff;
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ==========================================================================
   OTHER NEWS - Numbered Items (Most Read Section) - Dark Theme
   ========================================================================== */
.side-box .content-box .other-news {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.side-box .content-box .other-news .trick {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.side-box .content-box .other-news .trick:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-8px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(184, 0, 31, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
}

.side-box .content-box .other-news .trick .number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    min-width: 50px;
    height: 50px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(145deg, var(--primary-color) 0%, #a30020 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow:
        0 6px 16px rgba(184, 0, 31, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: -0.02em;
}

.side-box .content-box .other-news .trick:hover .number {
    transform: scale(1.12) rotate(-8deg);
    box-shadow:
        0 10px 25px rgba(184, 0, 31, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.side-box .content-box .other-news .trick .title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.side-box .content-box .other-news .trick .title .descr {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.75;
    color: #1a1a2e;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.side-box .content-box .other-news .trick:hover .title .descr {
    color: #ff6b6b;
}

.side-box .content-box .other-news .trick .title .share {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-box .content-box .other-news .trick .title .share p {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.side-box .content-box .other-news .trick .title .share p i {
    margin-left: 6px;
    color: #ff6b6b;
}

.side-box .content-box .other-news .trick .title .share .social {
    display: flex;
    gap: var(--space-md);
}

.side-box .content-box .other-news .trick .title .share .social li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    transition: all var(--transition-fast);
    display: block;
}

.side-box .content-box .other-news .trick .title .share .social li a:hover {
    color: #ff6b6b;
    transform: scale(1.15);
}

/* ==========================================================================
   Side Box - Box Items (Read Also Section) - Dark Theme
   ========================================================================== */
.side-box .content-box .box {
    display: flex;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 14px;
}

.side-box .content-box .box:hover {
    transform: translateX(-8px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.side-box .content-box .box img {
    width: 130px;
    max-width: 100%;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 16/10;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.side-box .content-box .box:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.side-box .content-box .box .title p {
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 700;
    color: #1a1a2e;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.side-box .content-box .box:hover .title p {
    color: #ff6b6b;
}

.side-box .content-box .box .title .time {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.side-box .content-box .box .title .time i {
    color: #ff6b6b;
}

/* ==========================================================================
   MAIN BOX - Card with Title Bar
   ========================================================================== */
.main-box {
    position: relative;
    padding: var(--space-lg) var(--space-lg) 60px;
    box-shadow: var(--shadow-card);
    margin-bottom: var(--space-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.main-box:hover {
    box-shadow: var(--shadow-lg);
}

.main-box .main-button {
    position: absolute;
    /* bottom: -16px; */
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    padding: 10px 32px;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all var(--transition-normal);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-box .main-button:hover {
    background: var(--primary-gradient);
    color: var(--text-white);
    border-color: transparent;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.main-box .main-title {
    margin: var(--space-md) 0;
    border-bottom: 3px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.main-box .main-title h1 {
    margin: 0;
    background: var(--primary-gradient);
    color: white;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    width: fit-content;
    border-radius: var(--radius-sm);
    position: relative;
}

.main-box .main-title h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-dark);
}

.main-box .main-title .main-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.main-box .main-title .main-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    font-weight: 600;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.main-box .main-title .main-links a:hover {
    background: rgba(196, 30, 58, 0.08);
}

/* ==========================================================================
   HEADER - Professional News Header
   ========================================================================== */
.header {
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05); */
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            var(--secondary-color) 100%);
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    background: none;
    pointer-events: none;
}

.header .side-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 12px;
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    /* overflow: hidden; */
    backdrop-filter: blur(10px);
}

.header .side-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
}

.header .center-section {
    position: relative;
    z-index: 1;
    padding: 8px;
}

.header .center-section img {
    width: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: none;
}

.header .center-section img:hover {
    transform: scale(1.08);
    filter: none;
}

.header .side-section p {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a2e;
    margin: 0;
    text-shadow: none;
}

.header .side-section p:first-of-type {
    color: #ff6b6b;
    font-size: 1.1rem;
    font-weight: 800;
}

/* ==========================================================================
   🧭 NAVIGATION - Premium Sticky Nav
   ========================================================================== */


ul.nav li {
    position: relative;
}

ul.nav>li>a {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a2e;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 18px 22px;
    position: relative;
    letter-spacing: -0.01em;
}

ul.nav>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--primary-gradient);
    transition: transform var(--transition-normal);
    border-radius: 2px 2px 0 0;
}

ul.nav>li:last-of-type {
    margin-left: var(--space-md);
}

ul.nav>li>a:hover,
ul.nav>li>a.active {
    color: var(--primary-color);
    background: transparent;
}

ul.nav>li>a:hover::after,
ul.nav>li>a.active::after {
    transform: translateX(-50%) scaleX(1);
}

@media (max-width: 1000px) {

    .center-section,
    ul.nav {
        display: none;
    }
}

/* Mega Menu Dropdown */
ul.nav>li .mega-menu {
    position: absolute;
    background: var(--bg-secondary);
    top: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    width: 220px;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    z-index: 1000;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border-top: 3px solid var(--primary-color);
}

ul.nav>li .mega-menu li a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

ul.nav>li .mega-menu li a:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
    padding-right: 20px;
}

ul.nav>li:not(:last-of-type) .mega-menu {
    right: 0;
}

ul.nav>li:last-of-type .mega-menu {
    left: 0;
}

ul.nav>li:hover .mega-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Search in Nav */
ul.nav span {
    position: relative;
    cursor: pointer;
    padding: var(--space-sm);
}

ul.nav span form {
    position: absolute;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    top: calc(100% + 10px);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    width: 320px;
    left: 0;
    background: var(--bg-secondary);
    transition: all var(--transition-normal);
    z-index: 1000;
    border-radius: var(--radius-md);
    border-top: 3px solid var(--primary-color);
}

ul.nav span form.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

ul.nav span form .input-search {
    padding-inline: 0;
    position: relative;
    width: 100%;
}

ul.nav span form .input-search i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

ul.nav span form .input-search input {
    border: 2px solid var(--border-light);
    padding: 12px 16px;
    padding-left: 40px;
    border-radius: var(--radius-md);
    width: 100%;
    outline: none;
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

ul.nav span form .input-search input:focus {
    border-color: var(--primary-color);
}

/* ==========================================================================
   SMALL HEADER - Mobile Header
   ========================================================================== */
.header-small {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-xl);
    box-shadow: var(--shadow-md);
    background: var(--bg-secondary);
}

.header-small form {
    position: absolute;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    top: 100%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    visibility: hidden;
    width: 90%;
    left: 50%;
    background: var(--bg-secondary);
    transition: all var(--transition-normal);
    border-radius: var(--radius-md);
    border-top: 3px solid var(--primary-color);
}

.header-small form.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.header-small form .input-search {
    position: relative;
    width: 100%;
}

.header-small form .input-search i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.header-small form .input-search input {
    border: 2px solid var(--border-light);
    padding: 12px 16px;
    padding-left: 40px;
    border-radius: var(--radius-md);
    width: 100%;
    outline: none;
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

.header-small form .input-search input:focus {
    border-color: var(--primary-color);
}

.header-small .bars i,
.header-small .search i {
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.header-small .bars i:hover,
.header-small .search i:hover {
    color: var(--primary-color);
    background: var(--bg-tertiary);
}

.header-small .logo img {
    width: 80px;
}

@media (min-width: 1000px) {
    .header-small {
        display: none;
    }
}

/* ==========================================================================
   POPUP NAV - Mobile Navigation Drawer
   ========================================================================== */
.popup-nav {
    padding: var(--space-xl) 0;
    position: fixed;
    background: var(--bg-secondary);
    top: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    right: 0;
    z-index: 1005;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    transition: transform var(--transition-slow);
    transform: translateX(100%);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    /* overflow-y: auto; */
}

.popup-nav.active {
    transform: translateX(0);
}

.close {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.close:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
}

.popup-nav form {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

.popup-nav form .input-search {
    position: relative;
    width: 100%;
}

.popup-nav form .input-search i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.popup-nav form .input-search input {
    border: 2px solid var(--border-light);
    padding: 12px 14px;
    padding-left: 40px;
    border-radius: var(--radius-md);
    width: 100%;
    outline: none;
    transition: border-color var(--transition-fast);
}

.popup-nav form .input-search input:focus {
    border-color: var(--primary-color);
}

.popup-nav .links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: 0 var(--space-lg);
}

.popup-nav .links a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: var(--space-sm) 0;
    transition: all var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.popup-nav .links a:hover {
    color: var(--primary-color);
    padding-right: var(--space-sm);
}

.popup-nav .social-media {
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: auto;
    padding-bottom: var(--space-lg);
}

.popup-nav .social-media a {
    color: var(--text-muted);
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    transition: all var(--transition-fast);
}

.popup-nav .social-media a:hover {
    color: var(--text-white);
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ==========================================================================
   EGYPT NEWS SECTION
   ========================================================================== */
.egypt-news .image-title {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.egypt-news .image-title .image {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.egypt-news .image-title .image img {
    width: 100%;
    transition: transform var(--transition-slow);
}

.egypt-news .image-title .image:hover img {
    transform: scale(1.03);
}

.egypt-news .image-title .title {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.egypt-news .image-title .title h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.egypt-news .image-title .title h2:hover {
    color: var(--primary-color);
}

.egypt-news .image-title .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.egypt-news .image-title .title .time span,
.egypt-news .image-title .title .time i {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.egypt-news .description {
    padding: var(--space-xl) 0;
}

.egypt-news .description p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.egypt-news .description .more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    margin-top: var(--space-lg);
    padding: 12px 24px;
    background: var(--secondary-color);
    transition: all var(--transition-normal);
    width: fit-content;
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.egypt-news .description .more:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.egypt-news .links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.egypt-news .links .part-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

@media (max-width: 520px) {
    .egypt-news .links {
        grid-template-columns: 1fr;
    }

    .egypt-news .links .part-links {
        gap: var(--space-md);
    }
}

.egypt-news .links .part-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    transition: all var(--transition-fast);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
}

.mainBody {
    position: relative;
    display: flex;
}

.egypt-news .links .part-links a i {
    color: var(--primary-color);
    transition: transform var(--transition-fast);
}

.egypt-news .links .part-links a:hover {
    color: var(--primary-color);
    background: rgba(196, 30, 58, 0.05);
}

.egypt-news .links .part-links a:hover i {
    transform: translateX(-4px);
}

/* ==========================================================================
   SPORTS SECTION - Card Grid
   ========================================================================== */
.sports {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 650px) {

    .sports,
    .arab-world,
    .collection,
    .news-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {

    .sports,
    .arab-world,
    .collection,
    .news-grid-4 {
        grid-template-columns: 1fr;
    }
}

.sports .spor {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.sports .spor:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.sports .spor .image {
    position: relative;
    overflow: hidden;
}

.sports .spor .image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.sports .spor:hover .image img {
    transform: scale(1.05);
}

.sports .spor .image .tick {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: var(--primary-gradient);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.sports .spor h3 {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0 var(--space-md);
    transition: color var(--transition-fast);
}

.sports .spor:hover h3 {
    color: var(--primary-color);
}

.sports .spor .time {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0 var(--space-md) var(--space-md);
}

/* ==========================================================================
   SCHOOL & UNIVERSITY SECTION
   ========================================================================== */
.school-univ .first-box {
    padding: var(--space-lg) 0;
    padding-bottom: 0px !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    align-items: center;
}

@media (max-width: 650px) {
    .school-univ .first-box {
        grid-template-columns: 1fr;
    }
}

.school-univ .first-box .title-descrip {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.school-univ .first-box .title-descrip .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.school-univ .first-box .title-descrip p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.school-univ .first-box .title-descrip .more:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.school-univ .first-box img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

@media (max-width: 650px) {
    .school-univ .first-box img {
        order: -1;
    }
}

.school-univ .boxs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (max-width: 650px) {
    .school-univ .boxs {
        grid-template-columns: 1fr;
    }
}

.sports .boxs .box {
    padding: 0px !important
}



.school-univ .boxs .box {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.school-univ .boxs .box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.school-univ .boxs .box .title {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.school-univ .boxs .box .title p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    transition: color var(--transition-fast);
}

.school-univ .boxs .box:hover .title p {
    color: var(--primary-color);
}

.school-univ .boxs .box .title span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.school-univ .boxs .box .image,
.sports .boxs .box .image {
    width: 140px;
    flex-shrink: 0;
}

.school-univ .boxs .box .image img,
.sports .boxs .box .image img {
    width: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
    aspect-ratio: 16/10;
}

/* ==========================================================================
   ECONOMY SECTION
   ========================================================================== */
.economy {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* .economy .box {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
} */

.economy .box:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

@media (max-width: 650px) {
    .economy .box {
        flex-direction: column;
    }
}

.economy .box .title {
    flex: 70%;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.economy .box .title h2 {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 700;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.economy .box:hover .title h2 {
    color: var(--primary-color);
}

.economy .box .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.economy .box .title p {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.economy .box .image {
    flex: 30%;
    overflow: hidden;
    border-radius: var(--radius-md);
}

@media (max-width: 650px) {
    .economy .box .image {
        order: -1;
    }
}

.economy .box .image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.economy .box:hover .image img {
    transform: scale(1.05);
}

.economy .smallBoxs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;


}

@media (max-width: 650px) {
    .economy .smallBoxs {
        grid-template-columns: repeat(1, 1fr);

    }
}

/* ==========================================================================
   ARAB & WORLD SECTION
   ========================================================================== */
.arab-world {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.arab-world>div {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.arab-world>div:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.arab-world .image {
    position: relative;
    overflow: hidden;
}

.arab-world .image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.arab-world>div:hover .image img {
    transform: scale(1.05);
}

.arab-world .image .trick {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: var(--primary-gradient);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
    border-radius: var(--radius-sm);
}

.arab-world .title {
    padding: var(--space-md);
}

.arab-world .title h3 {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.arab-world>div:hover .title h3 {
    color: var(--primary-color);
}

.arab-world .title .time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* ==========================================================================
   COLLECTION SECTION
   ========================================================================== */
.collection,
.dual-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--space-lg);
    row-gap: var(--space-md);
}



.collection .big-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.collection .big-box .box {
    display: flex;
    gap: var(--space-md);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.collection .big-box .box:hover {
    background: var(--bg-tertiary);
    transform: translateX(-4px);
}

.collection .big-box .box img {
    width: 120px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    aspect-ratio: 16/10;
}

.collection .box .title p {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.collection .big-box .box:hover .title p {
    color: var(--primary-color);
}

.collection .box .title .time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* ==========================================================================
   NEWS PAGE - Category & Listings
   ========================================================================== */
.categ {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    flex-wrap: wrap;
}

.categ a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
    font-weight: 500;
}

.categ a:hover {
    color: var(--primary-color);
}

.categ span {
    color: var(--text-muted);
}

.news .content-news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .news .content-news {
        grid-template-columns: 1fr;
    }
}

.news .content-news .big-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.news .content-news .big-box .box {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--bg-secondary);
    border-radius: 16px;
    transition: all 0.4s ease;
    height: 100%;
}

.news .content-news .big-box .box:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: rgba(184, 0, 31, 0.15);
}

@media (max-width: 560px) {
    .news .content-news .big-box .box {
        flex-direction: column;
    }
}

.news .content-news .big-box .box .image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.news .content-news .big-box .box .image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news .content-news .big-box .box:hover .image img {
    transform: scale(1.05);
}

.news .content-news .big-box .box .title-descrip {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex: 1;
}

.news .content-news .big-box .box .title-descrip h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.7;
    transition: color var(--transition-fast);
}

.news .content-news .big-box .box:hover .title-descrip h3 {
    color: var(--primary-color);
}

.news .content-news .big-box .box .title-descrip .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.news .content-news .big-box .box .title-descrip p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news .content-news .big-box .box .title-descrip .more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    margin-top: auto;
    padding: 10px 20px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    width: fit-content;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
}

.news .content-news .big-box .box .title-descrip .more:hover {
    background: #8a0018;
    transform: translateX(-4px);
}

/* ==========================================================================
   NEWS DETAILS PAGE
   ========================================================================== */
.news-details .title-image-social {
    padding-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}



.news-details .title-image-social .title {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.news-details .title-image-social .title h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-primary);
}

.news-details .title-image-social .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.news-details .title-image-social .image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.news-details .title-image-social .image img {
    width: 100%;
}

.news-details .title-image-social .social-views {
    position: relative;
    display: flex;
    gap: var(--space-md);
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.news-details .title-image-social .social-views .social {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    flex-wrap: wrap;
}

.news-details .title-image-social .social-views .views {
    position: relative;
    display: flex;
    gap: var(--space-md);
    align-items: center;
    padding-right: var(--space-lg);
}

.news-details .title-image-social .social-views .social .media {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition-normal);
    border-radius: var(--radius-md);
}

.news-details .title-image-social .social-views .social .media:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 500px) {
    .news-details .title-image-social .social-views .social .media {
        padding: 8px 12px;
    }
}

.news-details .title-image-social .social-views .social a .whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.news-details .title-image-social .social-views .social a .facebook {
    background: linear-gradient(135deg, #4267b2, #3b5998);
}

.news-details .title-image-social .social-views .social>.twitter {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.news-details .title-image-social .social-views .social>.telegram {
    background: linear-gradient(135deg, #0088cc, #006699);
}

.news-details .title-image-social .social-views .social .media i {
    font-size: 1.125rem;
}

.news-details .title-image-social .social-views .social .media span {
    font-size: 0.8rem;
}

@media (max-width: 700px) {
    .news-details .title-image-social .social-views .social .media span {
        display: none;
    }
}

.news-details .title-image-social .social-views .views .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.news-details .title-image-social .social-views .views::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 2px;
    background: var(--border-medium);
}

.news-details .title-image-social .social-views .views .box span:first-child {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.news-details .title-image-social .social-views .views .box span:last-child {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
}

.news-details .discription {
    padding: var(--space-xl) 0;
}

.news-details .discription p {
    line-height: 2;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: justify;
    color: var(--text-secondary);
}

.about-details .description p {
    padding: var(--space-lg);
    line-height: 1.9;
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.about-details .description .image {
    text-align: center;
    max-width: 100%;
    width: fit-content;
    margin-bottom: var(--space-2xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ==========================================================================
   FOOTER - Professional Footer
   ========================================================================== */
.footer {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding-top: 60px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            var(--secondary-color) 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.footer .content-footer {
    display: grid;
    grid-template-columns: 1fr 2fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.footer .content-footer .logo {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer .content-footer .logo img {
    width: 180px;
    filter: none;
    opacity: 1;
    transition: all 0.4s ease;
}

.footer .content-footer .logo img:hover {
    transform: scale(1.08);
    opacity: 0.9;
}

.footer .content-footer .logo p {
    line-height: 2;
    color: #3d4852;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer .content-footer .links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #ffffff;
}

.footer .content-footer .links h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a1a2e;
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.footer .content-footer .links h4::before {
    display: none;
}

.footer .content-footer .links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.footer .content-footer .links .content-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
}

@media (max-width: 1030px) {
    .footer .content-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer .content-footer .logo {
        align-items: center;
    }

    .footer .content-footer .links {
        align-items: center;
    }

    .footer .content-footer .links h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer .content-footer .links .content-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.footer .content-footer .links .content-links .link {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer .content-footer .links .content-links .link a {
    color: #3d4852;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 15px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid transparent;
}

.footer .content-footer .links .content-links .link a::before {
    content: '◄';
    position: absolute;
    left: 15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff6b6b;
    font-size: 0.7rem;
}

.footer .content-footer .links .content-links .link a:hover {
    color: #ffffff;
    background: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
    padding-left: 30px;
}

.footer .content-footer .links .content-links .link a:hover::before {
    opacity: 1;
    left: 10px;
}

.footer .content-footer .big-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer .content-footer .big-box .box {
    display: flex;
    gap: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    transition: all 0.4s ease;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.footer .content-footer .big-box .box:hover {
    transform: translateX(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.footer .content-footer .big-box .box img {
    width: 120px;
    max-width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer .content-footer .big-box .box:hover img {
    transform: scale(1.05);
}

.footer .content-footer .box .title p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #1a1a2e;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer .content-footer .big-box .box:hover .title p {
    color: #ffffff;
}

.footer .content-footer .box .title .time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer .content-footer .box .title .time::before {
    content: '🕐';
    font-size: 0.75rem;
}

.footer .copy-right {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 30px;
    text-align: center;
    color: #1a1a2e;
    font-size: 0.95rem;
    font-weight: 500;
    background: #f0f2f5;
    letter-spacing: -0.01em;
    backdrop-filter: blur(10px);
}

.footer .copy-right a {
    color: var(--accent-gold);
    font-weight: 600;
}

.footer .copy-right a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   HERO SLIDER - Professional Full-Width Slider
   ========================================================================== */
.slider-container {
    position: relative;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    z-index: 10;
}

.slider-container .slider {
    width: 100%;
    height: 32vw;
    max-height: 420px;
    min-height: 250px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 750px) {
    .slider-container .slider {
        height: 50vw;
    }
}

.slider-container .slider .image::after {
    content: "";
    bottom: 0;
    position: absolute;
    width: 100%;
    right: 0;
    height: 75%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 40%, transparent 100%);
    z-index: 1;
}

.slider-container .slider .image {
    width: 100%;
    height: 100%;
    transition: opacity 0.8s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.slider-container .slider .image.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.slider-container .slider .image img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: transform 10s ease-out;
}

.slider-container .slider .image.active img {
    transform: scale(1.08);
}

.slider-container .slider .image .title {
    position: absolute;
    z-index: 2;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    right: 40px;
    width: 85%;
    max-width: 850px;
    padding-left: var(--space-xl);
    pointer-events: none;
}

.slider-container .slider .image .title * {
    pointer-events: auto;
}

.slider-container .slider .image .title h2 {
    font-size: clamp(1.3rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.7;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.slider-container .slider .image .title h2 a {
    transition: all var(--transition-normal);
    display: inline;
    background: linear-gradient(to right, var(--accent-gold), var(--accent-gold));
    background-size: 0% 2px;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.slider-container .slider .image .title h2 a:hover {
    color: var(--accent-gold);
    background-size: 100% 2px;
    background-position: left bottom;
}

@media (max-width: 680px) {
    .slider-container .slider .image .title {
        bottom: 25px;
        right: 20px;
        gap: var(--space-md);
    }
}

.slider-container .slider .image .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    width: fit-content;
    backdrop-filter: blur(5px);
}

/* Thumbnails - Premium Style */
.slider-container .thumbnails {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    position: absolute;
    bottom: -80px;
    width: 100%;
    right: 0;
    padding: 0 var(--space-lg);
    overflow-x: auto;
    scrollbar-width: none;
}

.slider-container .thumbnails::-webkit-scrollbar {
    display: none;
}

.slider-container .thumbnails img {
    width: 90px;
    height: 55px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: var(--radius-md);
    opacity: 0.5;
    transition: all var(--transition-spring);
    box-shadow: var(--shadow-sm);
}

.slider-container .thumbnails img:hover {
    opacity: 0.85;
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.slider-container .thumbnails img.active {
    border-color: var(--accent-gold);
    opacity: 1;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
}

/* Navigation Buttons - Premium */
.slider-container .navigation {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    z-index: 10;
    pointer-events: none;
}

.slider-container button {
    padding: 22px 14px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-spring);
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    pointer-events: auto;
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 650px) {
    .slider-container button {
        padding: 16px 12px;
        font-size: 1.1rem;
    }
}

.slider-container button:hover {
    background: var(--primary-gradient);
    transform: scale(1.1);
    box-shadow: var(--primary-glow);
    border-color: transparent;
}

/* ==========================================================================
   📊 TOP BAR - Premium Header Bar
   ========================================================================== */
.topbar {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 11;
    background: var(--secondary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    backdrop-filter: blur(10px);
}

.topbar a {
    color: rgba(255, 255, 255, 0.95) !important;
}

.topbar a:hover {
    color: var(--primary-color) !important;
}

.container,
.container_full {
    width: auto;
    margin: 0 auto;
    padding: 0;
}

.header .container {
    height: 100%;
}

.container {
    padding-right: var(--space-md);
    padding-left: var(--space-md);
    margin-right: auto;
    margin-left: auto;
}

/* @media (max-width: 767px) {
    .container {
        width: calc(100% - 16px);
    }
} */

/* Navigation Row */
.topbar .nav_row,
.topbar .nav_icon {
    height: 40px;
}

.topbar .nav_row,
.topbar .search_no_expand .search_input {
    line-height: 40px;
}

.topbar .nav_row {
    height: 40px;
    line-height: 40px;
}

.nav_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Alignment Classes */
.nav_left {
    margin-right: auto;
}

.nav_center {
    margin: 0 auto;
}

.nav_right {
    margin-left: auto;
}

.nav_grow {
    flex: 1;
}

.nav_alignleft {
    justify-content: flex-start;
}

.nav_aligncenter {
    justify-content: center;
}

.nav_alignright {
    justify-content: flex-end;
}

/* Item Wrap */
.item_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Nav Items */
.topbar .nav_item {
    padding: 0 var(--space-md);
    border-right: 1px solid var(--border-light);
}

.nav_item:last-child {
    padding-right: 0;
    border-right: none;
}

.nav_item:first-child {
    padding-left: 0;
}

/* Main Menu */
.main_menu>li,
.menu>li {
    float: right;
    text-align: right;
    position: relative;
    padding-right: 1.2em;
}

.menu>li {
    text-align: left;
}

.menu>li:first-child {
    padding-right: 0;
}

.menu>li:last-child {
    border-right-width: 0;
}

.menu a {
    display: block;
    position: relative;
    color: var(--text-primary);
    transition: color var(--transition-fast);
    font-weight: 500;
}

.menu a:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   TICKER / BREAKING NEWS - Modern Marquee
   ========================================================================== */
.ticker-header {
    padding: 0;
    background: var(--bg-secondary);
}

.ticker-container {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    padding: 0;
    box-shadow: var(--shadow-sm);
}

.news-label {
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    letter-spacing: 0.5px;
}

.news-label::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 16px;
    background: var(--primary-dark);
    transform: skewX(-10deg);
}

.ticker-wrap {
    overflow: hidden;
    width: 100%;
    background: var(--bg-secondary);
    display: flex;
    padding: 8px 0;
}

.ticker-move {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ticker 60s linear infinite;
}

.ticker-item {
    padding: 0 40px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ticker-item a {
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.ticker-item a:hover {
    color: var(--primary-color);
}

.ticker-item .dot {
    height: 8px;
    width: 8px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    display: inline-block;
    margin-left: 8px;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Animation */
@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hover effect */
.ticker-wrap:hover .ticker-move {
    animation-play-state: paused;
}

.ticker-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px 15px;
    color: #ffffff;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    border-radius: 8px;
    margin-right: 10px;
}

.ticker-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ff6b6b;
    transform: scale(1.05);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.about-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.map {
    flex: 2;
    min-width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map iframe {
    border: none;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: var(--space-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.contact-info h3 {
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: var(--space-sm);
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.contact-info span {
    font-weight: 600;
    color: var(--text-primary);
}

.social-media {
    margin-top: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.social-media span {
    font-weight: 600;
    margin-left: var(--space-md);
    color: var(--text-primary);
}

.social-link {
    font-size: 1.25rem;
    color: var(--text-muted);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    transition: all var(--transition-normal);
}

.social-link:hover {
    color: var(--text-white);
    background: var(--primary-gradient);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg), var(--primary-glow);
}

/* ==========================================================================
   🎨 UTILITY CLASSES & PREMIUM ENHANCEMENTS
   ========================================================================== */

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--border-medium), var(--text-muted));
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-tertiary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gradient);
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Premium Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(184, 0, 31, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(184, 0, 31, 0.6);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--border-light) 50%, var(--bg-tertiary) 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Animate on Scroll Classes */
.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

/* Floating Elements */
.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Glow Effect */
.glow-animation {
    animation: glow 2s ease-in-out infinite;
}

/* Image Placeholder */
img[src=""],
img:not([src]) {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--border-light) 100%);
    min-height: 100px;
}

/* Glass Card Utility */
.glass-card {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

/* Gradient Text Utility */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Lift Effect */
.hover-lift {
    transition: all var(--transition-spring);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Print Styles */
@media print {

    .header-small,
    .popup-nav,
    .ticker-container,
    .navigation,
    .thumbnails,
    .footer {
        display: none !important;
    }

    body {
        /* background-color: #d3d3d3; */
        color: black;
    }

    .main-box,
    .side-box {
        box-shadow: none;
        border: 1px solid #e0e0e0;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .slider-container .slider .image.active img {
        transform: none;
    }

    .ticker-move {
        animation: none;
    }
}

/* ==========================================================================
   🌙 DARK MODE SUPPORT (Optional)
   ========================================================================== */
/* Dark mode removed */

س
/* ==========================================================================
   🌟 PROFESSIONAL NEWS WEBSITE - CREATIVE DESIGN 🌟
   Version: 3.0 - Revolutionary Creative Redesign
   ========================================================================== */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   ✨ CSS VARIABLES - Creative Professional Color Scheme ✨
   ========================================================================== */
:root {
    /* Primary Colors - Brand Crimson/Red Theme */
    --primary-color: #d9232a;
    --primary-dark: #a91217;
    --primary-light: #f73f47;
    --primary-gradient: linear-gradient(135deg, #d9232a 0%, #a91217 50%, #76080b 100%);
    --primary-glow: 0 0 30px rgba(217, 35, 42, 0.4);

    /* Secondary Colors - Brand Navy Theme */
    --secondary-color: #0a1c3f;
    --secondary-light: #162c59;
    --secondary-gradient: linear-gradient(180deg, #0a1c3f 0%, #162c59 100%);

    /* Accent Colors - Brand Identity Based (Crimson & Navy) */
    --accent-gold: #d9232a;
    --accent-gold-light: #f73f47;
    --accent-blue: #0a1c3f;
    --accent-teal: #162c59;
    --accent-purple: #a91217;

    /* Glass Effect Colors */
    --glass-bg: rgba(255, 255, 255, 0.98);
    --glass-light: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Neutral Colors */
    --bg-primary: #f0f2f5;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f8fafc;
    --bg-dark: #0a1c3f;
    --bg-gradient: linear-gradient(135deg, #f0f2f5 0%, #e8ecf1 100%);

    /* Text Colors */
    --text-primary: #0f0f1a;
    --text-secondary: #3d4852;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;

    /* Border Colors */
    --border-light: rgba(0, 0, 0, 0.06);
    --border-medium: rgba(0, 0, 0, 0.1);
    --border-accent: var(--primary-color);

    /* Premium Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.12), 0 12px 24px rgba(0, 0, 0, 0.08);
    --shadow-2xl: 0 32px 64px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(184, 0, 31, 0.2);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
}

/* ==========================================================================
   ✨ BASE STYLES - Creative Foundation ✨
   ========================================================================== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* overflow-x: hidden; */
}

body {
    direction: rtl;
    font-family: "Cairo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    /* background-color: #d3d3d3; */
    color: #1a1a2e;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* overflow-x: hidden; */
    position: relative;
    letter-spacing: -0.01em;
}

/* Decorative Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(184, 0, 31, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.02) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   📦 CONTAINER - Responsive Wrapper
   ========================================================================== */
.container {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

@media (min-width: 1400px) {
    .container {
        width: 1320px;
    }
}

/* ==========================================================================
   🎭 OVERLAY - Premium Modal Backdrop
   ========================================================================== */
.over-lay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    transition: all var(--transition-slow);
}

.over-lay.active {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==========================================================================
   🎨 SECTION HEADERS - Creative Titles
   ========================================================================== */
.slider-wrap {
    position: relative;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
}

.slider-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, var(--primary-color), transparent);
    border-radius: 2px;
}

.section-header h2 {
    background: var(--primary-gradient);
    color: #ffffff;
    padding: 12px 28px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    border-radius: 8px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(184, 0, 31, 0.25);
}

.section-header h2::before {
    display: none;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary-dark);
}

/* Pulse Animation */
.pulse-animation {
    animation: none;
}

@keyframes pulse-elegant {

    0%,
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-md);
    }

    50% {
        transform: scale(1.01);
        box-shadow: var(--shadow-lg), var(--shadow-glow);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.95;
    }
}

/* ==========================================================================
   TOP DATE BADGE
   ========================================================================== */
.top_date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    /* background: var(--secondary-color); */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top_date::before {
    display: none;
}

.top_date::after {
    display: none;
}

/* ==========================================================================
   MAIN BOX - Professional Card Design
   ========================================================================== */
.main-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.main-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 0 16px 16px 0;
}

.main-box::after {
    display: none;
}

.main-box:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* ==========================================================================
   SLIDER CONTROLS
   ========================================================================== */
.slider-wrap .right-1,
.slider-wrap .left-1 {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.slider-wrap .right-1:hover,
.slider-wrap .left-1:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.slider-wrap .right-1:active,
.slider-wrap .left-1:active {
    transform: scale(0.95);
}

/* ==========================================================================
   PRODUCT SLIDE - Carousel
   ========================================================================== */
.product-slide .crates {
    padding: 20px;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 16px;
}

.product-slide .crates::-webkit-scrollbar {
    display: none;
}

.product-slide .crates .crate {
    display: flex;
    gap: 20px;
    padding: 16px 8px;
    flex: none;
}

.product-slide .box {
    max-width: 300px;
    min-width: 260px;
    display: flex;
    gap: 12px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
}

.product-slide .box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 0 12px 12px 0;
}

.product-slide .box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.product-slide .box:hover::before {
    height: 100%;
}

.product-slide .title p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    transition: color 0.2s ease;
}

.product-slide .box:hover .title p {
    color: var(--primary-color);
}

.product-slide .title span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-slide .title span::before {
    display: none;
}

/* ==========================================================================
   MAIN SECTION - Grid Layout
   ========================================================================== */
.main-section {
    /* display: grid;
    grid-template-areas: "content content content content content content content content side side side side"; */
    gap: 32px;
    margin-bottom: 32px;
    padding-top: 32px;
    position: relative;
}

.main-section::before {
    display: none;
}

@media (max-width: 860px) {
    .main-section {
        grid-template-areas:
            "content content content content"
            "side side side side";
        gap: var(--space-lg);
    }
}

.main-section .content {
    grid-area: content;
}

.main-section .side {
    grid-area: side;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.main-section .side .box-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.main-section .side .box-image::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-lg);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.main-section .side .box-image:hover::before {
    opacity: 1;
}

.main-section .side .box-image .main-image {
    width: 370px;
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-spring);
}

.main-section .side .box-image .main-image:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

/* ==========================================================================
   SIDE BOX - Professional Sidebar Cards (Dark Theme)
   ========================================================================== */
.side-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.side-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            var(--secondary-color) 100%);
}

.side-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.side-box .side-title {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(10, 28, 63, 0.08);
}

.side-box .side-title::before {
    display: none;
}

.side-box .side-title h2 {
    background: transparent;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    width: fit-content;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: none;
}

.side-box .side-title h2::before {
    content: '';
    width: 5px;
    height: 25px;
    background: linear-gradient(180deg, var(--primary-color), #ff6b6b);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(184, 0, 31, 0.5);
}

.side-box .content-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-box .content-box .image-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    transition: all 0.3s ease;
}

.side-box .content-box .image-title:hover {
    padding-right: 8px;
}

.side-box .content-box .image-title .image {
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.side-box .content-box .image-title .image::after {
    display: none;
}

.side-box .content-box .image-title .image:hover::after {
    opacity: 0;
}

.side-box .content-box .image-title .image img {
    width: 370px;
    max-width: 100%;
    transition: transform 0.3s ease;
    border-radius: var(--radius-lg);
}

.side-box .content-box .image-title .image:hover img {
    transform: scale(1.08);
}

.side-box .content-box .image-title .title {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.side-box .content-box .image-title .title .head {
    display: flex;
    gap: var(--space-md);
    justify-content: space-between;
}

.side-box .content-box .image-title .title .head h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.7;
    color: black;
    transition: color var(--transition-fast);
}

.side-box .content-box .image-title .title .head h3:hover {
    color: #ff6b6b;
}

.side-box .content-box .image-title .title .head span {
    font-size: 2rem;
    font-style: italic;
    padding: var(--space-sm);
    color: #ff6b6b;
    font-weight: 700;
    border-right: 3px solid #ff6b6b;
    opacity: 0.8;
}

.side-box .content-box .image-title .title .share {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.side-box .content-box .image-title .title p {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
}

.side-box .content-box .image-title .title p i {
    margin-left: var(--space-sm);
    color: #ff6b6b;
}

.side-box .content-box .image-title .title .social {
    display: flex;
    gap: var(--space-md);
}

.side-box .content-box .image-title .title .social li a {
    color: rgba(0, 0, 0, 0.5);
    font-size: 1.125rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
}

.side-box .content-box .image-title .title .social li a:hover {
    color: #ffffff;
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ==========================================================================
   OTHER NEWS - Numbered Items (Most Read Section) - Dark Theme
   ========================================================================== */
.side-box .content-box .other-news {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.side-box .content-box .other-news .trick {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.side-box .content-box .other-news .trick:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-8px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(184, 0, 31, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
}

.side-box .content-box .other-news .trick .number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    min-width: 50px;
    height: 50px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(145deg, var(--primary-color) 0%, #a30020 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow:
        0 6px 16px rgba(184, 0, 31, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: -0.02em;
}

.side-box .content-box .other-news .trick:hover .number {
    transform: scale(1.12) rotate(-8deg);
    box-shadow:
        0 10px 25px rgba(184, 0, 31, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.side-box .content-box .other-news .trick .title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.side-box .content-box .other-news .trick .title .descr {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.75;
    color: #1a1a2e;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.side-box .content-box .other-news .trick:hover .title .descr {
    color: #ff6b6b;
}

.side-box .content-box .other-news .trick .title .share {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-box .content-box .other-news .trick .title .share p {
    font-size: 0.85rem;
    font-weight: 600;
    color: black;
}

.side-box .content-box .other-news .trick .title .share p i {
    margin-left: 6px;
    color: #ff6b6b;
}

.side-box .content-box .other-news .trick .title .share .social {
    display: flex;
    gap: var(--space-md);
}

.side-box .content-box .other-news .trick .title .share .social li a {
    color: black;
    font-size: 1rem;
    transition: all var(--transition-fast);
    display: block;
}

.side-box .content-box .other-news .trick .title .share .social li a:hover {
    color: #ff6b6b;
    transform: scale(1.15);
}

/* ==========================================================================
   Side Box - Box Items (Read Also Section) - Dark Theme
   ========================================================================== */
.side-box .content-box .box {
    display: flex;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 14px;
}

.side-box .content-box .box:hover {
    transform: translateX(-8px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.side-box .content-box .box img {
    width: 130px;
    max-width: 100%;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 16/10;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.side-box .content-box .box:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.side-box .content-box .box .title p {
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 700;
    color: #1a1a2e;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.side-box .content-box .box:hover .title p {
    color: #ff6b6b;
}

.side-box .content-box .box .title .time {
    font-size: 0.8rem;
    color: black;
    font-weight: 500;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.side-box .content-box .box .title .time i {
    color: #ff6b6b;
}

/* ==========================================================================
   MAIN BOX - Card with Title Bar
   ========================================================================== */
.main-box {
    margin-top: 10px;
    position: relative;
    padding: var(--space-lg) var(--space-lg) 60px;
    box-shadow: var(--shadow-card);
    margin-bottom: var(--space-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.main-box:hover {
    box-shadow: var(--shadow-lg);
}

.main-box .main-button {
    position: absolute;
    /* bottom: -16px; */
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    padding: 10px 32px;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all var(--transition-normal);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-box .main-button:hover {
    background: var(--primary-gradient);
    color: var(--text-white);
    border-color: transparent;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.main-box .main-title {
    margin: var(--space-md) 0;
    border-bottom: 3px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.main-box .main-title h1 {
    margin: 0;
    background: var(--primary-gradient);
    color: white;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    width: fit-content;
    border-radius: var(--radius-sm);
    position: relative;
}

.main-box .main-title h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-dark);
}

.main-box .main-title .main-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.main-box .main-title .main-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    font-weight: 600;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.main-box .main-title .main-links a:hover {
    color: var(--primary-color);
    background: rgba(196, 30, 58, 0.08);
}

/* ==========================================================================
   HEADER - Professional News Header
   ========================================================================== */
.header {
    padding: 15px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    flex-wrap: wrap;
    position: relative;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05); */
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            var(--secondary-color) 100%);
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    background: none;
    pointer-events: none;
}

.header .side-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 12px;
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.header .side-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
}

.header .center-section {
    position: relative;
    z-index: 1;
    padding: 8px;
}

.header .center-section img {
    width: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: none;
}

.header .center-section img:hover {
    transform: scale(1.08);
    filter: none;
}

.header .side-section p {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a2e;
    margin: 0;
    text-shadow: none;
}

.header .side-section p:first-of-type {
    color: #ff6b6b;
    font-size: 1.1rem;
    font-weight: 800;
}

.tarwisa {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px !important;
}


@media (max-width: 991px) {
    .tarwisa {
        display: none;
    }
}

.news-grid-4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
    padding: 20px 0;
}

/* @media (max-width: 991px) {
    .news-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
} */





/* ==========================================================================
   🧭 NAVIGATION - Premium Sticky Nav
   ========================================================================== */
ul.nav {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 5px solid var(--primary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 0 30px;
}

ul.nav li {
    position: relative;
}

ul.nav>li>a {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a2e;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 18px 22px;
    position: relative;
    letter-spacing: -0.01em;
}

ul.nav>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--primary-gradient);
    transition: transform var(--transition-normal);
    border-radius: 2px 2px 0 0;
}

ul.nav>li:last-of-type {
    margin-left: var(--space-md);
}

ul.nav>li>a:hover,
ul.nav>li>a.active {
    color: var(--primary-color);
    background: transparent;
}

ul.nav>li>a:hover::after,
ul.nav>li>a.active::after {
    transform: translateX(-50%) scaleX(1);
}

@media (max-width: 1000px) {

    .center-section,
    ul.nav {
        display: none;
    }
}

/* Mega Menu Dropdown */
ul.nav>li .mega-menu {
    position: absolute;
    background: var(--bg-secondary);
    top: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    width: 220px;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    z-index: 1000;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border-top: 3px solid var(--primary-color);
}

ul.nav>li .mega-menu li a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

ul.nav>li .mega-menu li a:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
    padding-right: 20px;
}

ul.nav>li:not(:last-of-type) .mega-menu {
    right: 0;
}

ul.nav>li:last-of-type .mega-menu {
    left: 0;
}

ul.nav>li:hover .mega-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Search in Nav */
ul.nav span {
    position: relative;
    cursor: pointer;
    padding: var(--space-sm);
}

ul.nav span form {
    position: absolute;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    top: calc(100% + 10px);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    width: 320px;
    left: 0;
    background: var(--bg-secondary);
    transition: all var(--transition-normal);
    z-index: 1000;
    border-radius: var(--radius-md);
    border-top: 3px solid var(--primary-color);
}

ul.nav span form.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

ul.nav span form .input-search {
    padding-inline: 0;
    position: relative;
    width: 100%;
}

ul.nav span form .input-search i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

ul.nav span form .input-search input {
    border: 2px solid var(--border-light);
    padding: 12px 16px;
    padding-left: 40px;
    border-radius: var(--radius-md);
    width: 100%;
    outline: none;
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

ul.nav span form .input-search input:focus {
    border-color: var(--primary-color);
}

/* ==========================================================================
   SMALL HEADER - Mobile Header
   ========================================================================== */
.header-small {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-xl);
    box-shadow: var(--shadow-md);
    background: var(--bg-secondary);
}

.header-small form {
    position: absolute;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    top: 100%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    visibility: hidden;
    width: 90%;
    left: 50%;
    background: var(--bg-secondary);
    transition: all var(--transition-normal);
    border-radius: var(--radius-md);
    border-top: 3px solid var(--primary-color);
}

.header-small form.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.header-small form .input-search {
    position: relative;
    width: 100%;
}

.header-small form .input-search i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.header-small form .input-search input {
    border: 2px solid var(--border-light);
    padding: 12px 16px;
    padding-left: 40px;
    border-radius: var(--radius-md);
    width: 100%;
    outline: none;
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

.header-small form .input-search input:focus {
    border-color: var(--primary-color);
}

.header-small .bars i,
.header-small .search i {
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.header-small .bars i:hover,
.header-small .search i:hover {
    color: var(--primary-color);
    background: var(--bg-tertiary);
}

.header-small .logo img {
    width: 80px;
}

@media (min-width: 1000px) {
    .header-small {
        display: none;
    }
}

/* ==========================================================================
   POPUP NAV - Mobile Navigation Drawer
   ========================================================================== */
.popup-nav {
    padding: var(--space-xl) 0;
    position: fixed;
    background: var(--bg-secondary);
    top: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    right: 0;
    z-index: 1005;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    transition: transform var(--transition-slow);
    transform: translateX(100%);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.popup-nav.active {
    transform: translateX(0);
}

.close {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.close:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
}

.popup-nav form {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

.popup-nav form .input-search {
    position: relative;
    width: 100%;
}

.popup-nav form .input-search i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.popup-nav form .input-search input {
    border: 2px solid var(--border-light);
    padding: 12px 14px;
    padding-left: 40px;
    border-radius: var(--radius-md);
    width: 100%;
    outline: none;
    transition: border-color var(--transition-fast);
}

.popup-nav form .input-search input:focus {
    border-color: var(--primary-color);
}

.popup-nav .links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: 0 var(--space-lg);
}

.popup-nav .links a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: var(--space-sm) 0;
    transition: all var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.popup-nav .links a:hover {
    color: var(--primary-color);
    padding-right: var(--space-sm);
}

.popup-nav .social-media {
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: auto;
    padding-bottom: var(--space-lg);
}

.popup-nav .social-media a {
    color: var(--text-muted);
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    transition: all var(--transition-fast);
}

.popup-nav .social-media a:hover {
    color: var(--text-white);
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ==========================================================================
   EGYPT NEWS SECTION
   ========================================================================== */
.egypt-news .image-title {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.egypt-news .image-title .image {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.egypt-news .image-title .image img {
    width: 100%;
    transition: transform var(--transition-slow);
}

.egypt-news .image-title .image:hover img {
    transform: scale(1.03);
}

.egypt-news .image-title .title {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.egypt-news .image-title .title h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.egypt-news .image-title .title h2:hover {
    color: var(--primary-color);
}

.egypt-news .image-title .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.egypt-news .image-title .title .time span,
.egypt-news .image-title .title .time i {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.egypt-news .description {
    padding: var(--space-xl) 0;
}

.egypt-news .description p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.egypt-news .description .more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    margin-top: var(--space-lg);
    padding: 12px 24px;
    background: var(--secondary-color);
    transition: all var(--transition-normal);
    width: fit-content;
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.egypt-news .description .more:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.egypt-news .links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.egypt-news .links .part-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

@media (max-width: 520px) {
    .egypt-news .links {
        grid-template-columns: 1fr;
    }

    .egypt-news .links .part-links {
        gap: var(--space-md);
    }
}

.egypt-news .links .part-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    transition: all var(--transition-fast);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
}

.egypt-news .links .part-links a i {
    color: var(--primary-color);
    transition: transform var(--transition-fast);
}

.egypt-news .links .part-links a:hover {
    color: var(--primary-color);
    background: rgba(196, 30, 58, 0.05);
}

.egypt-news .links .part-links a:hover i {
    transform: translateX(-4px);
}

/* ==========================================================================
   SPORTS SECTION - Card Grid
   ========================================================================== */
.sports {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg); */
}

@media (max-width: 650px) {

    .sports,
    .collection,
    .dual-sections {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {

    .sports,
    .arab-world,
    .collection,
    .news-grid-4,
    .dual-sections {
        grid-template-columns: 1fr;
    }
}

.sports .spor {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.sports .spor:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.sports .spor .image {
    position: relative;
    overflow: hidden;
}

.sports .spor .image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.sports .spor:hover .image img {
    transform: scale(1.05);
}

.sports .spor .image .tick {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: var(--primary-gradient);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.spor h3 {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0 var(--space-md);
    transition: color var(--transition-fast);
}

.sports .spor:hover h3 {
    color: var(--primary-color);
}

.spor .time {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0 var(--space-md) var(--space-md);
}

/* ==========================================================================
   SCHOOL & UNIVERSITY SECTION
   ========================================================================== */
.school-univ .first-box {
    padding: var(--space-lg) 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    align-items: center;
}

@media (max-width: 650px) {
    .school-univ .first-box {
        grid-template-columns: 1fr;
    }
}

.school-univ .first-box .title-descrip {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.school-univ .first-box .title-descrip .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.school-univ .first-box .title-descrip h3 {
    color: var(--text-secondary);
}

.school-univ .first-box .title-descrip p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.school-univ .first-box .title-descrip .more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    margin-top: var(--space-md);
    padding: 12px 24px;
    background: var(--secondary-color);
    transition: all var(--transition-normal);
    width: fit-content;
    color: #ffffff;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.school-univ .first-box .title-descrip .more:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.school-univ .first-box img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

@media (max-width: 650px) {
    .school-univ .first-box img {
        order: -1;
    }
}

.school-univ .boxs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (max-width: 650px) {

    .school-univ .boxs,
    .sports .boxs {
        grid-template-columns: 1fr;
    }
}



.school-univ .boxs .box,
.sports .boxs .box {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.school-univ .boxs .box:hover,
.sports .boxs .box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.school-univ .boxs .box .title,
.sports .boxs .box .title {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.school-univ .boxs .box .title p,
.sports .boxs .box .title p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    transition: color var(--transition-fast);
}

.school-univ .boxs .box:hover .title p {
    color: var(--primary-color);
}

.school-univ .boxs .box .title span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.school-univ .boxs .box .image,
.sports .boxs .box .image {
    width: 140px;
    flex-shrink: 0;
}

.school-univ .boxs .box .image img,
.sports .boxs .box .image img {
    width: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
    aspect-ratio: 16/10;
}

/* ==========================================================================
   ECONOMY SECTION
   ========================================================================== */
.economy {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.economy .box {
    display: flex;
    gap: var(--space-lg);


}

.economy .mainEconomyNews {
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    padding: var(--space-lg);
    background: var(--bg-secondary);



}

.economy .box:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

@media (max-width: 650px) {
    .economy .box {
        flex-direction: column;
    }
}

.economy .box .title {
    flex: 70%;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.economy .box .title h2 {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 700;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.economy .box:hover .title h2 {
    color: var(--primary-color);
}

.economy .box .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.economy .box .title p {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.economy .box .image {
    flex: 30%;
    overflow: hidden;
    border-radius: var(--radius-md);
}

@media (max-width: 650px) {
    .economy .box .image {
        order: -1;
    }
}

.economy .box .image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.economy .box:hover .image img {
    transform: scale(1.05);
}

/* ==========================================================================
   ARAB & WORLD SECTION
   ========================================================================== */
.arab-world {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: var(--space-lg);
}

.arab-world>div {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.arab-world>div:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.arab-world .image {
    position: relative;
    overflow: hidden;
}

.arab-world .image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.arab-world>div:hover .image img {
    transform: scale(1.05);
}

.arab-world .image .trick {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: var(--primary-gradient);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
    border-radius: var(--radius-sm);
}

.arab-world .title {
    padding: var(--space-md);
}

.arab-world .title h3 {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.arab-world>div:hover .title h3 {
    color: var(--primary-color);
}

.arab-world .title .time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* ==========================================================================
   COLLECTION SECTION
   ========================================================================== */
/* .collection {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--space-lg);
    row-gap: var(--space-md);
} */

.collection .big-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.collection .big-box .box {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.collection .big-box .box:hover {
    background: var(--bg-tertiary);
    transform: translateX(-4px);
}

.collection .big-box .box img {
    width: 120px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    aspect-ratio: 16/10;
}

.collection .box .title p {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.collection .big-box .box:hover .title p {
    color: var(--primary-color);
}

.collection .box .title .time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* ==========================================================================
   NEWS PAGE - Category & Listings
   ========================================================================== */
.categ {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    flex-wrap: wrap;
}

.categ a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
    font-weight: 500;
}

.categ a:hover {
    color: var(--primary-color);
}

.categ span {
    color: var(--text-muted);
}

.news .content-news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .news .content-news {
        grid-template-columns: 1fr;
    }
}

.news .content-news .big-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.news .content-news .big-box .box {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--bg-secondary);
    border-radius: 16px;
    transition: all 0.4s ease;
    height: 100%;
}

.news .content-news .big-box .box:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: rgba(184, 0, 31, 0.15);
}

@media (max-width: 560px) {
    .news .content-news .big-box .box {
        flex-direction: column;
    }
}

.news .content-news .big-box .box .image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.news .content-news .big-box .box .image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news .content-news .big-box .box:hover .image img {
    transform: scale(1.05);
}

.news .content-news .big-box .box .title-descrip {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex: 1;
}

.news .content-news .big-box .box .title-descrip h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.7;
    transition: color var(--transition-fast);
}

.news .content-news .big-box .box:hover .title-descrip h3 {
    color: var(--primary-color);
}

.news .content-news .big-box .box .title-descrip .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.news .content-news .big-box .box .title-descrip p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news .content-news .big-box .box .title-descrip .more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    margin-top: auto;
    padding: 10px 20px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    width: fit-content;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
}

.news .content-news .big-box .box .title-descrip .more:hover {
    background: #8a0018;
    transform: translateX(-4px);
}



.horizontal-news-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

/* ==========================================================================
   NEWS DETAILS PAGE
   ========================================================================== */
.news-details .title-image-social {
    padding-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.news-details .title-image-social .title {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.news-details .title-image-social .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.news-details .title-image-social .image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.news-details .title-image-social .image img {
    width: 100%;
}

.news-details .title-image-social .social-views {
    position: relative;
    display: flex;
    gap: var(--space-md);
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.news-details .title-image-social .social-views .social {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    flex-wrap: wrap;
}

.news-details .title-image-social .social-views .views {
    position: relative;
    display: flex;
    gap: var(--space-md);
    align-items: center;
    padding-right: var(--space-lg);
}

.news-details .title-image-social .social-views .social .media {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition-normal);
    border-radius: var(--radius-md);
}

.news-details .title-image-social .social-views .social .media:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 500px) {
    .news-details .title-image-social .social-views .social .media {
        padding: 8px 12px;
    }
}

.news-details .title-image-social .social-views .social a .whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.news-details .title-image-social .social-views .social a .facebook {
    background: linear-gradient(135deg, #4267b2, #3b5998);
}

.news-details .title-image-social .social-views .social>.twitter {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.news-details .title-image-social .social-views .social>.telegram {
    background: linear-gradient(135deg, #0088cc, #006699);
}

.news-details .title-image-social .social-views .social .media i {
    font-size: 1.125rem;
}

.news-details .title-image-social .social-views .social .media span {
    font-size: 0.8rem;
}

@media (max-width: 700px) {
    .news-details .title-image-social .social-views .social .media span {
        display: none;
    }
}

.news-details .title-image-social .social-views .views .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.news-details .title-image-social .social-views .views::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 2px;
    background: var(--border-medium);
}

.news-details .title-image-social .social-views .views .box span:first-child {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.news-details .title-image-social .social-views .views .box span:last-child {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
}

.news-details .discription {
    padding: var(--space-xl) 0;
}

.about-details .description p {
    padding: var(--space-lg);
    line-height: 1.9;
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.about-details .description .image {
    text-align: center;
    max-width: 100%;
    width: fit-content;
    margin-bottom: var(--space-2xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ==========================================================================
   FOOTER - Professional Footer
   ========================================================================== */
.footer {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding-top: 60px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            var(--secondary-color) 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.footer .content-footer {
    display: grid;
    grid-template-columns: 1fr 2fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.footer .content-footer .logo {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer .content-footer .logo img {
    width: 180px;
    filter: none;
    opacity: 1;
    transition: all 0.4s ease;
}

.footer .content-footer .logo img:hover {
    transform: scale(1.08);
    opacity: 0.9;
}

.footer .content-footer .logo p {
    line-height: 2;
    color: #3d4852;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer .content-footer .links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #ffffff;
}

.footer .content-footer .links h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a1a2e;
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.footer .content-footer .links h4::before {
    display: none;
}

.footer .content-footer .links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.footer .content-footer .links .content-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
}

@media (max-width: 1030px) {
    .footer .content-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer .content-footer .logo {
        align-items: center;
    }

    .footer .content-footer .links {
        align-items: center;
    }

    .footer .content-footer .links h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer .content-footer .links .content-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.footer .content-footer .links .content-links .link {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer .content-footer .links .content-links .link a {
    color: #3d4852;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 15px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid transparent;
}

.footer .content-footer .links .content-links .link a::before {
    content: '◄';
    position: absolute;
    left: 15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff6b6b;
    font-size: 0.7rem;
}

.footer .content-footer .links .content-links .link a:hover {
    color: #ffffff;
    background: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
    padding-left: 30px;
}

.footer .content-footer .links .content-links .link a:hover::before {
    opacity: 1;
    left: 10px;
}

.footer .content-footer .big-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer .content-footer .big-box .box {
    display: flex;
    gap: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    transition: all 0.4s ease;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.footer .content-footer .big-box .box:hover {
    transform: translateX(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.footer .content-footer .big-box .box img {
    width: 120px;
    max-width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer .content-footer .big-box .box:hover img {
    transform: scale(1.05);
}

.footer .content-footer .box .title p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #1a1a2e;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer .content-footer .big-box .box:hover .title p {
    color: #ffffff;
}

.footer .content-footer .box .title .time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer .content-footer .box .title .time::before {
    content: '🕐';
    font-size: 0.75rem;
}

.footer .copy-right {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 30px;
    text-align: center;
    color: #1a1a2e;
    font-size: 0.95rem;
    font-weight: 500;
    background: #f0f2f5;
    letter-spacing: -0.01em;
    backdrop-filter: blur(10px);
}

.footer .copy-right a {
    color: var(--accent-gold);
    font-weight: 600;
}

.footer .copy-right a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   HERO SLIDER - Professional Full-Width Slider
   ========================================================================== */
.slider-container {
    position: relative;
    /* margin-bottom: 80px; */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    z-index: 10;
}

.slider-container .slider {
    width: 100%;
    height: 32vw;
    max-height: 420px;
    min-height: 250px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 750px) {
    .slider-container .slider {
        height: 50vw;
    }
}

.slider-container .slider .image::after {
    content: "";
    bottom: 0;
    position: absolute;
    width: 100%;
    right: 0;
    height: 75%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 40%, transparent 100%);
    z-index: 1;
}

.slider-container .slider .image {
    width: 100%;
    height: 100%;
    transition: opacity 0.8s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.slider-container .slider .image.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.slider-container .slider .image img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: transform 10s ease-out;
}

.slider-container .slider .image.active img {
    transform: scale(1.08);
}

.slider-container .slider .image .title {
    position: absolute;
    z-index: 2;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    right: 40px;
    width: 85%;
    max-width: 850px;
    padding-left: var(--space-xl);
    pointer-events: none;
}

.slider-container .slider .image .title * {
    pointer-events: auto;
}

.slider-container .slider .image .title h2 {
    font-size: clamp(1.3rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: white;
    line-height: 1.7;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.slider-container .slider .image .title h2 a {
    transition: all var(--transition-normal);
    display: inline;
    background: linear-gradient(to right, var(--accent-gold), var(--accent-gold));
    background-size: 0% 2px;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.slider-container .slider .image .title h2 a:hover {
    color: var(--accent-gold);
    background-size: 100% 2px;
    background-position: left bottom;
}

@media (max-width: 680px) {
    .slider-container .slider .image .title {
        bottom: 25px;
        right: 20px;
        gap: var(--space-md);
    }
}

.slider-container .slider .image .title .time {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    width: fit-content;
    backdrop-filter: blur(5px);
}

/* Thumbnails - Premium Style */
.slider-container .thumbnails {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    position: absolute;
    bottom: -80px;
    width: 100%;
    right: 0;
    padding: 0 var(--space-lg);
    overflow-x: auto;
    scrollbar-width: none;
}

.slider-container .thumbnails::-webkit-scrollbar {
    display: none;
}

.slider-container .thumbnails img {
    width: 90px;
    height: 55px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: var(--radius-md);
    opacity: 0.5;
    transition: all var(--transition-spring);
    box-shadow: var(--shadow-sm);
}

.slider-container .thumbnails img:hover {
    opacity: 0.85;
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.slider-container .thumbnails img.active {
    border-color: var(--accent-gold);
    opacity: 1;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
}

/* Navigation Buttons - Premium */
.slider-container .navigation {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    z-index: 10;
    pointer-events: none;
}

.slider-container button {
    padding: 22px 14px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-spring);
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    pointer-events: auto;
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 650px) {
    .slider-container button {
        padding: 16px 12px;
        font-size: 1.1rem;
    }
}

.slider-container button:hover {
    background: var(--primary-gradient);
    transform: scale(1.1);
    box-shadow: var(--primary-glow);
    border-color: transparent;
}

/* ==========================================================================
   📊 TOP BAR - Premium Header Bar
   ========================================================================== */
.topbar {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 11;
    background: var(--secondary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    backdrop-filter: blur(10px);
}

.topbar a {
    color: rgba(255, 255, 255, 0.95) !important;
}

.topbar a:hover {
    color: var(--primary-color) !important;
}

.container,
.container_full {
    width: auto;
    margin: 0 auto;
    padding: 0;
}

.header .container {
    height: 100%;
}

.container {
    padding-right: var(--space-md);
    padding-left: var(--space-md);
    margin-right: auto;
    margin-left: auto;
}

/* @media (max-width: 767px) {
    .container {
        width: calc(100% - 16px);
    }
} */

/* Navigation Row */
.topbar .nav_row,
.topbar .nav_icon {
    height: 40px;
}

.topbar .nav_row,
.topbar .search_no_expand .search_input {
    line-height: 40px;
}

.topbar .nav_row {
    height: 40px;
    line-height: 40px;
}

.nav_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Alignment Classes */
.nav_left {
    margin-right: auto;
}

.nav_center {
    margin: 0 auto;
}

.nav_right {
    margin-left: auto;
}

.nav_grow {
    flex: 1;
}

.nav_alignleft {
    justify-content: flex-start;
}

.nav_aligncenter {
    justify-content: center;
}

.nav_alignright {
    justify-content: flex-end;
}

/* Item Wrap */
.item_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Nav Items */
.topbar .nav_item {
    padding: 0 var(--space-md);
    border-right: 1px solid var(--border-light);
}

.nav_item:last-child {
    padding-right: 0;
    border-right: none;
}

.nav_item:first-child {
    padding-left: 0;
}

/* Main Menu */
.main_menu>li,
.menu>li {
    float: right;
    text-align: right;
    position: relative;
    padding-right: 1.2em;
}

.menu>li {
    text-align: left;
}

.menu>li:first-child {
    padding-right: 0;
}

.menu>li:last-child {
    border-right-width: 0;
}

.menu a {
    display: block;
    position: relative;
    color: whitesmoke;
    transition: color var(--transition-fast);
    font-weight: 500;
}

.menu a:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   TICKER / BREAKING NEWS - Modern Marquee
   ========================================================================== */
.ticker-header {
    padding: 0;
    background: var(--bg-secondary);
}

.ticker-container {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    padding: 0;
    box-shadow: var(--shadow-sm);
}

.news-label {
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    letter-spacing: 0.5px;
}

.news-label::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 16px;
    background: var(--primary-dark);
    transform: skewX(-10deg);
}

.ticker-wrap {
    overflow: hidden;
    width: 100%;
    background: var(--bg-secondary);
    display: flex;
    padding: 8px 0;
}

.ticker-move {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ticker 60s linear infinite;
}

.ticker-item {
    padding: 0 40px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ticker-item a {
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.ticker-item a:hover {
    color: var(--primary-color);
}

.ticker-item .dot {
    height: 8px;
    width: 8px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    display: inline-block;
    margin-left: 8px;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Animation */
@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hover effect */
.ticker-wrap:hover .ticker-move {
    animation-play-state: paused;
}

.ticker-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px 15px;
    color: #ffffff;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    border-radius: 8px;
    margin-right: 10px;
}

.ticker-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ff6b6b;
    transform: scale(1.05);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.about-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.map {
    flex: 2;
    min-width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map iframe {
    border: none;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: var(--space-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.contact-info h3 {
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: var(--space-sm);
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.contact-info span {
    font-weight: 600;
    color: var(--text-primary);
}

.social-media {
    margin-top: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.social-media span {
    font-weight: 600;
    margin-left: var(--space-md);
    color: var(--text-primary);
}

.social-link {
    font-size: 1.25rem;
    color: var(--text-muted);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    transition: all var(--transition-normal);
}

.social-link:hover {
    color: var(--text-white);
    background: var(--primary-gradient);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg), var(--primary-glow);
}

/* ==========================================================================
   🎨 UTILITY CLASSES & PREMIUM ENHANCEMENTS
   ========================================================================== */

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--border-medium), var(--text-muted));
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-tertiary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gradient);
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Premium Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(184, 0, 31, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(184, 0, 31, 0.6);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--border-light) 50%, var(--bg-tertiary) 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Animate on Scroll Classes */
.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

/* Floating Elements */
.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Glow Effect */
.glow-animation {
    animation: glow 2s ease-in-out infinite;
}

/* Image Placeholder */
img[src=""],
img:not([src]) {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--border-light) 100%);
    min-height: 100px;
}

/* Glass Card Utility */
.glass-card {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

/* Gradient Text Utility */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Lift Effect */
.hover-lift {
    transition: all var(--transition-spring);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Print Styles */
@media print {

    .header-small,
    .popup-nav,
    .ticker-container,
    .navigation,
    .thumbnails,
    .footer {
        display: none !important;
    }

    body {
        background-color: #d3d3d3;
        color: black;
    }

    .main-box,
    .side-box {
        box-shadow: none;
        border: 1px solid #e0e0e0;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .slider-container .slider .image.active img {
        transform: none;
    }

    .ticker-move {
        animation: none;
    }
}

/* ==========================================================================
   🌙 DARK MODE SUPPORT (Optional)
   ========================================================================== */
/* Dark mode removed */



.swal-icon--error {
    border-color: #f27474;
    -webkit-animation: animateErrorIcon 0.5s;
    animation: animateErrorIcon 0.5s;
}

.swal-icon--error__x-mark {
    position: relative;
    display: block;
    -webkit-animation: animateXMark 0.5s;
    animation: animateXMark 0.5s;
}

.swal-icon--error__line {
    position: absolute;
    height: 5px;
    width: 47px;
    background-color: #f27474;
    display: block;
    top: 37px;
    border-radius: 2px;
}

.swal-icon--error__line--left {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 17px;
}

.swal-icon--error__line--right {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 16px;
}

@-webkit-keyframes animateErrorIcon {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0;
    }

    to {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes animateErrorIcon {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0;
    }

    to {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@-webkit-keyframes animateXMark {
    0% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }

    80% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
        margin-top: -6px;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        margin-top: 0;
        opacity: 1;
    }
}

@keyframes animateXMark {
    0% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }

    80% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
        margin-top: -6px;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        margin-top: 0;
        opacity: 1;
    }
}

.swal-icon--warning {
    border-color: #f8bb86;
    -webkit-animation: pulseWarning 0.75s infinite alternate;
    animation: pulseWarning 0.75s infinite alternate;
}

.swal-icon--warning__body {
    width: 5px;
    height: 47px;
    top: 10px;
    border-radius: 2px;
    margin-left: -2px;
}

.swal-icon--warning__body,
.swal-icon--warning__dot {
    position: absolute;
    left: 50%;
    background-color: #f8bb86;
}

.swal-icon--warning__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: -4px;
    bottom: -11px;
}

@-webkit-keyframes pulseWarning {
    0% {
        border-color: #f8d486;
    }

    to {
        border-color: #f8bb86;
    }
}

@keyframes pulseWarning {
    0% {
        border-color: #f8d486;
    }

    to {
        border-color: #f8bb86;
    }
}

.swal-icon--success {
    border-color: #a5dc86;
}

.swal-icon--success:after,
.swal-icon--success:before {
    content: "";
    border-radius: 50%;
    position: absolute;
    width: 60px;
    height: 280px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.swal-icon--success:before {
    border-radius: 120px 0 0 120px;
    top: -7px;
    left: -33px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 60px 60px;
    transform-origin: 60px 60px;
}

.swal-icon--success:after {
    border-radius: 0 120px 120px 0;
    top: -11px;
    left: 30px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0 60px;
    transform-origin: 0 60px;
    -webkit-animation: rotatePlaceholder 4.25s ease-in;
    animation: rotatePlaceholder 4.25s ease-in;
}

.swal-icon--success__ring {
    width: 80px;
    height: 80px;
    border: 4px solid hsla(98, 55%, 69%, 0.2);
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 2;
}

.swal-icon--success__hide-corners {
    width: 5px;
    height: 90px;
    background-color: #fff;
    padding: 1px;
    position: absolute;
    left: 28px;
    top: 8px;
    z-index: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.swal-icon--success__line {
    height: 5px;
    background-color: #a5dc86;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 2;
}

.swal-icon--success__line--tip {
    width: 25px;
    left: 14px;
    top: 46px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: animateSuccessTip 0.75s;
    animation: animateSuccessTip 0.75s;
}

.swal-icon--success__line--long {
    width: 47px;
    right: 8px;
    top: 38px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: animateSuccessLong 0.75s;
    animation: animateSuccessLong 0.75s;
}

@-webkit-keyframes rotatePlaceholder {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }

    to {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
}

@keyframes rotatePlaceholder {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }

    to {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
}

@-webkit-keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    to {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    to {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@-webkit-keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }

    to {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }

    to {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

.swal-icon--info {
    border-color: #c9dae1;
}

.swal-icon--info:before {
    width: 5px;
    height: 29px;
    bottom: 17px;
    border-radius: 2px;
    margin-left: -2px;
}

.swal-icon--info:after,
.swal-icon--info:before {
    content: "";
    position: absolute;
    left: 50%;
    background-color: #c9dae1;
}

.swal-icon--info:after {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: -3px;
    top: 19px;
}

.swal-icon {
    width: 80px;
    height: 80px;
    border-width: 4px;
    border-style: solid;
    border-radius: 50%;
    padding: 0;
    position: relative;
    box-sizing: content-box;
    margin: 20px auto;
}

.swal-icon:first-child {
    margin-top: 32px;
}

.swal-icon--custom {
    width: auto;
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
}

.swal-icon img {
    max-width: 100%;
    max-height: 100%;
}

.swal-title {
    color: rgba(0, 0, 0, 0.65);
    font-weight: 600;
    text-transform: none;
    position: relative;
    display: block;
    padding: 13px 16px;
    font-size: 27px;
    line-height: normal;
    text-align: center;
    margin-bottom: 0;
}

.swal-title:first-child {
    margin-top: 26px;
}

.swal-title:not(:first-child) {
    padding-bottom: 0;
}

.swal-title:not(:last-child) {
    margin-bottom: 13px;
}

.swal-text {
    font-size: 16px;
    position: relative;
    float: none;
    line-height: normal;
    vertical-align: top;
    text-align: left;
    display: inline-block;
    margin: 0;
    padding: 0 10px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.64);
    max-width: calc(100% - 20px);
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.swal-text:first-child {
    margin-top: 45px;
}

.swal-text:last-child {
    margin-bottom: 45px;
}

.swal-footer {
    text-align: right;
    padding-top: 13px;
    margin-top: 13px;
    padding: 13px 16px;
    border-radius: inherit;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.swal-button-container {
    margin: 5px;
    display: inline-block;
    position: relative;
}

.swal-button {
    background-color: #7cd1f9;
    color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    margin: 0;
    cursor: pointer;
}

.swal-button:not([disabled]):hover {
    background-color: #78cbf2;
}

.swal-button:active {
    background-color: #70bce0;
}

.swal-button:focus {
    outline: none;
    box-shadow:
        0 0 0 1px #fff,
        0 0 0 3px rgba(43, 114, 165, 0.29);
}

.swal-button[disabled] {
    opacity: 0.5;
    cursor: default;
}

.swal-button::-moz-focus-inner {
    border: 0;
}

.swal-button--cancel {
    color: #555;
    background-color: #efefef;
}

.swal-button--cancel:not([disabled]):hover {
    background-color: #e8e8e8;
}

.swal-button--cancel:active {
    background-color: #d7d7d7;
}

.swal-button--cancel:focus {
    box-shadow:
        0 0 0 1px #fff,
        0 0 0 3px rgba(116, 136, 150, 0.29);
}

.swal-button--danger {
    background-color: #e64942;
}

.swal-button--danger:not([disabled]):hover {
    background-color: #df4740;
}

.swal-button--danger:active {
    background-color: #cf423b;
}

.swal-button--danger:focus {
    box-shadow:
        0 0 0 1px #fff,
        0 0 0 3px rgba(165, 43, 43, 0.29);
}

.swal-content {
    padding: 0 20px;
    margin-top: 20px;
    font-size: medium;
}

.swal-content:last-child {
    margin-bottom: 20px;
}

.swal-content__input,
.swal-content__textarea {
    -webkit-appearance: none;
    background-color: #fff;
    border: none;
    font-size: 14px;
    display: block;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.14);
    padding: 10px 13px;
    border-radius: 2px;
    transition: border-color 0.2s;
}

.swal-content__input:focus,
.swal-content__textarea:focus {
    outline: none;
    border-color: #6db8ff;
}

.swal-content__textarea {
    resize: vertical;
}

.swal-button--loading {
    color: transparent;
}

.swal-button--loading~.swal-button__loader {
    opacity: 1;
}

.swal-button__loader {
    position: absolute;
    height: auto;
    width: 43px;
    z-index: 2;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
    pointer-events: none;
    opacity: 0;
}

.swal-button__loader div {
    display: inline-block;
    float: none;
    vertical-align: baseline;
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    margin: 2px;
    opacity: 0.4;
    border-radius: 7px;
    background-color: hsla(0, 0%, 100%, 0.9);
    transition: background 0.2s;
    -webkit-animation: swal-loading-anim 1s infinite;
    animation: swal-loading-anim 1s infinite;
}

.swal-button__loader div:nth-child(3n + 2) {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}

.swal-button__loader div:nth-child(3n + 3) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

@-webkit-keyframes swal-loading-anim {
    0% {
        opacity: 0.4;
    }

    20% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0.4;
    }
}

@keyframes swal-loading-anim {
    0% {
        opacity: 0.4;
    }

    20% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0.4;
    }
}

.swal-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.swal-overlay:before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.swal-overlay--show-modal {
    opacity: 1;
    pointer-events: auto;
}

.swal-overlay--show-modal .swal-modal {
    opacity: 1;
    pointer-events: auto;
    box-sizing: border-box;
    -webkit-animation: showSweetAlert 0.3s;
    animation: showSweetAlert 0.3s;
    will-change: transform;
}

.swal-modal {
    width: 478px;
    opacity: 0;
    pointer-events: none;
    background-color: #fff;
    text-align: center;
    border-radius: 5px;
    position: static;
    margin: 20px auto;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    z-index: 10001;
    transition:
        opacity 0.2s,
        -webkit-transform 0.3s;
    transition:
        transform 0.3s,
        opacity 0.2s;
    transition:
        transform 0.3s,
        opacity 0.2s,
        -webkit-transform 0.3s;
}

@media (max-width: 500px) {
    .swal-modal {
        width: calc(100% - 20px);
    }
}

@-webkit-keyframes showSweetAlert {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    1% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    80% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes showSweetAlert {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    1% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    80% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


._button_10caf_25 {
    border-radius: 8px;
    border: unset;
    cursor: pointer;
    transition: 0.3s;
}

._button_10caf_25:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

._button_default_10caf_35 {
    background: transparent;
    color: #43434e;
}

._button_default_10caf_35:hover {
    background: #f3f4f7;
}

._button_default_10caf_35:active {
    background: #8e8e8e;
}

._button_default_10caf_35 ._svg_10caf_45 * {
    fill: #43434e;
}

._button_primary_10caf_48 {
    background: #007eff;
    color: #fff;
}

._button_primary_10caf_48:hover {
    background: #3398ff;
}

._button_primary_10caf_48:active {
    background: #66b2ff;
}

._button_primary_10caf_48 ._svg_10caf_45 * {
    fill: #fff;
}

._button_link_10caf_61 {
    background: transparent;
    color: #007eff;
}

._button_link_10caf_61:hover {
    color: #3398ff;
}

._button_link_10caf_61:active {
    color: #66b2ff;
}

._button_link_10caf_61 ._svg_10caf_45 * {
    fill: #007eff;
}

._button_link_10caf_61 ._svg_10caf_45 *:hover {
    fill: #3398ff;
}

._button_link_10caf_61 ._svg_10caf_45 *:active {
    fill: #66b2ff;
}

._button_large_10caf_80 {
    padding: 12px 16px;
}

._button_large_10caf_80 * {
    font-size: 16px;
}

._button_medium_10caf_86 {
    padding: 8px 16px;
}

._button_medium_10caf_86 * {
    font-size: 16px;
}

._button_small_10caf_92 {
    padding: 4px;
    min-height: 24px;
}

._button_small_10caf_92 * {
    font-size: 12px;
}

._flexBox_9xdww_14 {
    flex-flow: unset;
}

._gap_extraTiny_9xdww_18 {
    gap: 2px;
}

._gap_tiny_9xdww_22 {
    gap: 4px;
}

._gap_extraSmall_9xdww_26 {
    gap: 6px;
}

._gap_small_9xdww_30 {
    gap: 8px;
}

._gap_medium_9xdww_34 {
    gap: 16px;
}

._gap_normal_9xdww_38 {
    gap: 24px;
}

._gap_large_9xdww_42 {
    gap: 32px;
}

._gap_xLarge_9xdww_46 {
    gap: 48px;
}

._gap_xxLarge_9xdww_50 {
    gap: 56px;
}

._gap_extraLarge_9xdww_54 {
    gap: 64px;
}

._column_9xdww_58 {
    flex-direction: column !important;
}

._flexWrap_9xdww_62 {
    flex-wrap: wrap;
}

._popover_12uvb_1 {
    position: fixed;
    padding: 8px 10px;
    z-index: 2147483647;
    background: #31363de6;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
}

._buttons_12uvb_11 {
    position: fixed;
    top: 0;
    right: 0;
    padding: 8px;
    z-index: 2147483647;
}

._popup_hcu7e_1 {
    position: fixed;
    z-index: 2147483649;
    background: #ffffffe6;
    border-radius: 4px;
    color: #000;
    font-size: 14px;
    line-height: 1.286;
    width: 350px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 7px -5px #000;
}

._popup_hcu7e_1:before {
    border-color: rgba(255, 255, 255, 0.9) transparent;
    border-width: 0 7px 7px 7px;
    left: 7px;
    top: -7px;
    border-style: solid;
    content: ".";
    display: block;
    height: 0;
    position: absolute;
    text-indent: -30000px;
    width: 0;
}

._color_hcu7e_27 {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

._styleContainer_hcu7e_34 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

._extraTiny_dg7lc_14 {
    padding: 2px;
}

._extraTinyVR_dg7lc_18 {
    padding-top: 2px;
    padding-bottom: 2px;
}

._extraTinyHR_dg7lc_23 {
    padding-left: 2px;
    padding-right: 2px;
}

._extraTinyTop_dg7lc_28 {
    padding-top: 2px;
}

._extraTinyRight_dg7lc_32 {
    padding-right: 2px;
}

._extraTinyBottom_dg7lc_36 {
    padding-bottom: 2px;
}

._extraTinyLeft_dg7lc_40 {
    padding-left: 2px;
}

._tiny_dg7lc_44 {
    padding: 4px;
}

._tinyVR_dg7lc_48 {
    padding-top: 4px;
    padding-bottom: 4px;
}

._tinyHR_dg7lc_53 {
    padding-left: 4px;
    padding-right: 4px;
}

._tinyTop_dg7lc_58 {
    padding-top: 4px;
}

._tinyRight_dg7lc_62 {
    padding-right: 4px;
}

._tinyBottom_dg7lc_66 {
    padding-bottom: 4px;
}

._tinyLeft_dg7lc_70 {
    padding-left: 4px;
}

._extraSmall_dg7lc_74 {
    padding: 6px;
}

._extraSmallVR_dg7lc_78 {
    padding-top: 6px;
    padding-bottom: 6px;
}

._extraSmallHR_dg7lc_83 {
    padding-left: 6px;
    padding-right: 6px;
}

._extraSmallTop_dg7lc_88 {
    padding-top: 6px;
}

._extraSmallRight_dg7lc_92 {
    padding-right: 6px;
}

._extraSmallBottom_dg7lc_96 {
    padding-bottom: 6px;
}

._extraSmallLeft_dg7lc_100 {
    padding-left: 6px;
}

._small_dg7lc_104 {
    padding: 8px;
}

._smallVR_dg7lc_108 {
    padding-top: 8px;
    padding-bottom: 8px;
}

._smallHR_dg7lc_113 {
    padding-left: 8px;
    padding-right: 8px;
}

._smallTop_dg7lc_118 {
    padding-top: 8px;
}

._smallRight_dg7lc_122 {
    padding-right: 8px;
}

._smallBottom_dg7lc_126 {
    padding-bottom: 8px;
}

._smallLeft_dg7lc_130 {
    padding-left: 8px;
}

._medium_dg7lc_134 {
    padding: 16px;
}

._mediumVR_dg7lc_138 {
    padding-top: 16px;
    padding-bottom: 16px;
}

._mediumHR_dg7lc_143 {
    padding-left: 16px;
    padding-right: 16px;
}

._mediumTop_dg7lc_148 {
    padding-top: 16px;
}

._mediumRight_dg7lc_152 {
    padding-right: 16px;
}

._mediumBottom_dg7lc_156 {
    padding-bottom: 16px;
}

._mediumLeft_dg7lc_160 {
    padding-left: 16px;
}

._normal_dg7lc_164 {
    padding: 24px;
}

._normalVR_dg7lc_168 {
    padding-top: 24px;
    padding-bottom: 24px;
}

._normalHR_dg7lc_173 {
    padding-left: 24px;
    padding-right: 24px;
}

._normalTop_dg7lc_178 {
    padding-top: 24px;
}

._normalRight_dg7lc_182 {
    padding-right: 24px;
}

._normalBottom_dg7lc_186 {
    padding-bottom: 24px;
}

._normalLeft_dg7lc_190 {
    padding-left: 24px;
}

._large_dg7lc_194 {
    padding: 32px;
}

._largeVR_dg7lc_198 {
    padding-top: 32px;
    padding-bottom: 32px;
}

._largeHR_dg7lc_203 {
    padding-left: 32px;
    padding-right: 32px;
}

._largeTop_dg7lc_208 {
    padding-top: 32px;
}

._largeRight_dg7lc_212 {
    padding-right: 32px;
}

._largeBottom_dg7lc_216 {
    padding-bottom: 32px;
}

._largeLeft_dg7lc_220 {
    padding-left: 32px;
}

._xLarge_dg7lc_224 {
    padding: 48px;
}

._xLargeVR_dg7lc_228 {
    padding-top: 48px;
    padding-bottom: 48px;
}

._xLargeHR_dg7lc_233 {
    padding-left: 48px;
    padding-right: 48px;
}

._xLargeTop_dg7lc_238 {
    padding-top: 48px;
}

._xLargeRight_dg7lc_242 {
    padding-right: 48px;
}

._xLargeBottom_dg7lc_246 {
    padding-bottom: 48px;
}

._xLargeLeft_dg7lc_250 {
    padding-left: 48px;
}

._xxLarge_dg7lc_254 {
    padding: 56px;
}

._xxLargeVR_dg7lc_258 {
    padding-top: 56px;
    padding-bottom: 56px;
}

._xxLargeHR_dg7lc_263 {
    padding-left: 56px;
    padding-right: 56px;
}

._xxLargeTop_dg7lc_268 {
    padding-top: 56px;
}

._xxLargeRight_dg7lc_272 {
    padding-right: 56px;
}

._xxLargeBottom_dg7lc_276 {
    padding-bottom: 56px;
}

._xxLargeLeft_dg7lc_280 {
    padding-left: 56px;
}

._extraLarge_dg7lc_284 {
    padding: 64px;
}

._extraLargeVR_dg7lc_288 {
    padding-top: 64px;
    padding-bottom: 64px;
}

._extraLargeHR_dg7lc_293 {
    padding-left: 64px;
    padding-right: 64px;
}

._extraLargeTop_dg7lc_298 {
    padding-top: 64px;
}

._extraLargeRight_dg7lc_302 {
    padding-right: 64px;
}

._extraLargeBottom_dg7lc_306 {
    padding-bottom: 64px;
}

._extraLargeLeft_dg7lc_310 {
    padding-left: 64px;
}

._size_tiny_ldink_23,
._size_tiny_ldink_23 * {
    font-size: 12px;
}

._size_small_ldink_27,
._size_small_ldink_27 * {
    font-size: 16px;
}

._size_medium_ldink_31,
._size_medium_ldink_31 * {
    font-size: 18px;
}

._size_large_ldink_35,
._size_large_ldink_35 * {
    font-size: 32px;
}

._weight_thin_ldink_39,
._weight_thin_ldink_39 * {
    font-weight: 100;
}

._weight_extraLight_ldink_43,
._weight_extraLight_ldink_43 * {
    font-weight: 200;
}

._weight_light_ldink_47,
._weight_light_ldink_47 * {
    font-weight: 300;
}

._weight_normal_ldink_51,
._weight_normal_ldink_51 * {
    font-weight: 400;
}

._weight_medium_ldink_55,
._weight_medium_ldink_55 * {
    font-weight: 500;
}

._weight_semiBold_ldink_59,
._weight_semiBold_ldink_59 * {
    font-weight: 600;
}

._weight_bold_ldink_63,
._weight_bold_ldink_63 * {
    font-weight: 700;
}

._weight_extraBold_ldink_67,
._weight_extraBold_ldink_67 * {
    font-weight: 800;
}

._lineHeight_ldink_71 {
    line-height: 100%;
}

._secondary_ldink_75 {
    color: #8e8e8e;
}

._modal_ib2ay_25 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2147483649;
}

._modal_ib2ay_25 ._background_ib2ay_36 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    opacity: 0;
    overflow: auto;
    background-color: color-mix(in srgb, #000000 60%, white 0%);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

._modal_ib2ay_25 ._window_ib2ay_48 {
    min-width: 280px;
    max-width: 560px;
    background: #fff;
    border-radius: 6px;
    padding: 16px;
    z-index: 1;
    position: relative;
    opacity: 0;
    transform: scale(0.01);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 2px 6px 2px #00000026,
        0 1px 2px #0000004d;
    overflow: auto;
}

._modal_ib2ay_25 ._window_ib2ay_48 ._loading_ib2ay_64 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000000b3;
}

._modal_ib2ay_25 ._window_ib2ay_48 ._loading_ib2ay_64 img {
    width: 100px;
}

._modal_visible_ib2ay_76 ._background_ib2ay_36 {
    opacity: 1;
}

._modal_visible_ib2ay_76 ._window_ib2ay_48 {
    opacity: 1;
    transform: scale(1);
}

._modal_hidden_ib2ay_83 ._background_ib2ay_36 {
    opacity: 0;
}

._modal_hidden_ib2ay_83 ._window_ib2ay_48 {
    opacity: 0;
    transform: scale(0.01);
}

._modal_hiddenDone_ib2ay_90 ._background_ib2ay_36 {
    opacity: 0;
}

._modal_hiddenDone_ib2ay_90 ._window_ib2ay_48 {
    opacity: 0;
    transform: scale(0.01);
}

._color_13dyv_1 {
    padding: 0 8px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 0 7px -5px #000;
    font-weight: 800;
    flex-shrink: 0;
}

/* Inline styles extracted from الرعاية الصحية المنزلية.htm */
.inline-style-1 {
    width: 100%
}

.inline-style-2 {
    touch-action: pan-y
}

.inline-style-3 {
    margin-right: 20px;
}

.inline-style-4 {
    max-height: 90px;
    width: auto;
}

.inline-style-5 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 50px;
    margin-right: 30px;
}

.inline-style-6 {
    display: block;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2px;
}

.inline-style-7 {
    display: block;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}

.inline-style-8 {
    margin-left: 20px;
}

.inline-style-9 {
    width: 728px;
    height: 90px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #e94560;
    position: relative;
    overflow: hidden;
}

.inline-style-10 {
    position: absolute;
    top: 5px;
    right: 10px;
    background: #e94560;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10px;
}

.inline-style-11 {
    font-size: 16px;
    letter-spacing: 1px
}

.inline-style-12 {
    position: sticky;
    top: 75px;
    z-index: 1000;
    display: none;
}

.inline-style-13 {
    width: 160px;
    height: 600px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #e94560;
    position: relative;
}

.inline-style-14 {
    /* position: absolute;
  top: 10px; */
    background: #e94560;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 9px;
    writing-mode: horizontal-tb;
}

.inline-style-15 {
    font-size: 14px
}

.inline-style-16 {
    display: none
}

.inline-style-17 {
    width: 120px;
    height: 86;
}

.inline-style-18 {
    width: 120px;
    height: 86
}

.inline-style-19 {
    margin-bottom: 20px
}

.inline-style-20 {
    /* width: 300px; */
    height: 250px;
    background: linear-gradient(135deg,
            #1a1a2e 0%,
            #16213e 50%,
            #0f3460 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    border: 2px solid #e94560;
    position: relative;
    overflow: hidden;
}

.inline-style-21 {
    position: absolute;
    top: 8px;
    right: 10px;
    background: #e94560;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
}

.inline-style-22 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #e94560;
}

.inline-style-23 {
    font-size: 12px;
    color: #aaa;
    margin-top: 5px
}

.inline-style-24 {
    margin-top: 20px
}

.inline-style-25 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 15px;
}

.inline-style-26 {
    display: block
}

.inline-style-27 {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.inline-style-28 {
    width: 100%;
    height: 80px;
    object-fit: cover
}

.inline-style-29 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    font-size: 11px;
}

.inline-style-30 {
    margin: 20px 0
}

.inline-style-31 {
    /* width: 300px; */
    height: 320px;
    background: linear-gradient(135deg,
            #1a1a2e 0%,
            #16213e 50%,
            #0f3460 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    border: 2px solid #e94560;
    position: relative;
    overflow: hidden;
}

.inline-style-32 {
    font-size: 45px;
    margin-bottom: 15px;
    color: #e94560;
}

.inline-style-33 {
    padding: 15px
}

.inline-style-34 {
    border-bottom: 1px solid #eee;
    padding: 10px 0
}

.inline-style-35 {
    color: black;
    text-decoration: none;
    font-size: 14px
}

.inline-style-36 {
    display: block;
    color: #888;
    font-size: 12px;
    margin-top: 5px;
}

.inline-style-37 {
    padding: 10px 0
}

.inline-style-38 {
    padding: 20px
}

.inline-style-39 {
    font-weight: bold;
    margin-bottom: 15px;
    color: black
}

.inline-style-40 {
    display: block;
    color: black;
    margin: 10px 0;
    cursor: pointer;
}

.inline-style-41 {
    margin-left: 10px
}

.inline-style-42 {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.inline-style-43 {
    text-align: center;
    margin: 30px auto;
    max-width: 728px
}

.inline-style-44 {
    width: 100%;
    max-width: 728px;
    height: 90px;
    background: linear-gradient(135deg,
            #1a1a2e 0%,
            #16213e 50%,
            #0f3460 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border: 2px solid #e94560;
    position: relative;
    overflow: hidden;
}

.inline-style-45 {
    position: absolute;
    top: 5px;
    right: 15px;
    background: #e94560;
    padding: 2px 10px;
    border-radius: 3px;
    font-size: 10px;
}

.inline-style-46 {
    font-size: 28px;
    margin-left: 15px;
    color: #e94560
}

.inline-style-47 {
    font-size: 15px
}

.inline-style-48 {
    grid-row: span 2
}

.inline-style-49 {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.inline-style-50 {
    margin-top: 10px;
    font-size: 18px
}

.inline-style-51 {
    color: black;
    text-decoration: none
}

.inline-style-52 {
    color: #888;
    font-size: 12px
}

.inline-style-53 {
    margin-top: 8px;
    font-size: 14px
}

.inline-style-54 {
    color: #888;
    font-size: 11px
}

.inline-style-55 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
}

.inline-style-56 {
    display: flex;
    gap: 15px;
    align-items: center
}

.inline-style-57 {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.inline-style-58 {
    font-size: 14px;
    margin: 0
}

.inline-style-59 {
    text-align: center;
    margin: 30px 0
}

.inline-style-60 {
    width: 728px;
    height: 90px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.inline-style-61 {
    color-scheme: initial;
    forced-color-adjust: initial;
    mask: initial;
    math-depth: initial;
    position: relative;
    position-anchor: initial;
    text-size-adjust: initial;
    appearance: initial;
    color: initial;
    font: initial;
    font-palette: initial;
    font-synthesis: initial;
    position-area: initial;
    text-orientation: initial;
    text-rendering: initial;
    text-spacing-trim: initial;
    -webkit-font-smoothing: initial;
    -webkit-locale: initial;
    -webkit-text-orientation: initial;
    -webkit-writing-mode: initial;
    writing-mode: initial;
    zoom: initial;
    accent-color: initial;
    place-content: initial;
    place-items: initial;
    place-self: initial;
    alignment-baseline: initial;
    anchor-name: initial;
    anchor-scope: initial;
    animation-composition: initial;
    animation: initial;
    app-region: initial;
    aspect-ratio: initial;
    backdrop-filter: initial;
    backface-visibility: initial;
    background: initial;
    background-blend-mode: initial;
    baseline-shift: initial;
    baseline-source: initial;
    block-size: initial;
    border-block: initial;
    border: initial;
    border-radius: initial;
    border-collapse: initial;
    border-end-end-radius: initial;
    border-end-start-radius: initial;
    border-inline: initial;
    border-start-end-radius: initial;
    border-start-start-radius: initial;
    inset: initial;
    box-decoration-break: initial;
    box-shadow: initial;
    box-sizing: initial;
    break-after: initial;
    break-before: initial;
    break-inside: initial;
    buffered-rendering: initial;
    caption-side: initial;
    caret-animation: initial;
    caret-color: initial;
    caret-shape: initial;
    clear: initial;
    clip: initial;
    clip-path: initial;
    clip-rule: initial;
    color-interpolation: initial;
    color-interpolation-filters: initial;
    color-rendering: initial;
    columns: initial;
    column-fill: initial;
    gap: initial;
    column-rule: initial;
    column-span: initial;
    contain: initial;
    contain-intrinsic-block-size: initial;
    contain-intrinsic-size: initial;
    contain-intrinsic-inline-size: initial;
    container: initial;
    content: initial;
    content-visibility: initial;
    corner-shape: initial;
    corner-block-end-shape: initial;
    corner-block-start-shape: initial;
    counter-increment: initial;
    counter-reset: initial;
    counter-set: initial;
    cursor: initial;
    cx: initial;
    cy: initial;
    d: initial;
    display: initial;
    dominant-baseline: initial;
    dynamic-range-limit: initial;
    empty-cells: initial;
    field-sizing: initial;
    fill: initial;
    fill-opacity: initial;
    fill-rule: initial;
    filter: initial;
    flex: initial;
    flex-flow: initial;
    float: initial;
    flood-color: initial;
    flood-opacity: initial;
    grid: initial;
    grid-area: initial;
    height: initial;
    hyphenate-character: initial;
    hyphenate-limit-chars: initial;
    hyphens: initial;
    image-orientation: initial;
    image-rendering: initial;
    initial-letter: initial;
    inline-size: initial;
    inset-block: initial;
    inset-inline: initial;
    interactivity: initial;
    interest-delay: initial;
    interpolate-size: initial;
    isolation: initial;
    letter-spacing: initial;
    lighting-color: initial;
    line-break: initial;
    list-style: initial;
    margin-block: initial;
    margin: initial;
    margin-inline: initial;
    marker: initial;
    mask-type: initial;
    math-shift: initial;
    math-style: initial;
    max-block-size: initial;
    max-height: initial;
    max-inline-size: initial;
    max-width: initial;
    min-block-size: initial;
    min-height: initial;
    min-inline-size: initial;
    min-width: initial;
    mix-blend-mode: initial;
    object-fit: initial;
    object-position: initial;
    object-view-box: initial;
    offset: initial;
    opacity: initial;
    order: initial;
    orphans: initial;
    outline: initial;
    outline-offset: initial;
    overflow-anchor: initial;
    overflow-block: initial;
    overflow-clip-margin: initial;
    overflow-inline: initial;
    overflow-wrap: initial;
    overflow: initial;
    overlay: initial;
    overscroll-behavior-block: initial;
    overscroll-behavior-inline: initial;
    overscroll-behavior: initial;
    padding-block: initial;
    padding: initial;
    padding-inline: initial;
    page: initial;
    page-orientation: initial;
    paint-order: initial;
    perspective: initial;
    perspective-origin: initial;
    pointer-events: initial;
    position-try: initial;
    position-visibility: initial;
    print-color-adjust: initial;
    quotes: initial;
    r: initial;
    reading-flow: initial;
    reading-order: initial;
    resize: initial;
    rotate: initial;
    ruby-align: initial;
    ruby-position: initial;
    rx: initial;
    ry: initial;
    scale: initial;
    scroll-behavior: initial;
    scroll-initial-target: initial;
    scroll-margin-block: initial;
    scroll-margin: initial;
    scroll-margin-inline: initial;
    scroll-marker-group: initial;
    scroll-padding-block: initial;
    scroll-padding: initial;
    scroll-padding-inline: initial;
    scroll-snap-align: initial;
    scroll-snap-stop: initial;
    scroll-snap-type: initial;
    scroll-target-group: initial;
    scroll-timeline: initial;
    scrollbar-color: initial;
    scrollbar-gutter: initial;
    scrollbar-width: initial;
    shape-image-threshold: initial;
    shape-margin: initial;
    shape-outside: initial;
    shape-rendering: initial;
    size: initial;
    speak: initial;
    stop-color: initial;
    stop-opacity: initial;
    stroke: initial;
    stroke-dasharray: initial;
    stroke-dashoffset: initial;
    stroke-linecap: initial;
    stroke-linejoin: initial;
    stroke-miterlimit: initial;
    stroke-opacity: initial;
    stroke-width: initial;
    tab-size: initial;
    table-layout: initial;
    text-align: initial;
    text-align-last: initial;
    text-anchor: initial;
    text-autospace: initial;
    text-box: initial;
    text-combine-upright: initial;
    text-decoration: initial;
    text-decoration-skip-ink: initial;
    text-emphasis: initial;
    text-emphasis-position: initial;
    text-indent: initial;
    text-overflow: initial;
    text-shadow: initial;
    text-transform: initial;
    text-underline-offset: initial;
    text-underline-position: initial;
    text-wrap: initial;
    timeline-scope: initial;
    touch-action: initial;
    transform: initial;
    transform-box: initial;
    transform-origin: initial;
    transform-style: initial;
    transition: initial;
    translate: initial;
    user-select: initial;
    vector-effect: initial;
    vertical-align: initial;
    view-timeline: initial;
    view-transition-class: initial;
    view-transition-group: initial;
    view-transition-name: initial;
    visibility: initial;
    border-spacing: initial;
    -webkit-box-align: initial;
    -webkit-box-decoration-break: initial;
    -webkit-box-direction: initial;
    -webkit-box-flex: initial;
    -webkit-box-ordinal-group: initial;
    -webkit-box-orient: initial;
    -webkit-box-pack: initial;
    -webkit-box-reflect: initial;
    -webkit-line-break: initial;
    -webkit-line-clamp: initial;
    -webkit-mask-box-image: initial;
    -webkit-rtl-ordering: initial;
    -webkit-ruby-position: initial;
    -webkit-tap-highlight-color: initial;
    -webkit-text-combine: initial;
    -webkit-text-decorations-in-effect: initial;
    -webkit-text-fill-color: initial;
    -webkit-text-security: initial;
    -webkit-text-stroke: initial;
    -webkit-user-drag: initial;
    white-space-collapse: initial;
    widows: initial;
    width: initial;
    will-change: initial;
    word-break: initial;
    word-spacing: initial;
    x: initial;
    y: initial;
    z-index: 2147483647;
}

.inline-style-62 {
    all: initial
}


/* User-defined spacing for side banners */
/* .container {
    padding-left: 120px !important;
    padding-right: 124px !important;
    max-width: 1400px !important;
    transition: padding 0.3s ease;
} */

.side-banner-sticky {
    position: sticky;
    z-index: 1000;
    top: 80px;
    margin-top: 5px;
    width: 160px;
    display: block;
    transition: all 0.3s ease;
}

#rightSideBanner {
    right: 10px;
}

#leftSideBanner {
    left: 10px;
}

@media (max-width: 1200px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .side-banner-sticky {
        display: none !important;
    }
}

.header-ad { margin-top: 5px !important;}
.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    direction: rtl;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background: rgba(233, 69, 96, 0.15);
}

.search-suggestion-item img {
    width: 52px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

.search-suggestion-item .sug-img-placeholder {
    width: 52px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.search-suggestion-item span {
    font-size: 13px;
    color: #e0e0e0;
    font-weight: 500;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-suggestions-empty {
    padding: 14px;
    color: #888;
    font-size: 13px;
    text-align: center;
}

.footer {
    background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
    color: #e0e0e0;
    padding: 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    direction: rtl;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            var(--secondary-color) 100%);
    z-index: 3;
}

.footer::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 0, 31, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.footer .footer-top-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg-primary);
    clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 100%);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Newsletter Strip */
.footer .newsletter-strip {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8a0018 100%);
    padding: 30px 40px;
    border-radius: 16px;
    margin: 40px 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    box-shadow: 0 10px 40px rgba(184, 0, 31, 0.3);
    position: relative;
    overflow: hidden;
}

.footer .newsletter-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.footer .newsletter-content {
    flex: 1;
    /* min-width: 280px; */
    position: relative;
    z-index: 1;
}

.footer .newsletter-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    max-width: 100%;
}

.footer .newsletter-content h3 i {
    color: var(--accent-gold);
    font-size: 1.4rem;
}

.footer .newsletter-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer .newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;

    position: relative;
    z-index: 1;
}

.footer .newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid transparent;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a2e;
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.footer .newsletter-form input::placeholder {
    color: #888;
}

.footer .newsletter-form input:focus {
    border-color: var(--accent-gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
}

.footer .newsletter-form button {
    padding: 14px 28px;
    background: var(--accent-gold);
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-family: inherit;
}

.footer .newsletter-form button:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Main Footer Content */
.footer .content-footer {
    display: grid;
    grid-template-columns: 1.4fr 2.4fr 1.2fr;
    gap: 50px;
    padding: 0 40px 40px;
    position: relative;
    z-index: 1;
}

/* Brand Section */
.footer .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .footer-brand .brand-logo {
    display: inline-block;
    background: #fff;
    padding: 14px 22px;
    border-radius: 14px;
    width: fit-content;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.footer .footer-brand .brand-logo:hover {
    transform: translateY(-3px);
}

.footer .footer-brand .brand-logo img {
    width: 170px;
    height: auto;
    display: block;
}

.footer .footer-brand .brand-desc {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
}

.footer .footer-brand .brand-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.footer .footer-brand .brand-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer .footer-brand .brand-contact .contact-item:hover {
    color: var(--accent-gold);
}

.footer .footer-brand .brand-contact .contact-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--primary-light);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer .footer-brand .brand-contact .contact-item:hover i {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Social Media */
.footer .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.footer .footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer .footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(184, 0, 31, 0.4);
}

.footer .footer-social a.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.footer .footer-social a.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.footer .footer-social a.twitter:hover {
    background: #000;
    border-color: #000;
}

.footer .footer-social a.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.footer .footer-social a.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
}

.footer .footer-social a.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.footer .footer-social a.rss:hover {
    background: #f26522;
    border-color: #f26522;
}

/* Links Section */
.footer .content-footer .links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .content-footer .links h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .content-footer .links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 3px;
}

.footer .content-footer .links h3 i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.footer .content-footer .links .content-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 16px;
}

.footer .content-footer .links .content-links .link {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer .content-footer .links .content-links .link a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.25s ease;
    position: relative;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    text-decoration: none;
}

.footer .content-footer .links .content-links .link a i {
    color: var(--primary-light);
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.3s ease;
}

.footer .content-footer .links .content-links .link a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    padding-right: 16px;
}

.footer .content-footer .links .content-links .link a:hover i {
    opacity: 1;
    transform: translateX(0);
    color: var(--accent-gold);
}

/* Pages Column */
.footer .pages-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .pages-column h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .pages-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 3px;
}

.footer .pages-column h3 i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.footer .pages-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer .pages-list a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.25s ease;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .pages-list a i {
    color: var(--primary-light);
    font-size: 0.8rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer .pages-list a:hover {
    color: #fff;
    background: rgba(184, 0, 31, 0.15);
    border-color: rgba(184, 0, 31, 0.3);
    padding-right: 16px;
    transform: translateX(-3px);
}

.footer .pages-list a:hover i {
    color: var(--accent-gold);
    transform: scale(1.2);
}

/* Apps Section */
.footer .apps-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .apps-section h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.footer .apps-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer .app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .app-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer .app-btn i {
    font-size: 1.3rem;
    color: var(--accent-gold);
}

.footer .app-btn .app-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer .app-btn .app-text small {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer .app-btn .app-text span {
    font-size: 0.85rem;
    font-weight: 700;
}

/* Footer Bottom */
.footer .copy-right {
    background: rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer .copy-right .copyright-text {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer .copy-right .copyright-text i {
    color: var(--primary-light);
}

.footer .copy-right .copyright-text a {
    color: var(--accent-gold);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .copy-right .copyright-text a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer .copy-right .footer-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer .copy-right .footer-meta a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer .copy-right .footer-meta a:hover {
    color: var(--accent-gold);
}

.footer .copy-right .footer-meta a i {
    font-size: 0.8rem;
}

/* Scroll to top button */
.footer .scroll-top {
    position: fixed;
    bottom: 5%;
    left: 5%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(184, 0, 31, 0.5), 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 9999;
    text-decoration: none;
    border: 3px solid #1a1a2e;
    overflow: visible;
}

.footer .scroll-top::before {
    content: 'العودة للأعلى';
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: #1a1a2e;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .scroll-top::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    border: 6px solid transparent;
    border-bottom-color: #1a1a2e;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.footer .scroll-top:hover {
    transform: translateX(-50%) translateY(-3px);
    background: linear-gradient(135deg, #d4233c, var(--primary-color));
    box-shadow: 0 12px 32px rgba(184, 0, 31, 0.6), 0 6px 12px rgba(0, 0, 0, 0.3);
}

.footer .scroll-top:hover::before,
.footer .scroll-top:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.footer .scroll-top i {
    animation: bounceUp 2s infinite;
}

@keyframes bounceUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .footer .content-footer {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer .pages-column {
        grid-column: 1 / -1;
    }

    .footer .content-footer .links .content-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================
   📱 MOBILE FOOTER (768px)
   ================================ */
@media (max-width: 768px) {
    .footer {
        margin-top: 40px;
    }

    .footer::after {
        top: -120px;
        right: -200px;
        width: 350px;
        height: 350px;
    }

    .footer .scroll-top {
        position: fixed;
        bottom: 20px;
        left: 20px;
        top: auto;
        right: auto;
        transform: none;
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
        border: none;
        background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
        box-shadow: 0 8px 24px rgba(184, 0, 31, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .footer .scroll-top::before {
        display: none;
    }

    .footer .scroll-top:hover {
        transform: translateY(-4px);
        background: linear-gradient(135deg, #d4233c, var(--primary-color));
        box-shadow: 0 12px 32px rgba(184, 0, 31, 0.6), 0 6px 16px rgba(0, 0, 0, 0.4);
    }

    .footer .scroll-top::after {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
        opacity: 0.4;
        z-index: -1;
        animation: pulseRing 2s infinite;
        border: none;
    }

    @keyframes pulseRing {
        0% {
            transform: scale(1);
            opacity: 0.4;
        }

        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }

    /* Newsletter Strip - Mobile */
    .footer .newsletter-strip {
        flex-direction: column;
        text-align: center;
        padding: 28px 18px;
        margin: 30px 14px 40px;
        border-radius: 20px;
        gap: 18px;
        position: relative;
        overflow: hidden;
        max-width: calc(100% - 28px);
    }

    .footer .newsletter-strip::after {
        content: '';
        position: absolute;
        bottom: -60px;
        right: -60px;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }

    .footer .newsletter-content {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .footer .newsletter-content .news-badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: rgba(255, 215, 0, 0.2);
        color: var(--accent-gold);
        padding: 4px 12px;
        border-radius: 50px;
        font-size: 0.7rem;
        font-weight: 700;
        margin-bottom: 12px;
        border: 1px solid rgba(255, 215, 0, 0.3);
        white-space: nowrap;
    }

    .footer .newsletter-content .news-badge i {
        font-size: 0.65rem;
    }

    .footer .newsletter-content h3 {
        justify-content: center;
        font-size: 1.15rem;
        gap: 8px;
        margin-bottom: 8px;
        flex-wrap: wrap;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        text-align: center;
    }

    .footer .newsletter-content h3 i {
        font-size: 1.1rem;
        color: var(--accent-gold);
        flex-shrink: 0;
    }

    .footer .newsletter-content h3 span {
        display: inline;
    }

    .footer .newsletter-content p {
        font-size: 0.85rem;
        line-height: 1.7;
        opacity: 0.9;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .footer .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 10px;
        position: relative;
        z-index: 1;
    }

    .footer .newsletter-form .input-wrapper {
        position: relative;
        width: 100%;
    }

    .footer .newsletter-form .input-wrapper i {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
        font-size: 0.95rem;
        pointer-events: none;
    }

    .footer .newsletter-form input {
        width: 100%;
        padding: 14px 42px 14px 18px;
        border: 2px solid transparent;
        border-radius: 14px;
        background: #fff;
        color: #1a1a2e;
        font-size: 0.9rem;
        font-weight: 500;
        outline: none;
        transition: all 0.3s ease;
        font-family: inherit;
        text-align: right;
    }

    .footer .newsletter-form input::placeholder {
        color: #888;
        font-weight: 400;
    }

    .footer .newsletter-form input:focus {
        border-color: var(--accent-gold);
        box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.25);
    }

    .footer .newsletter-form button {
        padding: 14px 22px;
        font-size: 0.95rem;
        justify-content: center;
        background: var(--accent-gold);
        color: #1a1a2e;
        border: none;
        border-radius: 14px;
        font-weight: 800;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: inherit;
        box-shadow: 0 4px 14px rgba(255, 215, 0, 0.3);
    }

    .footer .newsletter-form button:hover {
        background: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    }

    .footer .newsletter-form button:active {
        transform: translateY(0);
    }

    /* Main Content - Card Layout */
    .footer .content-footer {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 14px 30px;
    }

    /* Brand Card */
    .footer .footer-brand {
        align-items: center;
        text-align: center;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 22px 18px;
        gap: 16px;
    }

    .footer .footer-brand .brand-logo {
        margin: 0 auto;
        padding: 10px 18px;
        border-radius: 12px;
    }

    .footer .footer-brand .brand-logo img {
        width: 150px;
    }

    .footer .footer-brand .brand-desc {
        font-size: 0.88rem;
        line-height: 1.85;
        color: rgba(255, 255, 255, 0.7);
    }

    .footer .footer-brand .brand-contact {
        gap: 10px;
        width: 100%;
        max-width: 320px;
    }

    .footer .footer-brand .brand-contact .contact-item {
        justify-content: center;
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .footer .footer-brand .brand-contact .contact-item i {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    /* Social Icons - Mobile */
    .footer .footer-social {
        justify-content: center;
        gap: 8px;
        margin-top: 4px;
    }

    .footer .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    /* Categories Card */
    .footer .content-footer .links {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 22px 18px 18px;
        gap: 16px;
    }

    .footer .content-footer .links h3,
    .footer .pages-column h3 {
        justify-content: center;
        font-size: 1.1rem;
        padding-bottom: 12px;
        gap: 8px;
    }

    .footer .content-footer .links h3 i,
    .footer .pages-column h3 i {
        font-size: 1rem;
    }

    .footer .content-footer .links h3::after,
    .footer .pages-column h3::after {
        right: 50%;
        transform: translateX(50%);
        width: 50px;
        height: 3px;
    }

    .footer .content-footer .links .content-links {
        grid-template-columns: repeat(2, 1fr);
        text-align: right;
        gap: 6px 8px;
    }

    .footer .content-footer .links .content-links .link {
        gap: 6px;
    }

    .footer .content-footer .links .content-links .link a {
        font-size: 0.82rem;
        padding: 10px 12px;
        gap: 8px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 10px;
        transition: all 0.25s ease;
    }

    .footer .content-footer .links .content-links .link a i {
        font-size: 0.65rem;
        opacity: 1;
        transform: none;
        color: var(--primary-light);
        flex-shrink: 0;
    }

    .footer .content-footer .links .content-links .link a:hover {
        color: #fff;
        background: rgba(184, 0, 31, 0.2);
        border-color: rgba(184, 0, 31, 0.4);
        padding-right: 12px;
        transform: translateX(-2px);
    }

    .footer .content-footer .links .content-links .link a:hover i {
        color: var(--accent-gold);
    }

    /* Pages Card */
    .footer .pages-column {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 22px 18px;
        gap: 16px;
    }

    .footer .pages-list {
        gap: 6px;
    }

    .footer .pages-list a {
        font-size: 0.88rem;
        padding: 11px 14px;
        gap: 10px;
    }

    .footer .pages-list a i {
        font-size: 0.85rem;
        width: 18px;
    }

    /* Apps Card */
    .footer .apps-section {
        margin-top: 6px;
        padding-top: 16px;
        gap: 10px;
    }

    .footer .apps-section h4 {
        font-size: 0.9rem;
        text-align: center;
    }

    .footer .apps-buttons {
        flex-direction: row;
        gap: 8px;
    }

    .footer .app-btn {
        flex: 1;
        padding: 10px 12px;
        gap: 8px;
        justify-content: center;
    }

    .footer .app-btn i {
        font-size: 1.2rem;
    }

    .footer .app-btn .app-text small {
        font-size: 0.6rem;
    }

    .footer .app-btn .app-text span {
        font-size: 0.78rem;
    }

    /* Copyright - Mobile */
    .footer .copy-right {
        flex-direction: column;
        padding: 18px 16px;
        text-align: center;
        gap: 12px;
    }

    .footer .copy-right .copyright-text {
        font-size: 0.82rem;
        gap: 6px;
    }

    .footer .copy-right .footer-meta {
        justify-content: center;
        gap: 14px;
    }

    .footer .copy-right .footer-meta a {
        font-size: 0.78rem;
        gap: 5px;
    }
}

/* ================================
   📱 SMALL MOBILE (480px)
   ================================ */
@media (max-width: 480px) {
    .footer {
        margin-top: 30px;
    }

    .footer::after {
        top: -100px;
        right: -180px;
        width: 300px;
        height: 300px;
    }

    .footer .newsletter-strip {
        padding: 22px 14px;
        margin: 24px 12px 32px;
        border-radius: 16px;
    }

    .footer .newsletter-content h3 {
        font-size: 0.98rem;
        gap: 6px;
        line-height: 1.4;
    }

    .footer .newsletter-content h3 i {
        font-size: 0.9rem;
    }

    .footer .newsletter-content p {
        font-size: 0.78rem;
        line-height: 1.6;
    }

    .footer .newsletter-content .news-badge {
        font-size: 0.62rem;
        padding: 3px 9px;
        margin-bottom: 10px;
    }

    .footer .newsletter-form input {
        padding: 12px 38px 12px 14px;
        font-size: 0.85rem;
    }

    .footer .newsletter-form button {
        padding: 12px 20px;
        font-size: 0.88rem;
        border-radius: 12px;
    }

    .footer .scroll-top {
        width: 48px;
        height: 48px;
        font-size: 1rem;
        bottom: 18px;
        left: 18px;
    }

    .footer .content-footer {
        gap: 14px;
        padding: 0 12px 24px;
    }

    /* Brand Card - Small */
    .footer .footer-brand {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .footer .footer-brand .brand-logo img {
        width: 130px;
    }

    .footer .footer-brand .brand-desc {
        font-size: 0.82rem;
        line-height: 1.8;
    }

    .footer .footer-brand .brand-contact {
        max-width: 100%;
    }

    .footer .footer-brand .brand-contact .contact-item {
        font-size: 0.8rem;
    }

    .footer .footer-brand .brand-contact .contact-item i {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .footer .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    /* Categories - Small Mobile */
    .footer .content-footer .links {
        padding: 20px 16px 16px;
        border-radius: 14px;
    }

    .footer .content-footer .links .content-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px 6px;
    }

    .footer .content-footer .links .content-links .link a {
        font-size: 0.78rem;
        padding: 9px 10px;
        gap: 6px;
    }

    .footer .content-footer .links .content-links .link a i {
        font-size: 0.6rem;
    }

    /* Pages - Small */
    .footer .pages-column {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .footer .pages-list a {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    /* Apps - Small */
    .footer .apps-buttons {
        gap: 6px;
    }

    .footer .app-btn {
        padding: 9px 10px;
    }

    .footer .app-btn i {
        font-size: 1.1rem;
    }

    .footer .app-btn .app-text small {
        font-size: 0.55rem;
    }

    .footer .app-btn .app-text span {
        font-size: 0.72rem;
    }

    /* Copyright - Small */
    .footer .copy-right {
        padding: 16px 12px;
    }

    .footer .copy-right .copyright-text {
        font-size: 0.78rem;
    }

    .footer .copy-right .footer-meta {
        gap: 10px;
    }

    .footer .copy-right .footer-meta a {
        font-size: 0.72rem;
    }
}

/* ================================
   📱 EXTRA SMALL (360px)
   ================================ */
@media (max-width: 360px) {
    .footer .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .footer .newsletter-form button span,
    .footer .newsletter-form button {
        font-size: 0.82rem;
    }

    .footer .content-footer .links h3,
    .footer .pages-column h3 {
        font-size: 1rem;
    }
}

/* ==========================================================================
   🪗 FOOTER ACCORDION - Mobile Only
   ========================================================================== */
.footer .accordion-header {
    cursor: default;
}

.footer .accordion-header .accordion-toggle {
    display: none;
    margin-right: auto;
    margin-left: 0;
    color: var(--primary-light);
    font-size: 0.85rem;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    background: rgba(184, 0, 31, 0.15);
    border-radius: 8px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .footer .accordion-header {
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        transition: background 0.25s ease;
    }

    .footer .accordion-header:active {
        background: rgba(255, 255, 255, 0.04);
    }

    .footer .accordion-header .accordion-toggle {
        display: flex;
    }

    .footer .accordion-header.active .accordion-toggle {
        transform: rotate(180deg);
        background: rgba(184, 0, 31, 0.35);
        color: var(--accent-gold);
    }

    .footer .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease,
            margin 0.3s ease;
        opacity: 0;
    }

    .footer .accordion-content.open {
        max-height: 2000px;
        opacity: 1;
    }

    .footer .content-footer .links .accordion-content.open,
    .footer .pages-column .accordion-content.open {
        margin-top: 4px;
    }
}

/* ================================
   🎯 SCROLL-TO-TOP BUTTON - Desktop (Fixed Bottom-Left)
   ================================ */
/* Scroll to top button - Fixed bottom-left */
.footer .scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(184, 0, 31, 0.5), 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 9999;
    text-decoration: none;
    border: 3px solid #1a1a2e;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.footer .scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.footer .scroll-top::before {
    content: 'العودة للأعلى';
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: #1a1a2e;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .scroll-top::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    border: 6px solid transparent;
    border-bottom-color: #1a1a2e;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.footer .scroll-top:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #d4233c, var(--primary-color));
    box-shadow: 0 12px 32px rgba(184, 0, 31, 0.6), 0 6px 12px rgba(0, 0, 0, 0.3);
}

.footer .scroll-top:hover::before,
.footer .scroll-top:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.footer .scroll-top i {
    animation: bounceUp 2s infinite;
}

@keyframes bounceUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}



.footer .newsletter-strip {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8a0018 100%);
    padding: 35px 45px;
    border-radius: 16px;
    margin: 40px 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
    box-shadow: 0 10px 40px rgba(184, 0, 31, 0.3);
    position: relative;
    overflow: hidden;
}

.footer .newsletter-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.footer .newsletter-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.footer .newsletter-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: right;
    max-width: 100%;
}

.footer .newsletter-content h3 i {
    color: var(--accent-gold);
    font-size: 1.4rem;
}

.footer .newsletter-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer .newsletter-content .trust-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer .newsletter-content .trust-note i {
    color: var(--accent-gold);
    font-size: 0.75rem;
}

.footer .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 0 0 auto;
    width: 340px;
    position: relative;
    z-index: 1;
}

.footer .newsletter-form .form-row {
    display: flex;
    gap: 10px;
}

.footer .newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid transparent;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a2e;
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.footer .newsletter-form input::placeholder {
    color: #888;
}

.footer .newsletter-form input:focus {
    border-color: var(--accent-gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
}

.footer .newsletter-form button {
    padding: 14px 28px;
    background: var(--accent-gold);
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    font-family: inherit;
}

.footer .newsletter-form button:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* ================================
   📱 MOBILE FOOTER (768px)
   ================================ */
@media (max-width: 768px) {
    .footer .scroll-top {
        position: fixed;
        bottom: 24px;
        left: 20px;
        top: auto;
        right: auto;
        transform: none;
        width: 50px;
        height: 50px;
        font-size: 1rem;
        border: none;
        background: linear-gradient(145deg, var(--primary-color), #ff4060);
        color: #fff;
        border-radius: 16px;
        box-shadow:
            0 6px 20px rgba(184, 0, 31, 0.45),
            0 2px 6px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        z-index: 999;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .footer .scroll-top::before {
        display: none;
    }

    .footer .scroll-top::after {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 19px;
        background: linear-gradient(145deg, rgba(184, 0, 31, 0.6), rgba(255, 64, 96, 0.6));
        opacity: 0.4;
        z-index: -1;
        animation: pulseRing 2.5s ease-in-out infinite;
        border: none;
    }

    .footer .scroll-top:hover {
        transform: translateY(-3px);
        background: linear-gradient(145deg, #d4233c, var(--primary-color));
        box-shadow:
            0 10px 28px rgba(184, 0, 31, 0.55),
            0 4px 10px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .footer .scroll-top:active {
        transform: scale(0.92);
    }

    @keyframes pulseRing {
        0% {
            transform: scale(1);
            opacity: 0.4;
        }

        50% {
            transform: scale(1.25);
            opacity: 0.2;
        }

        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }

    /* Newsletter Strip - Mobile */
    .footer .newsletter-strip {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
        margin: 30px 14px 40px;
        border-radius: 20px;
        gap: 20px;
        position: relative;
        overflow: hidden;
        max-width: calc(100% - 28px);
        background: linear-gradient(145deg, #b8001f 0%, #8a0018 40%, #5c0010 100%);
        box-shadow:
            0 12px 36px rgba(184, 0, 31, 0.35),
            0 4px 12px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .footer .newsletter-strip::before {
        content: '';
        position: absolute;
        top: -80px;
        left: -80px;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 65%);
        pointer-events: none;
        z-index: 0;
    }

    .footer .newsletter-strip::after {
        content: '';
        position: absolute;
        bottom: -70px;
        right: -70px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
        pointer-events: none;
        z-index: 0;
    }

    .footer .newsletter-content {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .footer .newsletter-content .news-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.1));
        color: var(--accent-gold);
        padding: 5px 14px;
        border-radius: 50px;
        font-size: 0.72rem;
        font-weight: 700;
        margin-bottom: 14px;
        border: 1px solid rgba(255, 215, 0, 0.3);
        white-space: nowrap;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        letter-spacing: 0.02em;
    }

    .footer .newsletter-content .news-badge i {
        font-size: 0.68rem;
        animation: badgePulse 2s ease-in-out infinite;
    }

    @keyframes badgePulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.2);
        }
    }

    .footer .newsletter-content h3 {
        justify-content: center;
        font-size: 1.2rem;
        gap: 8px;
        margin-bottom: 10px;
        flex-wrap: wrap;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        text-align: center;
    }

    .footer .newsletter-content h3 i {
        font-size: 1.15rem;
        color: var(--accent-gold);
        flex-shrink: 0;
    }

    .footer .newsletter-content h3 span {
        display: inline;
    }

    .footer .newsletter-content p {
        font-size: 0.85rem;
        line-height: 1.7;
        opacity: 0.9;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.85);
    }

    .footer .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 10px;
        position: relative;
        z-index: 1;
    }

    .footer .newsletter-form .form-row {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .footer .newsletter-form input {
        flex: 1;
        width: 100%;
        padding: 14px 18px;
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.95);
        color: #1a1a2e;
        font-size: 0.9rem;
        font-weight: 500;
        outline: none;
        transition: all 0.3s ease;
        font-family: inherit;
        text-align: right;
    }

    .footer .newsletter-form input::placeholder {
        color: #999;
        font-weight: 400;
    }

    .footer .newsletter-form input:focus {
        border-color: var(--accent-gold);
        background: #fff;
        box-shadow:
            0 0 0 3px rgba(255, 215, 0, 0.2),
            0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .footer .newsletter-form button {
        padding: 14px 22px;
        font-size: 0.95rem;
        justify-content: center;
        background: linear-gradient(135deg, var(--accent-gold), #f0c400);
        color: #1a1a2e;
        border: none;
        border-radius: 14px;
        font-weight: 800;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: inherit;
        box-shadow:
            0 4px 14px rgba(255, 215, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .footer .newsletter-form button:hover {
        background: linear-gradient(135deg, #ffe44d, var(--accent-gold));
        transform: translateY(-2px);
        box-shadow:
            0 8px 22px rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .footer .newsletter-form button:active {
        transform: scale(0.97);
    }

    .footer .newsletter-content .trust-note {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.55);
        margin-top: 2px;
    }

    .footer .newsletter-content .trust-note i {
        font-size: 0.65rem;
        color: rgba(255, 255, 255, 0.5);
    }
}


/* ================================
   📱 SMALL SCREENS (480px)
   ================================ */
@media (max-width: 480px) {
    .footer .newsletter-strip {
        padding: 24px 16px;
        margin: 24px 12px 32px;
        border-radius: 16px;
    }

    .footer .newsletter-content h3 {
        font-size: 0.98rem;
        gap: 6px;
        line-height: 1.4;
    }

    .footer .newsletter-content h3 i {
        font-size: 0.9rem;
    }

    .footer .newsletter-content p {
        font-size: 0.78rem;
        line-height: 1.6;
    }

    .footer .newsletter-content .news-badge {
        font-size: 0.62rem;
        padding: 3px 9px;
        margin-bottom: 10px;
    }

    .footer .newsletter-form input {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .footer .newsletter-form button {
        padding: 12px 20px;
        font-size: 0.88rem;
        border-radius: 12px;
    }

    .footer .newsletter-content .trust-note {
        font-size: 0.65rem;
    }

    .footer .scroll-top {
        width: 46px;
        height: 46px;
        font-size: 0.95rem;
        bottom: 18px;
        left: 16px;
        border-radius: 14px;
    }
}


/* ================================
   📱 VERY SMALL SCREENS (360px)
   ================================ */
@media (max-width: 360px) {
    .footer .newsletter-content h3 {
        font-size: 0.9rem;
    }

    .footer .newsletter-form button span,
    .footer .newsletter-form button {
        font-size: 0.82rem;
    }
}


/* ================================
   📦 CONTAINER - Reduce padding on MD and above
   ================================ */
@media (min-width: 768px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* ==========================================================================
   RESPONSIVE ADVERTISEMENTS
   ========================================================================== */
@media (max-width: 767px) {
    .ad-img-responsive {
        height: auto !important;
        object-fit: contain !important;
    }
}
