@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Noto+Naskh+Arabic:wght@400;500;600;700&display=swap');
/*- تصميم وتطوير كامل احمد +967 772799246 */
/* ============================================================
   1. ROOT VARIABLES <!-- تصميم وتطوير كامل احمد +967 772799246 -->
   ============================================================ */
:root {
  --bg-dark:     #04140f;
  --bg:          #031812;
  --bg-card:     #0a3025;
  --bg-card-2:   #0e3b2e;
  --border:      #164a3b;
  --border-gold: #C9A44C44;
  --gold:        #C9A44C;
  --gold-light:  #E8C97A;
  --gold-dark:   #A88436;
  --gold-glow:   #C9A44C22;
  --text:        #EDE8DF;
  --text-muted:  #8b9e97;
  --text-sub:    #a7b8b2;
  --white:       #FFFFFF;
  --green:       #25D366;

  --font-heading: 'Cairo', sans-serif;
  --font-body:    'Noto Naskh Arabic', 'Cairo', serif;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,.5);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.65);
  --shadow-gold:  0 0 40px rgba(201,164,76,.12);
  --top-bar-h:    44px;
  --nav-h:        76px;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   2. RESET & BASE <!-- تصميم وتطوير كامل احمد +967 772799246 -->
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  text-align: right;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.15rem); }

p { color: var(--text-sub); }

/* ============================================================
   4. LAYOUT & CONTAINER
   ============================================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  section { padding: 100px 0; }
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,164,76,.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  color: var(--gold);
  border-color: var(--gold-dark);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .btn {
    padding: 10px 18px;
    font-size: .82rem;
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   6. SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .section-header { margin-bottom: 64px; }
}

.section-header__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header__label::before,
.section-header__label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

@media (min-width: 768px) {
  .section-header__label::before,
  .section-header__label::after {
    width: 32px;
  }
}

.section-header h2 { margin-bottom: 16px; }
.section-header p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-sub);
  font-size: .95rem;
}

@media (min-width: 768px) {
  .section-header p { font-size: 1.05rem; }
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  border-radius: 2px;
  margin: 16px auto 0;
}




/* ============================================================
   8. NAVBAR (Complete Luxury & Dynamic Style)
   ============================================================ */

/* --- 1. الغلاف الأساسي (Navbar Wrapper) --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 79px; /* الارتفاع الافتراضي في الشاشات الصغيرة */
  background: rgba(7, 38, 29, 0.02); /* شفافية شبه كاملة في أعلى الصفحة */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.315);

  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .navbar { height: 100px; } /* الارتفاع في شاشات الكمبيوتر */
}

/* --- 2. حالة النزول بالصفحة (Scrolled State) --- */
.navbar.scrolled {
  height: 65px;
  background: rgba(4, 20, 15, 0.95); /* خلفية داكنة جداً */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .navbar.scrolled { height: 75px; }
}

/* --- 3. الحاوية الداخلية (Inner Container) --- */
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .navbar__inner { padding: 0 24px; gap: 32px; }
}

/* ============================================================
   الشعار (LOGO)
   ============================================================ */
.navbar__logo {
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .navbar__logo { gap: 10px; }
}

.navbar__logo-ar {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #ffffff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

@media (min-width: 768px) {
  .navbar__logo-ar { font-size: 1.6rem; }
}

.navbar__logo-divider {
  color: rgba(251, 255, 0, 0.347);
  font-size: 1.1rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .navbar__logo-divider { font-size: 1.3rem; }
}

/* صورة الشعار وتفاعلها مع النزول */
.navbar__logo-img {
  height: 40px;
  width: auto;
  display: block;
  /* افتراض أن الشعار يحتاج لتعديل لون ليناسب الخلفية الداكنة */
  /*filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2)); */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar__logo-img_name{
  height: 30px;
  width: auto;
  display: block;
  filter: brightness(0.2) invert(1) drop-shadow(0 2px 4px rgba(254, 195, 2, 0.47)); 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .navbar__logo-img { height: 55px; }
  .navbar__logo-img_name{height: 40px;}
}

/* تصغير صورة الشعار عند النزول */
.navbar.scrolled .navbar__logo-img { height: 35px; }
.navbar.scrolled .navbar__logo-img_name { height: 25px;
  filter: brightness(1) invert(0) drop-shadow(0 2px 4px rgba(254, 195, 2, 0.188)); 
 }

@media (min-width: 768px) {
  .navbar.scrolled .navbar__logo-img { height: 45px; }
    .navbar.scrolled .navbar__logo-img_name { height: 35px; }

}

.navbar__logo-img:hover {
  transform: scale(1.05);
}
[id] {
  scroll-margin-top: 120px; /* اترك مسافة بمقدار ارتفاع الناف بار تقريباً */
}
/* ============================================================
   روابط التنقل (NAVIGATION LINKS)
   ============================================================ */
.navbar__links {
  display: none; /* مخفية افتراضياً في الجوال */
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: rgba(4, 20, 15, 0.98); /* لون داكن صلب لقائمة الجوال */
  border-bottom: 1px solid var(--border-gold, rgba(212, 175, 55, 0.3));
  padding: 20px 16px;
  z-index: 999;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar__links.open {
  display: flex; /* تظهر عند الضغط على زر القائمة في الجوال */
}

@media (min-width: 992px) { /* يفضل استخدام 992px للمكاتب لتجنب تداخل الروابط */
  .navbar__links {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    border-bottom: none;
    padding: 0;
    gap: 10px;
    flex: 1;
    justify-content: center;
    box-shadow: none;
  }
}

.navbar__link {
  position: relative;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-sub, #d1d5db);
  padding: 10px 16px;
  border-radius: 8px;
  transition: color 0.1s ease;
  overflow: hidden;
  display: block;
  text-align: center;
}

@media (min-width: 992px) {
  .navbar__link { font-size: 0.95rem; padding: 8px 18px; }
}

/* الخط الذهبي السفلي للروابط عند مرور الماوس */
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold, #d4af37);
  transition: all 0.2s ease;
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.navbar__link:hover { color: #ffffff; background: transparent; }
.navbar__link:hover::after { width: 50%; }

/* حالة الرابط النشط (الصفحة الحالية) */
.navbar__link.active {
  color: var(--gold);
  background: var(--gold-glow); 
}
@media (max-width: 991px) {
  .navbar__link.active { background: rgba(212, 175, 55, 0.1); }
}

/* ============================================================
   زر الحجز وزر قائمة الجوال (CTA & TOGGLE)
   ============================================================ */
.navbar__cta {
  display: none; /* مخفي في الشاشات الصغيرة جداً لتوفير المساحة */
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: 600;
}

@media (min-width: 768px) {
  .navbar__cta { 
    display: inline-flex; 
    padding: 10px 24px; 
    font-size: 0.9rem; 
  }
}

.navbar__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .navbar__toggle { display: none; }
}

.navbar__toggle:hover { 
  background: rgba(212, 175, 55, 0.1); 
  border-color: var(--gold);
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* ============================================================
   9. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

@media (min-width: 768px) {
  .hero { padding: 120px 0 80px; }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 164, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201,164,76,.04) 0%, transparent 60%),
    linear-gradient(160deg, #031812 0%, #07261d 50%, #031812 100%);
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,164,76,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,164,76,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  z-index: 0;
}

@media (min-width: 768px) {
  .hero__grid { background-size: 60px 60px; }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero__content { max-width: 780px; }
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp .8s .2s forwards;
}

@media (min-width: 768px) {
  .hero__label { font-size: .85rem; margin-bottom: 24px; }
}

.hero__label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

@media (min-width: 768px) {
  .hero__label::before { width: 40px; }
}

.hero__title {
  font-size: clamp(2rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeSlideUp .8s .4s forwards;
}

@media (min-width: 768px) {
  .hero__title { margin-bottom: 24px; }
}

.hero__title span { color: var(--gold); display: block; margin-top: 10px;}

.hero__desc {
  font-size: .95rem;
  color: var(--text-sub);
  max-width: 100%;
  margin-bottom: 30px;
  line-height: 1.85;
  opacity: 0;
  animation: fadeSlideUp .8s .6s forwards;
}

@media (min-width: 768px) {
  .hero__desc {
    font-size: 1.1rem;
    max-width: 560px;
    margin-bottom: 40px;
  }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  animation: fadeSlideUp .8s .8s forwards;
}

@media (min-width: 480px) {
  .hero__actions { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}

.hero__actions .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 480px) {
  .hero__actions .btn { width: auto; }
}

.hero__scroll {
  display: none;
}

@media (min-width: 768px) {
  .hero__scroll {
    display: flex;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: .75rem;
    animation: bounce 2s infinite;
  }
}

.hero__scroll span {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ============================================================
   10. CORE VALUES (STATS)
   ============================================================ */
.stats {
  padding: 0 0;
  margin-top: -10px;
  position: relative;
  z-index: 2;
}

.stats__inner {
  background: rgba(10, 48, 37, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.282);
  border-radius: var(--radius-lg, 16px);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 600px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .stats__inner { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

@media (min-width: 600px) {
  .stat-item {
    padding: 30px 20px;
    border-bottom: none;
  }
}

@media (min-width: 1024px) {
  .stat-item { padding: 30px 24px; }
}

.stat-item:last-child { border-bottom: none; }

.stat-item::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 0;
  width: 1px;
  height: 70%;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0));
  display: none;
}

@media (min-width: 1024px) {
  .stat-item::after { display: block; }
  .stat-item:first-child::after { display: none; }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .stat-item:nth-child(odd)::after { display: block; }
}

.stat-item:hover {
  background: rgba(212, 175, 55, 0.03);
  transform: translateY(-3px);
}

.stat-item__icon {
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 12px;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

@media (min-width: 768px) {
  .stat-item__icon { font-size: 2.2rem; margin-bottom: 15px; }
}

.stat-item:hover .stat-item__icon {
  transform: scale(1.15) translateY(-5px);
  filter: drop-shadow(0 8px 12px rgba(212, 175, 55, 0.5));
}

.stat-item__title {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .stat-item__title { font-size: 1rem; margin-bottom: 12px; }
}

.stat-item__desc {
  font-size: 0.75rem;
  color: #a8d5ba;
  line-height: 1.7;
  max-width: 95%;
  margin: 0 auto;
  font-weight: 300;
}

@media (min-width: 768px) {
  .stat-item__desc { font-size: 0.8rem; line-height: 1.8; }
}

/* ============================================================
   11. WELCOME / ABOUT
   ============================================================ */
.welcome { padding: 60px 0; }

@media (min-width: 768px) { .welcome { padding: 100px 0; } }

.welcome__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .welcome__inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (min-width: 1024px) {
  .welcome__inner { gap: 80px; }
}

.welcome__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 6px 16px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .welcome__badge {
    font-size: .82rem;
    padding: 8px 18px;
    margin-bottom: 20px;
  }
}

.welcome__title { margin-bottom: 16px; }

@media (min-width: 768px) { .welcome__title { margin-bottom: 20px; } }

.welcome__desc {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: .9rem;
}

@media (min-width: 768px) {
  .welcome__desc {
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 2;
  }
}

.welcome__image {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.welcome__real-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  display: block;
}

.welcome__stats {
  position: absolute;
  bottom: -16px;
  right: 16px;
  background: rgba(10, 48, 37, 0.95);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 14px 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

@media (min-width: 768px) {
  .welcome__stats {
    bottom: -24px;
    right: -24px;
    padding: 20px 28px;
  }
}

.welcome__stats-num {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 3px;
}

@media (min-width: 768px) {
  .welcome__stats-num { font-size: 1.5rem; margin-bottom: 5px; }
}

.welcome__stats-label {
  font-size: .65rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 500;
}

@media (min-width: 768px) {
  .welcome__stats-label { font-size: .7rem; }
}

/* ============================================================
   12. VISION / MISSION / VALUES
   ============================================================ */
.vmv { background: var(--bg-card); }

.vmv__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .vmv__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
  }
}

.vmv-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .vmv-card { padding: 40px 32px; }
}

.vmv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.vmv-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.vmv-card:hover::before { opacity: 1; }

.vmv-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), transparent);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  transition: all 0.4s ease;
}

@media (min-width: 768px) {
  .vmv-card__icon { width: 70px; height: 70px; border-radius: 20px; margin-bottom: 25px; }
}

.vmv-card:hover .vmv-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold);
  color: #07261d;
}

.vmv-card__icon svg { width: 24px; height: 24px; }
@media (min-width: 768px) { .vmv-card__icon svg { width: 28px; height: 28px; } }

.vmv-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--gold);
}

@media (min-width: 768px) { .vmv-card h3 { font-size: 1.2rem; margin-bottom: 12px; } }

.vmv-card p { font-size: .9rem; }
@media (min-width: 768px) { .vmv-card p { font-size: .95rem; } }

.values__grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) { .values__grid { gap: 16px; } }

.value-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}

@media (min-width: 768px) {
  .value-tag {
    padding: 12px 24px;
    font-size: .95rem;
    gap: 10px;
  }
}

.value-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}

.value-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@media (min-width: 768px) { .value-tag::before { width: 6px; height: 6px; } }

/* ============================================================
   13. WHY US
   ============================================================ */
.why-us { padding: 60px 0; }
@media (min-width: 768px) { .why-us { padding: 100px 0; } }

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .why-us__grid { grid-template-columns: repeat(3, 1fr); }
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: all var(--transition);
  position: relative;
}

@media (min-width: 768px) { .why-card { padding: 36px 28px; } }

.why-card:hover {
  border-color: var(--gold-dark);
  background: var(--bg-card-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.why-card__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 10px;
  transition: color var(--transition);
}

@media (min-width: 768px) { .why-card__num { font-size: 3rem; } }

.why-card:hover .why-card__num { color: var(--gold-dark); }

.why-card__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
  transition: background var(--transition);
}

@media (min-width: 768px) {
  .why-card__icon { width: 52px; height: 52px; border-radius: 12px; margin-bottom: 16px; }
}

.why-card:hover .why-card__icon { background: rgba(201,164,76,.2); }

.why-card__icon svg { width: 20px; height: 20px; }
@media (min-width: 768px) { .why-card__icon svg { width: 24px; height: 24px; } }

.why-card h4 {
  font-size: .95rem;
  margin-bottom: 8px;
  color: var(--text);
}

@media (min-width: 768px) { .why-card h4 { font-size: 1.05rem; margin-bottom: 10px; } }

.why-card p {
  font-size: .85rem;
  line-height: 1.7;
}

@media (min-width: 768px) { .why-card p { font-size: .9rem; } }

/* ============================================================
   14. SERVICES
   ============================================================ */
.services { background: var(--bg-card); padding: 60px 0; }
@media (min-width: 768px) { .services { padding: 100px 0; } }

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.service-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}

.service-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,164,76,.1) 0%, transparent 70%);
}

.service-card__img svg {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1;
  opacity: .7;
}

@media (min-width: 768px) { .service-card__img svg { width: 48px; height: 48px; } }

.service-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

@media (min-width: 768px) { .service-card__body { padding: 28px; } }

.service-card__body h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text);
}

@media (min-width: 768px) { .service-card__body h3 { font-size: 1.1rem; margin-bottom: 12px; } }

.service-card__body p {
  font-size: .85rem;
  line-height: 1.75;
  margin-bottom: 14px;
  flex: 1;
}

@media (min-width: 768px) { .service-card__body p { font-size: .9rem; margin-bottom: 16px; } }

.service-card__features {
  list-style: none;
  margin-bottom: 20px;
}

@media (min-width: 768px) { .service-card__features { margin-bottom: 24px; } }

.service-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .8rem;
  color: var(--text-sub);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .service-card__features li { font-size: .85rem; padding: 5px 0; }
}

.service-card__features li:last-child { border-bottom: none; }

.service-card__features li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

@media (min-width: 768px) {
  .service-card__features li::before { width: 5px; height: 5px; margin-top: 7px; }
}

/* ============================================================
   15. CONSULTATION BOX
   ============================================================ */
.consult-box {
  background: linear-gradient(145deg, #04140f 0%, #0d3d2f 100%);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .consult-box {
    border-radius: 24px;
    padding: 40px;
  }
}

.consult-box::before {
  content: '⚖️';
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 150px;
  opacity: 0.03;
  transform: rotate(-15deg);
}

@media (min-width: 768px) {
  .consult-box::before { font-size: 200px; }
}

.consult-box__content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.consult-box h2 {
  color: #fff;
  font-size: clamp(1.3rem, 5vw, 2.2rem);
  margin-bottom: 16px;
  line-height: 1.3;
}

@media (min-width: 768px) { .consult-box h2 { margin-bottom: 20px; } }

.consult-box p {
  color: #a8d5ba;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) { .consult-box p { margin-bottom: 40px; } }

.consult-box__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

@media (min-width: 480px) {
  .consult-box__actions {
    flex-direction: row;
    gap: 15px;
  }
}

.consult-box__actions .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 480px) { .consult-box__actions .btn { width: auto; } }

/* ============================================================
   16. FOUNDER
   ============================================================ */
.founder { padding: 60px 0; background: var(--bg-card); }
@media (min-width: 768px) { .founder { padding: 100px 0; } }

.founder__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .founder__inner {
    grid-template-columns: 300px 1fr;
    gap: 50px;
  }
}

@media (min-width: 1024px) {
  .founder__inner {
    grid-template-columns: 380px 1fr;
    gap: 64px;
  }
}

.founder__image-wrap { position: relative; }

.founder__photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.founder__photo-placeholder {
  color: var(--gold);
  opacity: .25;
}

.founder__photo-placeholder svg { width: 60px; height: 60px; }
@media (min-width: 768px) { .founder__photo-placeholder svg { width: 80px; height: 80px; } }

.founder__badge-wrap {
  position: absolute;
  bottom: -16px;
  right: 16px;
  background: var(--gold);
  color: #000;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-heading);
  box-shadow: 0 8px 32px rgba(201,164,76,.4);
}

@media (min-width: 768px) {
  .founder__badge-wrap {
    bottom: -20px;
    right: -20px;
    padding: 16px 20px;
  }
}

.founder__badge-num { font-size: 1.5rem; font-weight: 900; line-height: 1; }
@media (min-width: 768px) { .founder__badge-num { font-size: 2rem; } }

.founder__badge-label { font-size: .65rem; font-weight: 600; }
@media (min-width: 768px) { .founder__badge-label { font-size: .75rem; } }

.founder__info h2 { margin-bottom: 6px; }
.founder__title-line {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .founder__title-line { font-size: 1rem; margin-bottom: 24px; }
}

.founder__bio {
  margin-bottom: 24px;
  line-height: 2;
  font-size: .9rem;
}

@media (min-width: 768px) {
  .founder__bio { font-size: 1rem; margin-bottom: 32px; }
}

.founder__qualifications { margin-bottom: 24px; }
@media (min-width: 768px) { .founder__qualifications { margin-bottom: 32px; } }

.founder__qualifications h4 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1rem;
}

@media (min-width: 768px) { .founder__qualifications h4 { font-size: 1.1rem; margin-bottom: 14px; } }

.founder__qualifications li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-family: var(--font-heading);
  font-size: .85rem;
  color: var(--text-sub);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .founder__qualifications li { font-size: .92rem; padding: 9px 0; }
}

.founder__qualifications li:last-child { border-bottom: none; }

.founder__qualifications li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .founder__qualifications li::before { width: 6px; height: 6px; margin-top: 7px; }
}

/* ============================================================
   17. ACHIEVEMENTS (TIMELINE)
   ============================================================ */
.achievements {
  padding: 60px 0;
  position: relative;
}

@media (min-width: 768px) { .achievements { padding: 100px 0; } }

.achievements::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  opacity: 0.3;
}

.achievements__timeline {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .achievements__timeline { max-width: 800px; }
}

.achievements__timeline::before {
  content: '';
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@media (min-width: 768px) {
  .achievements__timeline::before { right: 24px; }
}

.achievement-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-right: 50px;
  position: relative;
}

@media (min-width: 768px) {
  .achievement-item {
    gap: 32px;
    margin-bottom: 40px;
    padding-right: 70px;
  }
}

.achievement-item__dot {
  position: absolute;
  right: 12px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .achievement-item__dot {
    right: 16px;
    top: 8px;
    width: 18px;
    height: 18px;
    border-width: 3px;
  }
}

.achievement-item:hover .achievement-item__dot {
  transform: scale(1.25);
}

.achievement-item__body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  flex: 1;
  transition: border-color var(--transition);
  margin-right: 0 !important;
  margin-left: 0 !important;
  text-align: right !important;
  width: 100%;
}

@media (min-width: 768px) {
  .achievement-item__body {
    padding: 20px 24px;
    width: calc(100% - 64px);
    margin-right: 56px !important;
  }
}

.achievement-item__body:hover { border-color: var(--gold-dark); }

.achievement-item__body h4 {
  margin-bottom: 6px;
  font-size: .9rem;
}

@media (min-width: 768px) {
  .achievement-item__body h4 { font-size: 1rem; margin-bottom: 8px; }
}

.achievement-item__body p {
  font-size: .8rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .achievement-item__body p { font-size: .9rem; }
}

.achievement-item__badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .achievement-item__badge {
    padding: 4px 16px;
    font-size: 0.75rem;
    margin-bottom: 8px;
  }
}

/* ============================================================
   18. CONTACT
   ============================================================ */
.contact { padding: 60px 0; }
@media (min-width: 768px) { .contact { padding: 100px 0; } }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .contact__inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.contact__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

@media (min-width: 768px) { .contact__form-wrap { padding: 40px; } }

.contact__form-wrap h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

@media (min-width: 768px) { .contact__form-wrap h3 { font-size: 1.4rem; margin-bottom: 28px; } }

.form-group { margin-bottom: 16px; }
@media (min-width: 768px) { .form-group { margin-bottom: 20px; } }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .form-group label { font-size: .88rem; margin-bottom: 8px; }
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-size: .9rem;
  outline: none;
  transition: border-color var(--transition);
  direction: rtl;
}

@media (min-width: 768px) {
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 16px;
    font-size: .95rem;
  }
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 120px; }
@media (min-width: 768px) { .form-group textarea { min-height: 180px; } }

.form-group select option { background: var(--bg-card); }

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.contact__info h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .contact__info h3 { font-size: 1.4rem; margin-bottom: 28px; }
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .contact-info-cards { gap: 16px; margin-bottom: 32px; }
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color var(--transition);
}

@media (min-width: 768px) {
  .contact-info-card { padding: 20px 24px; gap: 18px; }
}

.contact-info-card:hover { border-color: var(--gold-dark); }

.contact-info-card__icon {
  width: 40px;
  height: 40px;
  background: var(--gold-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .contact-info-card__icon { width: 46px; height: 46px; border-radius: 10px; }
}

.contact-info-card__icon svg { width: 18px; height: 18px; }
@media (min-width: 768px) { .contact-info-card__icon svg { width: 20px; height: 20px; } }

.contact-info-card__label {
  font-family: var(--font-heading);
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .contact-info-card__label { font-size: .78rem; margin-bottom: 4px; }
}

.contact-info-card__value {
  font-family: var(--font-heading);
  font-size: .85rem;
  color: var(--text);
  font-weight: 600;
}

@media (min-width: 768px) {
  .contact-info-card__value { font-size: .95rem; }
}

.contact-info-card__value a { color: var(--text); }
.contact-info-card__value a:hover { color: var(--gold); }

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
}

@media (min-width: 768px) { .map-wrapper { height: 280px; } }

.map-wrapper iframe { width: 100%; height: 100%; border: none; }
/* ============================================================
   CONTACT SECTION (مع الخريطة)
   ============================================================ */
.contact-section {
    padding: 60px 0;
    background: var(--bg-card);
}

@media (min-width: 768px) {
    .contact-section { padding: 80px 0; }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 300px;
}

@media (min-width: 768px) {
    .contact-map { height: 380px; }
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
/* ============================================================
   19. TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(10, 48, 37, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  color: var(--text);
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(201, 164, 76, 0.15);
  z-index: 9999;
  transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 90%;
  max-width: 450px;
}

@media (min-width: 768px) {
  .toast {
    bottom: 32px;
    font-size: .95rem;
    padding: 14px 32px;
    width: auto;
  }
}

.toast::before {
  content: '*';
  color: var(--gold);
  font-weight: 900;
  font-size: 1.1rem;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
/* نجاح */
.toast.success {
  background: #22c55e !important; /* أخضر */
}

/* خطأ */
.toast.error {
  background: #ef4444 !important; /* أحمر */
}

/* تحذير */
.toast.warning {
  background: #f59e0b !important; /* أصفر */
}
/* ============================================================
   20. FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding-top: 50px;
  position: relative;
  
}

.footer__wave {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0 40 L1200 40 L1200 20 C1100 0 900 40 800 20 C700 0 500 40 400 20 C300 0 100 40 0 20 Z' fill='%230a3025' opacity='0.8'/%3E%3C/svg%3E") repeat-x top;
    background-size: 1200px 40px;
    transform: rotate(180deg); /* قلب الموجة لتكون في الأعلى */
    animation: waveMove 20s linear infinite;
}

@keyframes waveMove {
    0% { background-position: 0 0; }
    100% { background-position: 1200px 0; }
}
@media (min-width: 768px) { .footer { padding-top: 80px; } }

.footer__inner { position: relative; z-index: 1; }

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
  }
}

.footer__brand {
  text-align: center;
}

@media (min-width: 768px) {
  .footer__brand { text-align: right; }
}

.footer__logo {
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 8px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .footer__logo { justify-content: flex-start; margin-bottom: 14px; }
}

.footer__logo-ar {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
}

@media (min-width: 768px) { .footer__logo-ar { font-size: 1.4rem; } }

.footer__logo-divider {
  color: var(--border);
  font-weight: 300;
}

.footer__logo-img {
  height: 50px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  /*filter: brightness(0) invert(1);*/
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
  border-radius: 4px;
}

@media (min-width: 768px) { .footer__logo-img { height: 70px; } }

.footer__logo-img:hover {
  transform: scale(1.05);
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(201, 164, 76, 0.5));
}

.footer__tagline {
  font-family: var(--font-heading);
  font-size: .85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .footer__tagline { font-size: .95rem; margin-bottom: 10px; }
}

.footer__desc {
  font-size: .8rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

@media (min-width: 768px) { .footer__desc { font-size: .88rem; margin-bottom: 20px; } }

.footer__social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media (min-width: 768px) { .footer__social { justify-content: flex-start; gap: 12px; } }

.footer__social-link {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

@media (min-width: 768px) { .footer__social-link { width: 36px; height: 36px; } }

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.footer__col {
  text-align: right;
}

@media (min-width: 768px) { .footer__col { text-align: right; } }

.footer__col-title {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

@media (min-width: 768px) {
  .footer__col-title {
    font-size: .92rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    display: block;
  }
}

.footer__col-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

@media (min-width: 768px) {
  .footer__col-title::after {
    right: 0;
  }
}

.footer__links li { margin-bottom: 8px; }

@media (min-width: 768px) { .footer__links li { margin-bottom: 10px; } }

.footer__links a {
  font-family: var(--font-heading);
  font-size: .8rem;
  color: var(--text-muted);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (min-width: 768px) { .footer__links a { font-size: .88rem; } }

.footer__links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-dark);
  opacity: 0;
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.footer__links a:hover { color: var(--gold); }
.footer__links a:hover::before { opacity: 1; }

.footer__contact { list-style: none; }

.footer__contact li {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: .8rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer__contact li {
    justify-content: flex-start;
    gap: 10px;
    padding: 9px 0;
    font-size: .85rem;
  }
}

.footer__contact li:last-child { border-bottom: none; }

.footer__contact svg {
  color: var(--gold);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.footer__contact a:hover { color: var(--gold); }

.footer__whatsapp {
  margin-top: 12px;
  font-size: .8rem;
  padding: 8px 16px;
}

@media (min-width: 768px) {
  .footer__whatsapp {
    margin-top: 16px;
    font-size: .85rem;
    padding: 10px 18px;
  }
}

.footer__bottom {
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) { .footer__bottom { padding: 24px 0; } }

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
  }
}

.f__c {
  font-family: var(--font-heading);
  font-size: .75rem;
  color: var(--text-muted);
}

.ssk{
  transition: font-size 0.5s ;
}
.ssk:hover { 
  font-size: .95rem;
  color: var(--text);
 }

.center_{
    justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) { .f__c { font-size: .82rem; } }

.footer__admin-link {
  font-family: var(--font-heading);
  font-size: .7rem;
  color: var(--border);
  transition: color var(--transition);
}

@media (min-width: 768px) { .footer__admin-link { font-size: .78rem; } }

.footer__admin-link:hover { color: var(--text-muted); }

/* ============================================================
   21. WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 9000;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-green 2.5s infinite;
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
  color: #fff;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* ============================================================
   22. PAGE HERO
   ============================================================ */
.page-hero {
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(201,164,76,.06) 0%, transparent 70%),
    linear-gradient(160deg, var(--bg-dark) 0%, var(--bg) 100%);
}

@media (min-width: 768px) {
  .page-hero { padding: 120px 0 70px; }
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  opacity: .4;
}

.page-hero__inner { position: relative; z-index: 1; }

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .page-hero__breadcrumb {
    gap: 10px;
    font-size: .82rem;
    margin-bottom: 20px;
  }
}

.page-hero__breadcrumb a { color: var(--gold); }
.page-hero__breadcrumb span { color: var(--border); }

.page-hero h1 { margin-bottom: 12px; font-size: clamp(1.8rem, 4vw, 3rem); }

@media (min-width: 768px) { .page-hero h1 { margin-bottom: 16px; } }

.page-hero p {
  font-size: .9rem;
  max-width: 100%;
}

@media (min-width: 768px) {
  .page-hero p {
    font-size: 1.05rem;
    max-width: 540px;
  }
}

/* ============================================================
   23. ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); transform: scale(1.05); }
}

/* ============================================================
   24. AOS
   ============================================================ */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate { opacity: 1; }

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }

[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

[data-aos="zoom-in"] { transform: scale(.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }