:root {
  --black: #121212;
  --dark: #1e1e1e;
  --gold: #d4af37;
  --gold-light: #f0e6b2;
  --white: #f8f8f8;
  --gray: #cccccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--white);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--gold-light);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: 50%;
  transform: translateX(50%);
  width: 100px;
  height: 3px;
  background: var(--gold);
}

/* الشريط العلوي */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.nav-logo small {
  display: block;
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 5px;
  letter-spacing: 1px;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-menu a {
  color: var(--gray);
  font-size: 1.1rem;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--gold);
  margin: 3px 0;
  transition: 0.3s;
}

/* القسم الرئيسي */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: var(--gold-light);
}

.btn {
  padding: 15px 40px;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-light);
  font-size: 1rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

/* من أنا */
.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.about-content img {
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* الرؤية */
.vision-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.vision-card {
  background: var(--dark);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.vision-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

/* معرض الصور */
.gallery-swiper {
  height: 500px;
}

.gallery-swiper .swiper-slide img {
  object-fit: cover;
  border-radius: 20px;
}

/* ====================
   عداد الانتخابات
   ==================== */
.countdown {
  text-align: center;
  color: var(--gold);
  margin: 30px 0 0;
  font-size: 1.1rem;
}

.countdown h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: white;
}

#timer {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-family: 'Cairo', sans-serif;
}

#timer span {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#timer b {
  font-size: 2.2rem;
  color: white;
  background: rgba(212, 175, 55, 0.2);
  padding: 8px 12px;
  border-radius: 10px;
  min-width: 60px;
}

/* ====================
   وسائل التواصل الكبيرة
   ==================== */
.social-links-large {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0 30px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 140px;
  height: 140px;
  border-radius: 20px;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-link i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.social-link.fb {
  background: #1877f2;
}

.social-link.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ====================
   زر مشاركة الحملة
   ==================== */
.share-buttons {
  text-align: center;
  margin: 50px 0 30px;
}

.share-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white !important;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.4s ease;
}

.share-buttons a:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.share-buttons a i {
  font-size: 1.4rem;
}

/* ====================
   نموذج التواصل - تصميم احترافي بألوان وتأثيرات
   ==================== */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: #1e1e1e;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
  direction: rtl;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  transition: all 0.4s ease;
  font-family: 'Cairo', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
  background: #333;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  transition: all 0.4s ease;
}

.contact-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  background: #f0e6b2;
}

/* الجوال */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 5%;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--black);
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--gold);
  }
  .nav-menu.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .typing-effect {
    font-size: 2rem;
  }
  .contact-form {
    padding: 30px 20px;
  }
}
/* ====================
   تصميم الشعار الجديد - بسام علي - نحو وطن أقوى
   ==================== */
.nav-logo {
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.logo-main {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeInUp 0.8s ease forwards;
}

.logo-sub {
  font-size: 0.95rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 1.5px;
  font-style: italic;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.8s ease 0.3s forwards;
  white-space: nowrap;
}

/* تأثير حركي للظهور */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* تأثير عند التحويم */
.nav-logo:hover .logo-main {
  color: var(--white);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-logo:hover .logo-sub {
  color: var(--white);
  text-shadow: 0 0 8px rgba(240, 230, 178, 0.6);
}

/* الجوال */
@media (max-width: 768px) {
  .logo-main {
    font-size: 1.6rem;
  }
  .logo-sub {
    font-size: 0.85rem;
  }
}
/* ====================
   الشعار الدائري - لوجو بسام علي
   ==================== */
.nav-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.logo-text {
  text-align: center;
  margin-right: 12px;
  direction: rtl;
}

.logo-main {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeInUp 0.8s ease forwards;
}

.logo-sub {
  font-size: 0.95rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 1.5px;
  font-style: italic;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.8s ease 0.3s forwards;
  white-space: nowrap;
}

/* تأثير نبض خفيف على الشعار */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* تأثير عند التحويم */
.nav-logo:hover .logo-main,
.nav-logo:hover .logo-sub {
  color: var(--white);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-logo:hover .logo-circle {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* الجوال */
@media (max-width: 768px) {
  .nav-logo-wrapper {
    flex-direction: column;
    gap: 5px;
  }

  .logo-circle {
    width: 45px;
    height: 45px;
  }

  .logo-text {
    margin-right: 0;
    margin-top: 5px;
  }

  .logo-main {
    font-size: 1.6rem;
  }

  .logo-sub {
    font-size: 0.85rem;
  }
}

.final-message {
  text-align: center;
  max-width: 800px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 15px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
}

.final-message h3 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 15px;
}

.final-message p {
  color: #ccc;
  font-size: 1.2rem;
}

/* ====================
   قسم "من أنا؟" - تصميم جانبي (صورة + نص)
   ==================== */
.about-flex {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  direction: rtl;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-content {
  flex: 2;
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.9;
}

.about-content .intro,
.about-content .closing {
  margin-bottom: 30px;
  text-align: justify;
}

.about-content h3 {
  color: var(--gold);
  margin: 40px 0 20px;
  font-size: 1.6rem;
  font-weight: 600;
}

.experience-list {
  list-style: none;
  padding-right: 10px;
}

.experience-list li {
  padding: 12px 20px;
  background: #1e1e1e;
  margin-bottom: 10px;
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.experience-list li:hover {
  background: #2a2a2a;
  transform: translateX(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* الجوال - ترتيب عمودي */
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    margin-bottom: 30px;
  }

  .about-content h3 {
    text-align: center;
  }
}
/* ====================
   قسم الدعم - أنا أدعم بسام علي
   ==================== */
.supporter {
  background: linear-gradient(135deg, #0a2e5c 0%, #1e1e1e 100%);
  text-align: center;
  color: var(--white);
}

.support-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.support-card {
  background: #1e1e1e;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.support-card i {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.support-card h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 15px;
}

.support-card p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.7;
}

.social-proof {
  margin-top: 50px;
  color: var(--gold-light);
  font-size: 1.1rem;
  font-style: italic;
}
/* ====================
   قسم: أُعلن دعمك
   ==================== */
.support-section {
  background: #0a1a2a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.support-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gold);
}

.support-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 50px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.support-form {
  max-width: 600px;
  margin: 0 auto;
  background: #1e1e1e;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.support-form .form-group {
  margin-bottom: 20px;
}

.support-form input,
.support-form select {
  width: 100%;
  padding: 15px;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 10px;
  color: white;
  font-size: 1.1rem;
  transition: all 0.4s ease;
}

.support-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  padding-left: 20px;
}

.support-form input:focus,
.support-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 20px;
  font-style: italic;
}
/* ====================
   زر الدعوة للدعم - في الصفحة الرئيسية
   ==================== */
.call-to-support {
  text-align: center;
  padding: 100px 0;
  background: #0a1a2a;
  color: white;
  position: relative;
  overflow: hidden;
}

.call-to-support::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gold);
}

.call-to-support h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.call-to-support p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
}

.btn-large {
  padding: 18px 50px;
  font-size: 1.4rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  transition: all 0.4s ease;
}

.btn-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
  background: #f0e6b2;
  color: var(--black);
}

/* الجوال */
@media (max-width: 768px) {
  .call-to-support h2 {
    font-size: 2rem;
  }
  .btn-large {
    font-size: 1.2rem;
    padding: 16px 40px;
  }
}
/* ====================
   عداد الداعمين - تصميم فخم
   ==================== */
.support-counter {
  text-align: center;
  padding: 80px 0;
  background: #0a1a2a;
  color: white;
}

.support-counter h3 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--gold-light);
}

.counter-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.counter-item {
  background: #1e1e1e;
  padding: 30px 40px;
  border-radius: 20px;
  min-width: 140px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
}

.counter-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  font-family: 'Playfair Display', serif;
}

.counter-item p {
  font-size: 1.2rem;
  color: #ccc;
  margin: 10px 0 0;
}

.counter-subtitle {
  margin-top: 50px;
  font-size: 1.3rem;
  color: var(--gold-light);
  font-style: italic;
}

/* الجوال */
@media (max-width: 768px) {
  .counter-container {
    gap: 30px;
  }
  .counter {
    font-size: 2.5rem;
  }
  .counter-item {
    min-width: 120px;
    padding: 20px;
  }
}
