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

body {
  font-family: 'Heebo', 'Alef', Arial, sans-serif;
  direction: rtl;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #45B7D1 100%);
  color: white;
  padding: 50px 20px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@keyframes backgroundShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease;
}

.hero .subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 30px;
  opacity: 0.95;
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 10px;
  animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Content */
.main-content {
  background: white;
  margin-top: -50px;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 2;
  padding: 60px 10px;
}

.section {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.section-title i {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.2rem;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Cards */
.card {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

/* Special Feature Cards */
.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card-1 {
  background: linear-gradient(135deg, #FFE5E5 0%, #FFFFFF 100%);
  border-top: 4px solid #FF6B6B;
}

.feature-card-2 {
  background: linear-gradient(135deg, #E5F3FF 0%, #FFFFFF 100%);
  border-top: 4px solid #4ECDC4;
}

.feature-card-3 {
  background: linear-gradient(135deg, #FFF4E5 0%, #FFFFFF 100%);
  border-top: 4px solid #FFD93D;
}

.feature-card-4 {
  background: linear-gradient(135deg, #E5FFE5 0%, #FFFFFF 100%);
  border-top: 4px solid #6BCB77;
}

.feature-card-5 {
  background: linear-gradient(135deg, #F0E5FF 0%, #FFFFFF 100%);
  border-top: 4px solid #9B59B6;
}

.feature-card-6 {
  background: linear-gradient(135deg, #FFE5F0 0%, #FFFFFF 100%);
  border-top: 4px solid #FF6B9D;
}

.feature-card-7 {
  background: linear-gradient(135deg, #E5F5FF 0%, #FFFFFF 100%);
  border-top: 4px solid #45B7D1;
}

/* Package Card - Softer, more pleasant colors */
.package-card {
  background: linear-gradient(135deg, #F0F4FF 0%, #FFFFFF 100%);
  border-top: 4px solid #667eea;
}

.package-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon-1 {
  background: linear-gradient(135deg, #FF6B6B, #FF8787);
  color: white;
}

.feature-icon-2 {
  background: linear-gradient(135deg, #4ECDC4, #6EDDD6);
  color: white;
}

.feature-icon-3 {
  background: linear-gradient(135deg, #FFD93D, #FFE66D);
  color: white;
}

.feature-icon-4 {
  background: linear-gradient(135deg, #6BCB77, #8DD896);
  color: white;
}

.feature-icon-5 {
  background: linear-gradient(135deg, #9B59B6, #BB7BC8);
  color: white;
}

.feature-icon-6 {
  background: linear-gradient(135deg, #FF6B9D, #FF8FB3);
  color: white;
}

.feature-icon-7 {
  background: linear-gradient(135deg, #45B7D1, #6BC5D9);
  color: white;
}

.card-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 15px;
}

.card-title i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-content {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.9;
}

.card-content ul {
  list-style: none;
  padding: 0;
}

.card-content ul li {
  padding: 10px 0;
  padding-right: 30px;
  position: relative;
}

.card-content ul li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: #4ECDC4;
  font-weight: bold;
  font-size: 1.3rem;
}

/* Price Card */
.price-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: white;
  text-align: center;
  padding: 50px 40px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
  margin: 40px 0;
}

.price-card .price {
  font-size: 4rem;
  font-weight: 900;
  margin: 20px 0;
}

.price-card .price-label {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* Lesson Plan Title */
.lesson-plan-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.lesson-plan-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  transform: rotate(-5deg);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: rotate(-5deg) translateY(0px); }
  50% { transform: rotate(-5deg) translateY(-10px); }
}

.lesson-plan-title {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.lesson-plan-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 20px 0;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  background: white;
  border-radius: 25px;
  padding: 35px;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
  overflow: hidden;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.timeline-item:hover {
  transform: translateX(-5px);
  box-shadow: 0 10px 35px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.timeline-item-number {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.timeline-item .time {
  font-size: 1rem;
  color: #667eea;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  padding: 5px 15px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 20px;
}

.timeline-item h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
  padding-right: 80px;
  margin-top: 5px;
}

.timeline-item p {
  color: #555;
  line-height: 1.9;
  padding-right: 80px;
  font-size: 1.05rem;
}

.timeline-item-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.timeline-item .time {
  padding-right: 80px;
  display: block;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-prev {
  right: 20px;
}

.lightbox-next {
  left: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 20px 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-primary {
  background: white;
  color: #FF6B6B;
}

.btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: #FF6B6B;
  text-decoration: none;
}

.btn-secondary {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-3px);
  color: white;
  text-decoration: none;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
  text-decoration: none;
  color: white;
  font-size: 2rem;
}

.floating-whatsapp:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .section-title i {
    font-size: 1.8rem;
  }
  
  .card {
    padding: 25px;
  }
  
  .price-card .price {
    font-size: 3rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  /* Package Details - Mobile Fixes */
  .package-details-container {
    padding: 20px !important;
  }
  
  .package-items-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  .package-item {
    flex-direction: column !important;
    text-align: center !important;
    gap: 10px !important;
    padding: 15px !important;
  }
  
  .package-item i {
    font-size: 1.5rem !important;
  }
  
  .package-item span {
    font-size: 1rem !important;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  
  .lightbox-prev {
    right: 10px;
  }
  
  .lightbox-next {
    left: 10px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    font-size: 2rem;
  }
}

