* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  direction: rtl;
  overflow-x: hidden; /* منع الفيض الأفقي */
  scroll-behavior: smooth; /* تمرير سلس */
}

body {
  font-family: 'Cairo', Arial, sans-serif;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #f0f9f4 100%);
  color: #1a3c34;
  margin: 0;
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden; /* منع الفيض الأفقي */
  padding-top: 140px;
  position: relative;
  transition: padding-top 0.3s ease;
}

/* عندما يتم إغلاق البانر الترويجي */
body.no-promo {
  padding-top: 90px;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(43, 182, 115, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(26, 60, 52, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(43, 182, 115, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* إخفاء شريط التمرير الافتراضي */
::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* شريط تمرير مخصص في الجهة اليسرى */
.custom-scrollbar {
  position: fixed;
  left: 5px;
  top: 0;
  width: 6px;
  height: 100vh;
  background: rgba(241, 241, 241, 0.8);
  z-index: 99999;
  border-radius: 3px;
  opacity: 0.7;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.custom-scrollbar:hover {
  opacity: 1;
  width: 8px;
  background: rgba(241, 241, 241, 1);
}

.custom-scrollbar-thumb {
  position: absolute;
  left: 0;
  width: 100%;
  background: #2bb673;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s ease, border-radius 0.3s ease;
  min-height: 30px;
}

.custom-scrollbar-thumb:hover {
  background: #1a3c34;
  border-radius: 4px;
}

.custom-scrollbar:hover .custom-scrollbar-thumb {
  background: #2bb673;
}

/* تحسينات إضافية */
.custom-scrollbar-thumb:active {
  background: #0d2117;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Promotional Banner */
.promo-bar {
  background: linear-gradient(135deg, #2bb673 0%, #1a3c34 50%, #2bb673 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite alternate, slideDown 0.5s ease-out;
  color: white;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(43, 182, 115, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  position: relative;
  backdrop-filter: blur(10px);
}

.promo-text {
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.promo-timer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 800;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.promo-close {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.promo-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Header */
.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(224, 224, 224, 0.3);
  padding: 20px 0;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 9999; /* زيادة z-index لضمان البقاء في المقدمة */
  transition: all 0.2s ease; /* تسريع الانتقال */
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  transform: translateY(0); /* ضمان عدم الإخفاء */
}

/* عندما يتم إغلاق البانر الترويجي */
.main-header.no-promo {
  top: 0;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  padding: 15px 0; /* تقليل الحشو عند التمرير */
}

/* تحسينات إضافية للهيدر المثبت */
.main-header {
  -webkit-transform: translateZ(0); /* تحسين الأداء في Safari */
  transform: translateZ(0);
  will-change: transform, background; /* تحسين الأداء */
}

/* ضمان بقاء الهيدر مرئيًا في جميع الحالات */
.main-header:not(.hidden) {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

.main-header .logo {
  height: 65px;
  vertical-align: middle;
}

.main-header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
}

.main-header nav ul li a {
  text-decoration: none;
  color: #1a3c34;
  font-weight: 700;
  transition: color 0.2s;
}

.main-header nav ul li a:hover {
  color: #2bb673;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
  position: relative;
}

/* تصميم محسن للهيدر */
.header-left {
  display: flex;
  align-items: center;
  flex: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: flex-end;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 2;
}

.header-nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.header-nav ul li a {
  text-decoration: none;
  color: #1a3c34;
  font-weight: 700;
  font-size: 1.08rem;
  transition: color 0.2s;
}

.header-nav ul li a:hover {
  color: #2bb673;
}

.header-nav ul li a.active {
  color: #2bb673;
  position: relative;
}

.header-nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 100%;
  height: 2px;
  background: #2bb673;
  border-radius: 1px;
}

.header-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-icon {
  color: #1a3c34;
  font-size: 1.3rem;
  margin-left: 8px;
  transition: color 0.2s;
}

.header-icon:hover {
  color: #2bb673;
}

.header-login {
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-left: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(43, 182, 115, 0.3);
  position: relative;
  overflow: hidden;
}

.header-login::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a3c34, #2bb673);
  transition: left 0.3s ease;
  z-index: -1;
}

.header-login:hover::before {
  left: 0;
}

.header-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(43, 182, 115, 0.4);
}

/* عناصر مخصصة للاستجابة للهيدر */


.mobile-only { display: none !important; }
.desktop-only { display: inline-flex; }

@media (max-width: 900px) {
  .mobile-only {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .desktop-only { display: none !important; }
  .mobile-only a.inline-action {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 8px;
    margin: 8px 0;
    padding: 10px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .mobile-only a[href="#login"] {
    color: #1a3c34 !important;
    background: #e6f9f2 !important;
  }
  .mobile-only a[href="#lang"] {
    color: #2bb673 !important;
    background: #f8fafc !important;
  }
  .header-nav ul li a.inline-action {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    background: rgba(43,182,115,0.08);
  }
  .header-nav ul li a.inline-action i { width:20px; text-align:center; }
  .header-nav ul li a.inline-action:hover { background: rgba(43,182,115,0.15); transform: translateX(8px); }
}

.header-lang {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.9));
  color: #2bb673;
  border: 2px solid #2bb673;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(43, 182, 115, 0.2);
  backdrop-filter: blur(10px);
}

.header-lang:hover {
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: #fff;
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(43, 182, 115, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-right: 15px;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #1a3c34;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.logo {
  height: 60px;
  width: auto;
}

/* Enhanced Typography */
h2 {
  font-size: 3.2rem;
  font-weight: 900;
  color: #1a3c34;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 25px;
  background: linear-gradient(135deg, #1a3c34, #2bb673);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* استثناء للعناوين في الأقسام ذات الخلفية الداكنة */
.demo-invitation-section h2,
.security-section h2,
#contact h2 {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
  background-clip: unset !important;
  color: #ffffff !important;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(43, 182, 115, 0.3);
}

.section-subtitle {
  font-size: 1.3rem;
  color: #666;
  text-align: center;
  margin: 0 auto 50px;
  max-width: 650px;
  line-height: 1.7;
  font-weight: 500;
  position: relative;
}

.section-subtitle::before {
  content: '"';
  font-size: 3rem;
  color: rgba(43, 182, 115, 0.3);
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: Georgia, serif;
}

.section-subtitle::after {
  content: '"';
  font-size: 3rem;
  color: rgba(43, 182, 115, 0.3);
  position: absolute;
  bottom: -40px;
  left: -10px;
  font-family: Georgia, serif;
}

/* Buttons */
.btn {
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  transform: translateY(-3px);
}

/* --- إصلاح نهائي وشامل للون النص الأبيض --- */
.security-section,
#contact {
  isolation: isolate; /* يعزل العنصر لإنشاء سياق تكديس جديد ويمنع الدمج مع الخلفية */
}

.security-section h2,
#contact h2 {
  color: #ffffff !important; /* ضمان اللون الأبيض بشكل قاطع */
  mix-blend-mode: normal !important; /* إلغاء أي وضع دمج موروث */
  filter: none !important; /* إزالة أي فلاتر */
  text-shadow: 0 2px 8px rgba(0,0,0,0.5) !important; /* إضافة ظل للنص لجعله أكثر وضوحًا */
  opacity: 1 !important; /* ضمان الظهور الكامل */
  -webkit-text-fill-color: #ffffff !important; /* إصلاح للمتصفحات الويب كت */
  background: none !important; /* إزالة أي خلفية متدرجة */
}

.security-section .section-subtitle,
#contact .section-subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3) !important;
}

.btn.main::before {
  background: linear-gradient(135deg, #1a3c34, #2bb673);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #2bb673;
  border: 2px solid #2bb673;
}

.btn.secondary::before {
  background: linear-gradient(135deg, #2bb673, #1a3c34);
}

.btn.secondary:hover {
  color: #fff;
}

.cta-pulse {
  animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); box-shadow: 0 12px 30px rgba(43, 182, 115, 0.4); }
}

.btn:hover::before {
  left: 100%;
}

.btn.main {
  background: linear-gradient(135deg, #2bb673 0%, #1a3c34 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(42, 182, 115, 0.3);
}

.btn.main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(42, 182, 115, 0.4);
  background: linear-gradient(135deg, #1a3c34 0%, #2bb673 100%);
}

.btn.secondary {
  background: transparent;
  color: #2bb673;
  border: 2px solid #2bb673;
  box-shadow: 0 4px 15px rgba(42, 182, 115, 0.2);
}

.btn.secondary:hover {
  background: linear-gradient(135deg, #2bb673 0%, #1a3c34 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(42, 182, 115, 0.3);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #2bb673 0%, #1a3c34 50%, #2bb673 100%);
  background-size: 200% 200%;
  animation: heroGradient 5s ease-in-out infinite alternate;
  padding: 140px 0 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
}

@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.15"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.12"/><circle cx="60" cy="10" r="0.8" fill="white" opacity="0.08"/></svg>') repeat;
  pointer-events: none;
  animation: heroSparkle 8s linear infinite;
}

@keyframes heroSparkle {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}



@keyframes heroGlow {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}



@keyframes heroFloat {
  0% { transform: rotate(15deg) translateY(0); }
  100% { transform: rotate(15deg) translateY(-20px); }
}

.hero-flex {
  display: flex;
  align-items: center;
  gap: 80px;
  min-height: 500px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  text-align: right;
  animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff !important;
  margin-bottom: 25px;
  line-height: 1.1;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
  background-clip: unset !important;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5) !important;
}

@keyframes textShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-text p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 45px;
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: center;
}

.hero-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
}

.hero-features span {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.9);
}

.hero-features span:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero-img {
  flex: 1;
  text-align: center;
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-img img {
  max-width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(43, 182, 115, 0.25);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.hero-img img:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 35px 70px rgba(43, 182, 115, 0.35);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #2bb673 0%, #1a3c34 50%, #2bb673 100%);
  background-size: 200% 200%;
  animation: statsGradient 5s ease-in-out infinite alternate;
  padding: 100px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

@keyframes statsGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.15"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.12"/><circle cx="60" cy="10" r="0.8" fill="white" opacity="0.08"/></svg>') repeat;
  pointer-events: none;
  animation: sparkle 8s linear infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.stat-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Partners Section */
.partners-section {
  background: rgba(248, 251, 255, 0.8);
  padding: 80px 0;
  text-align: center;
}

.partners-section h2 {
  font-size: 2.5rem;
  color: #1a3c34;
  margin-bottom: 50px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.partner-item {
  background: white;
  padding: 25px 20px;
  border-radius: 15px;
  font-weight: 600;
  color: #1a3c34;
  box-shadow: 0 8px 20px rgba(43, 182, 115, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.partner-item:hover {
  transform: translateY(-5px);
  border-color: #2bb673;
  box-shadow: 0 15px 30px rgba(43, 182, 115, 0.2);
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, #fafafa 0%, #f8fbff 50%, #fafafa 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(43, 182, 115, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(26, 60, 52, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 60px 45px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(43, 182, 115, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 1px solid rgba(43, 182, 115, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(43, 182, 115, 0.1), rgba(26, 60, 52, 0.1));
  transition: left 0.6s ease;
  z-index: -1;
}

.feature-card:hover::before {
  left: 0;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 70px rgba(43, 182, 115, 0.25);
  border-color: rgba(43, 182, 115, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.2rem;
  color: white;
  box-shadow: 0 10px 25px rgba(43, 182, 115, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(43, 182, 115, 0.4);
}

.feature-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a3c34;
  margin-bottom: 20px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  font-weight: 500;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(42, 182, 115, 0.05), transparent);
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(42, 182, 115, 0.2);
  border-color: #2bb673;
}

.feature-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2.2rem;
  color: white;
  box-shadow: 0 10px 25px rgba(42, 182, 115, 0.3);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a3c34;
  margin-bottom: 20px;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* How it works */
.how-it-works {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-top: 80px;
  flex-wrap: nowrap;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, #2bb673, #1a3c34, #2bb673);
  z-index: 1;
  border-radius: 2px;
}

.step-item {
  background: white;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  flex: 1;
  max-width: 280px;
  position: relative;
  transition: all 0.4s ease;
  z-index: 2;
  text-align: center;
}

.step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(42, 182, 115, 0.2);
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto 25px;
  box-shadow: 0 10px 25px rgba(42, 182, 115, 0.3);
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a3c34;
  margin-bottom: 20px;
}

.step-content p {
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Media Queries for How it Works */
@media (max-width: 1024px) {
  .steps-container {
    gap: 20px;
  }
  
  .step-item {
    padding: 30px 20px;
    max-width: 240px;
  }
}

@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .steps-container::before {
    display: none;
  }
  
  .step-item {
    max-width: 300px;
    width: 100%;
  }
}

/* Packages Section */
.packages-section {
  background: #fafafa;
  padding: 100px 0;
  text-align: center;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-items: center;
  margin-top: 40px;
}

.package-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 25px 20px;
  width: 320px;
  max-width: 100%;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
}

.package-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
  border: 2px solid #2bb673;
  transform: scale(1.05);
  position: relative;
}

.package-card.featured::before {
  content: 'ط§ظ„ط£ظƒط«ط± ط´ط¹ط¨ظٹط©';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(42, 182, 115, 0.3);
}

.package-card h3 {
  color: #2bb673;
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: right;
}

.package-card ul li {
  margin-bottom: 12px;
  padding-right: 25px;
  position: relative;
  font-size: 1.05rem;
  color: #555;
}

.package-card ul li:before {
  content: 'âœ“';
  color: #2bb673;
  position: absolute;
  right: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.package-price {
  font-size: 3.2rem;
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  margin: 25px 0;
  position: relative;
}

/* Comparison Section */
.comparison-section {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #f0f9f4 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.comparison-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(43, 182, 115, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(26, 60, 52, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 0;
  box-shadow: 0 15px 40px rgba(43, 182, 115, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.comparison-card.featured {
  transform: scale(1.05);
  border-color: #2bb673;
  box-shadow: 0 25px 60px rgba(43, 182, 115, 0.2);
}

.comparison-card:hover {
  transform: translateY(-10px);
}

.comparison-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: white;
  padding: 8px 25px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(43, 182, 115, 0.3);
}

.package-header {
  padding: 40px 30px 30px;
  text-align: center;
  position: relative;
}

.package-header.basic {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.package-header.premium {
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: white;
}

.package-header.professional {
  background: linear-gradient(135deg, #1a3c34, #2bb673);
  color: white;
}

.package-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
}

.package-features {
  padding: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  gap: 15px;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}

.feature-item.disabled {
  opacity: 0.5;
}

.feature-item.disabled i {
  color: #dc3545;
}

.feature-item:not(.disabled) i {
  color: #2bb673;
}

.package-btn {
  width: 100%;
  padding: 15px 30px;
  border: none;
  border-radius: 0 0 25px 25px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-btn.basic {
  background: linear-gradient(135deg, #6c757d, #495057);
  color: white;
}

.package-btn.premium {
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: white;
}

.package-btn.professional {
  background: linear-gradient(135deg, #1a3c34, #2bb673);
  color: white;
}

.package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Designs Section */
.designs-section {
  padding: 100px 0;
  text-align: center;
  background: white;
}

/* ط­ط§ظˆظٹ ط§ظ„ط´ط±ظٹط· ظ…ط¹ ط£ط²ط±ط§ط± ط§ظ„طھظ†ظ‚ظ„ */
.designs-slider-container {
  position: relative;
  margin: 60px 0;
}

/* ط£ط²ط±ط§ط± ط§ظ„طھظ†ظ‚ظ„ */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(42, 182, 115, 0.3);
}

/* ط§ظ„ط³ظ„ط§ظٹط¯ط± ط§ظ„ط£ط³ط§ط³ظٹ (ط³ط·ط­ ط§ظ„ظ…ظƒطھط¨) */
.designs-gallery {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

/* ط§ظ„ط¹ظ†طµط± */
.designs-gallery .design-item {
  min-width: 300px;
  flex: 0 0 auto;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* ظˆط¶ط¹ ط§ظ„ظ…ط­ظ…ظˆظ„: ط¹ظ†طµط± ظˆط§ط­ط¯ ط¨ط¹ط±ط¶ ظƒط§ظ…ظ„ ظ…ط¹ ط³ط­ط¨ ظˆطھط­ظˆظٹظ„ */
@media (max-width: 768px) {
  .designs-slider-container { overflow: hidden; }
  .designs-gallery {
    overflow: hidden;
    width: 100%;
    display: flex;
    gap: 0;
    transform: translateX(0);
  transition: transform 0.32s cubic-bezier(.55,.15,.25,.95);
  }
  .designs-gallery .design-item {
    width: 100%;
    min-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .slider-btn { display: none; }
  .designs-dots { display: flex; }
}

/* ط§ظ„ظ†ظ‚ط§ط· */
.designs-dots {
  margin-top: 25px;
  display: flex; /* ط¥ط¸ظ‡ط§ط±ظ‡ط§ ط¹ظ„ظ‰ ظƒظ„ ط§ظ„ط£ط¬ظ‡ط²ط© */
  justify-content: center;
  gap: 10px;
}
.design-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d4e7de;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
}
.design-dot.active {
  background: linear-gradient(135deg,#2bb673,#1a3c34);
  transform: scale(1.3);
}
.design-dot:hover { background:#2bb673; }

/* (ط£ط²ظٹظ„طھ ط£ظ†ظ…ط§ط· ط§ظ„ط¹ط¯ط§ط¯ ظˆط§ظ„طھط´ط؛ظٹظ„ ط§ظ„طھظ„ظ‚ط§ط¦ظٹ ط­ط³ط¨ ط§ظ„ط·ظ„ط¨) */

/* ط³ظ„ط§ظٹط¯ط± ط¢ط±ط§ط، ط§ظ„ط¹ظ…ظ„ط§ط، (طھط­ط³ظٹظ† ط¹ط±ط¶ ط§ظ„ط¬ظˆط§ظ„) */
@media (max-width: 768px) {
  .testimonials-slider {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 5px 25px;
    height: auto !important;
    max-width: 100%;
    margin: 40px 0 25px;
  }
  .testimonials-slider::-webkit-scrollbar { height: 6px; }
  .testimonials-slider::-webkit-scrollbar-track { background: #eef7f3; }
  .testimonials-slider::-webkit-scrollbar-thumb { background: linear-gradient(90deg,#2bb673,#1a3c34); border-radius: 3px; }
  .testimonial-card {
    position: relative !important;
    flex: 0 0 80%;
    min-width: 80%;
    opacity: 1 !important;
    transform: none !important;
    transition: box-shadow .35s ease, transform .35s ease;
    scroll-snap-align: center;
    padding: 32px 26px;
  }
  .testimonial-card:active { transform: scale(.97); }
  .testimonial-dots { display: none; }
}

/* ظ…ظ†ط§ط·ظ‚ ط§ظ„ظ†ظ‚ط± ط§ظ„ط³ط±ظٹط¹ط© (ظ…ط­ظ…ظˆظ„) */
.designs-tap-zone { display: none; }
@media (max-width:768px){
  .designs-tap-zone {
    display: block;
    position: absolute;
    top: 0; bottom: 0;
    width: 28%;
    z-index: 5;
  }
  .designs-tap-zone.left { left: 0; }
  .designs-tap-zone.right { right: 0; }
  .designs-tap-zone:active { background: rgba(0,0,0,0.05); }
  .designs-slider-container { position: relative; }
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(42, 182, 115, 0.4);
}

.prev-btn {
  left: -25px;
}

.next-btn {
  right: -25px;
}

.designs-gallery {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 30px;
  margin: 60px 0;
  padding: 20px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* طھط®طµظٹطµ ط´ط±ظٹط· ط§ظ„طھظ…ط±ظٹط± */
.designs-gallery::-webkit-scrollbar {
  height: 8px;
}

.designs-gallery::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.designs-gallery::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #2bb673, #1a3c34);
  border-radius: 10px;
}

.designs-gallery::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #1a3c34, #2bb673);
}

.design-item {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  background: white;
  flex: 0 0 320px; /* ط¹ط±ط¶ ط«ط§ط¨طھ ظ„ظ„ط¹ظ†ط§طµط± */
  min-width: 320px;
}

.design-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(42, 182, 115, 0.2);
}

.design-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(42, 182, 115, 0.8), rgba(26, 60, 52, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.design-item:hover::before {
  opacity: 1;
}

.design-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.design-item:hover img {
  transform: scale(1.1);
}

.design-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.design-item:hover .design-overlay {
  opacity: 1;
}

.design-overlay h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.design-overlay p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.design-btn {
  background: white;
  color: #2bb673;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.design-btn:hover {
  background: #2bb673;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 182, 115, 0.3);
}

/* طھطµظ…ظٹظ… ط²ط± ط§ظ„ظ…ط²ظٹط¯ ظ…ظ† ط§ظ„طھطµط§ظ…ظٹظ… */
.designs-cta {
  margin-top: 40px;
  text-align: center;
}

.designs-cta .btn {
  padding: 18px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(43, 182, 115, 0.3);
}

.designs-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(43, 182, 115, 0.4);
}

/* Media Queries for Designs Gallery */
@media (max-width: 768px) {
  .designs-slider-container {
    margin: 40px 0;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .prev-btn {
    left: -20px;
  }
  
  .next-btn {
    right: -20px;
  }
  
  .design-item {
    flex: 0 0 280px;
    min-width: 280px;
  }
}

@media (max-width: 480px) {
  .slider-btn {
    display: none; /* ط¥ط®ظپط§ط، ط§ظ„ط£ط²ط±ط§ط± ظپظٹ ط§ظ„ط´ط§ط´ط§طھ ط§ظ„طµط؛ظٹط±ط© ط¬ط¯ط§ظ‹ */
  }
  
  .designs-gallery {
    padding: 20px 10px;
  }
  
  .design-item {
    flex: 0 0 250px;
    min-width: 250px;
  }
  
  .design-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
    border-radius: 15px;
  }
  
  .design-overlay h4 {
    font-size: 1.1rem;
  }
  
  .design-overlay p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
}

.designs-cta .btn i {
  font-size: 1.2rem;
}

/* Testimonials */
.testimonials-section {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 60px auto 50px;
  height: 350px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  padding: 50px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
}

.stars {
  color: #ffc107;
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.testimonial-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 35px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.author-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a3c34;
  margin-bottom: 5px;
}

.author-info span {
  color: #666;
  font-size: 1rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #2bb673;
  transform: scale(1.2);
}

/* FAQ Section */
.faq-section {
  background: #fafafa;
  padding: 100px 0;
  text-align: center;
}

.faq-container {
  max-width: 900px;
  margin: 60px auto 0;
  text-align: right;
}

.faq-item {
  background: white;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  padding: 30px 35px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: #1a3c34;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question i {
  color: #2bb673;
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 35px 30px;
  color: #666;
  line-height: 1.8;
  margin: 0;
  font-size: 1.05rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #1a3c34 0%, #2bb673 100%);
  padding: 100px 0;
  color: white;
  position: relative;
}

/* ط¶ظ…ط§ظ† ظ„ظˆظ† ط§ظ„ط£ظٹظ‚ظˆظ†ط§طھ ط§ظ„ط£ط¨ظٹط¶ ظپظٹ ظ‚ط³ظ… ط§ظ„طھظˆط§طµظ„ */
.contact-section .contact-item i {
  color: white !important;
}

.contact-section .contact-item .fa-whatsapp {
  color: #25d366 !important;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/></svg>') repeat;
  pointer-events: none;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: white;
  font-weight: 700;
  text-align: center;
}

/* ط¥ط·ط§ط± ظ…ظˆط­ط¯ ظ„ظ…ط¹ظ„ظˆظ…ط§طھ ط§ظ„طھظˆط§طµظ„ */
.contact-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px 35px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

/* طھط£ط«ظٹط± ظ„ظ…ط¹ط© ظ„ظ„ط¥ط·ط§ط± */
.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    transparent 100%
  );
  transition: left 0.6s ease;
}

.contact-info:hover::before {
  left: 100%;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 0;
  position: relative;
}

/* ط®ط· ظپط§طµظ„ ظ…طھظ‚ط·ط¹ ط¨ط¯ظ„ط§ظ‹ ظ…ظ† ط§ظ„ط®ط· ط§ظ„ظ…ط³طھظ‚ظٹظ… */
.contact-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50px;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 20%, 
    rgba(255, 255, 255, 0.6) 50%, 
    rgba(255, 255, 255, 0.3) 80%, 
    transparent 100%
  );
  opacity: 0.7;
}

/* ط¥ط²ط§ظ„ط© ط§ظ„ط­ط¯ ط§ظ„ط³ظپظ„ظٹ ظˆط§ظ„ط®ط· ظ…ظ† ط§ظ„ط¹ظ†طµط± ط§ظ„ط£ط®ظٹط± */
.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-item:last-child::after {
  display: none;
}

/* ط¥ط²ط§ظ„ط© ط§ظ„ط­ط´ظˆ ط§ظ„ط¹ظ„ظˆظٹ ظ…ظ† ط§ظ„ط¹ظ†طµط± ط§ظ„ط£ظˆظ„ */
.contact-item:first-child {
  padding-top: 0;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(-5px);
  border-radius: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

.contact-item i {
  font-size: 1.8rem;
  color: white !important;
  margin-top: 5px;
}

/* طھط­ط³ظٹظ† ط£ظٹظ‚ظˆظ†ط© ط§ظ„ظˆط§طھط³ط§ط¨ */
.contact-item .fa-whatsapp {
  color: #25d366 !important;
}

.contact-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 1.05rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 50px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: white;
  text-align: center;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 25px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.05rem;
  font-family: inherit;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c4a45c;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.contact-form button {
  width: 100%;
  padding: 18px;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  border-radius: 15px;
  background: linear-gradient(135deg, #c4a45c, #b8941f);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(196, 164, 92, 0.4);
}

.contact-form button:hover::before {
  left: 100%;
}

/* طھط­ط³ظٹظ†ط§طھ طھط¬ط§ظˆط¨ ظ‚ط³ظ… ط§ظ„طھظˆط§طµظ„ ظ„ظ„ظ‡ط§طھظپ ط§ظ„ظ…ط­ظ…ظˆظ„ */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 15px 20px;
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .contact-info h3,
  .contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  
  .contact-info {
    padding: 30px 25px;
  }
  
  .contact-item {
    padding: 15px 0;
    gap: 15px;
  }
  
  .contact-item:hover {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .contact-item i {
    font-size: 1.5rem;
    color: white !important;
  }
  
  /* ط¶ظ…ط§ظ† طھط·ط¨ظٹظ‚ ط§ظ„ظ„ظˆظ† ط§ظ„ط£ط¨ظٹط¶ ظپظٹ ط§ظ„ظ†ط³ط®ط© ط§ظ„ظ…ط­ظ…ظˆظ„ط© */
  #contact .contact-item i,
  .contact-section .contact-item i {
    color: white !important;
    font-size: 1.5rem !important;
  }
  
  #contact .contact-item .fa-whatsapp,
  .contact-section .contact-item .fa-whatsapp {
    color: #25d366 !important;
  }
  
  .contact-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 25px 15px;
  }
  
  .contact-info {
    padding: 25px 20px;
  }
  
  .contact-item {
    padding: 12px 0;
    gap: 12px;
  }
  
  .contact-form h3,
  .contact-info h3 {
    font-size: 1.3rem;
  }
  
  .contact-item::after {
    left: 35px;
  }
}

/* طھط£ط«ظٹط±ط§طھ ط¨طµط±ظٹط© ظ„ظ„ظ†ظ…ظˆط°ط¬ */
.form-success {
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid #28a745;
  color: #28a745;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-error {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid #dc3545;
  color: #dc3545;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-loading {
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid #ffc107;
  color: #ffc107;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
  display: none;
}

/* طھط­ط³ظٹظ† ط±ط§ط¨ط· ط§ظ„ظˆط§طھط³ط§ط¨ */
.contact-item a:hover {
  color: #25d366 !important;
  text-decoration: underline !important;
  transition: all 0.3s ease;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a3c34 0%, #0d2117 100%);
  color: white;
  padding: 80px 0 40px;
  margin-top: 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 182, 115, 0.5), transparent);
}

.footer-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

.footer-col {
  flex: 1 1 0;
  min-width: 0;
  margin-bottom: 0;
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #2bb673, #c4a45c);
  border-radius: 2px;
}

.footer-logo-img {
  height: 45px;
  max-width: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.footer-social {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
}

.footer-social li {
  margin-left: 0;
  margin-right: 15px;
}

.footer-social li:last-child {
  margin-right: 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #2bb673;
  transition: all 0.3s ease;
  font-size: 1.3rem;
}

.footer-social a:hover {
  background-color: #c4a45c;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(196, 164, 92, 0.3);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 15px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 20px;
  font-size: 1.05rem;
}

.footer-links-list a::before {
  content: 'â—€';
  position: absolute;
  right: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #2bb673;
}

.footer-links-list a:hover {
  color: #2bb673;
  padding-right: 30px;
}

.footer-links-list a:hover::before {
  opacity: 1;
}

.footer-newsletter .footer-heading {
  margin-bottom: 15px;
}

.footer-news-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 25px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 10px 10px 0;
  font-size: 1rem;
  outline: none;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 10px 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.newsletter-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 182, 115, 0.3);
}

.newsletter-form button:hover::before {
  left: 100%;
}

.footer-contact {
  margin-top: 15px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: color 0.3s ease;
}

.footer-contact p:hover {
  color: #2bb673;
}

.footer-contact i {
  color: #c4a45c;
  font-size: 1.2rem;
  margin-left: 0;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 25px 0 20px 0;
  border: none;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin: 0 auto;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }
  
  .header-nav.active {
    left: 0;
  }
  
  .header-nav ul {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
    height: auto;
  }
  
  .header-nav ul li a {
    font-size: 1.2rem;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(43, 182, 115, 0.1);
    transition: all 0.3s ease;
    display: block;
  }
  
  .header-nav ul li a:hover {
    background: rgba(43, 182, 115, 0.2);
    transform: translateX(10px);
  }
  
  .header-login {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  .header-lang {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .hero-flex {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  
  .hero-text {
    text-align: center;
    order: 1;
  }
  
  .hero-img {
    order: 2;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .steps-container::before {
    display: none;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .packages-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .footer-row {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-col {
    min-width: unset;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .container {
    width: 95%;
  }
  
  body {
    padding-top: 70px;
  }
  
  .main-header nav ul {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1.2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 40px 30px;
  }
  
  .testimonials-slider {
    height: auto;
    min-height: 300px;
  }
  
  .testimonial-card {
    padding: 40px 30px;
    position: relative;
  }
  
  .contact-form {
    padding: 40px 30px;
  }
  
  .designs-gallery {
    grid-template-columns: 1fr;
  }
  
  .package-card {
    min-width: unset;
    width: 100%;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .btn {
    padding: 14px 30px;
    font-size: 1rem;
  }
}



/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 3.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .hero-flex {
    gap: 50px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
}

/* Responsive Design for Chatbot */
@media (max-width: 768px) {
  body {
    padding-top: 55px;
  }
  
  .main-header {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    min-height: 60px;
    position: fixed; /* طھط«ط¨ظٹطھ ط§ظ„ظ‡ظٹط¯ط± ظپظٹ ط§ظ„ط£ط¹ظ„ظ‰ */
    top: 50px; /* ظ…ط³ط§ط­ط© ظ„ظ„ظ€ promo-bar */
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  .main-header.no-promo {
    top: 0; /* ط¹ظ†ط¯ظ…ط§ ظٹطھظ… ط¥ط؛ظ„ط§ظ‚ ط§ظ„ظ€ promo-bar */
  }
  
  .main-header.scrolled {
    padding: 8px 0;
    min-height: 50px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
}

@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text {
    order: 1;
    text-align: center;
  }
  
  .hero-img {
    order: 2;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-features {
    justify-content: center;
    gap: 15px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .feature-card {
    padding: 40px 30px;
  }
  
  .chatbot-trigger {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    left: 15px;
    bottom: 15px;
  }
  
  .chatbot {
    width: 95%;
    height: 90vh;
    border-radius: 15px;
  }
  
  .chatbot-header {
    padding: 15px;
  }
  
  .chatbot-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .chatbot-info h4 {
    font-size: 1.1rem;
  }
  
  .message-content {
    max-width: 85%;
    padding: 10px 14px;
  }
  
  .quick-replies {
    padding: 12px 15px;
  }
  
  .chatbot-input {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .chatbot-trigger {
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .chatbot {
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }
}

/* Enhanced Blog Section */
.blog-section {
  background: linear-gradient(135deg, #fafafa 0%, #f8fbff 50%, #fafafa 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.blog-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 60px;
  flex-wrap: wrap;
}

.category-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(43, 182, 115, 0.2);
  color: #1a3c34;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.category-btn.active,
.category-btn:hover {
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(43, 182, 115, 0.3);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(43, 182, 115, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(43, 182, 115, 0.1);
}

.blog-card.featured {
  border-color: #2bb673;
  transform: scale(1.02);
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(43, 182, 115, 0.2);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: white;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 700;
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
}

.blog-category {
  background: rgba(43, 182, 115, 0.1);
  color: #2bb673;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-date {
  color: #666;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a3c34;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #999;
}

.blog-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-link {
  color: #2bb673;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: #1a3c34;
}

.blog-share {
  display: flex;
  gap: 10px;
}

.blog-share i {
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.blog-share i:hover {
  color: #2bb673;
}

.blog-cta {
  text-align: center;
  margin-top: 60px;
}

/* Enhanced Security Section */
.security-section {
  background: linear-gradient(135deg, #1a3c34 0%, #2bb673 50%, #1a3c34 100%);
  background-size: 200% 200%;
  animation: securityGradient 8s ease-in-out infinite alternate;
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

@keyframes securityGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.security-intro {
  text-align: center;
  margin-bottom: 80px;
}

.security-intro h2 {
  color: #ffffff !important;
  margin-bottom: 30px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5) !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}

.security-intro .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.security-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.security-stats .stat-item {
  text-align: center;
}

.security-stats .stat-item i {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.security-stats .stat-item h4 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.security-stats .stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.security-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.security-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.security-card:hover::before {
  left: 100%;
}

.security-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.security-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.2rem;
  color: white;
  transition: all 0.3s ease;
}

.security-card:hover .security-icon {
  transform: scale(1.1) rotate(5deg);
}

.security-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.security-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 20px;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
}

.security-certificates {
  margin-top: 80px;
  text-align: center;
}

.security-certificates h3 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: white;
}

.certificates-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.certificate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  min-width: 120px;
  transition: all 0.3s ease;
}

.certificate-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.certificate-item i {
  font-size: 2rem;
  color: white;
}

.certificate-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

/* ======================================
   ط£ظ†ظ…ط§ط· ط§ظ„ظ…ط³ط§ط¹ط¯ ط§ظ„ط°ظƒظٹ (ط§ظ„ط´ط§طھ ط¨ظˆطھ)
====================================== */

/* ط²ط± طھط´ط؛ظٹظ„ ط§ظ„ط´ط§طھ ط¨ظˆطھ */
.chatbot-trigger {
  position: fixed;
  bottom: 30px;
  left: 30px; /* ط¬ظ‡ط© ط§ظ„ظٹط³ط§ط± */
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998; /* ط£ظ‚ظ„ ظ…ظ† ط§ظ„ظ‡ظٹط¯ط± ط¨ظ‚ظ„ظٹظ„ */
  box-shadow: 0 4px 20px rgba(43, 182, 115, 0.3);
  transition: all 0.3s ease;
  color: white;
  font-size: 1.5rem;
}

.chatbot-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(43, 182, 115, 0.4);
}

.chatbot-trigger .notification-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: #ff4757;
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse 2s infinite;
}

.chatbot-trigger.pulse {
  animation: chatbotPulse 1s ease-in-out;
}

@keyframes chatbotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ظ†ط§ظپط°ط© ط§ظ„ط´ط§طھ ط¨ظˆطھ ط§ظ„ظ…ظ†ط¨ط«ظ‚ط© */
.chatbot-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: all 0.3s ease;
}

.chatbot-modal.show {
  display: flex;
  opacity: 1;
}

.chatbot {
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  height: 600px;
  max-height: 80vh;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.chatbot-modal.show .chatbot {
  transform: scale(1);
}

/* ط±ط£ط³ ط§ظ„ط´ط§طھ ط¨ظˆطھ */
.chatbot-header {
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.chatbot-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chatbot-avatar {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.chatbot-info h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.chatbot-status {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ط¬ط³ظ… ط§ظ„ط´ط§طھ ط¨ظˆطھ */
.chatbot-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ط±ط³ط§ط¦ظ„ ط§ظ„ط´ط§طھ */
.bot-message,
.user-message {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  animation: slideInMessage 0.3s ease;
}

.user-message {
  flex-direction: row-reverse;
  align-self: flex-end;
}

.message-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.bot-message .message-avatar {
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: white;
}

.user-message .message-avatar {
  background: #f0f0f0;
  color: #666;
}

.message-content {
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 70%;
  word-wrap: break-word;
  line-height: 1.4;
}

.user-message .message-content {
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: white;
}

@keyframes slideInMessage {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ط±ط¯ظˆط¯ ط³ط±ظٹط¹ط© */
.quick-replies {
  padding: 15px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid #eee;
}

.quick-replies button {
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
}

.quick-replies button:hover {
  background: #2bb673;
  color: white;
  border-color: #2bb673;
}

/* ظ…ط¯ط®ظ„ ط§ظ„ط´ط§طھ */
.chatbot-input {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
  align-items: center;
}

.chatbot-input input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 12px 20px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.chatbot-input input:focus {
  border-color: #2bb673;
}

.chatbot-input button {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.chatbot-input button:hover {
  transform: scale(1.05);
}

/* Mobile App Section */
.mobile-app-section {
  background: #f8fffe;
  padding: 100px 0;
  text-align: center;
}

.app-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.app-text {
  flex: 1;
  text-align: right;
}

.app-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a3c34;
}

.app-text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.app-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.app-stat {
  text-align: center;
}

.app-stat h4 {
  font-size: 2rem;
  font-weight: 900;
  color: #2bb673;
  margin-bottom: 8px;
}

.app-stat .stars {
  color: #ffc107;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.app-stat p {
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.app-features {
  margin-bottom: 40px;
}

 .app-feature {
  position: relative;
  display: block;
  margin-bottom: 20px;
  padding: 16px 18px 16px 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding-right: 80px; /* ط­ط¬ط² ظ…ط³ط§ط­ط© ط§ظ„ط£ظٹظ‚ظˆظ†ط© ط§ظ„ط«ط§ط¨طھط© */
 }

.app-feature:hover {
  background: rgba(43, 182, 115, 0.1);
  transform: translateY(-2px);
}

/* ط¥ظ„ط؛ط§ط، ط§ظ„ط­ط±ظƒط© ظ„طھط¬ط±ط¨ط© ط£ظپط¶ظ„ ط¹ظ„ظ‰ ط§ظ„ط¬ظˆط§ظ„ */
@media (max-width: 768px) {
  .app-feature { transition: background .25s ease; padding-right:70px; }
  .app-feature:hover { transform: none; background: rgba(43,182,115,0.06); }
  .app-feature:active { background: rgba(43,182,115,0.15); }
}

/* ط§ط­طھط±ط§ظ… طھظپط¶ظٹظ„ طھظ‚ظ„ظٹظ„ ط§ظ„ط­ط±ظƒط© */
@media (prefers-reduced-motion: reduce) {
  .app-feature, .app-feature * { transition: none !important; animation: none !important; }
  .app-feature:hover { transform: none !important; }
}

 .app-feature .feature-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 6px 16px rgba(43,182,115,0.35);
 }
@media (max-width:768px){
  .app-feature .feature-icon{ right:14px; width:44px; height:44px; font-size:1rem; }
}

.app-feature .feature-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a3c34;
  margin-bottom: 3px;
}

.app-feature .feature-text p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

.app-download-section h3 {
  font-size: 1.5rem;
  color: #1a3c34;
  margin-bottom: 25px;
}

.app-download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.app-store-btn,
.google-play-btn {
  display: flex;
  text-decoration: none;
  background: #000;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  min-width: 160px;
}

.app-store-btn:hover,
.google-play-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-content i {
  font-size: 1.8rem;
}

.btn-text span {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
}

.btn-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.app-img {
  flex: 1;
  text-align: center;
}

.app-img img {
  max-width: 150px;
  height: auto;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(43, 182, 115, 0.4);
  animation: float 3s ease-in-out infinite;
}

/* طھظ‚ظ„ظٹظ„ ط£ظˆ ط¥ط®ظپط§ط، ط§ظ„ط£ظٹظ‚ظˆظ†ط§طھ ط§ظ„ط¹ط§ط¦ظ…ط© ط¹ظ„ظ‰ ط§ظ„ط´ط§ط´ط§طھ ط§ظ„طµط؛ظٹط±ط© */
@media (max-width: 768px) {
  .floating-icon { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .floating-icon { animation: none !important; }
}

.icon-1 {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.icon-2 {
  top: 60%;
  left: -10%;
  animation-delay: 1s;
}

.icon-3 {
  bottom: 20%;
  right: -5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.qr-section {
  margin-top: 40px;
  text-align: center;
}

.qr-code {
  display: inline-block;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(43, 182, 115, 0.2);
  margin-bottom: 15px;
}

.qr-code img {
  width: 120px;
  height: 120px;
}

.qr-section p {
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .app-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .app-text {
    text-align: center;
  }
  
  .app-stats {
    justify-content: center;
    gap: 30px;
  }
  
  .app-stat h4 {
    font-size: 1.8rem;
  }
  
  .app-download-buttons {
    justify-content: center;
  }
}

/* ====================================
   ط§ظ„ط¨ط§ظ‚ط§طھ ط§ظ„طھظپط§ط¹ظ„ظٹط© - ظ†ظ…ط· ط­ظٹظ‡ظ…
==================================== */

.interactive-packages-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 30%, #f0f9f4 70%, #e8f5e8 100%);
  position: relative;
  overflow: hidden;
}

.interactive-packages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(43, 182, 115, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(26, 60, 52, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(10px, -10px) rotate(1deg); }
  66% { transform: translate(-5px, 5px) rotate(-1deg); }
}

.packages-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.packages-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1a3c34 0%, #2bb673 50%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-shadow: none;
  position: relative;
  display: inline-block;
}

.packages-title::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(43, 182, 115, 0.1) 0%, rgba(26, 60, 52, 0.05) 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.packages-title:hover::before {
  opacity: 1;
}

.packages-title .highlight {
  color: transparent;
  background: linear-gradient(135deg, #2bb673 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.packages-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #2bb673, #16a34a, transparent);
  border-radius: 2px;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.1); }
}

/* ط§ظ„ط­ط§ظˆظٹ ط§ظ„ظ…ظˆط­ط¯ ظ„ظ„طھظ‚ط¯ظ… ظˆط§ظ„ط¨ط§ظ‚ط§طھ ظˆط§ظ„طھظ†ظ‚ظ„ */
.unified-package-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 15px;
  margin: 40px auto;
  max-width: 1200px;
  width: 100%;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: visible;
  box-sizing: border-box;
}

.unified-package-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, 
    #1a3c34 0%, 
    #2bb673 25%, 
    #16a34a 50%, 
    #2bb673 75%, 
    #1a3c34 100%);
  background-size: 300% 100%;
  animation: gradientFlow 4s ease-in-out infinite;
}

.unified-package-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 15%, rgba(43, 182, 115, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(26, 60, 52, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.unified-package-container > * {
  position: relative;
  z-index: 1;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ط´ط±ظٹط· ط§ظ„طھظ‚ط¯ظ… - ظ…ط­ط¯ط« ظ„ظ„ط­ط§ظˆظٹ ط§ظ„ظ…ظˆط­ط¯ */
.progress-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
  background: transparent;
  padding: 10px 15px;
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 3px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  color: #64748b;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.step-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(43, 182, 115, 0.1) 0%, rgba(26, 60, 52, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50%;
}

.step-label {
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
  transition: all 0.4s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.step.active .step-circle {
  background: linear-gradient(135deg, #2bb673 0%, #22c55e 50%, #16a34a 100%);
  border-color: #2bb673;
  color: white;
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(43, 182, 115, 0.4);
}

.step.active .step-circle::before {
  opacity: 1;
}

.step.active .step-label {
  color: #2bb673;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(43, 182, 115, 0.3);
}

.step.completed .step-circle {
  background: linear-gradient(135deg, #2bb673 0%, #16a34a 100%);
  border-color: #2bb673;
  color: white;
  box-shadow: 0 4px 15px rgba(43, 182, 115, 0.3);
}

.step.completed .step-label {
  color: #2bb673;
  font-weight: 600;
}

.step:hover .step-circle {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.step-line {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 100%);
  margin: 0 25px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.step-line::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #2bb673 0%, #16a34a 50%, #15803d 100%);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(43, 182, 115, 0.3);
}

.step-line.completed::after {
  width: 100%;
}

/* ظ…ط­طھظˆظ‰ ط§ظ„ط®ط·ظˆط§طھ - ظ…ط­ط¯ط« ظ„ظ„ط­ط§ظˆظٹ ط§ظ„ظ…ظˆط­ط¯ */
.step-content {
  position: relative;
  background: transparent;
  border-radius: 0;
  padding: 10px 0;
  box-shadow: none;
  border: none;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.step-panel {
  display: none;
  animation: slideIn 0.5s ease forwards;
}

.step-panel.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ط§ظ„ط®ط·ظˆط© 1: ط§ظ„ط¨ظٹط§ظ†ط§طھ - ظ…ط­ط¯ط«ط© ظ„ظ„ط­ط§ظˆظٹ ط§ظ„ظ…ظˆط­ط¯ */
.packages-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  margin-bottom: 5px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.package-option {
  position: relative;
  width: 100%;
  margin-bottom: -1px; /* ظ„ظ„طھط¯ط§ط®ظ„ ط§ظ„ط·ظپظٹظپ ط¨ظٹظ† ط§ظ„ط¨ط·ط§ظ‚ط§طھ */
}

.package-option:first-child .package-card {
  border-radius: 15px 15px 0 0;
}

.package-option:last-child .package-card {
  border-radius: 0 0 15px 15px;
}

.package-option:not(:first-child):not(:last-child) .package-card {
  border-radius: 0;
}

.package-option:only-child .package-card {
  border-radius: 15px;
}

.package-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-card {
  background: white;
  border-radius: 0;
  padding: 2px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  border-bottom: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 25px;
  direction: rtl;
}

.package-card::before {
  content: '';
  position: absolute;
  left: 165px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e5e7eb;
  z-index: 1;
}

.package-option:last-child .package-card {
  border-bottom: 1px solid #e5e7eb;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(43, 182, 115, 0.1) 0%, rgba(26, 60, 52, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

.package-card:hover {
  background: #f8fafc;
  border-color: #2bb673;
  box-shadow: 0 4px 12px rgba(43, 182, 115, 0.15);
}

.package-card:hover::before {
  opacity: 1;
}

.package-card.selected {
  border-color: #2bb673 !important;
  background: #f8fff9 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(43, 182, 115, 0.25) !important;
}

.package-card.selected .package-tag {
  background: linear-gradient(135deg, #2bb673, #1a3c34) !important;
  color: white !important;
}

.package-option input[type="radio"]:checked + .package-card {
  border-color: #2bb673;
  background: linear-gradient(135deg, #f0fdf6 0%, #ffffff 50%, #ecfdf5 100%);
  box-shadow: 0 6px 20px rgba(43, 182, 115, 0.2);
  border-width: 2px;
}

.package-option input[type="radio"]:checked + .package-card::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(43, 182, 115, 0.15) 0%, rgba(26, 60, 52, 0.1) 100%);
}

.package-header {
  text-align: right;
  margin-bottom: 0;
  flex: 0 0 auto;
  min-width: 140px;
  padding-right: 15px;
  border-right: none;
  position: relative;
}

.package-tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.package-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.package-tag:hover::before {
  left: 100%;
}

.package-tag.self {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.package-tag.self-plus {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #d97706 100%);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.package-tag.special {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.package-tag.gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.package-description {
  text-align: right;
  color: #666;
  font-size: 0.7rem;
  line-height: 1.3;
  flex: 1;
  margin: 0;
  padding-left: 15px;
  direction: rtl;
  min-width: 0;
  word-wrap: break-word;
}

.package-description p {
  margin: 0;
}

/* ط§ظ„ط®ط·ظˆط© 2: ط§ظ„ط®ط¯ظ…ط§طھ */
.services-content {
  max-width: 800px;
  margin: 0 auto;
}

.package-services {
  display: none;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  border: 2px solid #f0f0f0;
}

.package-services.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.services-section {
  margin-top: 30px;
}

.services-group {
  margin-bottom: 30px;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  overflow: hidden;
  background: #fafafa;
}

.services-header {
  padding: 20px 25px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e5e7eb;
}

.services-header:hover {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

.services-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a3c34;
  margin: 0;
}

.services-header i {
  font-size: 1.2rem;
  color: #2bb673;
  transition: transform 0.3s ease;
}

.services-group.expanded .services-header i {
  transform: rotate(180deg);
}

.services-list {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.services-group.expanded .services-list {
  max-height: 1000px;
  padding: 20px 25px;
}

.service-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item:hover {
  background: rgba(43, 182, 115, 0.05);
  padding-right: 10px;
  border-radius: 8px;
}

.service-icon {
  margin-left: 15px;
  margin-top: 0;
  color: white !important;
  font-size: 14px !important;
  width: 32px;
  height: 32px;
  background: #2bb673;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(43, 182, 115, 0.3);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.service-icon::before,
.service-icon i,
.service-icon i::before {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  color: white !important;
}

.service-item span {
  color: #374151;
  line-height: 1.6;
  font-size: 1rem;
}

.service-item.highlight {
  background: linear-gradient(135deg, #f0fdf6, #e6ffed);
  border-radius: 10px;
  padding: 15px;
  margin: 10px 0;
  border: 1px solid #2bb673;
}

.service-item.highlight span {
  font-weight: 600;
  color: #1a3c34;
}

.notes-list {
  padding: 20px 25px;
}

.note-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

.note-item i {
  margin-left: 12px;
  margin-top: 2px;
  color: #f59e0b;
  font-size: 1rem;
  min-width: 16px;
}

/* طھط­ط³ظٹظ† ط§ظ„ظ…ط­طھظˆظ‰ ط§ظ„ط¹ط§ظ… ظ„ظ„ط£ط³ط¹ط§ط± */
.pricing-content {
  max-width: 900px;
  margin: 0 auto;
}

.package-pricing {
  display: none;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  border: 2px solid #f0f0f0;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  box-sizing: border-box;
}

.package-pricing.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
  margin-top: 15px;
  padding: 8px;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  box-sizing: border-box;
}

.price-option {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 12px 0px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  min-height: 50px;
  width: 100%;
  margin: 0;
}

.price-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1a3c34, #2bb673);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 12px 12px 0 0;
}

.price-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 60, 52, 0.12);
  border-color: #1a3c34;
}

.price-option:hover::before {
  transform: scaleX(1);
}

.price-option:not(.contact) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 8px;
  width: 100%;
  padding: 0;
}

.price-option:not(.contact) .guest-count {
  flex: 1;
  text-align: right;
  margin: 0;
  padding-right: 15px;
  white-space: nowrap;
  min-width: 180px;
  overflow: visible;
  direction: rtl;
}

.price-option:not(.contact) .price {
  flex-shrink: 0;
  text-align: left;
  margin: 0;
  padding-left: 15px;
  min-width: 90px;
  white-space: nowrap;
  direction: ltr;
}

/* ط¥ط¶ط§ظپط© ظ‚ط§ط¹ط¯ط© ط®ط§طµط© ظ„ظ„طھط£ظƒط¯ ظ…ظ† ط§ظ„ظ…ط­ط§ط°ط§ط© */
.pricing-grid .price-option:not(.contact) {
  text-align: initial;
}

.pricing-grid .price-option:not(.contact) .guest-count {
  text-align: right !important;
  direction: rtl !important;
}

.pricing-grid .price-option:not(.contact) .price {
  text-align: left !important;
  direction: ltr !important;
}

.price-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, #1a3c34, #2bb673);
  border-radius: 50%;
  margin: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.price-icon i {
  font-size: 0.7rem;
  color: white;
}

.price-option:hover .price-icon {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(26, 60, 52, 0.2);
}

.guest-count {
  font-size: 1rem;
  font-weight: 600;
  color: #495057;
  margin: 0;
  background: linear-gradient(135deg, #1a3c34, #2bb673);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  direction: rtl;
  flex: 1;
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
  text-align: right;
}

.price {
  font-size: 1rem;
  font-weight: 700;
  color: #1a3c34;
  margin: 0;
  position: relative;
  display: block;
  flex-shrink: 0;
  white-space: nowrap;
  text-align: left;
  direction: ltr;
}

.price::after {
  display: none;
}

.price-option.contact {
  background: linear-gradient(145deg, #1a3c34, #2bb673);
  color: white;
  border-color: #1a3c34;
  flex-direction: column;
  padding: 8px;
  min-height: 60px;
}

.price-option.contact::before {
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
}

.price-option.contact .price-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  margin-bottom: 3px;
  width: 20px;
  height: 20px;
}

.price-option.contact .price-icon i {
  font-size: 0.6rem;
}

.price-option.contact .guest-count {
  color: white;
  font-weight: 600;
  -webkit-text-fill-color: white;
  background: none;
  font-size: 0.6rem;
  margin: 2px 0;
  text-align: center;
  white-space: normal;
}

.contact-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #1a3c34;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.6rem;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  backdrop-filter: blur(10px);
  margin-top: 2px;
}

.price-option.contact:hover .contact-btn {
  background: white;
  color: #1a3c34;
  transform: scale(1.02);
  border-color: white;
}

/* ط£ط²ط±ط§ط± ط§ظ„طھظ†ظ‚ظ„ - ظ…ط­ط¯ط«ط© ظ„ظ„ط­ط§ظˆظٹ ط§ظ„ظ…ظˆط­ط¯ */
.step-navigation {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 0;
  flex-wrap: wrap;
  padding: 10px;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
  border: none;
}

.btn-prev,
.btn-next,
.btn-finish,
.btn-compare {
  padding: 18px 35px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-family: 'Cairo', sans-serif;
  min-width: 160px;
  text-transform: none;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

.btn-prev {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.btn-prev:hover {
  background: linear-gradient(135deg, #9333ea 0%, #8b5cf6 50%, #7c3aed 100%);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
  border-color: rgba(139, 92, 246, 0.3);
}

.btn-next,
.btn-finish {
  background: linear-gradient(135deg, #2bb673 0%, #22c55e 30%, #16a34a 70%, #15803d 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(43, 182, 115, 0.3);
}

.btn-next:hover,
.btn-finish:hover {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 30%, #15803d 70%, #14532d 100%);
  box-shadow: 0 8px 25px rgba(43, 182, 115, 0.4);
  border-color: rgba(43, 182, 115, 0.3);
}

.btn-compare {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #d97706 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-compare:hover {
  background: linear-gradient(135deg, #ea580c 0%, #d97706 50%, #c2410c 100%);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  border-color: rgba(245, 158, 11, 0.3);
}

.btn-prev:hover,
.btn-next:hover,
.btn-finish:hover,
.btn-compare:hover {
  transform: translateY(-4px) scale(1.02);
}

.btn-prev::before,
.btn-next::before,
.btn-finish::before,
.btn-compare::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.btn-prev:hover::before,
.btn-next:hover::before,
.btn-finish:hover::before,
.btn-compare:hover::before {
  left: 100%;
}

.btn-prev:active,
.btn-next:active,
.btn-finish:active,
.btn-compare:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.1s ease;
}

/* ط¬ط¯ظˆظ„ ظ…ظ‚ط§ط±ظ†ط© ط§ظ„ط¨ط§ظ‚ط§طھ */
.comparison-table-section {
  background: white;
  border-radius: 20px;
  margin-top: 40px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #e5e7eb;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.comparison-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.comparison-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a3c34;
  margin: 0;
}

.close-comparison {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-comparison:hover {
  background: #f0f0f0;
  color: #2bb673;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-family: 'Cairo', sans-serif;
  border-radius: 15px;
  overflow: hidden;
}

.comparison-table thead tr {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.comparison-table th {
  padding: 20px 15px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 2px solid #e5e7eb;
}

.feature-column {
  background: linear-gradient(135deg, #1a3c34, #2bb673) !important;
  color: white !important;
  text-align: right !important;
  min-width: 200px;
}

.package-column {
  color: white !important;
  min-width: 150px;
}

.package-column.self {
  background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
}

.package-column.self-plus {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}

.package-column.special {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.package-column.gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
}

.comparison-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.3s ease;
}

.comparison-table tr:hover {
  background: rgba(43, 182, 115, 0.05);
}

.feature-name {
  text-align: right !important;
  font-weight: 600;
  color: #374151;
  background: #fafafa !important;
}

.feature-value {
  font-size: 1.1rem;
}

.text-success {
  color: #22c55e !important;
  font-size: 1.2rem;
}

.text-danger {
  color: #ef4444 !important;
  font-size: 1.2rem;
}

.divider-row {
  border-top: 2px solid #e5e7eb !important;
}

.divider-row .feature-name {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0) !important;
  font-weight: 700;
  color: #1a3c34;
}

.highlight-row {
  background: rgba(43, 182, 115, 0.1) !important;
}

.highlight-row td {
  font-weight: 700 !important;
  color: #1a3c34 !important;
}

.price-row {
  background: rgba(245, 158, 11, 0.1) !important;
  border-top: 2px solid #f59e0b !important;
}

.price-row .feature-value.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #d97706;
}

/* ظ‚ط³ظ… ظ…ظ‚ط§ط±ظ†ط© ط§ظ„ط¨ط§ظ‚ط§طھ ط§ظ„ظ…ظ†ظپطµظ„ */
.standalone-comparison-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.standalone-comparison-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 25%, rgba(43, 182, 115, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.comparison-action-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.comparison-intro {
  flex: 1;
}

.comparison-intro h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a3c34;
  margin-bottom: 15px;
  line-height: 1.3;
}

.comparison-intro p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.btn-compare-standalone {
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(43, 182, 115, 0.3);
  position: relative;
  overflow: hidden;
  font-family: 'Cairo', sans-serif;
  min-width: 200px;
  justify-content: center;
}

.btn-compare-standalone:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(43, 182, 115, 0.4);
}

.btn-compare-standalone::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-compare-standalone:hover::before {
  left: 100%;
}

.btn-compare-standalone i {
  font-size: 1.3rem;
}

/* طھطµظ…ظٹظ… ظ…طھط¬ط§ظˆط¨ ظ„ظ„ظ‚ط³ظ… ط§ظ„ظ…ظ†ظپطµظ„ */
@media (max-width: 768px) {
  .standalone-comparison-section {
    padding: 60px 0;
  }
  
  .comparison-action-area {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 25px;
  }
  
  .comparison-intro h3 {
    font-size: 1.5rem;
  }
  
  .comparison-intro p {
    font-size: 1rem;
  }
  
  .btn-compare-standalone {
    width: 100%;
    max-width: 300px;
    padding: 18px 35px;
    font-size: 1.1rem;
  }
}

/* ====================================
   طھطµظ…ظٹظ… ط£ط³ط¹ط§ط± ط§ظ„ط®ط¯ظ…ط§طھ ط§ظ„ط¥ط¶ط§ظپظٹط©
==================================== */

.additional-services-pricing-action {
  text-align: center;
  margin: 30px 0;
}

.btn-pricing-additional {
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(43, 182, 115, 0.3);
  position: relative;
  overflow: hidden;
  font-family: 'Cairo', sans-serif;
}

.btn-pricing-additional:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(43, 182, 115, 0.4);
}

.btn-pricing-additional::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-pricing-additional:hover::before {
  left: 100%;
}

.btn-pricing-additional i {
  font-size: 1.2rem;
}

.additional-services-pricing-table {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.additional-services-pricing-table::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2bb673, #1a3c34, #2bb673);
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 127, 80, 0.1);
}

.pricing-header h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Cairo', sans-serif;
}

.close-pricing {
  background: rgba(43, 182, 115, 0.1);
  border: none;
  color: #2bb673;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-pricing:hover {
  background: rgba(43, 182, 115, 0.2);
  transform: rotate(90deg);
}

.additional-pricing-wrapper {
  overflow-x: auto;
  margin: 0 -10px;
  padding: 0 10px;
}

.additional-services-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Cairo', sans-serif;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.additional-services-table thead {
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: white;
}

.additional-services-table th {
  padding: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.service-column {
  width: 70%;
  text-align: right !important;
}

.price-column {
  width: 30%;
}

.additional-services-table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.additional-services-table tbody tr:hover {
  background: rgba(43, 182, 115, 0.05);
  transform: scale(1.01);
}

.additional-services-table tbody tr:last-child {
  border-bottom: none;
}

.additional-services-table td {
  padding: 18px 20px;
  text-align: center;
}

.service-name {
  text-align: right !important;
  font-weight: 600;
  color: #2c3e50;
  font-size: 1rem;
}

.service-price {
  font-weight: 700;
  color: #2bb673;
  font-size: 1.1rem;
  background: rgba(43, 182, 115, 0.1);
  border-radius: 20px;
  padding: 8px 15px;
  display: inline-block;
  min-width: 80px;
}

/* طھطµظ…ظٹظ… ظ…طھط¬ط§ظˆط¨ ظ„ط¬ط¯ظˆظ„ ط§ظ„ط®ط¯ظ…ط§طھ ط§ظ„ط¥ط¶ط§ظپظٹط© */
@media (max-width: 768px) {
  .additional-services-pricing-table {
    padding: 20px 15px;
    margin: 20px -15px;
    border-radius: 15px;
  }
  
  .pricing-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .pricing-header h3 {
    font-size: 1.5rem;
  }
  
  .additional-services-table th,
  .additional-services-table td {
    padding: 15px 10px;
    font-size: 0.9rem;
  }
  
  .service-name {
    font-size: 0.9rem;
  }
  
  .service-price {
    font-size: 1rem;
    padding: 6px 12px;
  }
  
  .btn-pricing-additional {
    width: 100%;
    max-width: 280px;
    padding: 16px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .standalone-comparison-section {
    padding: 40px 0;
  }
  
  .comparison-action-area {
    padding: 25px;
    border-radius: 15px;
  }
  
  .comparison-intro h3 {
    font-size: 1.3rem;
  }
  
  .btn-compare-standalone {
    padding: 16px 30px;
    font-size: 1rem;
  }
}

/* ====== ط§ظ„ظپظˆطھط± ====== */
.footer {
  background: linear-gradient(135deg, #1a3c34 0%, #0d1f1a 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(43, 182, 115, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(26, 60, 52, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h4,
.footer-column h5 {
  color: #ffffff !important;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-column h4::after,
.footer-column h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background: rgba(255, 255, 255, 0.8) !important;
  border-radius: 2px;
}

/* ظ‚ط³ظ… ط§ظ„ط´ط¹ط§ط± */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-logo h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #2bb673;
  margin: 0;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #b8c5c2;
  margin-bottom: 30px;
}

/* ط§ظ„ط±ظˆط§ط¨ط· ط§ظ„ظ…ظ‡ظ…ط© */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-columns {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}

.footer-links-columns .footer-links {
  flex: 1;
  min-width: 150px;
  max-width: 50%;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b8c5c2;
  text-decoration: none;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 5px 0;
  line-height: 1.3;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #2bb673;
  transform: translateX(-5px);
}

.footer-links a i {
  width: 14px;
  text-align: center;
  font-size: 0.7rem;
}

/* ظ‚ط§ط¦ظ…ط© ظ…ط¹ظ„ظˆظ…ط§طھ ط§ظ„طھظˆط§طµظ„ ظپظٹ ط§ظ„ظپظˆطھط± ظ…ظˆط­ط¯ط© ظ…ط¹ ط§ظ„ط±ظˆط§ط¨ط· ط§ظ„ظ…ظ‡ظ…ط© */
.contact-info-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-info-list li { margin-bottom: 10px; }

/* ط§ظ„ط³ط·ط± ط؛ظٹط± ط§ظ„ظ‚ط§ط¨ظ„ ظ„ظ„ظ†ظ‚ط± (ط³ط§ط¹ط§طھ ط§ظ„ط¹ظ…ظ„) ط¨ظ†ظپط³ ظ†ط³ظ‚ ط§ظ„ط±ظˆط§ط¨ط· */
.contact-info-list li.non-link span {
  color: #b8c5c2;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  line-height: 1.3;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.contact-info-list li.non-link span:hover {
  color: #2bb673;
  transform: translateX(-5px);
}

.contact-info-list li.non-link span i { width:14px; text-align:center; font-size:0.7rem; color:#2bb673; }

@media (max-width: 768px) {
  .contact-info-list li.non-link span { justify-content: flex-start; }
}

/* ظ…ط¹ظ„ظˆظ…ط§طھ ط§ظ„طھظˆط§طµظ„ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-simple {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-info-simple p {
  color: #b8c5c2;
  font-size: 0.75rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 3px 0;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.contact-info-simple p:hover {
  color: #2bb673;
}

.contact-info-simple i {
  color: #2bb673;
  font-size: 0.9rem;
  width: 14px;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  color: #2bb673;
  font-size: 1.2rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

/* ط¥ط¹ط§ط¯ط© طھط¹ط±ظٹظپ ظ„ظˆظ† ط§ظ„ط£ظٹظ‚ظˆظ†ط§طھ ظپظٹ ظ‚ط³ظ… ط§ظ„طھظˆط§طµظ„ ط§ظ„ط±ط¦ظٹط³ظٹ ط¨ظ€ !important */
#contact .contact-item i,
.contact-section .contact-item i {
  color: white !important;
  font-size: 1.8rem !important;
}

#contact .contact-item .fa-whatsapp,
.contact-section .contact-item .fa-whatsapp {
  color: #25d366 !important;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-label {
  font-size: 0.9rem;
  color: #8a9995;
  font-weight: 600;
}

.contact-value {
  font-size: 1rem;
  color: #b8c5c2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: #2bb673;
}

/* ظˆط³ط§ط¦ظ„ ط§ظ„طھظˆط§طµظ„ */
.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(43, 182, 115, 0.1);
  border: 2px solid rgba(43, 182, 115, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2bb673;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2bb673;
  transform: scale(0);
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link:hover {
  color: white;
  border-color: #2bb673;
  transform: translateY(-3px);
}

.social-link i {
  position: relative;
  z-index: 2;
}

/* ط§ظ„ظپظˆطھط± ط§ظ„ط³ظپظ„ظٹ */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(43, 182, 115, 0.2);
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.copyright {
  color: #b8c5c2;
  font-size: 0.8rem;
  line-height: 1.2;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-bottom-links a {
  color: #b8c5c2;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #2bb673;
}

.separator {
  color: #8a9995;
}

/* ط§ظ„ط´ط¹ط§ط± ط§ظ„ط®ظ„ظپظٹ */
.footer-bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}

.footer-bg-logo img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

/* ط²ط± ط§ظ„ط¹ظˆط¯ط© ظ„ط£ط¹ظ„ظ‰ */
.back-to-top {
  position: fixed;
  bottom: 30px; /* ظ†ظپط³ ط®ط· ط§ظ„ظ…ط³ط§ط¹ط¯ ظ„ظƒظ† ظپظٹ ط§ظ„ط¬ظ‡ط© ط§ظ„ظ…ظ‚ط§ط¨ظ„ط© */
  right: 30px;
  left: auto;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(43, 182, 115, 0.3);
  transition: all 0.3s ease;
  z-index: 9999; /* ط£ط¹ظ„ظ‰ ظ…ظ† ط§ظ„ظ…ط³ط§ط¹ط¯ */
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(43, 182, 115, 0.4);
}

.back-to-top.show {
  display: flex;
}

/* طھطµظ…ظٹظ… ظ…طھط¬ط§ظˆط¨ ظ„ظ„ظپظˆطھط± */
@media (max-width: 1200px) {
  .footer-row {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-column:nth-child(1) {
    order: 1;
  }
  
  .footer-column:nth-child(2) {
    order: 3;
  }
  
  .footer-column:nth-child(3) {
    order: 2;
  }
  
  .footer-column:nth-child(4) {
    order: 4;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }
  
  .footer-row {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-links-columns {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 15px;
  }
  
  .footer-links-columns .footer-links {
    flex: 1;
    min-width: 120px;
    max-width: 50%;
  }
  
  .contact-info-simple {
    align-items: center;
  }
  
  .contact-info-simple p {
    justify-content: center;
  }
  
  .footer-column h4::after,
  .footer-column h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-item {
    justify-content: center;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .download-buttons {
    align-items: center;
  }
  
  .back-to-top {
    bottom: 25px;
    right: 20px;
    left: auto;
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
}

/* ظ„ظ„ط£ط¬ظ‡ط²ط© ط§ظ„طµط؛ظٹط±ط© ط¬ط¯ط§ظ‹ ظپظ‚ط· */
@media (max-width: 480px) {
  .footer-links-columns {
    flex-direction: column !important;
    gap: 15px;
  }
  
  .footer-links-columns .footer-links {
    min-width: unset !important;
    max-width: none !important;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 0;
  }
  
  .footer-row {
    gap: 30px;
  }
  
  .footer-column h4,
  .footer-column h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .footer-bg-logo img {
    width: 200px;
    height: 200px;
  }
  
  .back-to-top {
    bottom: 25px;
    right: 15px;
    left: auto;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* طھطµظ…ظٹظ… ظ…طھط¬ط§ظˆط¨ */
@media (max-width: 768px) {
  .interactive-packages-section {
    padding: 60px 0;
  }
  
  .packages-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .unified-package-container {
    padding: 15px;
    border-radius: 15px;
    margin: 20px 10px;
  }
  
  .progress-stepper {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    justify-content: center;
    overflow-x: auto;
  }
  
  .step {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    flex-shrink: 0;
  }
  
  .step-circle {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
  }
  
  .step.active .step-circle {
    background: #2bb673;
    color: white;
    border-color: #2bb673;
    transform: scale(1.1);
  }
  
  .step.completed .step-circle {
    background: #28a745;
    color: white;
    border-color: #28a745;
  }
  
  .step-label {
    font-size: 0.75rem;
    text-align: center;
    color: #6c757d;
    font-weight: 500;
    line-height: 1.2;
  }
  
  .step.active .step-label {
    color: #2bb673;
    font-weight: 600;
  }
  
  .step.completed .step-label {
    color: #28a745;
    font-weight: 600;
  }
  
  .step-line {
    display: none;
  }
  
  .packages-grid {
    max-width: 100%;
    padding: 0;
    gap: 8px;
  }
  
  .package-card {
    padding: 15px;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    min-height: auto;
    margin: 0;
    border-radius: 12px;
  }
  
  .package-card::before {
    display: none;
  }
  
  .package-header {
    text-align: center;
    width: 100%;
    padding: 0;
    border: none;
  }
  
  .package-description {
    text-align: center;
    width: 100%;
    padding: 0;
    margin-top: 8px;
  }
  
  .package-tag {
    padding: 8px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
  }
  
  .package-description p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
  }
  
  .step-navigation {
    padding: 20px 15px;
    gap: 15px;
  }
  
  .btn-prev,
  .btn-next,
  .btn-finish {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-height: 44px;
    border-radius: 25px;
  }
  
  /* طھط­ط³ظٹظ† ظ‚ط³ظ… ط§ظ„ط®ط¯ظ…ط§طھ ظ„ظ„ظ‡ظˆط§طھظپ */
  .services-content,
  .pricing-content {
    padding: 0;
  }
  
  .package-services,
  .package-pricing {
    padding: 20px 15px;
    border-radius: 12px;
    margin: 10px 0;
  }
  
  .services-header {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .services-header h3 {
    font-size: 1rem;
    line-height: 1.3;
  }
  
  .service-item {
    padding: 12px 15px;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  
  .service-icon {
    font-size: 1rem;
    margin-left: 10px;
    flex-shrink: 0;
  }
  
  /* طھط­ط³ظٹظ† ظ‚ط³ظ… ط§ظ„ط£ط³ط¹ط§ط± ظ„ظ„ظ‡ظˆط§طھظپ */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
  }
  
  .price-option {
    padding: 12px 15px;
    border-radius: 8px;
    min-height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .guest-count {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a3c34;
    flex: 1;
    text-align: right;
  }
  
  .price {
    font-size: 1rem;
    font-weight: 700;
    color: #2bb673;
    flex-shrink: 0;
  }
  
  .price-option.contact {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .price-option.contact .price-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  
  .contact-btn {
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: 20px;
    background: #2bb673;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  .package-card {
    padding: 8px 15px;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-height: auto;
  }
  
  .package-card::before {
    display: none;
  }
  
  .package-header {
    text-align: center;
    min-width: auto;
    width: 100%;
    padding-right: 0;
    border-right: none;
  }
  
  .package-description {
    text-align: center;
    width: 100%;
    padding-left: 0;
  }
  
  .package-tag {
    padding: 4px 10px;
    font-size: 0.75rem;
  }
  
  .services-content,
  .pricing-content {
    padding: 0 10px;
  }
  
  .package-services,
  .package-pricing {
    padding: 25px;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
    padding: 5px;
  }
  
  .price-option {
    padding: 10px 18px;
    border-radius: 10px;
    min-height: 45px;
    overflow: visible;
  }
  
  .price-option:not(.contact) .guest-count {
    min-width: 160px;
    padding-right: 12px;
    overflow: visible;
    text-align: right;
    direction: rtl;
  }
  
  .price-option:not(.contact) .price {
    min-width: 80px;
    padding-left: 12px;
    text-align: left;
    direction: ltr;
  }
  
  .price-icon {
    width: 20px;
    height: 20px;
  }
  
  .price-icon i {
    font-size: 0.6rem;
  }
  
  .guest-count {
    font-size: 0.9rem;
    margin: 0;
    overflow: visible;
  }
  
  .price {
    font-size: 0.9rem;
  }
  
  .price-option.contact {
    min-height: 50px;
    padding: 6px;
    grid-column: span 2;
  }
  
  .price-option.contact .price-icon {
    width: 16px;
    height: 16px;
  }
  
  .price-option.contact .price-icon i {
    font-size: 0.5rem;
  }
  
  .contact-btn {
    padding: 2px 6px;
    font-size: 0.5rem;
  }
  
  .step-navigation {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-prev,
  .btn-next,
  .btn-finish,
  .btn-compare {
    width: 100%;
    max-width: 250px;
  }
  
  /* ط¬ط¯ظˆظ„ ط§ظ„ظ…ظ‚ط§ط±ظ†ط© ظ„ظ„ط´ط§ط´ط§طھ ط§ظ„طµط؛ظٹط±ط© */
  .comparison-table-section {
    padding: 20px;
    margin-top: 30px;
  }
  
  .comparison-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .comparison-header h3 {
    font-size: 1.5rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
    font-size: 0.9rem;
  }
  
  .feature-column {
    min-width: 180px;
  }
  
  .package-column {
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .interactive-packages-section {
    padding: 40px 0;
  }
  
  .packages-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .unified-package-container {
    padding: 10px;
    margin: 15px 5px;
    border-radius: 12px;
  }
  
  .step-circle {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  .step-label {
    font-size: 0.85rem;
  }
  
  .package-card {
    padding: 12px;
    border-radius: 10px;
    margin: 0;
  }
  
  .package-tag {
    padding: 6px 12px;
    font-size: 0.75rem;
    line-height: 1.2;
  }
  
  .package-description p {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  
  /* طھط­ط³ظٹظ† ط§ظ„ط®ط¯ظ…ط§طھ ظ„ظ„ظ‡ظˆط§طھظپ ط§ظ„طµط؛ظٹط±ط© */
  .package-services,
  .package-pricing {
    padding: 15px 10px;
    margin: 8px 0;
  }
  
  .services-header {
    padding: 10px;
    margin-bottom: 10px;
  }
  
  .services-header h3 {
    font-size: 0.9rem;
    line-height: 1.2;
  }
  
  .service-item {
    padding: 8px 10px;
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 5px;
  }
  
  .service-icon {
    font-size: 0.85rem;
    margin-left: 8px;
  }
  
  /* طھط­ط³ظٹظ† ط§ظ„ط£ط³ط¹ط§ط± ظ„ظ„ظ‡ظˆط§طھظپ ط§ظ„طµط؛ظٹط±ط© */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 0;
    max-width: 100%;
  }
  
  .price-option {
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fbff;
    border: 1px solid #e1f0ff;
    margin-bottom: 5px;
  }
  
  .guest-count {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a3c34;
    text-align: right;
    flex: 1;
    padding-left: 10px;
  }
  
  .price {
    font-size: 1rem;
    font-weight: 700;
    color: #2bb673;
    flex-shrink: 0;
    min-width: 60px;
    text-align: left;
  }
  
  .price-option.contact {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    background: linear-gradient(135deg, #2bb673, #1a3c34);
    color: white;
    border: none;
  }
  
  .price-option.contact .price-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: white;
  }
  
  .price-option.contact .guest-count {
    color: white;
    font-size: 0.85rem;
    text-align: center;
    padding: 0;
  }
  
  .contact-btn {
    font-size: 0.75rem;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
  }
  
  .step-navigation {
    padding: 20px 15px;
    gap: 15px;
    flex-direction: column;
    background: white;
    border-top: 1px solid #eee;
    margin-top: 20px;
  }
  
  .btn-prev,
  .btn-next,
  .btn-finish {
    padding: 12px 24px;
    font-size: 0.85rem;
    min-height: 44px;
    width: 100%;
    max-width: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
  }
  
  .btn-prev {
    background: #f8f9fa;
    color: #1a3c34;
    border: 2px solid #e9ecef;
  }
  
  .btn-prev:hover {
    background: #e9ecef;
    transform: translateY(-1px);
  }
  
  .btn-next,
  .btn-finish {
    background: linear-gradient(135deg, #2bb673, #1a3c34);
    color: white;
    box-shadow: 0 4px 15px rgba(43, 182, 115, 0.3);
  }
  
  .btn-next:hover,
  .btn-finish:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 182, 115, 0.4);
  }
  
/* طھط­ط³ظٹظ†ط§طھ ط®ط§طµط© ظ„ظ„ط£ط¬ظ‡ط²ط© ط§ظ„ظ…ط­ظ…ظˆظ„ط© */
.mobile-device .package-card {
  padding: 20px 15px !important;
  margin-bottom: 15px !important;
  border: 3px solid #e9ecef !important;
  border-radius: 15px !important;
  background: white !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: rgba(43, 182, 115, 0.2) !important;
  touch-action: manipulation !important;
  transition: all 0.2s ease !important;
}

.mobile-device .package-card:hover,
.mobile-device .package-card:active {
  transform: scale(0.98) !important;
  background: #f8f9fa !important;
  border-color: #2bb673 !important;
}

.mobile-device .package-card.selected {
  border-color: #2bb673 !important;
  background: #f8fff9 !important;
  box-shadow: 0 5px 20px rgba(43, 182, 115, 0.2) !important;
}

.mobile-device .package-card.selected .package-tag {
  background: linear-gradient(135deg, #2bb673, #1a3c34) !important;
  color: white !important;
}

.mobile-device .package-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}

.mobile-device .btn-prev,
.mobile-device .btn-next,
.mobile-device .btn-finish {
  min-height: 55px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  border-radius: 15px !important;
  border: none !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: rgba(40, 167, 69, 0.3) !important;
  touch-action: manipulation !important;
  transition: all 0.2s ease !important;
}

.mobile-device .btn-prev:active,
.mobile-device .btn-next:active,
.mobile-device .btn-finish:active {
  transform: scale(0.95) !important;
  opacity: 0.8 !important;
}

.mobile-device .step-navigation {
  position: sticky !important;
  bottom: 0 !important;
  background: white !important;
  border-top: 2px solid #f1f3f4 !important;
  padding: 15px !important;
  margin: 20px 0 0 0 !important;
  z-index: 100 !important;
  box-shadow: 0 -3px 15px rgba(0,0,0,0.1) !important;
}

/* ط¥طµظ„ط§ط­ ط®ط§طµ ظ„ظ…ط´ط§ظƒظ„ ط§ظ„ظ‡ط§طھظپ ط§ظ„ظ…ط­ظ…ظˆظ„ */
@media (max-width: 768px) and (pointer: coarse) {
  .package-card {
    padding: 25px 20px !important;
    margin-bottom: 20px !important;
    border: 4px solid #dee2e6 !important;
    border-radius: 20px !important;
    background: white !important;
    cursor: pointer !important;
    position: relative !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-tap-highlight-color: rgba(43, 182, 115, 0.3) !important;
    touch-action: manipulation !important;
    transition: all 0.3s ease !important;
    min-height: 120px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
  
  .package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 182, 115, 0.05);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  .package-card:hover::before,
  .package-card:active::before {
    opacity: 1;
  }
  
  .package-card.selected {
    border-color: #2bb673 !important;
    background: linear-gradient(135deg, #f8fff9, #ffffff) !important;
    box-shadow: 0 8px 25px rgba(43, 182, 115, 0.25) !important;
    transform: translateY(-2px) !important;
  }
  
  .package-card.selected .package-tag {
    background: linear-gradient(135deg, #2bb673, #1a3c34) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(43, 182, 115, 0.3) !important;
  }
  
  .package-option input[type="radio"] {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
    z-index: 10 !important;
  }
  
  .btn-prev,
  .btn-next,
  .btn-finish {
    min-height: 60px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    border-radius: 20px !important;
    border: none !important;
    cursor: pointer !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-tap-highlight-color: rgba(40, 167, 69, 0.3) !important;
    touch-action: manipulation !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
  }
  
  .btn-prev {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
    color: #495057 !important;
    border: 3px solid #dee2e6 !important;
  }
  
  .btn-next,
  .btn-finish {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4) !important;
  }
  
  .step-navigation {
    position: sticky !important;
    bottom: 0 !important;
    background: linear-gradient(to top, #ffffff, #fafbfc) !important;
    border-top: 3px solid #e9ecef !important;
    padding: 20px 15px !important;
    margin: 30px 0 0 0 !important;
    z-index: 1000 !important;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1) !important;
    backdrop-filter: blur(10px) !important;
  }
}
@media (max-width: 768px) {
  .package-card {
    padding: 15px;
    width: 100%;
    margin: 0 0 10px 0;
    border-radius: 12px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    transition: all 0.2s ease;
  }
  
  .package-card:active {
    transform: scale(0.98);
    background: #f0f8ff;
  }
  
  .package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 10;
  }
  
  .package-card.selected {
    border-color: #2bb673 !important;
    background: #f8fff9 !important;
    box-shadow: 0 4px 15px rgba(43, 182, 115, 0.25) !important;
  }
  
  .package-card.selected .package-tag {
    background: linear-gradient(135deg, #2bb673, #1a3c34) !important;
    color: white !important;
  }
  
  /* طھط­ط³ظٹظ† ط§ظ„ط£ط²ط±ط§ط± ظ„ظ„ظ…ط³ */
  .btn-prev,
  .btn-next,
  .btn-finish {
    font-size: 1rem;
    font-weight: 600;
    min-height: 50px;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    border: none;
    outline: none;
  }
  
  .btn-prev:active,
  .btn-next:active,
  .btn-finish:active {
    transform: scale(0.95);
  }
  
  .step-navigation {
    position: sticky;
    bottom: 0;
    background: white;
    border-top: 2px solid #f1f3f4;
    padding: 15px;
    margin: 20px 0 0 0;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  }
}
  
  /* طھط­ط³ظٹظ† ط¬ط¯ظˆظ„ ط§ظ„ظ…ظ‚ط§ط±ظ†ط© ظ„ظ„ظ‡ظˆط§طھظپ ط§ظ„طµط؛ظٹط±ط© */
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .comparison-table {
    min-width: 600px;
    font-size: 0.7rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 6px 4px;
    min-width: 80px;
  }
  
  .feature-name {
    font-size: 0.7rem;
    line-height: 1.2;
    min-width: 120px;
  }
  
  .package-column {
    min-width: 70px;
    font-size: 0.6rem;
  }
}

/* ==========================================
   ظ‚ط³ظ… ط§ظ„ط®ط¯ظ…ط§طھ ط§ظ„ط¥ط¶ط§ظپظٹط©
   ========================================== */

.additional-services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #f0f9f4 100%);
  position: relative;
  overflow: hidden;
}

.additional-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(43, 182, 115, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(26, 60, 52, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.additional-services-section .container {
  position: relative;
  z-index: 2;
}

.additional-services-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.additional-services-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a3c34;
  margin-bottom: 15px;
  position: relative;
}

.additional-services-section .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2bb673, #1a3c34);
  border-radius: 2px;
}

.additional-services-section .section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(26, 60, 52, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2bb673, #1a3c34);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(26, 60, 52, 0.15);
  border-color: #2bb673;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(43, 182, 115, 0.3);
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a3c34;
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #4b5563;
}

.feature-item i {
  color: #2bb673;
  font-size: 0.8rem;
}

.service-btn {
  width: 100%;
  background: linear-gradient(135deg, #2bb673, #1a3c34);
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(43, 182, 115, 0.3);
  background: linear-gradient(135deg, #1a3c34, #2bb673);
}

.service-btn i {
  font-size: 0.9rem;
}

.additional-services-cta {
  background: linear-gradient(135deg, #1a3c34, #2bb673);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.additional-services-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-content p {
  font-size: 1rem;
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.5;
}

.cta-content .btn {
  background: #ffffff;
  color: #1a3c34;
  padding: 12px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: #f8f9fa;
}

/* ط§ظ„ط§ط³طھط¬ط§ط¨ط© ظ„ظ„ط´ط§ط´ط§طھ ط§ظ„ظ…طھظˆط³ط·ط© */
@media (max-width: 768px) {
  .additional-services-section {
    padding: 60px 0;
  }
  
  .additional-services-section .section-header h2 {
    font-size: 2rem;
  }
  
  .additional-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .service-content h3 {
    font-size: 1.2rem;
  }
  
  .additional-services-cta {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.3rem;
  }
}

/* ط§ظ„ط§ط³طھط¬ط§ط¨ط© ظ„ظ„ط´ط§ط´ط§طھ ط§ظ„طµط؛ظٹط±ط© */
@media (max-width: 480px) {
  .additional-services-section .section-header h2 {
    font-size: 1.8rem;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .service-icon i {
    font-size: 1.3rem;
  }
  
  .service-content h3 {
    font-size: 1.1rem;
  }
  
  .feature-item {
    font-size: 0.85rem;
  }
  
  .service-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

/* ظ‚ط§ط¹ط¯ط© ط¥ط¶ط§ظپظٹط© ظ„ط¶ظ…ط§ظ† طھط·ط¨ظٹظ‚ ط§ظ„ط£ظ„ظˆط§ظ† ظپظٹ Footer */
footer .footer-column h4,
footer .footer-column h5 {
  color: #ffffff !important;
}

footer .footer-column h4::after,
footer .footer-column h5::after {
  background: rgba(255, 255, 255, 0.8) !important;
}
footer .footer-column h4 {
  color: #ffffff !important;
}

/* ==========================================
   Demo Invitation Section Styles
   ========================================== */

.demo-invitation-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fafafa 0%, #f8fbff 50%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}

.demo-invitation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(43, 182, 115, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(26, 60, 52, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.demo-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.demo-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a3c34 !important;
  margin-bottom: 20px;
  text-shadow: none !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #1a3c34 !important;
  background: linear-gradient(135deg, #1a3c34, #2bb673);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-header .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Demo Main Container */
.demo-main-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
  flex-direction: row-reverse;
}

.demo-image-section {
  flex: 0 0 350px;
  max-width: 350px;
}

.demo-platform-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.demo-content {
  flex: 1;
  max-width: 600px;
}

.demo-content {
  position: relative;
  z-index: 2;
}

.demo-step {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Demo Form Styles */
.demo-form-container {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-form-header {
  text-align: center;
  margin-bottom: 30px;
}

.demo-icon {
  font-size: 3rem;
  color: #2bb673;
  margin-bottom: 20px;
  display: block;
}

.demo-form-header h3 {
  font-size: 1.8rem;
  color: #1a3c34;
  margin-bottom: 10px;
  font-weight: 600;
}

.demo-form-header p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #1a3c34;
  font-weight: 500;
  font-size: 1rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
  direction: rtl;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #2bb673;
  box-shadow: 0 0 0 3px rgba(43, 182, 115, 0.1);
}

.phone-input-container {
  display: flex;
  gap: 10px;
}

.phone-input-container select {
  width: 180px;
  flex-shrink: 0;
}

.phone-input-container input {
  flex: 1;
}

.demo-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  min-width: 140px;
}

.demo-btn.primary {
  background: linear-gradient(135deg, #2bb673 0%, #1a9b5a 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(43, 182, 115, 0.3);
}

.demo-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 182, 115, 0.4);
}

.demo-btn.secondary {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #1a3c34;
  border: 2px solid #e1e8ed;
}

.demo-btn.secondary:hover {
  border-color: #2bb673;
  color: #2bb673;
  transform: translateY(-1px);
}

.demo-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* OTP Styles */
.otp-container {
  max-width: 450px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  text-align: center;
}

.otp-header {
  margin-bottom: 30px;
}

.otp-icon {
  font-size: 3rem;
  color: #2bb673;
  margin-bottom: 20px;
  display: block;
}

.otp-header h3 {
  font-size: 1.8rem;
  color: #1a3c34;
  margin-bottom: 15px;
  font-weight: 600;
}

.otp-header p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}

.otp-inputs {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
}

.otp-digit {
  width: 60px;
  height: 60px;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a3c34;
  transition: all 0.3s ease;
  background: #ffffff;
}

.otp-digit:focus {
  outline: none;
  border-color: #2bb673;
  box-shadow: 0 0 0 3px rgba(43, 182, 115, 0.1);
}

.otp-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
}

.otp-timer {
  color: #666;
  font-size: 0.9rem;
  margin-top: 20px;
}

/* Invitation Preview Styles */
.invitation-preview {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.invitation-header {
  margin-bottom: 40px;
}

.invitation-icon {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 20px;
  display: block;
}

.invitation-header h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}

.invitation-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.5;
}

.phone-mockup-demo {
  max-width: 350px;
  margin: 0 auto 40px;
  position: relative;
}

.phone-screen {
  background: #111b21;
  border-radius: 25px;
  padding: 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  height: 600px;
  display: flex;
  flex-direction: column;
}

.phone-screen::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: #333;
  border-radius: 2px;
  z-index: 10;
}

/* WhatsApp Header */
.whatsapp-header {
  background: #f0f0f0;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d1d7db;
  position: relative;
  z-index: 5;
  min-height: 50px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.header-left i {
  color: #54656f;
  font-size: 1.2rem;
  cursor: pointer;
}

.contact-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info h4 {
  color: #111b21;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
  text-align: right;
  direction: rtl;
}

.online-status {
  color: #667781;
  font-size: 13px;
  line-height: 1;
  text-align: right;
  direction: rtl;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-right i {
  color: #54656f;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.header-right i:hover {
  color: #111b21;
}

/* Chat Container */
.chat-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #e5ddd5;
  position: relative;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 0.5px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.2) 0.5px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 0.5px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 100px 100px;
}

.chat-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(229, 221, 213, 0.95) 0%,
    rgba(229, 221, 213, 0.98) 100%
  );
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}

.chat-messages {
  flex: 1;
  padding: 20px 15px;
  overflow-y: auto;
  direction: rtl;
  position: relative;
  z-index: 2;
  max-height: 450px;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Date Separator */
.date-separator {
  text-align: center;
  margin: 20px 0;
}

.date-separator span {
  background: #202c33;
  color: #8696a0;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: inline-block;
}

/* Message Styles */
.message {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 85%;
  position: relative;
}

.message.sent {
  align-self: flex-end;
  align-items: flex-end;
}

.message-content {
  background: #ffffff;
  border-radius: 7.5px;
  padding: 6px 7px 8px 9px;
  position: relative;
  word-wrap: break-word;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
  border: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.message.sent .message-content {
  background: #dcf8c6;
  border: none;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}

.message-content::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border: 6px solid transparent;
}

.message.received .message-content::before {
  left: -6px;
  border-right-color: #ffffff;
  border-left: none;
}

.message.sent .message-content::before {
  right: -6px;
  border-left-color: #dcf8c6;
  border-right: none;
}

.message-content p {
  color: #000000;
  margin: 0;
  line-height: 1.4;
  font-size: 14px;
  font-weight: 400;
  text-align: right;
  direction: rtl;
}

.message.invitation-message .message-content {
  padding: 8px 12px;
  background: #ffffff;
  border: none;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}

.message-time {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
  font-size: 11px;
  color: #667781;
  direction: rtl;
  justify-content: flex-end;
}

.message-time i {
  font-size: 0.8rem;
}

.message-time .delivered {
  color: #53bdeb;
}

.message-time .read {
  color: #53bdeb;
}

/* Invitation Card in WhatsApp */
.invitation-card-whatsapp {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 320px;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.invitation-card-whatsapp .invitation-image {
  width: 100%;
  margin-bottom: 0;
}

.invitation-card-whatsapp .invitation-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
}

.invitation-card-whatsapp .invitation-text {
  padding: 20px;
  text-align: right;
  direction: rtl;
  max-height: 400px;
  overflow-y: auto;
}

.invitation-card-whatsapp .invitation-text::-webkit-scrollbar {
  width: 4px;
}

.invitation-card-whatsapp .invitation-text::-webkit-scrollbar-track {
  background: transparent;
}

.invitation-card-whatsapp .invitation-text::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.invitation-content {
  color: #000000;
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: right;
  direction: rtl;
}

.invitation-content p {
  margin-bottom: 12px;
  color: #000000;
}

.invitation-content strong {
  color: #000000;
  font-weight: 600;
}

.invitation-content br {
  line-height: 2;
}

/* Simple Buttons */
.simple-btn {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: background-color 0.2s ease;
}

.simple-btn:hover {
  background-color: rgba(108, 117, 125, 0.1) !important;
}

.simple-btn.accept:hover {
  background-color: rgba(108, 117, 125, 0.1) !important;
}

.simple-btn.decline:hover {
  background-color: rgba(108, 117, 125, 0.1) !important;
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  padding: 8px 12px;
  background: #202c33;
  border-radius: 12px;
  max-width: 150px;
}

.typing-dots {
  display: flex;
  gap: 3px;
}

.typing-dots span {
  width: 4px;
  height: 4px;
  background: #8696a0;
  border-radius: 50%;
  animation: typingAnimation 1.5s infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

.typing-text {
  color: #8696a0;
  font-size: 0.8rem;
}

@keyframes typingAnimation {
  0%, 60%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  30% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Chat Input */
.chat-input-container {
  background: #202c33;
  padding: 10px;
  border-top: 1px solid #2a3942;
}

.chat-input {
  display: flex;
  align-items: center;
  background: #2a3942;
  border-radius: 25px;
  padding: 8px 15px;
  gap: 10px;
}

.input-left i {
  color: #8696a0;
  font-size: 1.1rem;
  cursor: pointer;
}

.input-center {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-center input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #e9edef;
  font-size: 0.9rem;
  padding: 5px 0;
}

.input-center input::placeholder {
  color: #8696a0;
}

.emoji-btn {
  color: #8696a0;
  font-size: 1.1rem;
  cursor: pointer;
}

.input-right i {
  color: #8696a0;
  font-size: 1.1rem;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .phone-screen {
    height: 500px;
  }
  
  .invitation-card-whatsapp {
    max-width: 240px;
  }
  
  .invitation-card-whatsapp .invitation-image img {
    height: 120px;
  }
  
  .invitation-content {
    font-size: 0.8rem;
  }
}

.demo-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Notification Styles */
.demo-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #2bb673;
  z-index: 10000;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 350px;
}

.demo-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.demo-notification.success {
  border-left-color: #2bb673;
}

.demo-notification.error {
  border-left-color: #dc3545;
}

.demo-notification.info {
  border-left-color: #17a2b8;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notification-content i {
  font-size: 1.2rem;
}

.notification-content .fa-check-circle {
  color: #2bb673;
}

.notification-content .fa-exclamation-circle {
  color: #dc3545;
}

.notification-content .fa-info-circle {
  color: #17a2b8;
}

.notification-content span {
  color: #1a3c34;
  font-weight: 500;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .demo-invitation-section {
    padding: 60px 0;
  }
  
  .demo-header h2 {
    font-size: 2.2rem;
  }
  
  .demo-main-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .demo-image-section {
    order: 2;
    max-width: 100%;
  }
  
  .demo-content {
    order: 1;
    max-width: 100%;
  }
  
  .demo-form-container,
  .otp-container {
    margin: 0 20px;
    padding: 30px 20px;
  }
  
  .phone-input-container {
    flex-direction: column;
  }
  
  .phone-input-container select {
    width: 100%;
  }
  
  .otp-inputs {
    gap: 10px;
  }
  
  .otp-digit {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .otp-actions {
    flex-direction: column;
  }
  
  .phone-mockup-demo {
    max-width: 300px;
  }
  
  .demo-actions {
    flex-direction: column;
  }
  
  .demo-notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

/* طھط­ط³ظٹظ†ط§طھ ط¥ط¶ط§ظپظٹط© ظ„ظ„ط£ط¬ظ‡ط²ط© ط§ظ„ظ„ظˆط­ظٹط© */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .packages-grid {
    max-width: 600px;
  }
  
  .demo-main-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
    margin: 0 auto;
  }
}

/* تحسينات للشاشات الكبيرة */
@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
  
  .hero-text h1 {
    font-size: 4rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 auto;
  }
}

/* تحسينات إضافية للهاتف الصغير */
@media (max-width: 480px) {
  /* تحسينات عامة */
  .container {
    padding: 0 15px;
  }
  
  /* الهيدر */
  .main-header {
    padding: 10px 0;
  }
  
  .logo {
    height: 45px;
  }
  
  .header-login {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
  
  .header-lang {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  /* البانر الترويجي */
  .promo-text {
    font-size: 0.7rem;
  }
  
  .promo-timer {
    font-size: 0.8rem;
  }
  
  /* قسم البطل */
  .hero-text h1 {
    font-size: 1.7rem !important;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .hero-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  
  .hero-buttons {
    gap: 12px;
  }
  
  .hero-buttons .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    min-height: 44px;
  }
  
  .hero-features {
    gap: 8px;
    font-size: 0.75rem;
  }
  
  /* الإحصائيات */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  /* المميزات */
  .features-section {
    padding: 60px 0;
  }
  
  .feature-card {
    padding: 20px 15px;
    text-align: center;
  }
  
  .feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .feature-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  /* تجربة الدعوة */
  .demo-invitation-section {
    padding: 50px 0;
  }
  
  .demo-form-container,
  .otp-container,
  .invitation-preview {
    margin: 0 10px;
    padding: 20px 15px;
  }
  
  .demo-form-header h3,
  .otp-header h3,
  .invitation-header h3 {
    font-size: 1.1rem;
  }
  
  .otp-digit {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .demo-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
    min-height: 44px;
  }
  
  .phone-mockup-demo {
    max-width: 240px;
    margin: 0 auto;
  }
  
  /* العناوين */
  h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* ================================
     ط¥طµظ„ط§ط­ ط¨ط·ط§ظ‚ط§طھ ط§ظ„ط£ط³ط¹ط§ط± ظ„ظ„ظ…ط­ظ…ظˆظ„
  ================================ */
  
  /* طھط­ط³ظٹظ† ط´ط¨ظƒط© ط§ظ„ط£ط³ط¹ط§ط± ظ„ظ„ظ…ط­ظ…ظˆظ„ */
  .pricing-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 15px !important;
    padding: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  
  /* طھط­ط³ظٹظ† ط¨ط·ط§ظ‚ط§طھ ط§ظ„ط£ط³ط¹ط§ط± ظ„ظ„ظ…ط­ظ…ظˆظ„ */
  .price-option {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 8px 12px !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-direction: row !important;
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
    font-size: 14px !important;
    overflow: visible !important;
  }
  
  .price-option:not(.contact) {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }
  
  /* طھط­ط³ظٹظ† ط§ظ„ظ†طµظˆطµ ط¯ط§ط®ظ„ ط¨ط·ط§ظ‚ط§طھ ط§ظ„ط£ط³ط¹ط§ط± */
  .price-option .guest-count {
    flex: 1 !important;
    text-align: right !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #495057 !important;
    margin: 0 !important;
    padding-right: 10px !important;
    direction: rtl !important;
    white-space: nowrap !important;
    overflow: visible !important;
    max-width: none !important;
  }
  
  .price-option .price {
    flex-shrink: 0 !important;
    text-align: left !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1a3c34 !important;
    margin: 0 !important;
    padding-left: 10px !important;
    direction: ltr !important;
    white-space: nowrap !important;
    overflow: visible !important;
    min-width: 60px !important;
  }
  
  /* طھط­ط³ظٹظ† ط¨ط·ط§ظ‚ط© ط§ظ„طھظˆط§طµظ„ */
  .price-option.contact {
    flex-direction: column !important;
    padding: 12px !important;
    min-height: 70px !important;
    text-align: center !important;
    background: linear-gradient(135deg, #1a3c34, #2bb673) !important;
    color: white !important;
  }
  
  .price-option.contact .guest-count {
    color: white !important;
    font-size: 12px !important;
    text-align: center !important;
    margin: 5px 0 !important;
    padding: 0 !important;
  }
  
  .contact-btn {
    padding: 4px 10px !important;
    font-size: 11px !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #1a3c34 !important;
    border: none !important;
    font-weight: 600 !important;
  }
  
  /* ط¥ط®ظپط§ط، ط§ظ„ط£ظٹظ‚ظˆظ†ط§طھ ظپظٹ ط§ظ„ظ…ط­ظ…ظˆظ„ ظ„طھظˆظپظٹط± ظ…ط³ط§ط­ط© */
  .price-option .price-icon {
    display: none !important;
  }
  
  /* طھط­ط³ظٹظ† ط§ظ„ظ…ط­طھظˆظ‰ ط§ظ„ط¹ط§ظ… ظ„ظ„ط£ط³ط¹ط§ط± */
  .pricing-content {
    padding: 15px 10px !important;
    margin: 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  
  .package-pricing {
    padding: 20px 15px !important;
    margin: 0 !important;
    border-radius: 15px !important;
    overflow: visible !important;
  }
  
  /* طھط­ط³ظٹظ† ط§ظ„ط¹ظ†ظˆط§ظ† ظ„ظ„ط£ط³ط¹ط§ط± */
  .pricing-content h3 {
    font-size: 1.2rem !important;
    margin-bottom: 15px !important;
    text-align: center !important;
  }
}

/* طھط­ط³ظٹظ†ط§طھ ط¥ط¶ط§ظپظٹط© ظ„ظ„ط£ط¬ظ‡ط²ط© ط§ظ„ظ„ظˆط­ظٹط© ط§ظ„طµط؛ظٹط±ط© */
@media (max-width: 768px) and (min-width: 481px) {
  .pricing-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 10px !important;
  }
  
  .price-option {
    padding: 10px !important;
    font-size: 13px !important;
  }
  
  .price-option .guest-count {
    font-size: 12px !important;
  }
  
  .price-option .price {
    font-size: 12px !important;
  }
}

/* ============================================
   ط¥طµظ„ط§ط­ط§طھ ط§ظ„ظ‡ط§طھظپ ط§ظ„ظ…ط­ظ…ظˆظ„ ط§ظ„ط´ط§ظ…ظ„ط©
============================================ */

/* ط§ظ„طھط£ظƒط¯ ظ…ظ† ط¸ظ‡ظˆط± ط§ظ„ط¹ظ†ط§طµط± ط¹ظ„ظ‰ ط§ظ„ظ‡ط§طھظپ ط§ظ„ظ…ط­ظ…ظˆظ„ */
.mobile-device .step-panel {
  position: relative !important;
  min-height: 300px !important;
  padding: 25px !important;
  background: white !important;
  border-radius: 15px !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
  z-index: 10 !important;
  visibility: visible !important;
  transform: none !important;
  overflow: visible !important;
}

.mobile-device .step-panel.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.mobile-device .step-panel:not(.active) {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* طھط­ط³ظٹظ† ط£ط²ط±ط§ط± ط§ظ„ظ‡ط§طھظپ ط§ظ„ظ…ط­ظ…ظˆظ„ */
.mobile-device .package-card {
  min-height: 70px !important;
  margin: 15px 0 !important;
  border: 3px solid transparent !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  z-index: 5 !important;
  background: white !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

.mobile-device .package-card:active,
.mobile-device .package-card:focus,
.mobile-device .package-card:hover {
  border-color: #007bff !important;
  background-color: #f8f9ff !important;
  transform: scale(0.98) !important;
  box-shadow: 0 4px 12px rgba(0,123,255,0.2) !important;
}

.mobile-device .package-card.selected {
  border-color: #007bff !important;
  background-color: #e6f3ff !important;
  box-shadow: 0 4px 15px rgba(0,123,255,0.3) !important;
}

/* طھط­ط³ظٹظ† ط£ط²ط±ط§ط± ط§ظ„طھظ†ظ‚ظ„ */
.mobile-device .navigation-buttons,
.mobile-device .step-navigation {
  position: relative !important;
  z-index: 20 !important;
  margin-top: 30px !important;
  display: flex !important;
  gap: 15px !important;
  justify-content: center !important;
  padding: 15px !important;
}

.mobile-device .navigation-buttons .btn,
.mobile-device .step-navigation .btn {
  min-height: 60px !important;
  min-width: 120px !important;
  font-size: 18px !important;
  font-weight: bold !important;
  border-radius: 30px !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 25 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
  border: 2px solid transparent !important;
}

.mobile-device .navigation-buttons .btn:active,
.mobile-device .step-navigation .btn:active,
.mobile-device .navigation-buttons .btn:focus,
.mobile-device .step-navigation .btn:focus {
  transform: scale(0.95) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
}

/* طھط­ط³ظٹظ† Progress Stepper */
.mobile-device .progress-stepper {
  margin-bottom: 30px !important;
  position: relative !important;
  z-index: 15 !important;
  padding: 20px 10px !important;
}

.mobile-device .progress-stepper .step {
  min-height: 45px !important;
  min-width: 45px !important;
  font-size: 16px !important;
  line-height: 45px !important;
}

.mobile-device .step-circle {
  min-height: 50px !important;
  min-width: 50px !important;
  border: 3px solid !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1) !important;
}

/* ط¥طµظ„ط§ط­ ط§ظ„طھط±ط§ظƒط¨ ظˆط§ظ„ط·ط¨ظ‚ط§طھ */
.mobile-device .packages-section {
  position: relative !important;
  z-index: 1 !important;
  overflow: visible !important;
}

.mobile-device .container {
  position: relative !important;
  z-index: 2 !important;
}

.mobile-device .unified-package-container {
  position: relative !important;
  z-index: 5 !important;
  overflow: visible !important;
}

/* طھط­ط³ظٹظ† ط§ظ„ط®ط·ظˆط§طھ ظ„ظ„ظ…ط­ظ…ظˆظ„ */
.mobile-device .package-option {
  margin: 8px 0 !important;
  padding: 0 !important;
}

.mobile-device .package-option input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.mobile-device .package-option input[type="radio"]:checked + .package-card {
  border-color: #007bff !important;
  background-color: #e6f3ff !important;
  box-shadow: 0 6px 20px rgba(0,123,255,0.25) !important;
}

/* طھط­ط³ظٹظ† ط§ظ„ط¹ط±ط¶ ظ„ظ„ط´ط§ط´ط§طھ ط§ظ„طµط؛ظٹط±ط© */
@media (max-width: 768px) and (pointer: coarse) {
  .step-panel {
    min-height: 250px !important;
    padding: 20px !important;
    margin: 10px 0 !important;
  }
  
  .navigation-buttons,
  .step-navigation {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }
  
  .navigation-buttons .btn,
  .step-navigation .btn {
    width: 100% !important;
    max-width: 200px !important;
    margin: 5px 0 !important;
    min-height: 50px !important;
    font-size: 16px !important;
  }
  
  .package-card {
    min-height: 60px !important;
    padding: 15px !important;
    margin: 10px 0 !important;
  }
  
  .progress-stepper {
    padding: 15px 5px !important;
    margin-bottom: 20px !important;
  }
  
  .step-circle {
    width: 40px !important;
    height: 40px !important;
    font-size: 14px !important;
  }
  
  .step-label {
    font-size: 12px !important;
    margin-top: 8px !important;
  }
  
  .step-line {
    width: 60px !important;
    margin: 0 10px !important;
  }
}

/* ط¥طµظ„ط§ط­ط§طھ ط¥ط¶ط§ظپظٹط© ظ„ظ„ط£ط¬ظ‡ط²ط© ط§ظ„طھظٹ طھط¯ط¹ظ… ط§ظ„ظ„ظ…ط³ */
@media (pointer: coarse) {
  .package-card {
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(0,123,255,0.2) !important;
  }
  
  .navigation-buttons .btn,
  .step-navigation .btn {
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
  }
  
  .step-circle {
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(43,182,115,0.2) !important;
  }
}

/* ط¥طµظ„ط§ط­ط§طھ ظ„ظ„ظ…طھطµظپط­ط§طھ ط§ظ„ظ…ط­ظ…ظˆظ„ط© ط§ظ„ظ…ط®طھظ„ظپط© */
.mobile-device .step-panel,
.mobile-device .package-card,
.mobile-device .navigation-buttons .btn,
.mobile-device .step-navigation .btn {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
}

/* ط§ظ„طھط£ظƒط¯ ظ…ظ† ط¹ظ…ظ„ ط§ظ„ط£ط­ط¯ط§ط« ط¹ظ„ظ‰ ط§ظ„ط£ط¬ظ‡ط²ط© ط§ظ„ظ…ط­ظ…ظˆظ„ط© */
.mobile-device .package-card,
.mobile-device .navigation-buttons .btn,
.mobile-device .step-navigation .btn {
  pointer-events: auto !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent !important;
}

/* ========================================
   ط¥طµظ„ط§ط­ط§طھ ط´ط§ظ…ظ„ط© ظ„ظ„ط£ط³ط¹ط§ط± ط¹ظ„ظ‰ ط§ظ„ط¬ظˆط§ظ„
======================================== */

/* طھط­ط³ظٹظ† ط´ط¨ظƒط© ط§ظ„ط£ط³ط¹ط§ط± ظ„ظ„ط£ط¬ظ‡ط²ط© ط§ظ„ظ…ط­ظ…ظˆظ„ط© */
@media (max-width: 768px) {
  .pricing-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    padding: 8px !important;
    margin: 10px 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }
  
  .price-option {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 10px 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    white-space: nowrap !important;
  }
  
  .price-option:not(.contact) {
    flex-direction: row !important;
    min-height: 45px !important;
    gap: 10px !important;
  }
  
  .price-option .guest-count {
    flex: 1 !important;
    text-align: right !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    direction: rtl !important;
    margin: 0 !important;
    padding: 0 5px 0 0 !important;
    overflow: visible !important;
    white-space: nowrap !important;
    min-width: 0 !important;
  }
  
  .price-option .price {
    flex-shrink: 0 !important;
    text-align: left !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    direction: ltr !important;
    margin: 0 !important;
    padding: 0 0 0 5px !important;
    overflow: visible !important;
    white-space: nowrap !important;
    min-width: 50px !important;
  }
  
  .price-option.contact {
    flex-direction: column !important;
    padding: 8px !important;
    min-height: 55px !important;
    text-align: center !important;
  }
  
  .price-option.contact .guest-count {
    text-align: center !important;
    font-size: 11px !important;
    margin: 2px 0 !important;
  }
  
  .contact-btn {
    font-size: 10px !important;
    padding: 3px 8px !important;
  }
  
  /* ط¥ط®ظپط§ط، ط§ظ„ط£ظٹظ‚ظˆظ†ط§طھ ط¹ظ„ظ‰ ط§ظ„ط¬ظˆط§ظ„ */
  .price-option .price-icon {
    display: none !important;
  }
  
  /* طھط­ط³ظٹظ† ط§ظ„ط­ط§ظˆظٹ ط§ظ„ط¹ط§ظ… */
  .pricing-content {
    padding: 10px 5px !important;
    margin: 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  
  .package-pricing {
    padding: 15px 10px !important;
    margin: 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }
}

/* طھط­ط³ظٹظ†ط§طھ ط®ط§طµط© ظ„ظ„ط´ط§ط´ط§طھ ط§ظ„طµط؛ظٹط±ط© ط¬ط¯ط§ظ‹ */
@media (max-width: 380px) {
  .price-option {
    padding: 8px 12px !important;
    min-height: 40px !important;
  }
  
  .price-option .guest-count {
    font-size: 11px !important;
  }
  
  .price-option .price {
    font-size: 11px !important;
    min-width: 45px !important;
  }
  
  .pricing-grid {
    gap: 4px !important;
    padding: 5px !important;
  }
}

/* طھط­ط³ظٹظ†ط§طھ ط¥ط¶ط§ظپظٹط© ظ„ظ„ظ‡ط§طھظپ - ط¥طµظ„ط§ط­ ظ…ط´ظƒظ„ط© ط§ظ„ظ€ promo-bar ظˆط§ظ„ظ‡ظٹط¯ط± */
@media (max-width: 768px) {
  /* طھط¹ط¯ظٹظ„ ط§ظ„ظ…ط­طھظˆظ‰ ظ„ظٹط¨ط¯ط£ طھط­طھ ط§ظ„ظ‡ظٹط¯ط± ط§ظ„ط«ط§ط¨طھ */
  .hero-section {
    padding-top: 160px !important; /* 50px ظ„ظ„promo + 60px ظ„ظ„header + 50px ط¥ط¶ط§ظپظٹ */
  }
  
  body.no-promo .hero-section {
    padding-top: 110px !important; /* 60px ظ„ظ„header + 50px ط¥ط¶ط§ظپظٹ ط¹ظ†ط¯ ط¥ط؛ظ„ط§ظ‚ ط§ظ„promo */
  }
  
  /* ط¶ظ…ط§ظ† ط«ط¨ط§طھ ط§ظ„ظ‡ظٹط¯ط± */
  .main-header {
    position: fixed !important;
    top: 50px !important;
    z-index: 9999 !important;
  }
  
  .main-header.no-promo {
    top: 0 !important;
  }
  
  /* طھط­ط³ظٹظ† ط§ظ„ظ€ promo-bar ظ„ظ„ظ‡ط§طھظپ */
  .promo-bar {
    position: fixed !important;
    top: 0 !important;
    z-index: 10000 !important;
  }
}

/* طھط­ط³ظٹظ†ط§طھ ط§ظ„ط¬ظˆط§ظ„ ظ„ظ‚ط³ظ… ط§ظ„ط¨ط§ظ‚ط§طھ - ط¥طµظ„ط§ط­ ظ…ط´ظƒظ„ط© ط§ظ„طھظ†ظ‚ظ„ */
@media (max-width: 768px) {
  /* طھط­ط³ظٹظ† ط£ط²ط±ط§ط± ط§ظ„طھظ†ظ‚ظ„ */
  .step-navigation {
    padding: 20px 10px;
    gap: 12px;
    flex-direction: column;
  }
  
  .btn-prev,
  .btn-next,
  .btn-finish {
    padding: 16px 24px;
    font-size: 1rem;
    min-height: 48px; /* حد أدنى للمس السهل */
    border-radius: 25px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    touch-action: manipulation; /* تحسين الاستجابة للمس */
    -webkit-tap-highlight-color: transparent; /* إزالة التظليل الافتراضي */
  }
  
  /* تحسين عناوين الخدمات */
  .services-header {
    padding: 18px 20px;
    margin-bottom: 0;
    min-height: 48px; /* حد أدنى للمس السهل */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none; /* منع تحديد النص */
  }
  
  .services-header:active {
    background: rgba(43, 182, 115, 0.15) !important;
    transform: scale(0.98);
  }
  
  .services-header h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    pointer-events: none; /* منع التدخل مع النقر */
  }
  
  .services-header i {
    pointer-events: none; /* منع التدخل مع النقر */
    font-size: 1.1rem;
  }
  
  /* تحسين القوائم المنسدلة */
  .services-list {
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  
  .services-group.expanded .services-list {
    max-height: none !important;
    padding: 20px;
  }
  
  /* تحسين عناصر الخدمات */
  .service-item {
    padding: 14px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    min-height: 44px;
    align-items: flex-start;
  }
  
  .service-icon {
    margin-left: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    font-size: 12px !important;
  }
  
  /* منع التدخل مع touch events */
  .package-option,
  .package-card {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* تحسين الأسعار */
  .price-option {
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* إضافة التأثيرات المتداخلة */
  .unified-package-container * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* السماح بتحديد النص في المحتوى فقط */
  .service-item span,
  .note-item span,
  .guest-count,
  .price {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
  }
}