/* ============================================ */
/* ملف style.css - بلدية الفخاري - نسخة محسنة */
/* ============================================ */

/* ========== Variables المعتمدة ========== */
:root {
    /* ألوان الشعار الرسمي */
    --color-black: #000000;
    --color-gold: #D4A017;
    --color-red: #C00000;
    --color-green: #009639;
    
    /* ألوان النظام الأساسية - موحدة */
    --primary-dark: #1e3a8a;
    --primary: #2a5298;
    --primary-light: #3b82f6;
    --accent: #D4A017; /* كان #a07703 - وحدته */
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #f59e0b;
    --purple: #7c3aed;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #2a5298 100%);
    --gradient-gold: linear-gradient(90deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
    --gradient-gold-light: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    
    /* عام */
    --text-main: #2d3436;
    --text-dark: #1e293b;
    --text-gray: #475569;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --transition: all .45s cubic-bezier(.25, 1, .5, 1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    --card-shadow-hover: 0 20px 50px rgba(30, 58, 138, 0.15);
    
    font-family: 'Cairo', system-ui, sans-serif;
    font-weight: 400;
}

/* ========== عام ========== */
body {
    font-family: 'Cairo', sans-serif !important;
    background: var(--bg-light);
    color: var(--text-main);
     overflow-x: hidden!important;
}

/* navbar style */

/* ==================== Navbar أبيض 2026 - أزرق + برتقالي ==================== */
:root {
    --fukhari-blue: #1e3a8a;
    --fukhari-blue-dark: #0f172a;
    --fukhari-orange: #f59e0b;
    --fukhari-orange-light: #fbbf24;
}

.navbar-white-2026 {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(30, 58, 138, 0.08);
    padding: 14px 0;
    transition: all 0.35s ease;
}

.navbar-white-2026.scrolled {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.10);
}

/* خط برتقالي متحرك فوق */
.navbar-white-2026::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--fukhari-blue), var(--fukhari-orange), var(--fukhari-orange-light), var(--fukhari-blue));
    background-size: 200% 100%;
    animation: orangeFlow 3s linear infinite;
    -webkit-animation: orangeFlow 3s linear infinite;
}

@keyframes orangeFlow {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Logo */
.logo-box-white {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon-white {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fff, #f8fafc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(30, 58, 138, 0.12);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.08);
    transition: all 0.3s;
}

.logo-box-white:hover .logo-icon-white {
    transform: rotate(4deg) scale(1.05);
    border-color: var(--fukhari-orange);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.25);
    -webkit-transform: rotate(4deg) scale(1.05);
    -moz-transform: rotate(4deg) scale(1.05);
    -ms-transform: rotate(4deg) scale(1.05);
    -o-transform: rotate(4deg) scale(1.05);
}

.logo-texts-white {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-texts-white .main {
    color: var(--fukhari-blue);
    font-weight: 900;
    font-size: 17px;
}

.logo-texts-white .sub {
    color: var(--fukhari-orange);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* الروابط */
.navbar-white-2026 .nav-link {
    color: #334155 !important;
    font-weight: 700;
    font-size: 14.5px;
    padding: 9px 14px !important;
    border-radius: 10px;
    transition: all 0.25s;
    position: relative;
}

.navbar-white-2026 .nav-link:hover {
    color: var(--fukhari-blue) !important;
    background: rgba(30, 58, 138, 0.06);
}

.navbar-white-2026 .nav-link.active {
    color: var(--fukhari-blue) !important;
    background: rgba(30, 58, 138, 0.08);
}

.navbar-white-2026 .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--fukhari-orange);
    border-radius: 2px;
}

/* بوابة المواطن - مميزة برتقالي */
.portal-link-white {
    background: linear-gradient(135deg, var(--fukhari-orange), var(--fukhari-orange-light)) !important;
    color: #fff !important;
    border-radius: 11px !important;
    padding-right: 42px !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3) !important;
    position: relative;
}

.portal-link-white:hover {
    background: linear-gradient(135deg, var(--fukhari-blue), #2563eb) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(30, 58, 138, 0.3) !important;
}

.new-badge-orange {
    position: absolute;
    top: -7px;
    left: -7px;
    background: var(--fukhari-blue);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    padding: 3px 7px;
    border-radius: 20px;
    animation: bounceBadge 2s infinite;
    border: 2px solid #fff;
    -webkit-animation: bounceBadge 2s infinite;
}

@keyframes bounceBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Dropdown أبيض فخم */
.dropdown-white {
    background: #ffffff;
    border: 1px solid rgba(30, 58, 138, 0.08);
    border-radius: 16px;
    padding: 10px;
    margin-top: 14px !important;
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.12);
    min-width: 240px;
    animation: dropdownIn 0.3s ease;
}

@keyframes dropdownIn {
    from { opacity: 0; transform: translateY(10px) scale(0.98); -webkit-transform: translateY(10px) scale(0.98); -moz-transform: translateY(10px) scale(0.98); -ms-transform: translateY(10px) scale(0.98); -o-transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.dropdown-white .dropdown-item {
    color: #334155;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.dropdown-white .dropdown-item i {
    color: var(--fukhari-orange);
    width: 18px;
    text-align: center;
}

.dropdown-white .dropdown-item:hover {
    background: rgba(30, 58, 138, 0.06);
    color: var(--fukhari-blue);
    transform: translateX(-3px);
}

.dropdown-white .dropdown-item:hover i {
    color: var(--fukhari-blue);
}

.dropdown-white .dropdown-divider {
    border-color: rgba(30, 58, 138, 0.08);
    margin: 8px 0;
}

/* زر الموظفين */
.navbar-actions-white {
    margin-right: 18px;
}

.btn-staff-white {
    background: #fff;
    color: var(--fukhari-blue);
    border: 2px solid rgba(30, 58, 138, 0.15);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-staff-white:hover {
    background: var(--fukhari-blue);
    color: #fff;
    border-color: var(--fukhari-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}

.btn-staff-white i {
    color: var(--fukhari-orange);
}

.btn-staff-white:hover i {
    color: var(--fukhari-orange-light);
}

/* Toggler موبايل */
.white-toggler {
    border: none;
    width: 44px;
    height: 44px;
    background: rgba(30, 58, 138, 0.06);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.white-toggler span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--fukhari-blue);
    border-radius: 2px;
    transition: all 0.3s;
}

.white-toggler:focus {
    box-shadow: none;
}

/* موبايل */
@media (max-width: 991px) {
    .navbar-white-2026 .navbar-collapse {
        background: #ffffff;
        margin-top: 14px;
        border-radius: 18px;
        padding: 18px;
        border: 1px solid rgba(30, 58, 138, 0.08);
        box-shadow: 0 20px 40px rgba(30, 58, 138, 0.12);
    }
    .navbar-actions-white {
        margin: 14px 0 0 0;
    }
    .btn-staff-white {
        width: 100%;
        justify-content: center;
    }
    .dropdown-white {
        box-shadow: none;
        border: 1px solid rgba(30, 58, 138, 0.06);
        background: #f8fafc;
        margin-top: 8px !important;
    }
}

.navbar-nav {
   
    padding-right: 15px !important;
   
}





/* ============================================ */
/* HERO SECTION 2026 - بلدية الفخاري - جديد */
/* ============================================ */
.hero-section {
    position: relative;
    height: 88vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    background: var(--fukhari-blue);;
    isolation: isolate;
}

.hero-slider-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: all 1.2s cubic-bezier(.25, 1,.5, 1);
    display: flex;
    align-items: center;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -webkit-transition: all 1.2s cubic-bezier(.25, 1,.5, 1);
    -moz-transition: all 1.2s cubic-bezier(.25, 1,.5, 1);
    -ms-transition: all 1.2s cubic-bezier(.25, 1,.5, 1);
    -o-transition: all 1.2s cubic-bezier(.25, 1,.5, 1);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(76, 65, 37, 0.8) 0%, rgba(0, 0, 0, 0.6) 45%, rgba(33, 81, 193, 0.15) 100%),
        linear-gradient(0deg, rgba(15,23,42,0.6) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    margin-right: 7%;
    padding: 0 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s 0.3s cubic-bezier(.25, 1,.5, 1);
    -webkit-transform:;
    -moz-transform:;
    -ms-transform:;
    -o-transform:;
    -webkit-transition:;
    -moz-transition:;
    -ms-transition:;
    -o-transition:;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
    -webkit-transform:;
    -moz-transform:;
    -ms-transform:;
    -o-transform:;
}

.hero-content h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content h1::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    margin-top: 14px;
}

.para-text {
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 26px;
    font-weight: 500;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(212,160,23,0.35);
    transition: var(--transition);
    border: 2px solid transparent;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212,160,23,0.5);
    background: #fff;
    color: var(--primary-dark);
    -webkit-transform:;
    -moz-transform:;
    -ms-transform:;
    -o-transform:;
}

/* Arrows */
.side-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.s-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background:  var(--color-gold);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.s-arrow:hover {
    background: var(--bg-white);
    color: var(--primary-dark);
    transform: scale(1.1);
    border-color: var(--bg-white);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

/* ===== HERO NAVS - DOCK PREMIUM ===== */
.hero-navs-wrapper {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1050px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    z-index: 15;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-border-radius:;
    -moz-border-radius:;
    -ms-border-radius:;
    -o-border-radius:;
}

.navs-items {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    -webkit-border-radius:;
    -moz-border-radius:;
    -ms-border-radius:;
    -o-border-radius:;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.navs-items a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 8px;
    color: var( --fukhari-orange);
    position: relative;
    z-index: 1;
}
  
.navs-items i {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var( --fukhari-orange-light);
    color: var(--primary-dark);
    border-radius: 12px;
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.navs-items h4 {
    font-size: 13px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.2px;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-gold);
    transition: width 5s linear;
    -webkit-transition: width 5s linear;
    -moz-transition: width 5s linear;
    -ms-transition: width 5s linear;
    -o-transition: width 5s linear;
}

.navs-items.active.progress-bar {
    width: 100%;
}

.navs-items:hover {
    background: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
}

.navs-items:hover a {
    color: var(--primary-dark);
}

.navs-items:hover i {
    background: var(--primary-dark);
    color: #fff;
}

.navs-items.active {
    background: var(--bg-white);
    border-color: var(--color-gold);
}

.navs-items.active a {
    color: var(--primary-dark);
}

.navs-items.active i {
    background: var(--color-gold);
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
   .hero-section {
        height: 78vh;
        min-height: 520px;
    }
   .hero-content {
        margin-right: 0;
        margin: 0 auto;
        text-align: center;
        max-width: 90%;
    }
   .hero-content h1::after {
        margin: 14px auto 0;
    }
   .hero-overlay {
        background: linear-gradient(0deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.5) 60%, rgba(15,23,42,0.2) 100%);
    }
   .side-arrows {
        display: none;
    }
   .hero-navs-wrapper {
        bottom: 16px;
        width: 94%;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        padding: 6px;
        border-radius: 16px;
    }
   .navs-items a {
        padding: 10px 4px;
        gap: 6px;
    }
   .navs-items i {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        border-radius: 10px;
    }
   .navs-items h4 {
        font-size: 10px;
    }
}














/* //////////////////////////////////////////////// */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ========== Logo ========== */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text .main {
    font-size: 1.2rem;
    font-weight: 800;
    color: #333; 
    line-height: 1.1;
    white-space: nowrap; 
}

.logo-text .sub {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.5px; 
    white-space: nowrap;
}


 

/* 📊 هندسة الترويسة الملوكية المتكيفة تلقائياً */
.archive-header {
    margin-bottom: 40px;
    padding: 0 15px;
}

.archive-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    border: 1px solid #fbbf24;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.15);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.archive-title-wrap {
    position: relative;
    margin-bottom: 15px;
}

.archive-title {
    font-size: clamp(1.5rem, 4.5vw, 2.8rem) !important; /* 👈 متكيف كلياً من الجوال للشاشات الكبرى */
    font-weight: 900;
    color: #1e3a8a;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.3;
    position: relative;
    z-index: 3;
}

.archive-title-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(2.2rem, 8vw, 5.5rem) !important;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(30, 58, 138, 0.05);
    z-index: 1;
    white-space: nowrap;
    letter-spacing: clamp(3px, 1.5vw, 8px);
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.archive-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px 0;
}

.divider-dot {
    width: 6px;
    height: 6px;
    background: #1e3a8a;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.divider-line {
    width: clamp(50px, 12vw, 80px);
    height: 2px;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    border-radius: 2px;
}

.archive-subtitle {
    font-size: clamp(0.9rem, 2.2vw, 1.05rem) !important;
    color: #64748b;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
}

/* ============================================================================ */
/* 🛠️ 3D Perspective Swiper Layout & Responsiveness */
/* ============================================================================ */

.archive-slider-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0;
}

.archive-swiper {
    padding: 20px 0 40px !important;
    width: 100%;
    overflow: hidden; /* تفعيل القص الذكي لحواف المتصفح ومنع الكراش بالجوال */
}

/* الكروت والتجاوب المطلق: تحديد أبعاد قياسية تتكيف تلقائياً عبر جافا سكريبت الـ Swiper */
.archive-swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 600px !important;
    /*👈العرضالمثاليالمناسبلجوالاتالآيفونوالأندرويدوالديسكتوب*/height: 500px !important;
    transition: transform 0.4s ease, opacity 0.4s ease;
    -webkit-transition: transform 0.4s ease, opacity 0.4s ease;
    -moz-transition: transform 0.4s ease, opacity 0.4s ease;
    -ms-transition: transform 0.4s ease, opacity 0.4s ease;
    -o-transition: transform 0.4s ease, opacity 0.4s ease;
}

.archive-slide-card {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: 3px solid #1e3a8a !important; /* القميص النيلي الرئاسي المعتمد لوحتك بالملي */
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.12) !important;
    transition: all 0.4s ease;
    position: relative;
}

/* تمييز الكرت الفعال المتوسط في الشاشة عن الباقي لتعزيز البعد الثالث 3D */
.archive-swiper .swiper-slide-active .archive-slide-card {
    border-color: #fbbf24 !important; /* حواف ذهبية ناعمة للكرت النشط لتنبيه المستخدم */
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.28) !important;
}

.slide-img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-img {
    transition: transform 0.6s ease;
    -webkit-transition: transform 0.6s ease;
    -moz-transition: transform 0.6s ease;
    -ms-transition: transform 0.6s ease;
    -o-transition: transform 0.6s ease;
}

.archive-slide-card:hover .slide-img {
    transform: scale(1.08); /* زووم ناعم للصورة عند مرور الماوس */
}

/* 🎴 كبسولة البيانات الشفافة الزجاجية (Glassmorphism Overlay Style) */
.slide-info-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 60%, transparent 100%) !important;
    backdrop-filter: blur(4px) !important; /* فلتر غباش زجاجي عالمي فخم */
    -webkit-backdrop-filter: blur(4px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 5;
    transition: all 0.3s ease;
}

/* ============================================================================ */
/* 🎮 أزرار التحكم الدائرية والـ Pagination السفلية */
/* ============================================================================ */
.archive-nav-controls {
    margin-top: 25px;
}

.archive-nav-btn {
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: 2px solid #1e3a8a;
    border-radius: 50%;
    color: #1e3a8a;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.archive-nav-btn:hover {
    background: #1e3a8a;
    color: #ffffff;
    transform: scale(1.06);
}

/* نقاط الترقيم السفلية المتواكبة مع الحركة */
.archive-swiper-pagination .swiper-pagination-bullet {
    background: #1e3a8a !important;
    opacity: 0.3;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.archive-swiper-pagination .swiper-pagination-bullet-active {
    background: #fbbf24 !important;
    /*النقطةالفعالةذهبيةملوكية*/opacity: 1 !important;
    width: 24px !important;
    /*تمددالنقطةالنشطةلمنحطابعتكنولوجيحديث*/border-radius: 4px !important;
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    -ms-border-radius: 4px !important;
    -o-border-radius: 4px !important;
}


/* ============================================ */
/* Testimonials - نسخة فخمة 2026 */
/* ============================================ */
/* ============================================ */
/* تعديلات سريعة للتنسيق */
/* ============================================ */

/* ==================== آراء الشخصيات البارزة - 2026 ==================== */
.testimonials-fukhari {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-fukhari::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.testimonials-fukhari::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 187, 76, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* العنوان */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    background: rgba(30, 58, 138, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.15);
    color: #1e3a8a;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 15px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.section-title-fukhari {
    color: #1e3a8a;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
}

.title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-underline span {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e0bb4c);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.title-underline span:last-child {
    background: linear-gradient(90deg, #e0bb4c, transparent);
}

.title-underline i {
    color: #e0bb4c;
    font-size: 20px;
}

/* السلايدر */
.testimonial-slider-wrap {
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.testimonialSwiper {
    padding-bottom: 100px !important;
}

/* كرت الشهادة */
.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 45px 35px 35px;
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.08);
    border: 1px solid #f1f5f9;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

.swiper-slide-active .testimonial-card {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(30, 58, 138, 0.15);
    border-color: #e0bb4c;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #e0bb4c, #1e3a8a);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    transition: opacity 0.4s;
    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    -o-border-radius: 0 0 10px 10px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.swiper-slide-active .testimonial-card::before {
    opacity: 1;
}

/* أيقونة الاقتباس */
.quote-icon {
    position: absolute;
    top: 20px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.25);
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
}

.quote-icon i {
    color: #e0bb4c;
    font-size: 20px;
}

/* الصورة */
.testimonial-avatar {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.avatar-ring {
    position: absolute;
    inset: -6px;
    border: 3px solid #e0bb4c;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
    -webkit-animation: pulse-ring 2s infinite;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.3; -webkit-transform:; -moz-transform:; -ms-transform:; -o-transform:; }
    50% { transform: scale(1.08); opacity: 0.6; -webkit-transform: scale(1.08); -moz-transform: scale(1.08); -ms-transform: scale(1.08); -o-transform: scale(1.08); }
}

/* النص */
.testimonial-text {
    color: #334155;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 25px;
    font-weight: 500;
    min-height: 80px;
}

/* المؤلف */
.author-name {
    color: #1e3a8a;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.author-job {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.author-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.author-rating i {
    color: #e0bb4c;
    font-size: 14px;
}

/* أزرار التنقل */
.swiper-button-next,
.swiper-button-prev {
    width: 70px !important;
    height: 70px !important;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.15);
    border: 2px solid #f1f5f9;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
     background: #1e3a8a !important;
     border-color: #1e3a8a !important;
     border-radius: 50%;
     -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
     -ms-border-radius: 50%;
     -o-border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    color: #1e3a8a;
    font-weight: 900;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: #e0bb4c;
}

.swiper-button-prev {
    right: -5px;
    left: auto;
}

.swiper-button-next {
    left: -5px;
    right: auto;
}

/* Pagination */
.swiper-pagination {
    bottom: 0;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background: linear-gradient(90deg, #1e3a8a, #e0bb4c);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-slider-wrap {
        padding: 0 10px;
    }
    .section-title-fukhari {
        font-size: 26px;
    }
    .testimonial-card {
        padding: 35px 25px 25px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .swiper-button-next,
.swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
}}
/* ============================================ */
/* Map Section - الخريطة التفاعلية */
/* ============================================ */
/* ==================== خريطة + إحصائيات بلدية الفخاري ==================== */
.fukhari-map-dashboard {
    background: #f8fafc;
}

/* العنوان */
.section-header-fukhari {
    text-align: center;
}

.section-header-fukhari .main-title {
    color: #1e3a8a;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-decoration .line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e0bb4c, transparent);
    border-radius: 3px;
}

.title-decoration i {
    color: #e0bb4c;
    font-size: 22px;
}

/* كرت الخريطة */
.map-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
}

.map-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: #fff;
    padding: 16px 24px;
}

.map-header h5 {
    margin: 0;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.map-wrapper {
    height: 500px;
    position: relative;
}

#fukhariMap {
    width: 100%;
    height: 100%;
}

/* لوحة الإحصائيات */
.stats-panel {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.panel-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: #fff;
    padding: 16px 24px;
    border-radius: 20px 20px 0 0;
}

.panel-header h5 {
    margin: 0;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.stats-grid {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* كروت الإحصائيات */
.stat-card {
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.stat-card:hover {
    transform: translateX(-5px);
}

.stat-card.primary {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #3b82f6;
}
.stat-card.primary .stat-icon { background: #3b82f6; }

.stat-card.gold {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #e0bb4c;
}
.stat-card.gold .stat-icon { background: #fff; }

.stat-card.blue {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: #0ea5e9;
}
.stat-card.blue .stat-icon { background: #0ea5e9; }

.stat-card.success {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #22c55e;
}
.stat-card.success .stat-icon { background: #22c55e; }

.stat-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fukhari-blue) !important;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-content h3 {
    color: var(--fukhari-orange-light);
    font-size: 22px;
    font-weight: 900;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.stat-content p {
    color: #afbfe8;
    font-size: 13px;
    font-weight: 600;
    margin: 4px 0 0 0;
}

.status-dot {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
    -webkit-animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* زر التسجيل */
.btn-register-new {
    margin: 0 20px 20px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.btn-register-new:hover {
    background: linear-gradient(135deg, #e0bb4c 0%, #d4a73a 100%);
    color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 187, 76, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .map-wrapper {
        height: 400px;
    }
    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .stat-card {
        flex: 0 0 calc(50% - 7px);
    }
}

@media (max-width: 576px) {
    .stat-card {
        flex: 0 0 100%;
    }
}
/* ============================================ */
/* LOADING SCREEN 2026 - نفس الأسماء */
/* ============================================ */
#loading-screen {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(30,58,138,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212,160,23,0.08) 0%, transparent 50%);
    pointer-events: none;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.logo-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-logo {
    width: 84px;
    height: 84px;
    object-fit: contain;
    position: relative;
    z-index: 3;
    background: #fff;
    border-radius: 22px;
    padding: 10px;
    box-shadow: 
        0 10px 30px rgba(30,58,138,0.12),
        0 0 0 1px rgba(30,58,138,0.06);
    animation: logoFloat 2.5s ease-in-out infinite;
}

@keyframes logoFloat {
    0%,100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.02); }
}

.gold-pulse,
.gold-pulse-2 {
    position: absolute;
    inset: 0;
    border-radius: 26px;
    border: 2px solid var(--color-gold);
    opacity: 0;
    z-index: 1;
}

.gold-pulse {
    animation: goldPulse 2s cubic-bezier(.25,1,.5,1) infinite;
}

.gold-pulse-2 {
    animation: goldPulse 2s cubic-bezier(.25,1,.5,1) 0.6s infinite;
}

@keyframes goldPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

.loading-text {
    font-size: 26px;
    font-weight: 900;
    color: var(--primary-dark);
    margin: 0 0 6px;
    letter-spacing: 0.3px;
}

.loading-subtext {
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.elegant-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.elegant-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    display: block;
    animation: dotBounce 1.2s ease-in-out infinite;
}

.elegant-dots span:nth-child(1) { animation-delay: 0s; }
.elegant-dots span:nth-child(2) { animation-delay: 0.2s; }
.elegant-dots span:nth-child(3) { animation-delay: 0.4s; }

.elegant-dots span {
    background: var(--color-gold);
}

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* شريط التحميل تحت */
.loading-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #f1f5f9;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: var(--gradient-gold);
    animation: loadingProgress 2.2s cubic-bezier(.25,1,.5,1) forwards;
    box-shadow: 0 0 10px rgba(212,160,23,0.4);
}

@keyframes loadingProgress {
    0% { width: 0%; }
    20% { width: 35%; }
    60% { width: 75%; }
    100% { width: 100%; }
}

/* ============================================ */
/* Statistics Section - الاحصائيات */
/* ============================================ */
/* ==================== قسم الإحصائيات الفخم 2026 ==================== */
.fukhari-stats-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.fukhari-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(224, 187, 76, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(224, 187, 76, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* العنوان */
.stats-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.stats-badge {
    display: inline-block;
    background: rgba(224, 187, 76, 0.15);
    border: 1px solid rgba(224, 187, 76, 0.3);
    color: #e0bb4c;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.stats-title {
    color: #fff;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
}

.stats-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.stats-divider span {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e0bb4c, transparent);
    border-radius: 3px;
}

.stats-divider i {
    color: #e0bb4c;
    font-size: 18px;
}

/* كرت الإحصائية */
.stat-card-fukhari {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card-fukhari::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #e0bb4c, #1e3a8a);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.stat-card-fukhari:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(224, 187, 76, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-card-fukhari:hover::before {
    transform: scaleX(1);
}

/* الأيقونة مع الدائرة */
.stat-icon-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
}

.stat-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    z-index: 2;
    -webkit-border-radius:;
    -moz-border-radius:;
    -ms-border-radius:;
    -o-border-radius:;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.stat-icon i {
        color: var(--fukhari-orange);
    font-size: 28px;
}

.progress-ring {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke:  #646363;
    stroke-width: 8;
}

.progress-ring-fill {
    fill: none;
    stroke: #e0bb4c;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 2s ease;
}

/* المحتوى */
.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
    line-height: 1;
}

.stat-label {
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-title {
        font-size: 28px;
    }
    .stat-card-fukhari {
        padding: 25px 20px;
    }
    .stat-number {
        font-size: 36px;
    }
}
/* ============================================ */
/* Main Slider - السلايدر الرئيسي */
/* ============================================ */
.modern-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 0; 
    margin-top: 0; 
}

.main-slider-img {
    width: 100%;
    height: 90vh; 
    object-fit: cover;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 40%, rgba(0,0,0.8) 100%);
    z-index: 1;
}

.carousel-control-prev, 
.carousel-control-next {
    z-index: 100 !important;
    top: 45% !important;
    width: 50px;
    height: 50px;
    margin-left: 10px;
    margin-right: 10px;
    opacity: 1 !important;
    text-decoration: none;
}

.carousel-control-prev-icon, 
.carousel-control-next-icon {
    background-image: none !important; 
    background-color: rgba(224, 187, 76, 0.5) !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon, 
.carousel-control-next:hover .carousel-control-next-icon {
    transform: scale(0.9);
    background-color: transparent !important; 
    border-color: var(--color-gold);
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .modern-slider {
        margin-top: 0 !important; 
        height: 60vh !important;
    }
    .main-slider-img {
        height: 60vh !important;
        object-fit: cover;
    }
    .carousel-control-prev, 
    .carousel-control-next {
        top: 50% !important;
    }
    .carousel-control-prev-icon, 
    .carousel-control-next-icon {
        width: 32px !important;
        height: 32px !important;
        border-width: 1px !important;
    }
}

/* ============================================ */
/* Services Boxes - صناديق الخدمات */
/* ============================================ */
.services-section, .stats-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    padding: 80px 0;
}

.service-box, .stat-box {
    background: rgb(10, 50, 90);
    color: white;
    padding: 25px;
    margin: 10px;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
}

.service-box i, .stat-box i {
    color: var(--color-gold);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.service-box h5, .stat-box h5 {
    color: #fff;
    font-weight: 700;
    margin: 10px 0;
}

.service-box:hover, .stat-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 25px rgba(224, 187, 76, 0.5);
}

.btn-custom {
    background: var(--color-gold);
    color: #10325a;
    border-radius: 20px;
    padding: 10px 25px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    border: none;
}

.btn-custom:hover {
    background: #d8a03d;
    color: white;
    transform: translateY(-2px);
}

/* ============================================ */
/* About City Section - عن المدينة */
/* ============================================ */
/* ==================== قسم عن بلدة الفُخاري V2 - 2026 ==================== */
.about-fukhari-v2 {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-fukhari-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 187, 76, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

/* العنوان */
.section-header-fukhari {
    text-align: center;
    margin-bottom: 20px;
}

.section-header-fukhari .subtitle {
    color: #e0bb4c;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-header-fukhari .main-title {
    color: #1e3a8a;
    font-size: 38px;
    font-weight: 900;
    margin: 10px 0;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.title-decoration .line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e0bb4c, transparent);
    border-radius: 3px;
}

.title-decoration i {
    color: #e0bb4c;
    font-size: 20px;
}

/* الصورة */
.about-image-wrap {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
    border: 4px solid #fff;
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #1e3a8a, #e0bb4c);
    border-radius: 24px;
    z-index: -1;
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.image-frame:hover .about-img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.image-badge i {
    color: #e0bb4c;
}

/* الإحصائيات العائمة */
.floating-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    width: 90%;
}

.stat-box {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 18px 10px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.12);
    border: 2px solid #f1f5f9;
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: #e0bb4c;
}

.stat-box h4 {
    color: #1e3a8a;
    font-size: 26px;
    font-weight: 900;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.stat-box p {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    margin: 5px 0 0 0;
}

/* المحتوى */
.about-content {
    padding-right: 20px;
}

.content-card {
    display: flex;
    gap: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 18px;
    transition: all 0.35s ease;
}

.content-card:hover {
    background: #fff;
    border-color: #e0bb4c;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08);
    transform: translateX(-8px);
}

.card-icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.card-icon-box i {
    color: #e0bb4c;
    font-size: 26px;
}

.card-body h4 {
    color: #1e3a8a;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.card-body p {
    color: #475569;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.card-body p b {
    color: #1e3a8a;
    font-weight: 700;
}

/* زر المزيد */
.btn-about-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.25);
}

.btn-about-more:hover {
    background: linear-gradient(135deg, #e0bb4c 0%, #d4a73a 100%);
    color: #1e3a8a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(224, 187, 76, 0.35);
}

.btn-about-more i {
    transition: transform 0.3s;
}

.btn-about-more:hover i {
    transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    .about-content {
        padding-right: 0;
        margin-top: 50px;
    }
    .floating-stats {
        position: static;
        transform: none;
        margin-top: 20px;
    }
    .about-img {
        height: 350px;
    }
}

/* ============================================ */
/* Fukhari Services Section - خدمات البوابة الرقمية */
/* ============================================ */
/* ==================== قسم الخدمات الرقمية 2026 ==================== */
.fukhari-digital-services {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.fukhari-digital-services::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* العنوان */
.services-header {
    text-align: center;
    margin-bottom: 20px;
}

.services-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e0bb4c 0%, #f5d76e 100%);
    color: #1e3a8a;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(224, 187, 76, 0.3);
}

.services-title {
    color: #1e3a8a;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
}

.services-subtitle {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
}

/* كرت الخدمة */
.service-box {
    background: #fff;
    border-radius: 24px;
    padding: 32px 28px;
    border: 2px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #e0bb4c);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.15);
    border-color: #e0bb4c;
}

.service-box:hover::before {
    transform: scaleX(1);
}

.service-box.featured {
    border-color: #16a34a;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.service-box.featured::before {
    background: linear-gradient(90deg, #16a34a, #22c55e);
    transform: scaleX(1);
}

/* الأيقونة */
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gradient-green { background: linear-gradient(135deg, #16a34a, #22c55e); }
.gradient-gold { background: linear-gradient(135deg, #e0bb4c, #f5d76e); }
.gradient-blue { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.gradient-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.gradient-teal { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.gradient-red { background: linear-gradient(135deg, #dc2626, #ef4444); }

/* المحتوى */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-tag {
    display: inline-block;
    background: #f1f5f9;
    color: #64748b;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
    width: fit-content;
}

.service-box.featured .service-tag {
    background: #dcfce7;
    color: #16a34a;
}

.service-content h4 {
    color: #1e3a8a;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* الزر */
.service-btn {
    background: #f8fafc;
    color: #1e3a8a;
    border: 2px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

.service-btn:hover {
    background: #1e3a8a;
    color: #fff;
    border-color: #1e3a8a;
}

.service-btn i {
    transition: transform 0.3s;
}

.service-btn:hover i {
    transform: translateX(-5px);
}

/* الرقم */
.service-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 48px;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    font-family: 'Arial', sans-serif;
    z-index: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .services-title {
        font-size: 28px;
    }
    .service-box {
        padding: 24px 20px;
    }
}
/* ============================================ */
/* Library - المكتبة المصورة */
/* ============================================ */
.library {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.image-gallery {
    text-align: center;
    padding: 40px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    justify-items: center;
}

.image-gallery a {
    display: inline-block;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-transition:;
    -moz-transition:;
    -ms-transition:;
    -o-transition:;
}

.image-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-gallery a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.image-item img:hover {
    transform: scale(1.1);
    -webkit-transform:;
    -moz-transform:;
    -ms-transform:;
    -o-transform:;
}

.image-box {
    color: white;
    padding: 20px;
    width: 100% !important;
    border-radius: 10px;
    height: 200px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    -webkit-transition:;
    -moz-transition:;
    -ms-transition:;
    -o-transition:;
}

.library-slider .slider {
    display: flex;
    gap: 15px;
}

.library-slider .slider div {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.library-slider .slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.view-more {
    text-align: center;
}

/* ==================== قسم آخر الأخبار - بلدية الفخاري 2026 ==================== */

.fukhari-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.section-title {
    font-size: 26px;
    font-weight: 900;
    color: #1e3a8a;
    margin: 0;
    white-space: nowrap;
}

.title-line {
    flex: 1;
    height: 4px;
    background: linear-gradient(90deg, #e0bb4c 0%, #f1f5f9 100%);
    border-radius: 4px;
}

/* كرت الخبر */
.news-card-fukhari {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card-fukhari:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(30, 58, 138, 0.1);
    border-color: #e0bb4c;
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
}

/* صورة الخبر */
.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8fafc;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -ms-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
}

.news-card-fukhari:hover .card-image img {
    transform: scale(1.06);
}

.card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.badge-cat {
    background: #1e3a8a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
}

.badge-date {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    color: #334155;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* محتوى الكرت */
.card-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.6;
    margin-bottom: 10px;
    min-height: 51px;
}

.card-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
}

.card-title a:hover {
    color: #1e3a8a;
}

.card-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}

.card-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
    margin-top: auto;
}

.read-more-btn {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.read-more-btn:hover {
    color: #e0bb4c;
    gap: 12px;
}

.read-more-btn i {
    font-size: 12px;
}

/* زر عرض الكل */
.view-all-news-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
}

.btn-view-all {
    background: #1e3a8a;
    color: #fff;
    padding: 13px 36px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.18);
}

.btn-view-all:hover {
    background: #e0bb4c;
    color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 187, 76, 0.3);
}

/* تنبيه لا يوجد أخبار */
.alert-fukhari {
    background: #fffbeb;
    border: none;
    border-right: 4px solid #e0bb4c;
    color: #854d0e;
    border-radius: 12px;
    padding: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Skeleton Loading */
.is-loading .card-image {
    background: #e2e8f0;
}
.skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}
.skeleton-title {
    height: 20px;
    width: 80%;
    margin-bottom: 12px;
}
.skeleton-text {
    height: 14px;
    width: 100%;
    margin-bottom: 8px;
}
.skeleton-text.short {
    width: 60%;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsive */
@media (max-width: 1200px) {
    .col-xl-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
/* ============================================ */
/* Footer */
/* ============================================ */
/* ==================== فوتر بلدية الفخاري 2026 ==================== */
.footer-fukhari {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #cbd5e1;
    margin-top: 30px;
    width: 100%; /* ✅ ممتد 100% مافي فراغات */
}

.footer-main {
    padding: 60px 5%; /* ✅ padding بالنسبة المئوية عشان يملي الشاشة */
}

.footer-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #e0bb4c;
    margin-bottom: 15px;
}

.footer-title-gold {
    color: #e0bb4c;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.contact-box a {
    display: block;
    color: #e2e8f0;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
    -webkit-transition:;
    -moz-transition:;
    -ms-transition:;
    -o-transition:;
}

.contact-box a:last-child {
    margin-bottom: 0;
}

.contact-box a:hover {
    color: #e0bb4c;
}

.contact-box i {
    margin-left: 8px;
    color: #e0bb4c;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #e0bb4c;
    color: #1e3a8a;
    transform: translateY(-3px);
}

.footer-heading {
    color: #e0bb4c;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: #e0bb4c;
    border-radius: 3px;
}

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

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.footer-links a:hover {
    color: #e0bb4c;
    transform: translateX(-5px);
    -webkit-transform: translateX(-5px);
    -moz-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    -o-transform: translateX(-5px);
}

/* ✅ الشريط السفلي - المطلوب */
.footer-bottom-bar {
    background: #0a1121;
    padding: 18px 5%; /* ✅ نفس البادنج عشان يكون متناسق */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: center; /* ✅ بالمنتصف */
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.footer-bottom-content .divider {
    color: #475569;
    font-weight: 400;
}

.footer-bottom-content i {
    color: #e0bb4c;
}


/* ✅ تنسيق جوال فقط */
@media (max-width: 768px) {

    .footer-fukhari {
        padding:0;
        text-align:center;
    }

    .footer-main {
        padding:35px 20px 25px;
    }

    .footer-main .row {
        gap:0 !important;
    }

    /* العمود الأول - الشعار */
    .footer-about {
        display:flex;
        flex-direction:column;
        align-items:center;
        margin-bottom:30px;
        padding-bottom:25px;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .footer-logo {
        width:75px;
        height:75px;
        margin-bottom:14px;
    }

    .footer-title-gold {
        font-size:20px;
        font-weight:900;
        color:#f59e0b;
        margin-bottom:10px;
    }

    .footer-desc {
        font-size:13.5px;
        line-height:1.7;
        color:#94a3b8;
        max-width:300px;
        margin:0 auto 18px;
    }

    .contact-box {
        display:flex;
        flex-direction:column;
        gap:20px;
        width: 400px;
        margin-bottom:18px;
    }

    .contact-box a {
        font-size:13px;
        color:#cbd5e1;
        text-decoration:none;
        background:rgba(255,255,255,.06);
        padding:8px 16px;
        border-radius:50px;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        gap:8px;
        border:1px solid rgba(255,255,255,.06);
    }

    .contact-box a i { color:#f59e0b; }

    .social-links {
        display:flex;
        gap:10px;
        justify-content:center;
    }

    .social-links a {
        width:40px; height:40px;
        background:rgba(255,255,255,.08);
        border-radius:12px;
        display:flex; align-items:center; justify-content:center;
        color:#fff; text-decoration:none;
        font-size:14px;
        border:1px solid rgba(255,255,255,.08);
    }

    /* العناوين والأقسام */
    .footer-heading {
        font-size:15px;
        font-weight:800;
        color:#fff;
        margin:22px 0 12px;
        position:relative;
        padding-bottom:10px;
    }

    .footer-heading::after {
        content:'';
        position:absolute;
        bottom:0;
        right:50%;
        transform:translateX(50%);
        width:30px;
        height:3px;
        background:linear-gradient(90deg, #f59e0b, #fbbf24);
        border-radius:3px;
        -webkit-transform:translateX(50%);
        -moz-transform:translateX(50%);
        -ms-transform:translateX(50%);
        -o-transform:translateX(50%);
}

    .footer-links {
        list-style:none;
        padding:0; margin:0;
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:8px;
    }

    .footer-links li { margin:0; }

    .footer-links a {
        font-size:12.5px;
        color:#94a3b8;
        background:rgba(255,255,255,.05);
        padding:6px 14px;
        border-radius:50px;
        text-decoration:none;
        display:inline-block;
        border:1px solid rgba(255,255,255,.05);
        transition:.2s;
    }

    .footer-links a:active {
        background:#f59e0b;
        color:#fff;
    }

    /* الشريط السفلي - جوال */
    .footer-bottom-bar {
        background:#020617;
        padding:16px 16px;
        border-top:1px solid rgba(255,255,255,.06);
    }

    .footer-bottom-content {
        display:flex;
        flex-direction:column;
        gap:6px;
        align-items:center;
        font-size:11.5px;
        color:#64748b;
        line-height:1.6;
        text-align:center;
    }

    .footer-bottom-content .divider {
        display:none; /* اخفي | بالجوال */
    }
}

/* جوال صغير جداً */
@media (max-width: 380px) {
    .footer-links a { font-size:11.5px; padding:5px 10px; }
    .contact-box a { font-size:12px; }
}



/* //////////////////////////////////// */
  

    
    .slide {
        padding: 35px 25px 30px;
    }
    
    .slide .image {
        width: 90px;
        height: 90px;
    }
    
    .slide p {
        font-size: 15px;
    }
    
    .details .name {
        font-size: 18px;
    }
    
    .map-overlay-info {
        display: none !important;
    }
    
    .map-section {
        height: 400px; 
    }
    
    .stat-card-glass {
        padding: 40px 20px;
    }
    
    .stat-val {
        font-size: 2.8rem;
    }
    
    .ceo-img-ring {
        width: 100px;
        height: 100px;
    }
    
    .ceo-header h4 {
        font-size: 18px;
    }
    
    .ceo-quote p {
        font-size: 13px;
    }
}

/* ============================================ */
/* Citizen Portal Link - بوابة المواطن */
/* ============================================ */
.citizen-portal-link {
    display: flex !important;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 187, 76, 0.4); 
    padding: 8px 20px !important;
    border-radius: 50px; 
    margin: 0 10px;
    text-decoration: none !important;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.citizen-portal-link::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(224, 187, 76, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.citizen-portal-link:hover::before {
    opacity: 1;
}

.citizen-portal-link .portal-tag {
    background: linear-gradient(135deg, #e0bb4c, #b2912d);
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.citizen-portal-link .portal-text {
    color: #a07703 !important;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.citizen-portal-link:hover {
    transform: translateY(-3px);
    border-color: #fff;
    box-shadow: 0 8px 20px rgba(224, 187, 76, 0.2);
}

/* ============================================ */
/* Staff Button - خدمات الموظفين */
/* ============================================ */
.btn-staff-outline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    text-decoration: none !important;
    background: var(--accent); 
    color: #ffffff;
    border: 2px solid var(--accent);
}

.btn-staff-outline:hover {
    background:  #e0c24c;
    color: #786003;
    border-color:  var(--accent);
    box-shadow: 0 6px 15px rgba(26, 71, 49, 0.3);
    transform: translateY(-2px);
}

.btn-staff-outline i {
    transition: transform 0.3s ease;
}

.btn-staff-outline:hover i {
    transform: rotate(20deg);
}

/* ============================================ */
/* Smooth Scroll - التمرير السلس */
/* ============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================ */
/* Custom Scrollbar - شريط التمرير */
/* ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold); 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c5a03b; 
}

/* ============================================ */
/* Image Gallery - معرض الصور */
/* ============================================ */
.library {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.image-gallery {
    text-align: center;
    padding: 40px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    justify-items: center;
}

.image-gallery a {
    display: inline-block;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-gallery a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.image-item img:hover {
    transform: scale(1.1);
}

.image-box {
    color: white;
    padding: 20px;
    width: 100% !important;
    border-radius: 10px;
    height: 200px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.library-slider .slider {
    display: flex;
    gap: 15px;
}

.library-slider .slider div {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.library-slider .slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.view-more {
    text-align: center;
}

/* ============================================ */
/* Tourism Places - الأماكن السياحية */
/* ============================================ */
.tourism-places {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.text-box {
    background-color: rgb(10, 50, 90);
    padding: 15px;
    margin: 5px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    flex-grow: 1;
    flex-basis: calc(50% - 10px);
    box-sizing: border-box;
    cursor: pointer;
}

.text-box p {
    color: var(--color-gold);
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

.text-box:hover {
    background-color: rgb(20, 98, 168);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(20, 98, 168, 0.4);
}

/* ============================================ */
/* About Image - صورة عن المدينة */
/* ============================================ */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image {
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    width: 100%;
    height: auto;
}

.about-image:hover {
    transform: scale(1.05);
}

.description {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ============================================ */
/* Carousel Container - حاوية الكاروسيل */
/* ============================================ */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0.4);
}

.carousel-caption {
    position: absolute;
    color: #fff;
    margin: 15px;
    z-index: 10;
}


/* ============================================ */
/* CEO Special Card - بطاقة رئيس البلدية */
/* ============================================ */
.ceo-special-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.12);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* زخرفة خلفية */
.ceo-special-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ceo-special-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.2);
}

.ceo-header {
    position: relative;
    z-index: 2;
}

.ceo-img-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #1e3a8a 0%, #fbbf24 50%, #1e3a8a 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.ceo-img-ring::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #fbbf24);
    opacity: 0.2;
    filter: blur(15px);
    z-index: -1;
}

.ceo-img-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.ceo-header h4 {
    font-size: 20px;
    color: #1e293b;
    margin-top: 15px;
    font-weight: 800;
}

.ceo-title {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e !important;
    border-radius: 20px;
    font-size: 13px;
    margin-top: 8px;
    border: 1px solid #fbbf24;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
}

.ceo-quote {
    position: relative;
    z-index: 2;
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border-right: 4px solid #1e3a8a;
}

.ceo-quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 32px;
    color: #1e3a8a;
    opacity: 0.15;
}

.ceo-quote p {
    font-size: 14px;
    color: #334155;
    line-height: 1.9;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.btn-ceo-link {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #1e3a8a 0%, #2a5298 100%);
    color: #fff !important;
    padding: 12px 24px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    overflow: hidden;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-ceo-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-ceo-link:hover::before {
    left: 100%;
}

.btn-ceo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    color: #fff !important;
}

.btn-ceo-link i {
    transition: transform 0.3s ease;
}

.btn-ceo-link:hover i {
    transform: translateX(-5px);
}

/* للموبايل */
@media (max-width: 768px) {
    .ceo-img-ring {
        width: 100px;
        height: 100px;
    }
    .ceo-header h4 {
        font-size: 18px;
    }
    .ceo-quote p {
        font-size: 13px;
    }
}

/* ============================================ */
/* Public Services Sidebar - خدمات عامة */
/* ============================================ */
.public-services-sidebar {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.sidebar-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2a5298 100%);
    padding: 20px 25px;
    color: #fff;
    position: relative;
}

.sidebar-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-header h4 i {
    font-size: 20px;
    opacity: 0.9;
}

.header-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
}

.services-list-v2 {
    padding: 8px;
}

.service-v2-item {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    margin-bottom: 6px;
    border-radius: 12px;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

/* خط متحرك عند الـ hover */
.service-v2-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #1e3a8a;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-v2-item:hover::before {
    transform: scaleY(1);
}

.service-v2-item:hover {
    background: linear-gradient(90deg, #1e3a8a 0%, #2a5298 100%);
    color: #fff;
    transform: translateX(-8px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
    border-color: #1e3a8a;
}

/* تعطيل العناصر اللي ما فيها رابط */
.service-v2-item[href="#"] {
    opacity: 0.6;
    cursor: not-allowed;
}

.service-v2-item[href="#"]:hover {
    background: #f1f5f9;
    color: #64748b;
    transform: none;
    box-shadow: none;
}

.service-v2-item[href="#"]::before {
    display: none;
}

.service-v2-item .icon-box {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 14px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    flex-shrink: 0;
}

.service-v2-item .icon-box i {
    font-size: 20px;
    transition: all 0.3s;
}

/* ألوان الأيقونات */
.service-v2-item .fa-house-crack { color: #dc2626; }
.service-v2-item .fa-chart-line { color: #16a34a; }
.service-v2-item .fa-book-open { color: #2563eb; }
.service-v2-item .fa-seedling { color: #65a30d; }
.service-v2-item .fa-scale-balanced { color: #7c3aed; }
.service-v2-item .fa-city { color: #0891b2; }
.service-v2-item .fa-building-columns { color: #ea580c; }
.service-v2-item .fa-file-lines { color: #0d9488; }

.service-v2-item:hover .icon-box {
    background: rgba(255,255,255,0.2);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-v2-item:hover .icon-box i {
    color: #fff !important;
}

.service-v2-item .service-name {
    flex: 1;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
}

.service-v2-item .arrow-icon {
    color: #cbd5e1;
    font-size: 14px;
    transition: all 0.3s;
    margin-right: 5px;
}

.service-v2-item:hover .arrow-icon {
    color: #fff;
    transform: translateX(-5px);
}

/* للموبايل */
@media (max-width: 768px) {
    .service-v2-item {
        padding: 12px 14px;
    }
    .service-v2-item .icon-box {
        width: 40px;
        height: 40px;
    }
    .service-v2-item .service-name {
        font-size: 14px;
    }
    .ceo-special-card {
        padding: 25px 20px;
    }
}



/* ============================================ */
/* Utility Classes */
/* ============================================ */
.text-primary-dark {
    color: var(--primary-dark) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.text-gold {
    color: var(--color-gold) !important;
}

.bg-gold {
    background-color: var(--color-gold) !important;
}