/* ===== قسم الهيرو (Hero) ===== */
.hero-section {
  background: linear-gradient(rgba(13, 16, 33, 0.85), rgba(13, 16, 33, 0.85)),
              url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1400&q=80') no-repeat center center;
  background-size: cover;
  min-height: 600px;
  color: white;
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}


.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  padding: 0 2rem;
  color: #ffffff;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.3;
}

.hero-title .highlight {
  color: #4cc9f0;
  position: relative;
}

.hero-title .highlight:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #4cc9f0;
  border-radius: 3px;
}

.hero-text {
  font-size: 1.2rem;
  color: #c5c7d0;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.hero-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #c5c7d0;
}

.hero-features i {
  color: #4cc9f0;
}

.hero-image {
  position: relative;
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.floating-animation {
  animation: float 6s ease-in-out infinite;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  background-color: #4cc9f0;
  color: white;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #4361ee;
  transform: translateY(-3px);
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #4cc9f0;
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(76, 201, 240, 0.7); }
  70%  { box-shadow: 0 0 0 15px rgba(76, 201, 240, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 201, 240, 0); }
}

/* ===== قسم كيف يعمل ===== */
.how-it-works-section {
  padding: 100px 0;
  background: #10142a;
  color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.section-title .highlight { color: #4cc9f0; }

.section-subtitle {
  font-size: 1.1rem;
  color: #c5c7d0;
  max-width: 700px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  background: #1a1f3c;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.35);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: rgba(76, 201, 240, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #4cc9f0;
  font-size: 1.5rem;
}

.step-number {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(76, 201, 240, 0.1);
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.step-card p {
  color: #c5c7d0;
  font-size: 0.95rem;
}

.video-guide {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.video-container {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

.video-container iframe {
  width: 100%;
  height: 315px;
  border: none;
}

.video-description {
  flex: 1;
  min-width: 300px;
}

.video-description h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.video-description p { color: #c5c7d0; }

/* ===== قسم شهادات العملاء ===== */
.testimonials-section {
  padding: 100px 0;
  background: #0d1021;
  color: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: #1a1f3c;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.testimonial-card:hover { transform: translateY(-5px); }

.rating { color: #ffc107; margin-bottom: 15px; }

.testimonial-text {
  font-style: italic;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-right: 20px;
}

.testimonial-text:before {
  content: '"';
  position: absolute;
  top: -15px;
  right: 0;
  font-size: 3rem;
  color: rgba(76, 201, 240, 0.08);
  font-family: serif;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user { font-weight: 700; color: #4cc9f0; display: block; }
.user-title       { font-size: 0.8rem; color: #c5c7d0; }

.testimonials-cta { text-align: center; margin-top: 50px; }

/* ===== استجابة (Responsive) ===== */
@media (max-width: 992px) {
  .hero-section { padding: 150px 0 80px; text-align: center; }
  .hero-content { margin-bottom: 50px; }
  .hero-buttons { justify-content: center; }
  .hero-features{ justify-content: center; }
  .video-guide  { flex-direction: column; }
}

@media (max-width: 768px) {
  .hero-title   { font-size: 2rem; }
  .section-title{ font-size: 2rem; }
  .steps-grid   { grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .hero-buttons       { flex-direction: column; }
  .hero-buttons .btn  { width: 100%; }
  .hero-features      { flex-direction: column; align-items: center; }
}
