/*
Theme Name: الفارس للعمرة
Theme URI: https://alfarees.site/
Author: الفارس للعمرة
Description: ثيم مخصص كامل لموقع الفارس للعمرة - رحلات عمرة من المدينة
Version: 1.0
Text Domain: alfarees
*/

/* === هنا الصق كل الـ CSS من الكود الأصلي === */
:root {
      --primary: #002b5b;
      --gold: #d4af37;
      --gold-dark: #b8860b;
      --light: #f9fafb;
    }

    /* إصلاح مشكلة الجزء الأبيض */
    html, body {
      width: 100%;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
    }

    * { 
      box-sizing: border-box; 
      margin: 0; 
      padding: 0; 
      scroll-behavior: smooth; 
    }

    body {
      font-family: "Tajawal", sans-serif;
      background: var(--light);
      color: #1e293b;
      overflow-x: hidden;
      position: relative;
      width: 100%;
    }

    /* NAVBAR */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: transparent;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 40px;
      z-index: 1000;
      transition: all 0.3s ease;
      right: 0;
      left: 0;
    }

    nav.scrolled {
      background: linear-gradient(90deg, rgba(0,43,91,0.95), rgba(0,30,60,0.95));
      box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      color: white;
      font-weight: bold;
      font-size: 1.5rem;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .logo-main {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--gold);
      text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
    }

    .logo-sub {
      font-size: 0.8rem;
      color: white;
      font-weight: 400;
    }

    .crescent {
      position: relative;
      width: 40px;
      height: 40px;
      animation: float 4s ease-in-out infinite;
    }

    .crescent::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 40px;
      height: 40px;
      background: var(--gold);
      border-radius: 50%;
      box-shadow: 0 0 15px var(--gold);
    }

    .crescent::after {
      content: "";
      position: absolute;
      top: 5px;
      left: 5px;
      width: 30px;
      height: 30px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    .star {
      position: absolute;
      width: 4px;
      height: 4px;
      background: white;
      border-radius: 50%;
      animation: twinkle 3s infinite;
    }

    .star:nth-child(1) {
      top: 5px;
      right: 10px;
      animation-delay: 0s;
    }

    .star:nth-child(2) {
      top: 15px;
      right: 25px;
      animation-delay: 0.5s;
    }

    .star:nth-child(3) {
      top: 25px;
      right: 15px;
      animation-delay: 1s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    @keyframes twinkle {
      0%, 100% { opacity: 0.3; }
      50% { opacity: 1; }
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    nav ul li a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
      font-size: 1rem;
      text-shadow: 0 1px 3px rgba(0,0,0,0.5);
      position: relative;
    }

    nav ul li a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      right: 0;
      background-color: var(--gold);
      transition: width 0.3s ease;
    }

    nav ul li a:hover::after {
      width: 100%;
    }

    nav ul li a:hover { color: var(--gold); }

    .menu-toggle { display: none; font-size: 1.8rem; color: white; cursor: pointer; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

    @media (max-width: 768px) {
      nav ul {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: rgba(0,43,91,0.97);
        flex-direction: column;
        display: none;
        text-align: center;
        padding: 20px 0;
      }
      nav ul.active { display: flex; }
      .menu-toggle { display: block; }
    }

    /* HERO */
    header {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                  url('/img/66.webp') center/cover no-repeat;
      margin-top: 0;
      position: relative;
      overflow: hidden;
      width: 100%;
      right: 0;
      left: 0;
    }

    .floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .floating-element {
      position: absolute;
      font-size: 2rem;
      opacity: 0.1;
      color: var(--gold);
      animation: floatAround 15s infinite linear;
    }

    .floating-element:nth-child(1) {
      top: 10%;
      left: 10%;
      animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
      top: 20%;
      right: 15%;
      animation-delay: 2s;
    }

    .floating-element:nth-child(3) {
      bottom: 15%;
      left: 20%;
      animation-delay: 4s;
    }

    .floating-element:nth-child(4) {
      bottom: 25%;
      right: 10%;
      animation-delay: 6s;
    }

    @keyframes floatAround {
      0% {
        transform: translate(0, 0) rotate(0deg);
      }
      25% {
        transform: translate(20px, 20px) rotate(90deg);
      }
      50% {
        transform: translate(0, 40px) rotate(180deg);
      }
      75% {
        transform: translate(-20px, 20px) rotate(270deg);
      }
      100% {
        transform: translate(0, 0) rotate(360deg);
      }
    }

    header h1 {
      font-size: 3.2rem;
      color: var(--gold);
      text-shadow: 0 2px 10px rgba(0,0,0,0.5);
      margin-bottom: 20px;
    }

    header p {
      font-size: 1.4rem;
      margin: 10px 0;
      text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }

    #changing-text {
      font-size: 1.2rem;
      font-weight: 600;
      margin-top: 10px;
      animation: fadeIn 2s infinite alternate;
      text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }

    @keyframes fadeIn { from {opacity: 0.5;} to {opacity: 1;} }

    .hero-buttons {
      display: flex;
      gap: 15px;
      margin-top: 30px;
    }

    .btn {
      background: linear-gradient(90deg, var(--gold), var(--gold-dark));
      color: white;
      padding: 13px 28px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 0%;
      height: 100%;
      background: rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
      z-index: -1;
    }

    .btn:hover::before {
      width: 100%;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    }

    /* SECTION BASE */
    section {
      padding: 80px 20px;
      text-align: center;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    h2 {
      color: var(--primary);
      margin-bottom: 40px;
      font-size: 2.2rem;
      position: relative;
    }

    h2::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: var(--gold);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* ABOUT */
    .about {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 35px;
    }

    .about img {
      width: 340px;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: transform 0.5s ease;
      max-width: 100%;
    }

    .about img:hover {
      transform: scale(1.03);
    }

    .about p {
      max-width: 550px;
      font-size: 1.1rem;
      line-height: 1.8;
      color: #333;
    }

    /* CARDS BASE */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      width: 100%;
    }

    .card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 6px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
      max-width: 100%;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--gold), var(--gold-dark));
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s ease;
    }

    .card:hover::before {
      transform: scaleX(1);
    }

    .card:hover { 
      transform: translateY(-6px); 
      box-shadow: 0 12px 20px rgba(0,0,0,0.15);
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .card:hover img {
      transform: scale(1.05);
    }

    .card h3 { margin: 15px 0 5px; color: var(--primary); }

    .card p {
      margin: 0 10px 15px;
      font-size: 0.95rem;
      color: #444;
    }

    .card .actions {
      display: flex;
      justify-content: center;
      gap: 10px;
      padding-bottom: 15px;
    }

    .actions a {
      background: linear-gradient(90deg, var(--gold), var(--gold-dark));
      color: white;
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 0.9rem;
      text-decoration: none;
      transition: 0.3s;
      position: relative;
      overflow: hidden;
    }

    .actions a::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 0%;
      height: 100%;
      background: rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }

    .actions a:hover::before {
      width: 100%;
    }

    .actions a:hover { 
      background: var(--gold-dark); 
      transform: translateY(-2px);
    }

    /* ====== HOTELS ====== */
    #hotels .card {
      border: 1px solid #eee;
      border-radius: 16px;
      overflow: hidden;
      transition: 0.3s;
    }

    #hotels .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    #hotels img {
      width: 100%;
      height: 210px;
      object-fit: cover;
    }

    .hotel-content {
      padding: 20px;
      text-align: center;
    }

    .hotel-content h3 {
      color: var(--primary);
      margin-bottom: 6px;
      font-size: 1.3rem;
    }

    .stars {
      color: var(--gold);
      margin-bottom: 10px;
      font-size: 1.1rem;
    }

    .features {
      list-style: none;
      text-align: right;
      padding: 0 10px;
      margin-bottom: 20px;
    }

    .features li {
      color: #444;
      margin-bottom: 8px;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.3s ease;
    }

    .features li:hover {
      transform: translateX(-5px);
    }

    .features i {
      color: var(--gold);
      font-size: 1rem;
      width: 20px;
    }

    /* ====== NEW SECTION FOR TRIPS DETAILS ====== */
    #umrah-trips-details {
      background-color: #f0f4f8;
      text-align: right;
    }
    .trips-details-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 30px;
    }
    .trips-details-content {
      background: white;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    .trips-details-content h3 {
      color: var(--primary);
      font-size: 1.8rem;
      margin-bottom: 20px;
      border-bottom: 2px solid var(--gold);
      padding-bottom: 10px;
    }
    .trips-details-content h4 {
      color: var(--primary);
      font-size: 1.3rem;
      margin: 20px 0 10px;
    }
    .trips-details-content p {
      line-height: 1.8;
      color: #2d3e50;
      margin-bottom: 15px;
    }
    .trips-details-content ul {
      list-style: none;
      padding: 0;
    }
    .trips-details-content ul li {
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .trips-details-content ul li i {
      color: var(--gold);
      font-size: 1.2rem;
      width: 25px;
    }
    .trips-details-content .price-note {
      background: var(--primary);
      color: white;
      padding: 15px;
      border-radius: 10px;
      margin: 25px 0 0;
      font-weight: 600;
      display: inline-block;
      width: 100%;
      text-align: center;
    }
    .program-badges {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      margin: 20px 0;
    }
    .program-badge {
      flex: 1;
      min-width: 150px;
      background: linear-gradient(135deg, #fff, #f9f9f9);
      border: 1px solid #eee;
      padding: 20px 15px;
      border-radius: 12px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    }
    .program-badge h5 {
      color: var(--gold-dark);
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    @media (max-width: 768px) {
      .trips-details-grid {
        grid-template-columns: 1fr;
      }
    }

    /* FOOTER */
    footer {
      background: var(--primary);
      color: white;
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
      position: relative;
      width: 100%;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    }

    /* FIXED BUTTONS */
    .fixed-buttons {
      position: fixed;
      bottom: 20px;
      left: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 999;
    }

    .fixed-buttons a {
      background: var(--gold);
      color: white;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 20px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.3);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .fixed-buttons a::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 0%;
      height: 100%;
      background: rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }

    .fixed-buttons a:hover::before {
      width: 100%;
    }

    .fixed-buttons a:hover {
      transform: scale(1.1);
      background: var(--gold-dark);
    }

    /* تأثيرات التمرير الإضافية */
    .scroll-reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .scroll-reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* تحسينات للاستجابة */
    @media (max-width: 768px) {
      header h1 {
        font-size: 2.5rem;
      }
      
      header p {
        font-size: 1.1rem;
      }
      
      .hero-buttons {
        flex-direction: column;
        gap: 10px;
      }
      
      .btn {
        padding: 10px 20px;
      }
      
      section {
        padding: 60px 15px;
      }
      
      .about {
        flex-direction: column;
        text-align: center;
      }
      
      .about img {
        width: 100%;
        max-width: 300px;
      }
    }

    .footer-links {
    direction: rtl;
    text-align: right;
    margin: 20px 0;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
    transform: translateX(-5px);
}

.footer-links i {
    margin-left: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.faq-section {
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            padding: 4rem 1.5rem;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .faq-container {
            max-width: 880px;
            margin: 0 auto;
        }

        /* عنوان القسم الرئيسي */
        .faq-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            color: #0f3b2c;
            margin-bottom: 2.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .faq-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background: #10b981;
            border-radius: 4px;
        }

        /* كل بطاقة سؤال وجواب */
        .faq-item {
            background: white;
            border-radius: 1.25rem;
            padding: 1.5rem;
            margin-bottom: 1.25rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
            transition: all 0.25s ease;
            border: 1px solid #eef2f6;
        }

        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.12);
            border-color: #d1dbe8;
        }

        /* نمط السؤال (h3) */
        .faq-question {
            font-size: 1.35rem;
            font-weight: 600;
            color: #1e4620;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .faq-question::before {
            content: "❓";
            font-size: 1.3rem;
            font-weight: normal;
        }

        /* نمط الإجابة (p) */
        .faq-answer {
            font-size: 1rem;
            color: #2d3e50;
            padding-right: 1.8rem;
            border-right: 3px solid #cbd5e1;
            margin-top: 0.5rem;
        }

        /* الرابط داخل الإجابة */
        .faq-answer a {
            color: #0f7b3a;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px dashed #86efac;
            transition: 0.2s;
        }

        .faq-answer a:hover {
            color: #065f2c;
            border-bottom-color: #065f2c;
        }

        /* زر واتساب إضافي (اختياري) */
        .contact-wa {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #25D366;
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 2rem;
            text-decoration: none;
            font-weight: 500;
            margin-top: 1rem;
            transition: 0.2s;
        }

        .contact-wa:hover {
            background: #128C7E;
            transform: scale(1.02);
        }

        /* متجاوب للهواتف */
        @media (max-width: 640px) {
            .faq-section {
                padding: 2.5rem 1rem;
            }
            .faq-title {
                font-size: 1.6rem;
            }
            .faq-question {
                font-size: 1.2rem;
            }
            .faq-answer {
                padding-right: 1rem;
            }
        }
		
		.umrah-links-section {
      padding: 60px 20px;
      background: #f9fafb;
    }

    .umrah-links-section h2 {
      text-align: center;
      font-size: 2rem;
      font-weight: 800;
      color: #1e2a3e;
      margin-bottom: 0.5rem;
      letter-spacing: -0.3px;
      position: relative;
      display: inline-block;
      width: 100%;
    }

    /* optional subtle underline effect */
    .umrah-links-section h2:after {
      content: "";
      display: block;
      width: 80px;
      height: 3px;
      background: #d4af7a;
      margin: 12px auto 0;
      border-radius: 4px;
    }

    /* grid exactly from design */
    .links-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }
	
	.hero-new {
  height: 100vh;
  background: url('/img/66.webp') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #d4af37;
  border-radius: 30px;
  margin-bottom: 20px;
  font-size: 14px;
}

.hero-new h1 {
  font-size: 2.5rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.hero-new h1 span {
  color: #d4af37;
}

.hero-desc {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 25px;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.hero-features div {
  font-size: 14px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-main {
  background: linear-gradient(90deg,#d4af37,#b8860b);
  padding: 12px 25px;
  border-radius: 10px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #fff;
  padding: 12px 25px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
}
.hero-changing {
  font-size: 0.95rem;
  margin-top: 10px;
  opacity: 0.8;
  color: #ddd;
}

.trust-bar {
  background: linear-gradient(90deg,#002b5b,#003a70);
  color: white;
  text-align: center;
  padding: 15px;
  font-weight: bold;
}
.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-elements div {
  position: absolute;
  opacity: 0.05; /* 👈 السر هنا */
  font-size: 30px;
  animation: float 10s infinite linear;
}

.floating-elements div:nth-child(1) { top:10%; left:10%; }
.floating-elements div:nth-child(2) { top:30%; right:15%; }
.floating-elements div:nth-child(3) { bottom:20%; left:20%; }

@keyframes float {
  0% {transform:translateY(0)}
  50% {transform:translateY(20px)}
  100% {transform:translateY(0)}
}
/* === إجبار ظهور الأيقونات (Font Awesome) === */
i.fas, 
i.far, 
i.fab, 
i.fa,
.fa,
.fas,
.far,
.fab {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* للأيقونات العادية (مثل fa-solid) */
.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* === إجبار ظهور أيقونة الهامبرجر === */

/* === هامبرجر CSS (يعمل بدون Font Awesome) === */
.menu-toggle {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 9999;
    display: none; /* مخفي على الديسكتوب */
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* إظهار على الموبايل */
@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
    }
}

/* === إجبار ظهور علامة الواتساب === */
.whatsapp-float .fab.fa-whatsapp,
.whatsapp-float .whatsapp-icon {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    font-size: 32px !important;
    color: white !important;
    display: inline-block !important;
    line-height: 1 !important;
    width: 100% !important;
    text-align: center !important;
}

/* إزالة الخط تحت اللوجو نهائياً */
a.logo-link,
a.logo-link:hover,
a.logo-link:focus,
a.logo-link:active,
.logo .logo-text,
.logo .logo-main,
.logo .logo-sub {
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* إزالة الخط الذهبي (الـ ::after) من اللوجو */
a.logo-link::after,
.logo .logo-text::after,
.logo .logo-main::after,
.logo .logo-sub::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
}