      :root {
        --primary: #1a4f7a;
        --primary-light: #2470a8;
        --primary-dark: #0f2f4a;
        --accent: #e8a020;
        --accent-light: #f5c04a;
        --surface: #f4f7fa;
        --surface2: #e8eef4;
        --text-main: #1a2533;
        --text-muted: #5a6a7a;
        --white: #ffffff;
        --border: #d0dce8;
        --radius: 10px;
        --radius-lg: 16px;
        --shadow: 0 2px 16px rgba(26, 79, 122, 0.1);
      }
      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      body {
        font-family: "Vazirmatn", sans-serif;
        background: var(--surface);
        color: var(--text-main);
        font-size: 15px;
        line-height: 1.7;
      }
      a {
        text-decoration: none;
        color: inherit;
      }

      /* ===== TOPBAR ===== */
      .topbar {
        background: var(--primary-dark);
        color: rgba(255, 255, 255, 0.75);
        font-size: 13px;
        padding: 7px 0;
        border-bottom: 2px solid var(--accent);
      }
      .topbar a {
        color: rgba(255, 255, 255, 0.75);
      }
      .topbar a:hover {
        color: var(--accent-light);
      }
      .topbar .divider {
        margin: 0 10px;
        opacity: 0.3;
      }

      /* ===== HEADER ===== */
      header {
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        position: sticky;
        top: 0;
        z-index: 1000;
      }
      .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 0;
        gap: 20px;
      }
      .logo-block {
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .logo-icon {
        width: 54px;
        height: 54px;
        background: linear-gradient(
          135deg,
          var(--primary) 0%,
          var(--primary-light) 100%
        );
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 26px;
        flex-shrink: 0;
      }
      .logo-text h1 {
        font-size: 19px;
        font-weight: 700;
        color: var(--primary-dark);
        line-height: 1.3;
      }
      .logo-text p {
        font-size: 12px;
        color: var(--text-muted);
      }
      .header-contact {
        display: flex;
        gap: 20px;
        font-size: 13px;
        color: var(--text-muted);
      }
      .header-contact span {
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .header-contact i {
        color: var(--primary-light);
        font-size: 16px;
      }

      /* ===== NAV ===== */
      nav.main-nav {
        background: var(--primary);
        position: relative;
      }
      .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .nav-links {
        display: flex;
        list-style: none;
      }
      .nav-links > li {
        position: relative;
      }
      .nav-links > li > a {
        display: block;
        padding: 13px 18px;
        color: rgba(255, 255, 255, 0.88);
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s;
        border-bottom: 3px solid transparent;
      }
      .nav-links > li > a:hover,
      .nav-links > li > a.active {
        color: #fff;
        border-bottom-color: var(--accent);
        background: rgba(255, 255, 255, 0.08);
      }
      .nav-links .dropdown-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        border-radius: 0 0 var(--radius) var(--radius);
        box-shadow: var(--shadow);
        min-width: 200px;
        display: none;
        z-index: 999;
        border-top: 3px solid var(--accent);
      }
      .nav-links li:hover .dropdown-menu {
        display: block;
      }
      .nav-links .dropdown-menu a {
        display: block;
        padding: 10px 18px;
        color: var(--text-main);
        font-size: 14px;
        border-bottom: 1px solid var(--border);
        transition: background 0.15s;
      }
      .nav-links .dropdown-menu a:hover {
        background: var(--surface);
        color: var(--primary);
      }
      .nav-mobile-btn {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        padding: 10px;
        cursor: pointer;
      }

      /* ===== SLIDER ===== */
      .hero-slider {
        position: relative;
        overflow: hidden;
        height: 420px;
        background: var(--primary-dark);
      }
      .slide {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        opacity: 0;
        transition: opacity 0.7s ease;
        background-size: cover;
        background-position: center;
      }
      .slide.active {
        opacity: 1;
      }
      .slide-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          rgba(10, 30, 50, 0.82) 40%,
          rgba(10, 30, 50, 0.2) 100%
        );
      }
      .slide-content {
        position: relative;
        z-index: 2;
        padding: 0 30px;
        max-width: 580px;
        color: white;
      }
      .slide-tag {
        display: inline-block;
        background: var(--accent);
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        padding: 4px 14px;
        border-radius: 20px;
        margin-bottom: 14px;
        letter-spacing: 0.03em;
      }
      .slide-content h2 {
        font-size: 30px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 14px;
      }
      .slide-content p {
        font-size: 15px;
        opacity: 0.85;
        margin-bottom: 22px;
      }
      .btn-primary-custom {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--accent);
        color: white;
        border: none;
        border-radius: var(--radius);
        padding: 10px 24px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition:
          background 0.2s,
          transform 0.15s;
        font-family: "Vazirmatn", sans-serif;
      }
      .btn-primary-custom:hover {
        background: var(--accent-light);
        color: white;
        transform: translateY(-1px);
      }
      .slide-controls {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
      }
      .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.2s;
        border: none;
      }
      .dot.active {
        background: var(--accent);
        width: 28px;
        border-radius: 5px;
      }
      .slide-arrows {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 16px;
        z-index: 10;
      }
      .arrow-btn {
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 18px;
        transition: background 0.2s;
      }
      .arrow-btn:hover {
        background: var(--accent);
      }

      /* ===== STATS BAR ===== */
      .stats-bar {
        background: var(--primary-dark);
        padding: 16px 0;
      }
      .stat-item {
        text-align: center;
        border-left: 1px solid rgba(255, 255, 255, 0.15);
        padding: 0 20px;
        color: white;
      }
      .stat-item:last-child {
        border-left: none;
      }
      .stat-num {
        font-size: 26px;
        font-weight: 700;
        color: var(--accent-light);
        line-height: 1.2;
      }
      .stat-label {
        font-size: 12px;
        opacity: 0.7;
        margin-top: 2px;
      }

      /* ===== SECTION STYLES ===== */
      section {
        padding: 60px 0;
      }
      .section-header {
        text-align: center;
        margin-bottom: 44px;
      }
      .section-tag {
        display: inline-block;
        background: var(--surface2);
        color: var(--primary);
        font-size: 12px;
        font-weight: 600;
        padding: 4px 16px;
        border-radius: 20px;
        margin-bottom: 10px;
        letter-spacing: 0.04em;
      }
      .section-header h2 {
        font-size: 26px;
        font-weight: 700;
        color: var(--primary-dark);
        position: relative;
        display: inline-block;
        padding-bottom: 14px;
        margin-bottom: 10px;
      }
      .section-header h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        width: 50px;
        height: 3px;
        background: var(--accent);
        border-radius: 2px;
      }
      .section-header p {
        color: var(--text-muted);
        max-width: 540px;
        margin: 0 auto;
        font-size: 14px;
      }

      /* ===== NEWS ===== */
      .news-section {
        background: var(--white);
      }
      .news-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        transition:
          transform 0.2s,
          box-shadow 0.2s;
        cursor: pointer;
        height: 100%;
      }
      .news-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
      }
      .news-img {
        height: 190px;
        background: var(--surface2);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
      }
      .news-img i {
        font-size: 48px;
        color: var(--border);
      }
      .news-cat {
        position: absolute;
        top: 12px;
        right: 12px;
        background: var(--primary);
        color: white;
        font-size: 11px;
        padding: 3px 10px;
        border-radius: 20px;
      }
      .news-body {
        padding: 18px;
      }
      .news-meta {
        display: flex;
        gap: 14px;
        font-size: 12px;
        color: var(--text-muted);
        margin-bottom: 10px;
      }
      .news-meta span {
        display: flex;
        align-items: center;
        gap: 4px;
      }
      .news-body h3 {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-main);
        line-height: 1.5;
        margin-bottom: 8px;
      }
      .news-body p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.7;
      }
      .news-read {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--primary-light);
        font-size: 13px;
        font-weight: 500;
        margin-top: 12px;
        background: none;
        border: none;
        cursor: pointer;
        font-family: "Vazirmatn", sans-serif;
        padding: 0;
      }
      .news-read:hover {
        color: var(--primary);
      }
      .news-featured {
        border-radius: var(--radius-lg);
        overflow: hidden;
        border: 1px solid var(--border);
      }
      .news-featured-img {
        height: 260px;
        background: var(--surface2);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
      }
      .news-featured-img i {
        font-size: 64px;
        color: var(--border);
      }
      .news-featured-body {
        padding: 24px;
      }
      .news-featured-body h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--primary-dark);
      }
      .news-featured-body p {
        color: var(--text-muted);
        font-size: 14px;
      }

      /* ===== SERVICES ===== */
      .services-section {
        background: var(--surface);
      }
      .service-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 28px 22px;
        text-align: center;
        transition: all 0.2s;
        height: 100%;
        cursor: pointer;
      }
      .service-card:hover {
        border-color: var(--primary-light);
        transform: translateY(-3px);
        box-shadow: var(--shadow);
      }
      .service-icon {
        width: 64px;
        height: 64px;
        background: linear-gradient(
          135deg,
          var(--surface2) 0%,
          rgba(36, 112, 168, 0.12) 100%
        );
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
        font-size: 30px;
        color: var(--primary-light);
        transition: all 0.2s;
      }
      .service-card:hover .service-icon {
        background: var(--primary);
        color: white;
      }
      .service-card h3 {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-main);
        margin-bottom: 8px;
      }
      .service-card p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.7;
      }

      /* ===== TEAM ===== */
      .team-section {
        background: var(--white);
      }
      .member-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 28px 20px;
        text-align: center;
        transition: all 0.2s;
      }
      .member-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-3px);
      }
      .member-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(
          135deg,
          var(--primary) 0%,
          var(--primary-light) 100%
        );
        margin: 0 auto 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: white;
        font-weight: 700;
      }
      .member-card h3 {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-main);
        margin-bottom: 4px;
      }
      .member-card .role {
        font-size: 12px;
        color: var(--primary-light);
        font-weight: 500;
        margin-bottom: 10px;
      }
      .member-card p {
        font-size: 13px;
        color: var(--text-muted);
      }
      .member-socials {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        justify-content: center;
      }
      .social-btn {
        width: 34px;
        height: 34px;
        border: 1px solid var(--border);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        font-size: 15px;
        transition: all 0.15s;
        cursor: pointer;
      }
      .social-btn:hover {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
      }

      /* ===== FAQ ===== */
      .faq-section {
        background: var(--surface);
      }
      .faq-item {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        margin-bottom: 10px;
        overflow: hidden;
        transition: box-shadow 0.2s;
      }
      .faq-item.open {
        box-shadow: 0 2px 12px rgba(26, 79, 122, 0.1);
        border-color: var(--primary-light);
      }
      .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        cursor: pointer;
        font-weight: 600;
        font-size: 14px;
        color: var(--text-main);
        user-select: none;
        gap: 12px;
      }
      .faq-question:hover {
        color: var(--primary);
      }
      .faq-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        border-radius: 50%;
        background: var(--surface2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: var(--primary);
        transition: all 0.3s;
      }
      .faq-item.open .faq-icon {
        background: var(--primary);
        color: white;
        transform: rotate(45deg);
      }
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.35s ease,
          padding 0.35s;
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.8;
        padding: 0 20px;
      }
      .faq-answer.open {
        max-height: 300px;
        padding: 0 20px 16px;
      }

      /* ===== LINKS ===== */
      .links-section {
        background: var(--primary-dark);
        padding: 50px 0;
      }
      .links-section .section-header h2 {
        color: white;
      }
      .links-section .section-header h2::after {
        background: var(--accent);
      }
      .links-section .section-tag {
        background: rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.8);
      }
      .links-section .section-header p {
        color: rgba(255, 255, 255, 0.6);
      }
      .link-card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--radius);
        padding: 18px;
        text-align: center;
        color: white;
        transition: all 0.2s;
        cursor: pointer;
        display: block;
      }
      .link-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
        color: white;
      }
      .link-card i {
        font-size: 26px;
        margin-bottom: 8px;
        display: block;
        color: var(--accent-light);
      }
      .link-card span {
        font-size: 13px;
        font-weight: 500;
      }

      /* ===== CONTACT / MESSAGE ===== */
      .contact-section {
        background: var(--white);
      }
      .contact-form-wrap {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 32px;
      }
      .form-group {
        margin-bottom: 18px;
      }
      .form-label {
        font-size: 13px;
        font-weight: 500;
        color: var(--text-main);
        margin-bottom: 6px;
        display: block;
      }
      .form-control-custom {
        width: 100%;
        padding: 10px 14px;
        border: 1.5px solid var(--border);
        border-radius: var(--radius);
        font-family: "Vazirmatn", sans-serif;
        font-size: 14px;
        color: var(--text-main);
        background: var(--surface);
        transition: border-color 0.2s;
        outline: none;
      }
      .form-control-custom:focus {
        border-color: var(--primary-light);
        background: white;
      }
      .contact-info-card {
        background: var(--primary);
        border-radius: var(--radius-lg);
        padding: 32px;
        color: white;
        height: 100%;
      }
      .contact-info-card h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 24px;
      }
      .contact-item {
        display: flex;
        gap: 14px;
        margin-bottom: 20px;
        align-items: flex-start;
      }
      .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
      }
      .contact-item p {
        margin: 0;
        font-size: 13px;
        opacity: 0.75;
      }
      .contact-item strong {
        font-size: 14px;
        font-weight: 600;
      }

      /* ===== FOOTER ===== */
      footer {
        background: var(--primary-dark);
        color: rgba(255, 255, 255, 0.75);
        padding: 50px 0 0;
      }
      .footer-logo {
        margin-bottom: 16px;
      }
      .footer-logo h3 {
        font-size: 18px;
        font-weight: 700;
        color: white;
        margin-bottom: 4px;
      }
      .footer-about {
        font-size: 13px;
        line-height: 1.8;
        opacity: 0.7;
      }
      .footer-title {
        font-size: 14px;
        font-weight: 700;
        color: white;
        margin-bottom: 16px;
        position: relative;
        padding-bottom: 10px;
      }
      .footer-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 30px;
        height: 2px;
        background: var(--accent);
      }
      .footer-links {
        list-style: none;
      }
      .footer-links li {
        margin-bottom: 10px;
      }
      .footer-links a {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.65);
        transition: color 0.2s;
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .footer-links a::before {
        content: "›";
        color: var(--accent);
        font-size: 16px;
      }
      .footer-links a:hover {
        color: var(--accent-light);
      }
      .footer-bottom {
        background: rgba(0, 0, 0, 0.25);
        margin-top: 40px;
        padding: 18px 0;
        font-size: 12px;
        text-align: center;
        opacity: 0.6;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      /* ===== PAGE: NEWS DETAIL ===== */
      .page-news-detail {
        display: none;
      }
      .page-news-detail.active {
        display: block;
      }
      .main-page {
        display: block;
      }
      .main-page.hidden {
        display: none;
      }
      .breadcrumb-bar {
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 12px 0;
        font-size: 13px;
        color: var(--text-muted);
      }
      .breadcrumb-bar a {
        color: var(--primary-light);
      }
      .breadcrumb-bar span {
        margin: 0 8px;
        opacity: 0.4;
      }
      .news-detail-wrap {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        margin-bottom: 30px;
      }
      .news-detail-header {
        padding: 32px 32px 24px;
        border-bottom: 1px solid var(--border);
      }
      .news-detail-meta {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        font-size: 13px;
        color: var(--text-muted);
        margin-bottom: 14px;
      }
      .news-detail-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .news-detail-header h1 {
        font-size: 22px;
        font-weight: 700;
        color: var(--primary-dark);
        line-height: 1.5;
      }
      .news-detail-img {
        height: 340px;
        background: linear-gradient(
          135deg,
          var(--surface2) 0%,
          var(--border) 100%
        );
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .news-detail-img i {
        font-size: 80px;
        color: rgba(26, 79, 122, 0.15);
      }
      .news-detail-content {
        padding: 32px;
        line-height: 1.9;
        font-size: 15px;
        color: var(--text-main);
      }
      .news-detail-content p {
        margin-bottom: 18px;
      }
      .news-detail-content blockquote {
        border-right: 4px solid var(--primary-light);
        background: var(--surface);
        padding: 16px 20px;
        border-radius: 0 var(--radius) var(--radius) 0;
        margin: 20px 0;
        font-style: italic;
        color: var(--text-muted);
      }
      .back-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: var(--radius);
        padding: 10px 22px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        font-family: "Vazirmatn", sans-serif;
        transition: background 0.2s;
        margin-bottom: 24px;
      }
      .back-btn:hover {
        background: var(--primary-dark);
      }

      /* ===== ADMIN PANEL ===== */
      .admin-page {
        display: none;
      }
      .admin-page.active {
        display: block;
      }
      .admin-topbar {
        background: var(--primary-dark);
        color: white;
        padding: 14px 0;
        border-bottom: 3px solid var(--accent);
      }
      .admin-topbar h2 {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
      }
      .admin-layout {
        display: flex;
        min-height: calc(100vh - 80px);
      }
      .admin-sidebar {
        width: 240px;
        background: var(--white);
        border-left: 1px solid var(--border);
        padding: 20px 0;
        flex-shrink: 0;
      }
      .admin-menu-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        font-size: 14px;
        color: var(--text-muted);
        cursor: pointer;
        transition: all 0.15s;
        border-right: 3px solid transparent;
      }
      .admin-menu-item:hover {
        background: var(--surface);
        color: var(--primary);
      }
      .admin-menu-item.active {
        background: rgba(36, 112, 168, 0.08);
        color: var(--primary);
        border-right-color: var(--primary);
        font-weight: 600;
      }
      .admin-menu-item i {
        font-size: 18px;
      }
      .admin-menu-sep {
        font-size: 11px;
        color: var(--text-muted);
        padding: 14px 20px 6px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        opacity: 0.6;
      }
      .admin-content {
        flex: 1;
        padding: 28px;
        background: var(--surface);
        overflow: auto;
      }
      .admin-section {
        display: none;
      }
      .admin-section.active {
        display: block;
      }
      .admin-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 24px;
        margin-bottom: 20px;
      }
      .admin-card-title {
        font-size: 15px;
        font-weight: 700;
        color: var(--primary-dark);
        margin-bottom: 20px;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .admin-card-title i {
        color: var(--primary-light);
        font-size: 18px;
      }
      .admin-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 13px;
      }
      .admin-table th {
        background: var(--surface);
        padding: 10px 14px;
        text-align: right;
        font-weight: 600;
        color: var(--text-muted);
        border-bottom: 1px solid var(--border);
        white-space: nowrap;
      }
      .admin-table td {
        padding: 10px 14px;
        border-bottom: 1px solid var(--border);
        vertical-align: middle;
      }
      .admin-table tr:last-child td {
        border-bottom: none;
      }
      .admin-table tr:hover td {
        background: var(--surface);
      }
      .badge-status {
        display: inline-block;
        font-size: 11px;
        font-weight: 600;
        padding: 3px 10px;
        border-radius: 20px;
      }
      .badge-pub {
        background: #e8f5e9;
        color: #2e7d32;
      }
      .badge-draft {
        background: #fff8e1;
        color: #f57f17;
      }
      .badge-pending {
        background: #e3f2fd;
        color: #1565c0;
      }
      .btn-action {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 5px 12px;
        border-radius: 7px;
        font-size: 12px;
        border: 1px solid var(--border);
        cursor: pointer;
        background: none;
        color: var(--text-muted);
        font-family: "Vazirmatn", sans-serif;
        transition: all 0.15s;
        margin: 0 2px;
      }
      .btn-action:hover {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
      }
      .btn-action.danger:hover {
        background: #e53935;
        border-color: #e53935;
      }
      .btn-add {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: var(--radius);
        padding: 8px 18px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        font-family: "Vazirmatn", sans-serif;
        transition: background 0.15s;
      }
      .btn-add:hover {
        background: var(--primary-dark);
      }
      .admin-form-group {
        margin-bottom: 16px;
      }
      .admin-form-group label {
        font-size: 13px;
        font-weight: 500;
        color: var(--text-main);
        margin-bottom: 6px;
        display: block;
      }
      .admin-input {
        width: 100%;
        padding: 9px 12px;
        border: 1.5px solid var(--border);
        border-radius: var(--radius);
        font-family: "Vazirmatn", sans-serif;
        font-size: 13px;
        color: var(--text-main);
        outline: none;
        transition: border-color 0.2s;
        background: var(--surface);
      }
      .admin-input:focus {
        border-color: var(--primary-light);
        background: white;
      }
      .admin-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-bottom: 24px;
      }
      .admin-stat-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 18px;
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .admin-stat-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
      }
      .stat-blue {
        background: rgba(36, 112, 168, 0.12);
        color: var(--primary-light);
      }
      .stat-green {
        background: #e8f5e9;
        color: #2e7d32;
      }
      .stat-amber {
        background: #fff8e1;
        color: #f57f17;
      }
      .stat-red {
        background: #ffebee;
        color: #c62828;
      }
      .admin-stat-info h4 {
        font-size: 22px;
        font-weight: 700;
        color: var(--text-main);
        line-height: 1.2;
      }
      .admin-stat-info p {
        font-size: 12px;
        color: var(--text-muted);
        margin: 0;
      }

      /* ===== MODAL ===== */
      .modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
      }
      .modal-overlay.open {
        display: flex;
      }
      .modal-box {
        background: white;
        border-radius: var(--radius-lg);
        width: 100%;
        max-width: 500px;
        padding: 28px;
        position: relative;
      }
      .modal-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--primary-dark);
        margin-bottom: 22px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .modal-close {
        position: absolute;
        top: 16px;
        left: 16px;
        background: none;
        border: none;
        font-size: 22px;
        cursor: pointer;
        color: var(--text-muted);
        line-height: 1;
      }
      .modal-close:hover {
        color: var(--text-main);
      }
      .btn-save {
        background: var(--primary);
        color: white;
        border: none;
        border-radius: var(--radius);
        padding: 10px 24px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        font-family: "Vazirmatn", sans-serif;
        transition: background 0.15s;
      }
      .btn-save:hover {
        background: var(--primary-dark);
      }
      .btn-cancel {
        background: var(--surface);
        color: var(--text-muted);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 10px 20px;
        font-size: 14px;
        cursor: pointer;
        font-family: "Vazirmatn", sans-serif;
        margin-left: 8px;
      }

      /* ===== ALERT ===== */
      .alert-toast {
        position: fixed;
        bottom: 24px;
        right: 24px;
        background: var(--primary-dark);
        color: white;
        padding: 14px 20px;
        border-radius: var(--radius);
        font-size: 14px;
        z-index: 99999;
        display: flex;
        align-items: center;
        gap: 10px;
        transform: translateY(80px);
        transition: transform 0.3s;
        border-right: 4px solid var(--accent);
      }
      .alert-toast.show {
        transform: translateY(0);
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 768px) {
        .nav-links {
          display: none;
          flex-direction: column;
        }
        .nav-links.open {
          display: flex;
        }
        .nav-links > li > a {
          padding: 12px 16px;
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
          border-radius: 0;
        }
        .nav-links .dropdown-menu {
          position: static;
          box-shadow: none;
          border-top: none;
        }
        .nav-mobile-btn {
          display: block;
        }
        .hero-slider {
          height: 300px;
        }
        .slide-content h2 {
          font-size: 20px;
        }
        .admin-stats {
          grid-template-columns: repeat(2, 1fr);
        }
        .admin-sidebar {
          display: none;
        }
        .admin-layout {
          flex-direction: column;
        }
        .header-contact {
          display: none;
        }
      }
