 /* Reset & Base Styles */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --primary-color: #1a472a;
     --secondary-color: #2d5a3d;
     --accent-color: #c9302c;
     --text-dark: #2c3e50;
     --text-light: #7f8c8d;
     --bg-light: #f8f9fa;
     --border-color: #dee2e6;
     --success-color: #27ae60;
     --error-color: #e74c3c;
 }

 body {
     font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
     line-height: 1.6;
     color: var(--text-dark);
     background-color: #fff;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Header */
 .main-header {
     background: var(--primary-color);
     color: white;
     padding: 1rem 0;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .header-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-size: 1.5rem;
     font-weight: 700;
 }

 .language-switcher a {
     color: white;
     text-decoration: none;
     padding: 0.5rem 1rem;
     margin-left: 0.5rem;
     border-radius: 4px;
     transition: background 0.3s;
 }

 .language-switcher a:hover,
 .language-switcher a.active {
     background: var(--secondary-color);
 }

 /* Hero Section */
 .hero {
     background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
     color: white;
     padding: 4rem 0;
     text-align: center;
 }

 .hero-title {
     font-size: 2.5rem;
     margin-bottom: 2rem;
     font-weight: 700;
 }

 .supporters-counter {
     display: inline-flex;
     flex-direction: column;
     align-items: center;
     background: rgba(255, 255, 255, 0.1);
     padding: 2rem 3rem;
     border-radius: 10px;
     backdrop-filter: blur(10px);
     margin-bottom: 2rem;
 }

 .counter-number {
     font-size: 3rem;
     font-weight: 700;
     color: #fff;
 }

 .counter-label {
     font-size: 1.2rem;
     opacity: 0.9;
 }

 .hero-description {
     font-size: 1.2rem;
     max-width: 800px;
     margin: 0 auto;
     opacity: 0.95;
 }

 /* Form Section */
 .join-section {
     padding: 4rem 0;
     background: var(--bg-light);
 }

 .form-wrapper {
     max-width: 600px;
     margin: 0 auto;
     background: white;
     padding: 3rem;
     border-radius: 10px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }

 .form-wrapper h3 {
     text-align: center;
     margin-bottom: 2rem;
     color: var(--primary-color);
     font-size: 1.8rem;
 }

 .join-form .form-group {
     margin-bottom: 1.5rem;
 }

 .join-form input,
 .join-form select,
 .join-form textarea {
     width: 100%;
     padding: 12px 16px;
     border: 2px solid var(--border-color);
     border-radius: 6px;
     font-size: 1rem;
     font-family: inherit;
     transition: border-color 0.3s;
 }

 .join-form input:focus,
 .join-form select:focus,
 .join-form textarea:focus {
     outline: none;
     border-color: var(--primary-color);
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem;
 }

 .checkbox label {
     display: flex;
     align-items: center;
     cursor: pointer;
 }

 .checkbox input[type="checkbox"] {
     width: auto;
     margin-left: 0.5rem;
 }

 /* Buttons */
 .btn {
     display: inline-block;
     padding: 12px 30px;
     font-size: 1rem;
     font-weight: 500;
     text-align: center;
     text-decoration: none;
     border: none;
     border-radius: 6px;
     cursor: pointer;
     transition: all 0.3s;
     font-family: inherit;
 }

 .btn-primary {
     background: var(--primary-color);
     color: white;
     width: 100%;
 }

 .btn-primary:hover {
     background: var(--secondary-color);
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .btn-secondary {
     background: white;
     color: var(--primary-color);
     border: 2px solid var(--primary-color);
 }

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

 /* Message */
 .message {
     padding: 1rem;
     border-radius: 6px;
     margin-top: 1rem;
     text-align: center;
     display: none;
 }

 .message.success {
     background: #d4edda;
     color: var(--success-color);
     border: 1px solid #c3e6cb;
 }

 .message.error {
     background: #f8d7da;
     color: var(--error-color);
     border: 1px solid #f5c6cb;
 }

 /* Supporters Section */
 .supporters-section {
     padding: 4rem 0;
 }

 .supporters-section h3 {
     text-align: center;
     margin-bottom: 3rem;
     color: var(--primary-color);
     font-size: 2rem;
 }

 .supporters-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 1.5rem;
     margin-bottom: 2rem;
 }

 .supporter-card {
     background: white;
     padding: 1.5rem;
     border-radius: 8px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s, box-shadow 0.3s;
 }

 .supporter-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
 }

 .supporter-name {
     font-weight: 600;
     color: var(--primary-color);
     margin-bottom: 0.5rem;
 }

 .supporter-info {
     color: var(--text-light);
     font-size: 0.9rem;
     margin-bottom: 0.5rem;
 }

 .supporter-message {
     color: var(--text-dark);
     font-style: italic;
     margin-top: 0.5rem;
     padding-top: 0.5rem;
     border-top: 1px solid var(--border-color);
 }

 #loadMore {
     display: block;
     margin: 0 auto;
 }

 /* Share Section */
 .share-section {
     padding: 4rem 0;
     background: var(--bg-light);
     text-align: center;
 }

 .share-section h3 {
     margin-bottom: 2rem;
     color: var(--primary-color);
 }

 .share-buttons {
     display: flex;
     justify-content: center;
     gap: 1rem;
     flex-wrap: wrap;
 }

 .share-btn {
     display: inline-block;
     padding: 10px 20px;
     color: white;
     text-decoration: none;
     border-radius: 6px;
     transition: transform 0.3s;
 }

 .share-btn:hover {
     transform: translateY(-2px);
 }

 .share-btn.twitter {
     background: #1DA1F2;
 }

 .share-btn.facebook {
     background: #4267B2;
 }

 .share-btn.linkedin {
     background: #0077B5;
 }

 .share-btn.telegram {
     background: #0088cc;
 }

 .share-btn.whatsapp {
     background: #25D366;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .form-row {
         grid-template-columns: 1fr;
     }

     .hero-title {
         font-size: 2rem;
     }

     .counter-number {
         font-size: 2.5rem;
     }

     .form-wrapper {
         padding: 2rem;
     }

     .share-buttons {
         flex-direction: column;
         align-items: center;
     }

     .share-btn {
         width: 200px;
     }
 }

 /* RTL Support */
 [dir="rtl"] {
     text-align: right;
 }

 [dir="rtl"] .checkbox input[type="checkbox"] {
     margin-left: 0;
     margin-right: 0.5rem;
 }

 [dir="rtl"] .language-switcher a {
     margin-left: 0;
     margin-right: 0.5rem;
 }

 .logo-wrapper {
     text-align: center;
 }

 .logo {
     font-size: 2.5rem;
     margin: 0;
     color: var(--bg-light);
     font-weight: 700;
 }

 .logo-subtitle {
     display: block;
     font-size: 1.2rem;
     color: var(--text-light);
     margin-top: -5px;
     font-weight: 400;
 }

 /* برای حالت موبایل */
 @media (max-width: 768px) {
     .logo {
         font-size: 1.8rem;
     }

     .logo-subtitle {
         font-size: 1rem;
     }
 }

 /* Mobile Menu Toggle */
 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     justify-content: space-between;
     width: 30px;
     height: 24px;
     background: transparent;
     border: none;
     cursor: pointer;
     padding: 0;
     z-index: 1001;
 }

 .mobile-menu-toggle span {
     display: block;
     width: 100%;
     height: 3px;
     background: #333;
     border-radius: 2px;
     transition: all 0.3s ease;
 }

 .mobile-menu-toggle.active span:nth-child(1) {
     transform: rotate(45deg) translate(6px, 6px);
 }

 .mobile-menu-toggle.active span:nth-child(2) {
     opacity: 0;
 }

 .mobile-menu-toggle.active span:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -7px);
 }

 /* Mobile Navigation */
 @media screen and (max-width: 768px) {
     .mobile-menu-toggle {
         display: flex;
     }

     .nav-menu {
         position: fixed;
         top: 70px;
         left: -100%;
         width: 100%;
         height: calc(100vh - 70px);
         background: white;
         flex-direction: column;
         padding: 30px;
         box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
         transition: left 0.3s ease;
         z-index: 1000;
         overflow-y: auto;
     }

     .nav-menu.active {
         left: 0;
     }

     .nav-menu a {
         padding: 15px 0;
         border-bottom: 1px solid #eee;
         width: 100%;
         text-align: center;
     }

     .mobile-lang {
         margin-top: 20px;
         width: 100%;
     }

     .lang-select {
         width: 100%;
         padding: 10px;
         border: 1px solid #ddd;
         border-radius: 5px;
     }
 }

 /* Header Styles */
 .site-header {
     background: white;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
     padding: 15px 0;
 }

 .header-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     position: relative;
 }

 .logo a {
     color: #2c3e50;
     text-decoration: none;
     font-size: 1.8rem;
     font-weight: bold;
 }

 /* Desktop Navigation */
 .desktop-nav {
     display: flex;
     align-items: center;
     gap: 30px;
 }

 .desktop-nav a {
     color: #2c3e50;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s ease;
 }

 .desktop-nav a:hover {
     color: #e74c3c;
 }

 /* Language Selector */
 .language-selector {
     margin-left: 20px;
 }

 .lang-select,
 .lang-select-mobile {
     padding: 8px 12px;
     border: 1px solid #ddd;
     border-radius: 5px;
     background: white;
     font-size: 14px;
     cursor: pointer;
 }

 /* Mobile Menu Toggle */
 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     justify-content: space-between;
     width: 30px;
     height: 24px;
     background: transparent;
     border: none;
     cursor: pointer;
     padding: 0;
 }

 .mobile-menu-toggle span {
     display: block;
     width: 100%;
     height: 3px;
     background: #333;
     border-radius: 2px;
     transition: all 0.3s ease;
 }

 .mobile-menu-toggle.active span:nth-child(1) {
     transform: rotate(45deg) translate(6px, 6px);
 }

 .mobile-menu-toggle.active span:nth-child(2) {
     opacity: 0;
 }

 .mobile-menu-toggle.active span:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -7px);
 }

 /* Mobile Navigation */
 .mobile-nav {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     right: 0;
     background: white;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     padding: 20px;
     flex-direction: column;
     gap: 20px;
 }

 .mobile-nav.active {
     display: flex;
 }

 .mobile-nav a {
     color: #2c3e50;
     text-decoration: none;
     font-weight: 500;
     padding: 10px 0;
     border-bottom: 1px solid #eee;
 }

 .mobile-lang-selector {
     margin-top: 10px;
     text-align: center;
 }

 .mobile-lang-selector label {
     display: block;
     margin-bottom: 10px;
     font-weight: 500;
 }

 /* Responsive Header */
 @media screen and (max-width: 768px) {
     .desktop-nav {
         display: none;
     }

     .mobile-menu-toggle {
         display: flex;
     }

     .logo a {
         font-size: 1.5rem;
     }
 }

 /* استایل عمومی دراپ‌داون‌ها */
 select.form-control,
 .lang-select,
 .lang-select-mobile,
 .form-select {
     appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;
     background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0l6 6 6-6z" fill="%23333"/></svg>') no-repeat;
     background-position: right 10px center;
     background-size: 10px;
     padding: 10px 30px 10px 15px;
     border: 1px solid #ddd;
     border-radius: 5px;
     font-size: 14px;
     color: #333;
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     cursor: pointer;
     min-width: 120px;
     max-width: 100%;
 }

 /* استایل برای حالت RTL */
 html[dir="rtl"] select.form-control,
 html[dir="rtl"] .lang-select,
 html[dir="rtl"] .lang-select-mobile,
 html[dir="rtl"] .form-select {
     background-position: left 10px center;
     padding: 10px 15px 10px 30px;
 }

 /* استایل hover */
 select.form-control:hover,
 .lang-select:hover,
 .lang-select-mobile:hover,
 .form-select:hover {
     border-color: #bbb;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 /* استایل focus */
 select.form-control:focus,
 .lang-select:focus,
 .lang-select-mobile:focus,
 .form-select:focus {
     outline: none;
     border-color: #3498db;
     box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
 }

 /* استایل برای دراپ‌داون‌های غیرفعال */
 select.form-control:disabled,
 .lang-select:disabled,
 .lang-select-mobile:disabled,
 .form-select:disabled {
     opacity: 0.6;
     cursor: not-allowed;
     background-color: #f9f9f9;
 }

 /* استایل دراپ‌داون زبان در هدر */
 .language-selector .lang-select {
     background-color: rgba(255, 255, 255, 0.9);
     border: 1px solid #eee;
     font-size: 13px;
     padding: 8px 28px 8px 12px;
 }

 html[dir="rtl"] .language-selector .lang-select {
     padding: 8px 12px 8px 28px;
     font-family: 'Vazirmatn';
     font-size: 16px;
 }

 /* استایل دراپ‌داون زبان در منوی موبایل */
 .mobile-lang-selector .lang-select-mobile {
     width: 100%;
     margin-top: 10px;
     padding: 12px 30px 12px 15px;
 }

 html[dir="rtl"] .mobile-lang-selector .lang-select-mobile {
     padding: 12px 15px 12px 30px;
 }

 /* استایل دراپ‌داون کشورها در فرم */
 select#country {
     width: 100%;
     padding: 12px 30px 12px 15px;
     font-size: 15px;
 }

 html[dir="rtl"] select#country {
     padding: 12px 15px 12px 30px;
 }

 /* استایل دراپ‌داون نقش‌ها در فرم */
 select#role {
     width: 100%;
     padding: 12px 30px 12px 15px;
     font-size: 15px;
 }

 html[dir="rtl"] select#role {
     padding: 12px 15px 12px 30px;
 }

 /* استایل برای option های داخل دراپ‌داون */
 select option {
     padding: 10px;
     background: white;
     color: #333;
 }

 /* رنگ‌های برند برای select ها در حالت‌های مختلف */
 .select-primary {
     border-color: #3498db;
 }

 .select-success {
     border-color: #2ecc71;
 }

 .select-warning {
     border-color: #f39c12;
 }

 .select-danger {
     border-color: #e74c3c;
 }

 /* استایل برای دراپ‌داون‌های بزرگ */
 .select-lg {
     padding: 14px 35px 14px 20px;
     font-size: 16px;
 }

 html[dir="rtl"] .select-lg {
     padding: 14px 20px 14px 35px;
 }

 /* استایل برای دراپ‌داون‌های کوچک */
 .select-sm {
     padding: 6px 25px 6px 10px;
     font-size: 12px;
 }

 html[dir="rtl"] .select-sm {
     padding: 6px 10px 6px 25px;
 }

 /* تصحیح برای مرورگرهای مختلف */
 @-moz-document url-prefix() {

     select.form-control,
     .lang-select,
     .lang-select-mobile,
     .form-select {
         text-indent: 0.01px;
         text-overflow: '';
         padding-right: 30px;
     }

     html[dir="rtl"] select.form-control,
     html[dir="rtl"] .lang-select,
     html[dir="rtl"] .lang-select-mobile,
     html[dir="rtl"] .form-select {
         padding-left: 30px;
         padding-right: 15px;
     }
 }

 /* تصحیح برای Safari */
 @media screen and (-webkit-min-device-pixel-ratio:0) {

     select.form-control,
     .lang-select,
     .lang-select-mobile,
     .form-select {
         padding-right: 30px;
     }

     html[dir="rtl"] select.form-control,
     html[dir="rtl"] .lang-select,
     html[dir="rtl"] .lang-select-mobile,
     html[dir="rtl"] .form-select {
         padding-left: 30px;
         padding-right: 15px;
     }
 }

 /* تصحیح برای IE */
 select::-ms-expand {
     display: none;
 }

 /* استایل یکسان برای Select2 و دراپ‌داون‌های معمولی */
 .select2-container {
     width: 100% !important;
 }

 .select2-container--default .select2-selection--single {
     height: 44px !important;
     padding: 6px 12px !important;
     font-size: 15px !important;
     line-height: 1.5 !important;
     border: 1px solid #ddd !important;
     border-radius: 5px !important;
 }

 .select2-container--default .select2-selection--single .select2-selection__rendered {
     color: #333 !important;
     padding-left: 12px !important;
     padding-right: 30px !important;
     line-height: 32px !important;
 }

 .select2-container--default .select2-selection--single .select2-selection__arrow {
     height: 42px !important;
     right: 10px !important;
 }

 /* برای RTL */
 html[dir="rtl"] .select2-container--default .select2-selection--single .select2-selection__rendered {
     padding-right: 12px !important;
     padding-left: 30px !important;
 }

 html[dir="rtl"] .select2-container--default .select2-selection--single .select2-selection__arrow {
     left: 10px !important;
     right: auto !important;
 }

 /* هماهنگی با دراپ‌داون نقش‌ها */
 select.form-control,
 .select2-container--default .select2-selection--single {
     height: 44px !important;
     font-size: 15px !important;
     border: 1px solid #ddd !important;
     border-radius: 5px !important;
 }

 /* حالت Focus */
 .select2-container--default.select2-container--focus .select2-selection--single {
     border-color: #3498db !important;
     box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2) !important;
 }

 /* دراپ‌داون باز شده */
 .select2-dropdown {
     border: 1px solid #ddd !important;
     border-radius: 0 0 5px 5px !important;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
 }

 .select2-results__option {
     padding: 10px 15px !important;
     font-size: 14px !important;
 }

 .select2-results__option--highlighted[aria-selected] {
     background-color: #3498db !important;
 }

 /* === سکشن بیانیه === */
 .statement-section {
     padding: 80px 0;
     background-color: #f8f9fa;
 }

 .statement-section .section-title {
     text-align: center;
     margin-bottom: 50px;
     font-size: 2.5rem;
     color: #333;
     font-weight: 700;
 }

 .statement-box {
     background: white;
     padding: 40px;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     max-width: 1000px;
     margin: 0 auto;
 }

 .statement-text {
     font-size: 1.4rem;
     line-height: 2;
     color: #2c3e50;
     text-align: center;
     margin-bottom: 30px;
     font-weight: 500;
     padding: 20px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     border-radius: 10px;
 }

 .statement-details {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #555;
     text-align: justify;
 }

 /* === سکشن درباره === */
 .about-section {
     padding: 80px 0;
     background-color: #fff;
 }

 .about-section .section-title {
     text-align: center;
     margin-bottom: 50px;
     font-size: 2.5rem;
     color: #333;
     font-weight: 700;
 }

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: center;
 }

 .about-text h3 {
     font-size: 2rem;
     margin-bottom: 20px;
     color: #2c3e50;
 }

 .about-text p {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #555;
     margin-bottom: 20px;
 }

 .about-image img {
     width: 100%;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 /* Responsive */
 @media (max-width: 768px) {
     .about-grid {
         grid-template-columns: 1fr;
     }

     .statement-section .section-title,
     .about-section .section-title {
         font-size: 2rem;
     }

     .statement-text {
         font-size: 1.2rem;
     }

     .statement-box {
         padding: 20px;
     }
 }

 /* Smooth scroll */
 html {
     scroll-behavior: smooth;
 }

 /* Offset for fixed header */
 #statement,
 #about {
     scroll-margin-top: 80px;
 }

 /* === سکشن بیانیه === */
 .statement-section {
     padding: 80px 0;
     background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
 }

 .statement-box {
     background: white;
     padding: 50px;
     border-radius: 20px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     max-width: 1000px;
     margin: 0 auto;
 }

 .statement-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .statement-header h3 {
     font-size: 1.3rem;
     color: #666;
     margin-bottom: 20px;
     font-weight: 400;
 }

 .bismillah {
     font-size: 1.5rem;
     color: #2c3e50;
     font-family: 'Traditional Arabic', 'Noto Naskh Arabic', serif;
     margin-bottom: 30px;
 }

 .statement-body p {
     font-size: 1.1rem;
     line-height: 2;
     color: #444;
     text-align: justify;
     margin-bottom: 25px;
 }

 .statement-declaration {
     background: #f8f9fa;
     padding: 30px;
     border-radius: 15px;
     margin-top: 40px;
 }

 .statement-declaration h4 {
     font-size: 1.3rem;
     color: #2c3e50;
     margin-bottom: 25px;
     font-weight: 600;
 }

 .statement-declaration ol {
     counter-reset: item;
     padding-right: 0;
 }

 .statement-declaration li {
     counter-increment: item;
     margin-bottom: 20px;
     padding-left: 0px;
     position: relative;
     list-style: none;
     font-size: 1.05rem;
     line-height: 1.8;
     color: #555;
     text-align: justify;
 }

 .statement-declaration li::before {
     content: counter(item, arabic-indic);
     position: absolute;
     left: 0;
     top: 0;
     background: var(--primary-color);
     color: white;
     width: 30px;
     height: 30px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
 }

 /* === سکشن درباره === */
 .about-section {
     padding: 80px 0;
     background: #fff;
 }

 .about-intro {
     text-align: center;
     max-width: 800px;
     margin: 0 auto 60px;
 }

 .lead-text {
     font-size: 1.3rem;
     color: #555;
     line-height: 1.8;
 }

 .about-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-bottom: 60px;
 }

 .about-card {
     background: #f8f9fa;
     padding: 40px 30px;
     border-radius: 15px;
     text-align: center;
     transition: transform 0.3s, box-shadow 0.3s;
 }

 .about-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .card-icon {
     font-size: 3rem;
     color: var(--primary-color);
     margin-bottom: 20px;
 }

 .about-card h3 {
     font-size: 1.5rem;
     color: #2c3e50;
     margin-bottom: 15px;
 }

 .about-card p {
     font-size: 1.05rem;
     color: #666;
     line-height: 1.8;
 }

 .about-cta {
     text-align: center;
     background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
     color: white;
     padding: 50px;
     border-radius: 20px;
 }

 .about-cta h3 {
     font-size: 2rem;
     margin-bottom: 15px;
 }

 .about-cta p {
     font-size: 1.2rem;
     margin-bottom: 30px;
     opacity: 0.9;
 }

 .about-cta .btn {
     background: white;
     color: var(--primary-color);
     padding: 15px 40px;
     font-size: 1.1rem;
     border: none;
     transition: all 0.3s;
 }

 .about-cta .btn:hover {
     transform: scale(1.05);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 /* RTL Styles */
 html[dir="rtl"] .statement-declaration li {
     padding-right: 35px;
 }

 html[dir="rtl"] .statement-declaration li::before {
     /*left: auto;*/
     right: 0;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .statement-box {
         padding: 30px 20px;
     }

     .statement-body p {
         font-size: 1rem;
     }

     .about-card {
         padding: 30px 20px;
     }

     .about-cta {
         padding: 30px 20px;
     }
 }

 /* ==================== Footer Styles ==================== */
 .main-footer {
     background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
     color: #ecf0f1;
     margin-top: 80px;
     position: relative;
 }

 /* Footer Top */
 .footer-top {
     padding: 60px 0 40px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .footer-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
 }

 .footer-column {
     padding: 0 15px;
 }

 /* Footer Logo & Title */
 .footer-logo {
     margin-bottom: 20px;
 }

 .footer-title {
     font-size: 1.5rem;
     margin: 0 0 10px 0;
     display: flex;
     flex-direction: column;
     gap: 5px;
 }

 .hashtag-en {
     color: #fff;
     font-weight: 700;
     font-size: 1.6rem;
 }

 .hashtag-fa {
     color: #bdc3c7;
     font-size: 1.2rem;
     font-weight: 500;
 }

 .footer-description {
     color: #bdc3c7;
     line-height: 1.8;
     margin-bottom: 20px;
     text-align: justify;
     font-size: 15px;
 }

 /* Social Links */
 .social-links {
     display: flex;
     gap: 10px;
 }

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

 .social-links a:hover {
     background: var(--primary-color);
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
 }

 /* Footer Headings */
 .footer-heading {
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 20px;
     color: #fff;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-heading::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 50px;
     height: 2px;
     background: var(--primary-color);
 }

 html[dir="rtl"] .footer-heading::after {
     left: auto;
     right: 0;
 }

 /* Footer Links */
 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

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

 .footer-links a {
     color: #bdc3c7;
     text-decoration: none;
     transition: all 0.3s;
     display: inline-block;
     position: relative;
 }

 .footer-links a:hover {
     color: #fff;
     padding-right: 10px;
 }

 html[dir="rtl"] .footer-links a:hover {
     padding-right: 0;
     padding-left: 10px;
 }

 .footer-links a::before {
     content: '→';
     position: absolute;
     right: -20px;
     opacity: 0;
     transition: all 0.3s;
 }

 html[dir="rtl"] .footer-links a::before {
     content: '←';
     right: auto;
     left: -20px;
 }

 .footer-links a:hover::before {
     opacity: 1;
     right: -15px;
 }

 html[dir="rtl"] .footer-links a:hover::before {
     left: -15px;
 }

 /* Footer Stats */
 .footer-stats {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .stat-item {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 10px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 8px;
 }

 .stat-item i {
     font-size: 1.5rem;
     color: var(--primary-color);
 }

 .stat-content {
     display: flex;
     flex-direction: column;
 }

 .stat-number {
     font-size: 1.5rem;
     font-weight: 700;
     color: #fff;
 }

 .stat-label {
     font-size: 0.9rem;
     color: #bdc3c7;
 }

 /* Newsletter Form */
 .newsletter-form {
     margin: 20px 0;
 }

 .input-group {
     display: flex;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50px;
     overflow: hidden;
     transition: all 0.3s;
 }

 .input-group:focus-within {
     background: rgba(255, 255, 255, 0.15);
     box-shadow: 0 0 0 2px var(--primary-color);
 }

 .input-group input {
     flex: 1;
     padding: 12px 20px;
     background: none;
     border: none;
     color: #fff;
     outline: none;
 }

 .input-group input::placeholder {
     color: rgba(255, 255, 255, 0.6);
 }

 .input-group button {
     padding: 0 25px;
     background: var(--primary-color);
     border: none;
     color: #fff;
     cursor: pointer;
     transition: all 0.3s;
 }

 .input-group button:hover {
     background: #764ba2;
 }

 /* QR Code */
 .qr-code-wrapper {
     margin-top: 20px;
     text-align: center;
 }

 .qr-code-wrapper p {
     font-size: 0.9rem;
     color: #bdc3c7;
     margin-bottom: 10px;
 }

 .qr-code {
     width: 100px;
     height: 100px;
     background: #fff;
     padding: 10px;
     border-radius: 10px;
 }

 /* Footer Bottom */
 .footer-bottom {
     background: rgba(0, 0, 0, 0.2);
     padding: 20px 0;
 }

 .footer-bottom-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 20px;
 }

 .copyright p {
     margin: 0;
     color: #bdc3c7;
     font-size: 0.9rem;
 }

 .footer-bottom-links {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .footer-bottom-links a {
     color: #bdc3c7;
     text-decoration: none;
     font-size: 0.9rem;
     transition: color 0.3s;
 }

 .footer-bottom-links a:hover {
     color: #fff;
 }

 .separator {
     color: #7f8c8d;
 }

 /* Back to Top Button */
 .back-to-top {
     position: fixed;
     bottom: 30px;
     left: 30px;
     width: 50px;
     height: 50px;
     background: var(--primary-color);
     color: #fff;
     border: none;
     border-radius: 50%;
     cursor: pointer;
     display: none;
     align-items: center;
     justify-content: center;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
     transition: all 0.3s;
     z-index: 1000;
 }

 html[dir="rtl"] .back-to-top {
     left: auto;
     right: 30px;
 }

 .back-to-top:hover {
     background: #764ba2;
     transform: translateY(-5px);
 }

 .back-to-top.show {
     display: flex;
 }

 /* ==================== Mobile Responsive ==================== */
 @media (max-width: 768px) {
     .footer-top {
         padding: 40px 0 30px;
     }

     .footer-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .footer-column {
         text-align: center;
     }

     .footer-heading::after {
         left: 50%;
         transform: translateX(-50%);
     }

     .social-links {
         justify-content: center;
     }

     .footer-stats {
         flex-direction: row;
         justify-content: space-around;
     }

     .stat-item {
         flex-direction: column;
         text-align: center;
         padding: 15px;
     }

     .footer-bottom-content {
         flex-direction: column;
         text-align: center;
     }

     .back-to-top {
         bottom: 20px;
         left: 20px;
         width: 45px;
         height: 45px;
     }

     html[dir="rtl"] .back-to-top {
         left: auto;
         right: 20px;
     }
 }

 @media (max-width: 480px) {
     .footer-title {
         font-size: 1.2rem;
     }

     .hashtag-en {
         font-size: 1.3rem;
     }

     .hashtag-fa {
         font-size: 1rem;
     }

     .footer-stats {
         flex-direction: column;
     }

     .stat-item {
         flex-direction: row;
         width: 100%;
         justify-content: flex-start;
     }

     .qr-code {
         width: 80px;
         height: 80px;
     }
 }

 /* Dark Mode Support */
 @media (prefers-color-scheme: dark) {
     .main-footer {
         background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
     }
 }