/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #faf8f4;
  direction: rtl;
}

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

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-text {
  background: #8a5a4a;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 18px;
}

.nav-desktop {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: #724a3f;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #4e352f;
  transform: scale(1.05);
}

.btn-primary {
  background: #8a5a4a;
  color: white;
  padding: 8px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(138, 90, 74, 0.3);
}

.btn-primary:hover {
  background: #724a3f;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(138, 90, 74, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #724a3f;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 16px 0;
  border-top: 1px solid #e8dcc9;
  animation: slideDown 0.3s ease;
}

.mobile-nav-link {
  display: block;
  padding: 8px 0;
  color: #724a3f;
  text-decoration: none;
  font-weight: 500;
}

.mobile-cta {
  width: 100%;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .nav-desktop, .cta-desktop {
      display: none;
  }
  
  .mobile-menu-btn {
      display: block;
  }
  
  .mobile-menu.active {
      display: block;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #70523c, #724a3f, #4e352f);
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/Image_fx\ \(10\).jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decoration {
  position: absolute;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.decoration-1 {
  top: 80px;
  right: 80px;
  width: 128px;
  height: 128px;
  background: rgba(196, 160, 141, 0.2);
}

.decoration-2 {
  bottom: 128px;
  left: 64px;
  width: 96px;
  height: 96px;
  background: rgba(196, 160, 141, 0.15);
  animation-delay: 1s;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  animation: fadeIn 1s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(196, 160, 141, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 12px 24px;
  margin-bottom: 32px;
  margin-top: 100px;
  border: 1px solid rgba(196, 160, 141, 0.3);
}

.hero-badge span {
  color: #dbc5a3;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-title-highlight {
  color: #dbc5a3;
  background: linear-gradient(45deg, #dbc5a3, #f4f0e7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: #dbc5a3;
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 64px;
}

.btn-primary-lg {
  background: #c9a876;
  color: #4e352f;
  padding: 16px 32px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(201, 168, 118, 0.5);
  min-width: 200px;
}

.btn-primary-lg:hover {
  background: #dbc5a3;
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(201, 168, 118, 0.6);
}

.btn-secondary-lg {
  border: 2px solid #dbc5a3;
  color: #f4f0e7;
  background: transparent;
  padding: 16px 32px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
  backdrop-filter: blur(10px);
}

.btn-secondary-lg:hover {
  background: #dbc5a3;
  color: #4e352f;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.card-icon {
  font-size: 48px;
  margin-bottom: 8px;
}

.hero-card h3 {
  font-weight: 700;
  font-size: 18px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator::before {
  content: '';
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid #dbc5a3;
  border-radius: 20px;
  position: relative;
}

.scroll-dot {
  width: 4px;
  height: 12px;
  background: #dbc5a3;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: pulse 2s infinite;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, #faf8f4, #f4f0e7);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  animation: fadeIn 0.6s ease;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  background: #ede4dc;
  border-radius: 25px;
  padding: 8px 24px;
  margin-bottom: 24px;
  color: #724a3f;
  font-weight: 500;
}

.section-badge.light {
  background: rgba(196, 160, 141, 0.2);
  color: #dbc5a3;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  font-family: 'Amiri', serif;
  color: #4e352f;
  margin-bottom: 24px;
}

.section-title.light {
  color: white;
}

.section-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  color: #9c6b56;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-subtitle.light {
  color: #dbc5a3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(138, 90, 74, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8a5a4a, #c9a876);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  color: #8a5a4a;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(138, 90, 74, 0.1);
  border-radius: 16px;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: #8a5a4a;
  color: white;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #4e352f;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #8a5a4a;
}

.service-card p {
  color: #9c6b56;
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 16px;
}

.service-features {
  list-style: none;
  margin-bottom: 32px;
}

.service-features li {
  display: flex;
  align-items: center;
  color: #724a3f;
  margin-bottom: 12px;
  font-size: 15px;
  transition: transform 0.3s ease;
}

.service-features li:hover {
  transform: translateX(-8px);
}

.service-features li::before {
  content: '✓';
  color: #8a5a4a;
  font-weight: 700;
  margin-left: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-features li:hover::before {
  transform: scale(1.2);
}

.btn-service {
  width: 100%;
  background: #8a5a4a;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(138, 90, 74, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-service:hover {
  background: #724a3f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138, 90, 74, 0.4);
}

.btn-service::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-service:hover::after {
  width: 300px;
  height: 300px;
}

.services-cta {
  background: linear-gradient(135deg, #70523c, #724a3f);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-decoration {
  position: absolute;
  border-radius: 50%;
  animation: pulse 3s infinite;
}

.cta-decoration-1 {
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: rgba(196, 160, 141, 0.2);
  transform: translate(50%, -50%);
}

.cta-decoration-2 {
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: rgba(196, 160, 141, 0.15);
  transform: translate(-50%, 50%);
  animation-delay: 1.5s;
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-content h3 {
  font-size: 36px;
  font-weight: 700;
  font-family: 'Amiri', serif;
  margin-bottom: 20px;
  color: #f4f0e7;
}

.cta-content p {
  font-size: 18px;
  color: #dbc5a3;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.btn-cta {
  background: #c9a876;
  color: #4e352f;
  padding: 18px 36px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(201, 168, 118, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-cta:hover {
  background: #dbc5a3;
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(201, 168, 118, 0.6);
}

.btn-cta i {
  transition: transform 0.3s ease;
}

.btn-cta:hover i {
  transform: rotate(360deg);
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .service-card {
    padding: 30px;
  }
  
  .services-cta {
    padding: 40px 24px;
  }
  
  .cta-content h3 {
    font-size: 28px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #70523c, #724a3f, #4e352f);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.stats-decoration {
    position: absolute;
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.stats-decoration-1 {
    top: 80px;
    right: 80px;
    width: 160px;
    height: 160px;
    background: #c9a876;
}

.stats-decoration-2 {
    bottom: 128px;
    left: 64px;
    width: 128px;
    height: 128px;
    background: #dbc5a3;
    animation-delay: 1s;
}

.stats-decoration-3 {
    top: 50%;
    left: 50%;
    width: 240px;
    height: 240px;
    background: #e8dcc9;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

.stats-decoration-4 {
    bottom: 80px;
    right: 80px;
    width: 180px;
    height: 180px;
    background: #c9a876;
    animation-delay: 1.5s;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 10;
    margin-bottom: 64px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.5s ease;
    cursor: pointer;
    border: 1px solid rgba(219, 197, 163, 0.2);
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-icon.blue { 
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.stat-icon.green { 
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.stat-icon.purple { 
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.stat-icon.yellow { 
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    font-family: 'Amiri', serif;
    margin-bottom: 8px;
    display: inline;
    background: linear-gradient(45deg, #dbc5a3, #f4f0e7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-suffix {
    color: #dbc5a3;
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
}

.stat-label {
    color: #dbc5a3;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 16px;
}

.stat-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #c9a876, #dbc5a3);
    border-radius: 2px;
    transition: width 1.5s ease;
}

.stats-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
    z-index: 10;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(219, 197, 163, 0.2);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #dbc5a3;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: #dbc5a3;
    color: #4e352f;
    transform: scale(1.1);
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #f4f0e7;
    margin-bottom: 8px;
}

.feature-content p {
    color: #dbc5a3;
    font-size: 16px;
    line-height: 1.6;
}

.stats-quote {
    text-align: center;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(219, 197, 163, 0.2);
}

.quote-icon {
    font-size: 48px;
    color: #dbc5a3;
    margin-bottom: 24px;
}

.stats-quote blockquote {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    font-family: 'Amiri', serif;
    color: #f4f0e7;
    margin-bottom: 24px;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars i {
    color: #f59e0b;
    width: 24px;
    height: 24px;
}

.quote-rating span {
    color: #dbc5a3;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat-card {
        padding: 24px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .stats-features {
        grid-template-columns: 1fr;
    }
    
    .stats-quote {
        padding: 32px 24px;
    }
    
    .stats-quote blockquote {
        font-size: 1.5rem;
    }
}

/* Packages Section */
.packages {
  padding: 80px 0;
  background: white;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.package-card {
  background: linear-gradient(135deg, #faf8f4, #f4f0e7);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
  border-color: #8a5a4a;
  background: linear-gradient(135deg, #fff, #faf8f4);
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #8a5a4a;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.package-header {
  text-align: center;
  margin-bottom: 32px;
}

.package-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #4e352f;
  margin-bottom: 16px;
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.currency {
  font-size: 18px;
  color: #9c6b56;
}

.amount {
  font-size: 48px;
  font-weight: 700;
  color: #8a5a4a;
  font-family: 'Amiri', serif;
}

.package-features {
  list-style: none;
  margin-bottom: 32px;
}

.package-features li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  color: #724a3f;
  border-bottom: 1px solid #e8dcc9;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li::before {
  content: '✓';
  color: #8a5a4a;
  font-weight: 700;
  margin-left: 12px;
  flex-shrink: 0;
}

.btn-package {
  width: 100%;
  background: #8a5a4a;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(138, 90, 74, 0.3);
}

.btn-package:hover {
  background: #724a3f;
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(138, 90, 74, 0.4);
}

.package-card.featured .btn-package {
  background: linear-gradient(135deg, #8a5a4a, #9c6b56);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f4, #f4f0e7);
}
.footer-bottom a{
  text-decoration: none;
  color: #f4f0e7;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 18px;
    color: #4e352f;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #8a5a4a;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #4e352f;
    margin-bottom: 4px;
}

.author-info p {
    color: #9c6b56;
    font-size: 14px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #faf8f4, #f4f0e7);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(138, 90, 74, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #4e352f;
    margin: 0;
}

.faq-question i {
    color: #8a5a4a;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px;
}

.faq-answer p {
    color: #9c6b56;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #faf8f4, #f4f0e7);
}

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

.contact-form1 {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #e8dcc9;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Cairo', sans-serif;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8a5a4a;
  box-shadow: 0 0 0 3px rgba(138, 90, 74, 0.1);
}

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

.btn-submit {
  width: 100%;
  background: #8a5a4a;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(138, 90, 74, 0.3);
}

.btn-submit:hover {
  background: #724a3f;
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(138, 90, 74, 0.4);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  align-items: start;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateY(-4px);
}

.info-icon {
  background: #8a5a4a;
  color: white;
  padding: 12px;
  border-radius: 12px;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #4e352f;
  margin-bottom: 8px;
}

.info-content p {
  color: #9c6b56;
  font-size: 16px;
}

@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form1 {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-info {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  
  .info-item {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .contact-content {
    gap: 32px;
  }
  
  .contact-form1 {
    padding: 24px;
  }
  
  .contact-info {
    gap: 24px;
  }
  
  .info-item {
    padding: 18px;
  }
  
  .info-icon {
    padding: 10px;
  }
  
  .info-content h4 {
    font-size: 16px;
  }
  
  .info-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact-form1 {
    padding: 20px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
    font-size: 14px;
  }
  
  .btn-submit {
    padding: 12px 24px;
    font-size: 16px;
  }
  
  .contact-info {
    gap: 16px;
  }
  
  .info-item {
    padding: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .info-icon {
    margin-bottom: 12px;
  }
  
  .info-content h4 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  
  .info-content p {
    font-size: 13px;
  }
}

/* Footer */
.footer {
  background: #4e352f;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-section h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #c9a876;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #dbc5a3;
}

.footer-section p {
  color: #dbc5a3;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #dbc5a3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #c9a876;
}

.footer-section ul li i {
  margin-left: 8px;
  width: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  background: #8a5a4a;
  color: white;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.social-links a:hover {
  background: #c9a876;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #724a3f;
  color: #dbc5a3;
}

/* Animations */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
      opacity: 0;
      transform: scale(0.9);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

@keyframes slideDown {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
      opacity: 0.5;
  }
  50% {
      opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-10px);
  }
  60% {
      transform: translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-buttons {
      flex-direction: column;
      align-items: stretch;
  }
  
  .btn-primary-lg,
  .btn-secondary-lg {
      min-width: auto;
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
  }
  
  .hero-cards {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
  }
  
  .services-grid {
      grid-template-columns: 1fr;
  }
  
  .stats-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .packages-grid {
      grid-template-columns: 1fr;
  }
  
  .services-cta {
      padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 16px;
  }
  
  .hero-cards {
      grid-template-columns: 1fr;
  }
  
  .stats-grid {
      grid-template-columns: 1fr;
  }
  
  .decoration-1 {
      top: 40px;
      right: 40px;
      width: 80px;
      height: 80px;
  }
  
  .decoration-2 {
      bottom: 80px;
      left: 32px;
      width: 60px;
      height: 60px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: #c9a876;
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f4f0e7;
}

::-webkit-scrollbar-thumb {
  background: #8a5a4a;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #724a3f;
}

/* Articles Section */
.articles {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.article-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 90, 74, 0.1);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.article-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #8a5a4a;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.article-content {
    padding: 32px;
}

.article-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #4e352f;
    margin-bottom: 16px;
    line-height: 1.4;
}

.article-content p {
    color: #9c6b56;
    margin-bottom: 24px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    color: #9c6b56;
    font-size: 14px;
    margin-bottom: 24px;
}

.btn-article {
    width: 100%;
    background: #8a5a4a;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 90, 74, 0.3);
}

.btn-article:hover {
    background: #724a3f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 90, 74, 0.4);
}

/* Teachers Section */
.teachers {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf8f4, #f4f0e7);
    position: relative;
    overflow: hidden;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.teacher-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 90, 74, 0.1);
}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.teacher-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.teacher-card:hover .teacher-image img {
    transform: scale(1.1);
}

.teacher-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.teacher-card:hover .teacher-social {
    opacity: 1;
    transform: translateY(0);
}

.teacher-social a {
    background: white;
    color: #8a5a4a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.teacher-social a:hover {
    background: #8a5a4a;
    color: white;
    transform: scale(1.1);
}

.teacher-content {
    padding: 32px;
    text-align: center;
}

.teacher-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #4e352f;
    margin-bottom: 8px;
}

.teacher-title {
    color: #8a5a4a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.teacher-bio {
    color: #9c6b56;
    margin-bottom: 24px;
    line-height: 1.6;
}

.teacher-specialties {
    list-style: none;
    margin-bottom: 24px;
    text-align: right;
}

.teacher-specialties li {
    color: #724a3f;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.teacher-specialties li::before {
    content: '✓';
    color: #8a5a4a;
    font-weight: 700;
    margin-left: 8px;
}

.btn-teacher {
    width: 100%;
    background: #8a5a4a;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 90, 74, 0.3);
}

.btn-teacher:hover {
    background: #724a3f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 90, 74, 0.4);
}

@media (max-width: 768px) {
    .articles,
    .teachers {
        padding: 60px 0;
    }
    
    .articles-grid,
    .teachers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .article-image,
    .teacher-image {
        height: 200px;
    }
    
    .article-content,
    .teacher-content {
        padding: 24px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.logo img{
  width: 100px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: #4e352f;
    border-radius: 20px;
    z-index: -1;
}

.about-text {
    padding: 20px;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin: 24px 0;
}

.about-features {
    display: grid;
    gap: 24px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature .feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(51, 28, 16, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4e352f;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-feature:hover .feature-icon {
    background: #4e352f;
    color: white;
    transform: scale(1.1);
}

.feature-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }

    .about-image {
        max-width: 100%;
    }

    .about-text {
        padding: 0;
    }

    .about-description {
        font-size: 16px;
    }

    .feature-text h4 {
        font-size: 18px;
    }

    .feature-text p {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-content p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: 16px;
    }
    
    .author-info p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        gap: 16px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    text-decoration: none;
    left: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        left: 20px;
    }
}

.language-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 16px;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #724a3f;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(138, 90, 74, 0.1);
}

.language-btn i {
    width: 20px;
    height: 20px;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px;
    min-width: 120px;
    display: none;
    z-index: 1000;
}

.language-dropdown:hover .language-menu {
    display: block;
}

.language-option {
    display: block;
    padding: 8px 16px;
    color: #4e352f;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.language-option:hover {
    background: rgba(138, 90, 74, 0.1);
    color: #8a5a4a;
}

@media (max-width: 768px) {
    .language-dropdown {
        position: relative;
        margin-right: 10px;
    }

    .language-btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .language-btn i {
        font-size: 16px;
    }

    .language-menu {
        position: absolute;
        top: 100%;
        right: 0;
        min-width: 120px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 8px 0;
        z-index: 1000;
    }

    .language-option {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .language-dropdown {
        margin-right: 8px;
    }

    .language-btn {
        padding: 6px 10px;
        font-size: 13px;
    }

    .language-btn i {
        font-size: 14px;
    }

    .language-menu {
        min-width: 110px;
    }

    .language-option {
        padding: 6px 12px;
        font-size: 13px;
    }
}

.mobile-language-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

.mobile-language-option {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.mobile-language-option:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .mobile-language-options {
        padding: 12px 16px;
    }

    .mobile-language-option {
        font-size: 15px;
        padding: 6px 0;
    }
}

@media (max-width: 480px) {
    .mobile-language-options {
        padding: 10px 14px;
    }

    .mobile-language-option {
        font-size: 14px;
        padding: 5px 0;
    }
}