/* سيفرادو للتقنيات - التصميم الرئيسي */
/* Ciffrado Technology - Main Styles */

:root {
  /* ألوان الشركة الأساسية - Company Brand Colors */
  --primary-cyan: #00ffff;
  --primary-magenta: #ff00ff;
  --dark-bg: #0a0a0f;
  --dark-card: #1a1a2e;
  --dark-border: #2a2a4a;
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --gradient-primary: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  --gradient-bg: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2a2a4a 100%);
  --shadow-glow-cyan: 0 0 30px rgba(0, 255, 255, 0.3);
  --shadow-glow-magenta: 0 0 30px rgba(255, 0, 255, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', 'Arial', sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* شريط التنقل - Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid var(--dark-border);
}

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

.nav-brand h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: 700;
}

.nav-brand span {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: block;
  margin-top: -5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-cyan);
  text-shadow: 0 0 10px var(--primary-cyan);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-cyan);
  transition: 0.3s;
}

/* القسم الرئيسي - Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-bg);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary-cyan);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--dark-bg);
  box-shadow: var(--shadow-glow-cyan);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-magenta);
}

.btn-outline {
  border: 2px solid var(--primary-cyan);
  color: var(--primary-cyan);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-cyan);
  color: var(--dark-bg);
  box-shadow: var(--shadow-glow-cyan);
}

/* عرض واتساب - WhatsApp Demo */
.hero-visual {
  position: relative;
}

.whatsapp-demo {
  background: #075e54;
  border-radius: 20px;
  max-width: 400px;
  height: 600px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}

/* قسم العملاء - Clients Section */
.clients {
  padding: 4rem 0;
  background: var(--dark-card);
  text-align: center;
}

.clients h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-light);
}

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

.client-item {
  padding: 2rem;
  background: var(--dark-bg);
  border-radius: 15px;
  border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
  font-weight: 600;
}

.client-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

/* قسم الخدمات - Services Section */
.services {
  padding: 5rem 0;
  background: var(--dark-bg);
  position: relative;
}

.services h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--dark-card);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--dark-bg);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* قسم الأعمال - Portfolio Section */
.portfolio {
  padding: 5rem 0;
  background: var(--dark-card);
}

.portfolio h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: var(--text-light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  background: var(--dark-bg);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow-magenta);
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.portfolio-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: var(--gradient-primary);
  color: var(--dark-bg);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* قسم الاتصال - Contact Section */
.contact {
  padding: 5rem 0;
  background: var(--dark-bg);
}

.contact h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--primary-cyan);
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-size: 1.2rem;
}

.contact-form {
  background: var(--dark-card);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--dark-border);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  background: var(--dark-bg);
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

select.form-control {
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* الذيل - Footer */
.footer {
  background: var(--dark-card);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--dark-border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-cyan);
}

.footer-section p,
.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--primary-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-border);
  color: var(--text-muted);
}

/* نافذة رقم الهاتف - Phone Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.phone-modal {
  background: var(--dark-card);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 450px;
  width: 90%;
  border: 1px solid var(--primary-cyan);
  box-shadow: var(--shadow-glow-cyan);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.modal-overlay.active .phone-modal {
  transform: scale(1);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--dark-bg);
}

.modal-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.modal-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-close {
  background: transparent;
  border: 1px solid var(--dark-border);
  color: var(--text-muted);
}

.btn-close:hover {
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

/* الرسائل - Alerts */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.alert-success {
  background: rgba(0, 255, 0, 0.1);
  border-color: #00ff00;
  color: #00ff00;
}

.alert-error {
  background: rgba(255, 0, 0, 0.1);
  border-color: #ff0000;
  color: #ff0000;
}

/* الحركات - Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* التجاوب - Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    border-top: 1px solid var(--dark-border);
  }

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

  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .modal-buttons {
    flex-direction: column;
  }

  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .services h2,
  .contact h2 {
    font-size: 2rem;
  }

  .phone-modal {
    padding: 2rem;
    margin: 1rem;
  }
}

/* حالة التحميل - Loading State */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--dark-border);
  border-radius: 50%;
  border-top-color: var(--primary-cyan);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* إخفاء عناصر */
.hidden {
  display: none !important;
}

.invisible {
  opacity: 0;
  visibility: hidden;
}

/* تحسين الأداء */
.smooth-scroll {
  scroll-behavior: smooth;
}

/* شارة Meta في Hero - Meta Badge */
.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid var(--primary-cyan);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--primary-cyan);
  animation: pulse 2s ease-in-out infinite;
}

.meta-badge i {
  font-size: 1.2rem;
}

.badge-verified {
  background: var(--primary-cyan);
  color: var(--dark-bg);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

/* إحصائيات Hero المصغرة - Hero Stats Mini */
.hero-stats-mini {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat-mini {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.stat-mini i {
  color: var(--primary-cyan);
  font-size: 1.2rem;
}

.stat-mini span {
  font-weight: 600;
}

/* قسم الإحصائيات - Stats Section */
.stats-section {
  padding: 4rem 0;
  background: var(--dark-card);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--dark-bg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

/* رأس القسم - Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* تحسين بطاقات الخدمات - Enhanced Service Cards */
.service-features {
  list-style: none;
  margin-top: 1.5rem;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-features li i {
  color: var(--primary-cyan);
  font-size: 0.8rem;
}

.service-card.featured {
  position: relative;
  border: 2px solid var(--primary-cyan);
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
}

.service-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--dark-bg);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-glow-cyan);
}

/* قسم من نحن - About Section */
.about-section {
  padding: 5rem 0;
  background: var(--dark-bg);
}

.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-description {
  margin: 2rem 0;
}

.about-description p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-description strong {
  color: var(--primary-cyan);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--dark-card);
  border-radius: 15px;
  border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--primary-cyan);
  transform: translateX(-5px);
}

.feature-item i {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-item h4 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about-partnerships {
  background: var(--dark-card);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--dark-border);
  height: fit-content;
}

.about-partnerships h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-cyan);
}

.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--dark-bg);
  border-radius: 15px;
  border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
  text-align: center;
}

.partner-logo:hover {
  border-color: var(--primary-cyan);
  transform: scale(1.05);
}

.partner-logo i {
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.partner-logo span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.certifications {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid var(--primary-cyan);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--primary-cyan);
}

.cert-badge i {
  font-size: 1.2rem;
}

/* قسم شهادات العملاء - Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: var(--dark-card);
  overflow: hidden;
}

.testimonials-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2rem;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 350px;
  background: var(--dark-bg);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars i {
  color: #ffc107;
  font-size: 1rem;
}

.testimonial-text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark-border);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.author-info h4 {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  color: var(--primary-cyan);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--primary-cyan);
  color: var(--dark-bg);
  border-color: var(--primary-cyan);
  transform: scale(1.1);
}

.carousel-indicators {
  display: flex;
  gap: 0.5rem;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  background: var(--dark-border);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  background: var(--primary-cyan);
  width: 30px;
  border-radius: 5px;
}

/* التجاوب للأقسام الجديدة - Responsive for New Sections */
@media (max-width: 768px) {
  .meta-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-stats-mini {
    gap: 1rem;
  }

  .stat-mini {
    font-size: 0.85rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .partnerships-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .testimonial-card {
    min-width: 300px;
  }

  .carousel-controls {
    gap: 1rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-stats-mini {
    flex-direction: column;
    gap: 0.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 1.5rem;
  }

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

  .service-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    top: -10px;
    right: 10px;
  }

  .testimonial-card {
    min-width: 280px;
  }

  .about-features {
    gap: 1rem;
  }

  .feature-item {
    padding: 1rem;
  }

  .feature-item i {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}