/* --- Root Variables: Dark Charcoal & Royal Gold Palette --- */
:root {
  --bg-primary: #121418;
  --bg-secondary: #1a1d24;
  --card-bg: rgba(30, 35, 45, 0.75);
  --gold-primary: #d4af37;
  --gold-hover: #f3e5ab;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --text-primary: #f0f2f5;
  --text-muted: #a0a5b5;
  --border-color: rgba(212, 175, 55, 0.2);
  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scroll Reveal Animation Enhancement */
section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.8s ease-out, transform 3.8s ease-out;
}

section.aos-animate, section.section-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Modal Popup Styling */
.course-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: #111;
  border: 4px solid #d4af37;
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  width: 100%;
  color: #fff;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #d4af37;
  cursor: pointer;
  font-weight: bold;
}

/* Floating Math Symbols Background */
.math-bg-symbols span {
  position: absolute;
  color: rgba(212, 175, 55, 0.04);
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  user-select: none;
  pointer-events: none;
  animation: floatMath 12s infinite ease-in-out alternate;
}

@keyframes floatMath {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-25px) rotate(10deg); }
}

/* Glassmorphism Styling */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 12px 35px var(--gold-glow);
  transform: translateY(-5px);
}

/* Utility Gold Text & Buttons */
.gold-text {
  color: var(--gold-primary);
}

.gold-line {
  width: 70px;
  height: 3px;
  background: var(--gold-primary);
  margin: 0.8rem auto 2rem;
  border-radius: 2px;
}

.btn-gold {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--gold-primary), #b8860b);
  color: #121418;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #f3e5ab, var(--gold-primary));
  transform: translateY(-2deg);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: #121418;
}

.btn-gold-sm {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  width: 100%;
  text-align: center;
}

.btn-gold-sm:hover {
  background: var(--gold-primary);
  color: #121418;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  font-size: 1rem;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* --- Navigation Bar --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 8%;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(18, 20, 24, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-symbol {
  color: var(--gold-primary);
  margin-right: 5px;
}

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

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold-primary);
}

/* --- Section Formatting --- */
section {
  padding: 7rem 8% 4rem;
}

.classes {
  color: var(--gold-primary) !important;
  font-style: italic;
  font-weight: 600;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
}

.section-header p {
  color: var(--text-muted);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  background-image: url('./images/photo_2026-08-29_00-56-41.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 0 8%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right, 
    rgba(30, 23, 42, 0.88) 0%, 
    rgba(15, 23, 42, 0.65) 50%, 
    rgba(15, 23, 42, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.badge {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin: 1.2rem 0;
  line-height: 1.2;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* --- About Section & Stats --- */
.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

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

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
}

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

.stat-card {
  text-align: center;
  padding: 1.8rem 1rem;
}

.stat-icon {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.stat-card h3 {
  font-family: var(--font-heading);
  font-size: 5.2rem;
  margin-bottom: 0.2rem;
}

.stat-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Courses Section --- */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-primary);
  color: #121418;
  border-color: var(--gold-primary);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

/* --- Course Cards: Glassmorphism, Glowing Shadows & Shine Animation --- */
.course-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  
  /* Glassmorphism الأساسي الخلفي مع ظلال عميقة */
  background: rgba(22, 26, 34, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  
  /* الانتقال السلس للحركة */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

/* تأثير اللمعان المتحرك (Shimmer Effect) عبر الـ Pseudo-element */
.course-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transform: rotate(35deg) translateY(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

/* عند الضغط أو الوقوف على الكرت (Hover Effect) */
.course-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--gold-primary);
  /* خلفية زجاجية مضيئة مع ظلال ذهبية وخارجية قوية خلف الكرت */
  background: rgba(30, 35, 45, 0.85);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.35);
}

/* تفعيل اللمعان عند الـ Hover */
.course-card:hover::after {
  transform: rotate(35deg) translateY(100%);
}

.course-img-wrapper {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.course-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* زووم الصورة داخلياً مع حركة الكرت */
.course-card:hover .course-img-wrapper img {
  transform: scale(1.1);
}

.level-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(18, 20, 24, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.gold-badge {
  background: var(--gold-primary) !important;
  color: #121418 !important;
}

.card-content {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.card-p {
  text-align: center;
  font-size: 14px !important;
  font-family: sans-serif;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.course-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: #fff;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.topic-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.topic-list li {
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1.2rem;
}

.topic-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-size: 0.7rem;
}

.second-li {
  font-size: 13px;
  margin-bottom: 1.2rem;
  line-break: normal;
  line-height: 1.5;
}

.topic-h3 h3 {
  margin-top: 1.5rem;
  font-size: 16px;
  color: goldenrod;
}

.second-li span {
  color: green;
  font-weight: bold;
  font-style: oblique;
  text-decoration: solid;
  font-size: 15px;
}

/* Accordion for Terminale */
.accordion-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.4rem;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  color: var(--gold-primary);
  padding: 0.5rem 0;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-body ul {
  list-style: none;
  padding: 0.2rem 0 0.6rem 0.8rem;
}

.accordion-body li {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

/* --- Video Section --- */
.video-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.video-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-wrapper {
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover .video-wrapper {
  transform: scale(1.08);
}

/* --- Contact Section --- */
.contact-container {
  max-width: 650px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

.form-status {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}

footer {
  text-align: center;
  padding: 2.5rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
}
/* ==========================================================
   إضافات حركات وتصميمات فخمة جديدة (New Animations & Styles)
   ========================================================== */

/* 1. تأثير توهج خلفية اللوجو والـ Navbar (Logo Glow Pulse) */
.logo {
  position: relative;
}
.logo-symbol {
  display: inline-block;
  animation: logoPulse 3s infinite ease-in-out;
}
@keyframes logoPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(212, 175, 55, 0.4); }
  50% { text-shadow: 0 0 25px rgba(212, 175, 55, 0.8), 0 0 5px var(--gold-primary); }
}

/* 2. تأثير لمعان خفيف ومتحرك للأزرار الرئيسية (Shimmer Button Effect) */
.btn-gold {
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  transform: translateX(-100%) rotate(30deg);
  transition: transform 0.8s ease-in-out;
}
.btn-gold:hover::after {
  transform: translateX(100%) rotate(30deg);
}
.live-sessions-section {
  padding: 30px 20px;
  background-color: transparent;
  text-align: center;
}

.live-sessions-section h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #ffffff;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
 
}

.price-card {
  background: transparent;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  padding: 30px;
  width: 260px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #d4af37;
}

.price-card.featured {
  border-color: #d4af37; /* Gold accent la tneseb el theme le baddak yeh */
  position: relative;
}

.price-card h3 {
  font-size: 1.2rem;
  color: #b8860b;
  margin-bottom: 15px;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 20px;
}

.price span {
  font-size: 1rem;
  color: #777;
  font-weight: normal;
}

.price-card p {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

.book-btn {
  display: inline-block;
  background-color: #222;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
}

.book-btn:hover {
  background-color: #d4af37;
  color: #000;
}

/* 3. شريط تقدم التصفح العلوي المتحرك (Scroll Progress Bar) */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, #b8860b, var(--gold-primary), #f3e5ab);
  width: 0%;
  z-index: 99999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px var(--gold-primary);
}

/* 4. تأثير عائم (Floating Animation) لكروت الإحصائيات أو الـ Hero Badges */
.badge, .stat-card {
  animation: floatingCard 4s ease-in-out infinite alternate;
}
.stat-card:nth-child(even) {
  animation-delay: 2s; /* لجعل الحركة غير متزامنة وتعطي طابع حيوي */
}
@keyframes floatingCard {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-6px); }
}

/* 5. تحسين جمالية الـ Scrollbar ليتناسب مع الثيم الذهبي الفاخر */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #2a2f3d;
  border-radius: 5px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* 6. تأثير التوهج المتقطع للـ Tags أو الـ Level-Tags المهمة */
.level-tag.gold-badge {
  animation: goldBadgeGlow 2.5s infinite alternate;
}
@keyframes goldBadgeGlow {
  0% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.3); }
  100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.7); }
}

/* 7. إضافات جمالية عند التركيز على حقول الإدخال في نموذج الواتساب */
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  background: rgba(30, 35, 45, 0.95);
  transform: translateY(-2px);
}

/* Responsive Media Queries for Mobile Optimization */
@media (max-width: 900px) {
  .about-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 15px;
  }
}

@media (max-width: 780px) {
  .hero-content h1 { 
    font-size: 2.1rem; 
    line-height: 1.2;
  }
  
  .nav-links { 
    display: none; 
  }
  
  section { 
    padding: 4rem 5% 2rem; 
  }

  .courses-grid, .course-container, .cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .course-card, .video-card {
    width: 100% !important;
    max-width: 380px;
    margin: 0 auto;
  }

  .stats-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    width: 100%;
    padding: 0 10px;
    justify-content: center;
  }

  .stats-grid .stat-card, .features-grid .feature-card, .stats-grid > div {
    width: 100% !important;
    max-width: none !important;
  }

  .stats-grid > div, .features-grid > div, .stat-card {
    padding: 15px 10px !important;
    min-height: 120px !important;
    border-radius: 12px !important;
  }

  .stats-grid h3, .stat-card h3, .stats-grid .number {
    font-size: 1.8rem !important;
    margin-bottom: 5px !important;
  }

  .stats-grid p, .stat-card p {
    font-size: 0.75rem !important;
    letter-spacing: 0.5px;
  }

  .stats-grid i, .stat-card i, .stats-grid svg {
    font-size: 1.2rem !important;
    width: 24px !important;
    height: 24px !important;
    margin-bottom: 5px !important;
  }
  
  h2 {
    font-size: 2rem !important;
  }
}

.live-sessions-section {
  padding: 30px 20px;
  background-color: transparent;
  text-align: center;
}

.live-sessions-section h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #ffffff;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 25px;
  flex-wrap: wrap ;
  align-items: stretch;
 
}

.price-card {
  background: transparent;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #d4af37;
}

.price-card.featured {
  border-color: #d4af37; /* Gold accent la tneseb el theme le baddak yeh */
  position: relative;
}

.price-card h3 {
  font-size: 1.5rem;
  color: #b8860b;
  margin-bottom: 15px;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 20px;
}

.price span {
  font-size: 1rem;
  color: #777;
  font-weight: normal;
}

.price-card p {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

.book-btn {
  display: inline-block;
  background-color: #222;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
}