/* =====================
   ELITE FIT WOMEN — BRAND PALETTE
   Black BG:     #000000
   Card BG:      #111111
   Brand Pink:   #E91E8C
   Pink Dark:    #BE1259
   Silver Text:  #C4C4C4
   Gray Text:    #8A8A8A
======================== */

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

:root {
  --pink: #E91E8C;
  --pink-dark: #BE1259;
  --pink-rgb: 233, 30, 140;
  --silver: #C4C4C4;
  --orange: var(--pink);
  --orange-dark: var(--pink-dark);
  --dark: #000000;
  --dark-card: #111111;
  --border: #2A2A2A;
  --white: #F5F5F5;
  --gray: #8A8A8A;
  --font: 'Tajawal', sans-serif;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  direction: rtl;
  line-height: 1.6;
  overflow-x: hidden;
}

/* TYPOGRAPHY & UTILS */
.orange-text { color: var(--orange); }
.title-bold { font-size: 2.5rem; font-weight: 900; margin-bottom: 0.5rem; line-height: 1.2; }
.subtitle { color: var(--silver); font-size: 1.1rem; margin-bottom: 3rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.w-full { width: 100%; }

/* BUTTONS */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.8rem 2rem; font-weight: 700; border-radius: 4px;
  text-decoration: none; transition: var(--transition);
  cursor: pointer; font-family: inherit; border: none;
}
.btn-primary { background: var(--pink); color: var(--white); }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--gray); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-large { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* NAV */
.nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(0, 0, 0, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 80px; display: flex; align-items: center; justify-content: space-between;
}
.logo-img { height: 50px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--white); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.nav-links a:hover { color: var(--orange); }
.btn-nav { background: var(--pink); color: var(--white); padding: 0.5rem 1.5rem; border-radius: 4px; text-decoration: none; font-weight: 700; }
.hamburger, .mobile-menu { display: none; }

/* HERO (New Layout) */
.hero-showcase {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 80px; background: url('file_0000000086fc71f482b9a30737707e27.png') no-repeat center center/cover;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.92) 60%, var(--dark) 100%); }
.hero-content-center {
  position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto;
}
.badge-accent {
  display: inline-block; background: rgba(var(--pink-rgb), 0.12); color: var(--pink);
  padding: 0.4rem 1.2rem; border-radius: 50px; font-weight: 700; font-size: 0.9rem; margin-bottom: 1.5rem; border: 1px solid rgba(var(--pink-rgb), 0.35);
}
.hero-title-large { font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-desc-large { font-size: 1.2rem; color: var(--gray); margin-bottom: 2.5rem; }
.hero-actions { display: flex; justify-content: center; gap: 1rem; }

/* Hero Stats Bar */
.stats-bar {
  position: relative; z-index: 2; display: flex; justify-content: center; gap: 4rem;
  margin-top: 4rem; border-top: 1px solid var(--border); padding-top: 2rem;
}
.stat-item { display: flex; align-items: center; gap: 1rem; }
.stat-icon { color: var(--orange); width: 32px; height: 32px; }
.stat-val { display: block; font-size: 1.5rem; font-weight: 800; line-height: 1; }
.stat-name { color: var(--gray); font-size: 0.85rem; }

/* EXPERIENCE SECTION */
.experience-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.exp-card {
  background: var(--dark-card); padding: 2.5rem; border-radius: 8px; border: 1px solid var(--border);
  position: relative; overflow: hidden; transition: var(--transition);
}
.exp-card:hover { border-color: var(--orange); transform: translateY(-5px); }
.exp-num { position: absolute; top: 10px; left: 20px; font-size: 4rem; font-weight: 900; color: rgba(255,255,255,0.03); line-height: 1; }
.exp-icon { width: 50px; height: 50px; background: rgba(var(--pink-rgb), 0.12); color: var(--pink); display: flex; align-items: center; justify-content: center; border-radius: 8px; margin-bottom: 1.5rem; }
.exp-card h3 { font-size: 1.3rem; margin-bottom: 1rem; font-weight: 800; }
.exp-card p { color: var(--gray); font-size: 0.95rem; }

/* PROGRAMS (Alternating Layout) */
.programs-list { display: grid; gap: 4rem; margin-top: 3rem; }
.program-row { display: flex; align-items: center; gap: 4rem; }
.program-row.reverse { flex-direction: row-reverse; }
.prog-info { flex: 1; }
.prog-image-box { flex: 1; border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; }
.prog-image-box img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-img { background: var(--dark-card); display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); }
.placeholder-img i { color: var(--pink) !important; }
.prog-icon { color: var(--orange); margin-bottom: 1rem; }
.prog-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; }
.prog-desc { color: var(--gray); margin-bottom: 1.5rem; font-size: 1.05rem; }
.prog-features { list-style: none; display: grid; gap: 0.5rem; }
.prog-features li { display: flex; align-items: center; gap: 0.5rem; color: var(--white); font-weight: 500; }
.prog-features li i { color: var(--orange); width: 18px; }

/* PACKAGES */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.price-box {
  background: var(--dark-card); border: 1px solid var(--border); padding: 3rem 2rem;
  border-radius: 8px; position: relative; transition: var(--transition); display: flex; flex-direction: column;
}
.price-box.highlight { border-color: var(--pink); transform: scale(1.05); z-index: 2; background: linear-gradient(180deg, #1A1014 0%, var(--dark-card) 100%); }
.price-box .tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: var(--white); padding: 0.35rem 1rem;
  border-radius: 50px; font-size: 0.8rem; font-weight: 700; white-space: nowrap;
}
.price-box h4 { font-size: 1.2rem; color: var(--gray); margin-bottom: 1rem; }
.price-box .price { font-size: 2.8rem; font-weight: 900; margin-bottom: 0.2rem; }
.price-box .currency { font-size: 1rem; font-weight: 400; color: var(--gray); }
.price-box .price-sub { color: var(--orange); font-weight: 700; margin-bottom: 2rem; font-size: 0.9rem; }
.price-list { list-style: none; margin-bottom: 2.5rem; flex-grow: 1; }
.price-list li { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; font-size: 0.95rem; color: #DDD; }
.price-list i { color: var(--orange); width: 16px; }
.price-box .btn-ghost, .price-box .btn-primary { width: 100%; }

/* TESTIMONIALS */
.testi-wrapper { background: var(--dark-card); padding: 4rem; border-radius: 8px; border: 1px solid var(--border); }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.t-card { position: relative; }
.quote-icon { color: rgba(var(--pink-rgb), 0.25); width: 40px; height: 40px; margin-bottom: 1rem; }
.t-card p { font-size: 1.1rem; font-style: italic; margin-bottom: 1.5rem; line-height: 1.8; }
.t-client strong { display: block; color: var(--orange); font-size: 1.1rem; }
.t-client span { color: var(--gray); font-size: 0.85rem; }

/* CONTACT */
.contact-box { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; background: var(--dark-card); border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.contact-info-col { padding: 4rem; background: url('file_000000001c0472439a4ffaa3b79b0035.png') center/cover; position: relative; }
.contact-info-col::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.88); }
.contact-info-col > * { position: relative; z-index: 2; }
.c-details { margin-top: 3rem; display: grid; gap: 1.5rem; }
.c-item { display: flex; align-items: center; gap: 1rem; font-weight: 600; }
.c-item i { color: var(--orange); }
.contact-form-col { padding: 4rem; }
.new-form { display: grid; gap: 1.5rem; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.new-form input, .new-form select, .new-form textarea {
  width: 100%; background: var(--dark); border: 1px solid var(--border); padding: 1rem;
  color: var(--white); font-family: inherit; border-radius: 4px;
}
.new-form input:focus, .new-form select:focus, .new-form textarea:focus { outline: none; border-color: var(--orange); }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 4rem 0 2rem; background: #000000; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { height: 60px; margin-bottom: 1rem; }
.f-brand p { color: var(--gray); font-size: 0.95rem; max-width: 300px; }
.f-links h4, .f-social h4 { color: var(--white); margin-bottom: 1.5rem; font-weight: 800; }
.f-links a { display: block; color: var(--gray); text-decoration: none; margin-bottom: 0.8rem; transition: var(--transition); }
.f-links a:hover { color: var(--orange); }
.social-icons { display: flex; gap: 1rem; }
.social-icons a { width: 40px; height: 40px; background: var(--dark-card); display: flex; align-items: center; justify-content: center; border-radius: 4px; color: var(--white); transition: var(--transition); }
.social-icons a:hover { background: var(--pink); color: var(--white); }
.footer-bottom { text-align: center; color: var(--gray); border-top: 1px solid var(--border); padding-top: 2rem; font-size: 0.85rem; }

/* RESPONSIVE */
@media(max-width: 992px) {
  .program-row, .program-row.reverse { flex-direction: column; gap: 2rem; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 500px; margin: 3rem auto 0; }
  .price-box.highlight { transform: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-box { grid-template-columns: 1fr; }
}

@media(max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 5px; }
  .hamburger span { width: 25px; height: 2px; background: var(--white); }
  .stats-bar { flex-direction: column; gap: 2rem; align-items: center; }
  .experience-cards { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .input-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .f-brand p { margin: 0 auto; }
  .social-icons { justify-content: center; }
  .mobile-menu { position: absolute; top: 80px; left: 0; width: 100%; background: var(--dark-card); padding: 2rem; display: none; }
  .mobile-menu.open { display: block; }
  .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
  .mobile-menu a { color: var(--white); text-decoration: none; font-size: 1.2rem; font-weight: 700; }
}
