:root {
  --navy: #1a2b4c;
  --gold: #a88a55;
  --teal: #175e59;
  --offwhite: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* دعم شريط التمرير لمتصفح فايرفوكس */
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--offwhite);
}

body {
  font-family: "Cairo", sans-serif;
  background-color: var(--offwhite);
  color: var(--navy);
  overflow-x: hidden;
}

/* 🌟 تخصيص شريط التمرير (Scrollbar VIP) 🌟 */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--offwhite);
  border-left: 1px solid rgba(26, 43, 76, 0.05);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold) 0%, var(--navy) 100%);
  border-radius: 10px;
  border: 3px solid var(--offwhite);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #c9a666 0%, #0a1122 100%);
}

/* 🌟 Navbar 2026 (Modern Glassmorphism) 🌟 */
header {
  background-color: rgba(26, 43, 76, 0.6);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(168, 138, 85, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

header.scrolled {
  padding: 8px 5%;
  background-color: rgba(26, 43, 76, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid var(--gold);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo-img {
  height: 60px;
  width: auto;
  border-radius: 8px;
  padding: 4px 15px;
  transition: all 0.4s ease;
}

header.scrolled .logo-img {
  height: 48px;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 800;
  font-size: 1.1rem;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 5px;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  box-shadow: 0 0 12px var(--gold);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  transform: translateY(-2px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1001;
}

.nav-contact {
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  background: linear-gradient(45deg, var(--teal), #1f7d77);
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(168, 138, 85, 0.4);
  box-shadow: 0 4px 15px rgba(23, 94, 89, 0.4);
  animation: pulse-glow 2s infinite;
  transition: all 0.3s;
}

.nav-contact:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, var(--gold), #c9a666);
  border-color: white;
  animation: none;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(23, 94, 89, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(23, 94, 89, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(23, 94, 89, 0);
  }
}

.mobile-toggle {
  display: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.mobile-toggle:hover {
  color: var(--gold);
}

@media (max-width: 992px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 280px;
    background: rgba(26, 43, 76, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 25px;
    padding: 40px 30px;
    border-radius: 0 0 20px 20px;
    box-shadow: -10px 15px 30px rgba(0, 0, 0, 0.3);
    border-left: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .nav-links.active {
    right: 0;
  }
  .nav-link {
    font-size: 1.3rem;
    width: 100%;
    text-align: right;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-contact {
    display: none;
  }
}

/* 🌟 Hero Section 2026 VIP 🌟 */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0a1122;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1499678329028-101435549a4e?auto=format&fit=crop&w=1920&q=80")
    center/cover no-repeat;
  opacity: 0.6;
  mix-blend-mode: luminosity;
  animation: zoomInOut 30s infinite alternate ease-in-out;
  z-index: 0;
}

.hero-aurora {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(168, 138, 85, 0.3),
      transparent 50%
    ),
    radial-gradient(circle at 80% 70%, rgba(23, 94, 89, 0.4), transparent 50%);
  filter: blur(50px);
  animation: auroraMove 15s infinite alternate ease-in-out;
  mix-blend-mode: overlay;
}

.hero-darken {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(26, 43, 76, 0.4),
    rgba(26, 43, 76, 0.8)
  );
  z-index: 2;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 3;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(
    circle at center,
    black 40%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 950px;
  padding: 0 20px;
  margin-top: 60px;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@keyframes auroraMove {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.2) translate(-50px, 30px);
  }
  100% {
    transform: scale(1) translate(50px, -30px);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(168, 138, 85, 0.4);
  color: var(--gold);
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 30px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: slideDown 1s ease-out;
}

.hero-badge i {
  margin-left: 8px;
}

.hero h1 {
  font-size: 4.8rem;
  font-weight: 900;
  color: white;
  line-height: 1.25;
  margin-bottom: 20px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.hero h1 .text-glow {
  background: linear-gradient(45deg, #ffe55c, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.35rem;
  color: #cbd5e1;
  margin-bottom: 45px;
  line-height: 1.8;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-primary-glow {
  background: linear-gradient(135deg, var(--gold), #bfa573);
  color: var(--navy);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.25rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(168, 138, 85, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
}

.btn-primary-glow:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 40px rgba(168, 138, 85, 0.6);
  background: linear-gradient(135deg, #bfa573, var(--gold));
  color: var(--navy);
}

.btn-secondary-glass {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s ease;
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-5px);
  color: var(--gold);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.glass-pill {
  background: rgba(26, 43, 76, 0.35);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(23, 94, 89, 0.4);
  color: #e2e8f0;
  padding: 12px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: floatUp 4s infinite ease-in-out alternate;
  transition: all 0.3s;
}

.glass-pill:hover {
  border-color: var(--gold);
  transform: scale(1.05);
  color: white;
}
.glass-pill i {
  color: var(--gold);
  font-size: 1.3rem;
}
.glass-pill:nth-child(1) {
  animation-delay: 0s;
}
.glass-pill:nth-child(2) {
  animation-delay: 0.6s;
}
.glass-pill:nth-child(3) {
  animation-delay: 1.2s;
}
.glass-pill:nth-child(4) {
  animation-delay: 1.8s;
}
.glass-pill:nth-child(5) {
  animation-delay: 2.4s;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-12px);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero p {
    font-size: 1.15rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 10px;
  }
  .hero-buttons a {
    justify-content: center;
  }
  .hero-features {
    display: none;
  }
}

/* 🌟 خدماتنا المتميزة (VIP 2026) 🌟 */
.services {
  padding: 100px 5%;
  text-align: center;
  background: linear-gradient(180deg, var(--offwhite) 0%, #ffffff 100%);
  scroll-margin-top: 80px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 70px;
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, var(--navy), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 50px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(168, 138, 85, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(26, 43, 76, 0.1);
  border-color: var(--gold);
}

.card-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(26, 43, 76, 0.05);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover .card-icon-wrapper {
  background: var(--navy);
  transform: translateY(-10px) rotate(-10deg) scale(1.15);
  box-shadow: 0 10px 20px rgba(26, 43, 76, 0.2);
}

.card i {
  font-size: 2.2rem;
  color: var(--navy);
  transition: all 0.4s ease;
  margin-bottom: 0;
}
.card:hover i {
  color: var(--gold);
}

.card h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 15px;
  font-weight: 900;
  transition: all 0.4s ease;
}
.card:hover h3 {
  color: var(--gold);
}

.card p {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 25px;
  line-height: 1.7;
}

.btn-card {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 10px 30px;
  border-radius: 30px;
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-card i {
  transition: transform 0.3s ease;
}

.card:hover .btn-card {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  box-shadow: 0 8px 20px rgba(26, 43, 76, 0.2);
}
.card:hover .btn-card i {
  transform: translateX(-5px);
}

/* 🌟 قسم الإحصائيات (VIP 2026) 🌟 */
.stats-section {
  background: linear-gradient(135deg, #0a1122 0%, var(--navy) 100%);
  color: white;
  padding: 100px 5%;
  text-align: center;
  border-top: 2px solid rgba(168, 138, 85, 0.1);
  border-bottom: 5px solid var(--gold);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(23, 94, 89, 0.15) 0%,
    transparent 50%
  );
  animation: spin-bg 20s linear infinite;
  z-index: 0;
}

@keyframes spin-bg {
  100% {
    transform: rotate(360deg);
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1122 100%);
  border-radius: 20px;
  padding: 50px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(168, 138, 85, 0.3);
  z-index: 1;
  cursor: default;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #c9a666 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.stat-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  transition: all 0.7s ease;
  z-index: 10;
  pointer-events: none;
}

.stat-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(168, 138, 85, 0.35);
  border-color: transparent;
}

.stat-item:hover::before {
  opacity: 1;
}
.stat-item:hover::after {
  left: 200%;
}

.stat-item i {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 25px;
  display: inline-block;
  transition: all 0.4s ease;
}
.stat-item:hover i {
  color: var(--navy);
  transform: scale(1.15);
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--gold);
  transition: all 0.4s ease;
}
.stat-item:hover h3 {
  color: var(--navy);
  transform: scale(1.05);
}

.stat-item p {
  font-size: 1.25rem;
  font-weight: 800;
  color: #cbd5e1;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}
.stat-item:hover p {
  color: var(--navy);
}

/* 🌟 آراء العملاء 🌟 */
.reviews-section {
  padding: 100px 5%;
  background-color: white;
  text-align: center;
  scroll-margin-top: 80px;
  position: relative;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.review-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.review-card::before {
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 6rem;
  color: rgba(168, 138, 85, 0.05);
  z-index: -1;
  transform: rotate(10deg);
  transition: all 0.4s ease;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(26, 43, 76, 0.08);
  border-bottom: 4px solid var(--gold);
}

.review-card:hover::before {
  color: rgba(168, 138, 85, 0.1);
  transform: rotate(0deg) scale(1.1);
}

.stars {
  color: #ffc107;
  margin-bottom: 20px;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.stars i {
  animation: starPulse 2s infinite alternate ease-in-out;
}
.stars i:nth-child(2) {
  animation-delay: 0.2s;
}
.stars i:nth-child(3) {
  animation-delay: 0.4s;
}
.stars i:nth-child(4) {
  animation-delay: 0.6s;
}
.stars i:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes starPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(255, 193, 7, 0.4));
  }
  100% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.8));
  }
}

.review-text {
  font-size: 1.15rem;
  color: #475569;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
}

.reviewer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.reviewer-info .avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--navy) 0%, #0a1122 100%);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(26, 43, 76, 0.2);
}
.reviewer-name {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.15rem;
}

/* 🌟 النوافذ المنبثقة (VIP Modals الموحدة) 🌟 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 43, 76, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #ffffff;
  width: 95%;
  max-width: 650px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 35px 30px;
  position: relative;
  transform: translateY(50px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-top: 5px solid var(--gold);
  border-bottom: 5px solid var(--navy);
  box-shadow: 0 25px 50px rgba(26, 43, 76, 0.4);
}
.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-content h2 {
  color: var(--navy) !important;
  font-weight: 900;
  position: relative;
  display: block;
  padding-bottom: 15px;
  text-align: center;
}
.modal-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 5px;
}

.close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 20px;
  color: var(--navy);
  background: var(--offwhite);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid rgba(26, 43, 76, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}
.close-btn:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 5px 15px rgba(168, 138, 85, 0.3);
}

.alert-box {
  margin-top: 15px;
  padding: 15px;
  background: rgba(168, 138, 85, 0.08) !important;
  color: var(--navy) !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: right;
  border: 1px solid rgba(168, 138, 85, 0.2) !important;
  border-right: 4px solid var(--gold) !important;
  display: flex;
  gap: 12px;
  align-items: center;
}
.alert-box i {
  color: var(--gold) !important;
}

.success-box {
  background: rgba(23, 94, 89, 0.08) !important;
  border-color: rgba(23, 94, 89, 0.2) !important;
  border-right-color: var(--teal) !important;
}
.success-box i {
  color: var(--teal) !important;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(26, 43, 76, 0.05);
  padding-bottom: 15px;
  position: sticky;
  top: -35px;
  background: white;
  z-index: 5;
  padding-top: 15px;
}

.tab-btn {
  flex: 1;
  padding: 12px;
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--offwhite);
  border: 1px solid rgba(26, 43, 76, 0.05);
  border-radius: 8px;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tab-btn:hover:not(.active) {
  background: white;
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(168, 138, 85, 0.15);
}

/* تأثير الزر النشط (المضغوط) */
.tab-btn.active {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1122 100%);
  color: var(--gold);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(26, 43, 76, 0.4);
  transform: translateY(-2px);
}

.tab-content {
  display: none;
  text-align: right;
}
.tab-content.active {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.requirements-list {
  list-style: none;
}
.requirements-list li {
  padding: 12px 15px;
  border-bottom: 1px dashed rgba(26, 43, 76, 0.1);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  border-right: 3px solid transparent;
  transition: all 0.3s ease;
  margin-bottom: 5px;
  cursor: default;
}
.requirements-list li:hover {
  background-color: rgba(168, 138, 85, 0.05);
  border-right: 3px solid var(--gold);
  transform: translateX(-8px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.requirements-list li i {
  color: var(--gold);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.requirements-list li:hover i {
  transform: scale(1.25) rotate(-10deg);
  color: var(--teal);
}
/* 🌟 تصميم زر الواتساب الاحترافي (بالهوية الذهبية) 🌟 */
.btn-whatsapp-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #bfa573 100%
  ); /* ذهبي فخم */
  color: var(--navy); /* نص كحلي للوضوح */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(168, 138, 85, 0.4); /* ضل ذهبي */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn-whatsapp-modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: all 0.6s ease;
}
/* حالة الزرار لما الماوس يقف عليه (الخلفية تقلب كحلي والنص أبيض) */
.btn-whatsapp-modal:hover {
  transform: translateY(-5px) scale(1.02);
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #0a1122 100%
  ); /* خلفية كحلي فخمة */
  box-shadow: 0 15px 35px rgba(26, 43, 76, 0.4);
  color: white; /* لون النص */
  border-color: var(--gold); /* إطار ذهبي خفيف يحدد الزرار */
}

/* 🌟 السطر ده هو اللي هيظهر الأيقونة المختفية 🌟 */
.btn-whatsapp-modal:hover i {
  color: var(
    --gold
  ); /* هيخلي الأيقونة تنور ذهبي جوه الكحلي.. شكلها هيبقى تحفة */
}

.btn-whatsapp-modal:hover::before {
  left: 100%;
}

.btn-whatsapp-modal i {
  font-size: 1.6rem;
  animation: bounce-icon 2s infinite;
  color: var(--navy); /* أيقونة الواتساب كحلي */
}

@keyframes bounce-icon {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-4px);
  }
  60% {
    transform: translateY(-2px);
  }
}

/* 🌟 الفوتر 🌟 */
footer {
  background: linear-gradient(135deg, #0a1122 0%, var(--navy) 100%);
  color: white;
  padding: 80px 5% 30px;
  border-top: 5px solid var(--gold);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(23, 94, 89, 0.08) 0%,
    transparent 60%
  );
  z-index: 0;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 50px;
  margin-bottom: 25px;
}
.footer-col h3 {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}
.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 35px;
  height: 3px;
  background: var(--gold);
  border-radius: 5px;
  transition: width 0.4s ease;
}
.footer-col:hover h3::after {
  width: 100%;
}
.footer-col p {
  font-size: 1.1rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #cbd5e1;
  transition: all 0.3s ease;
  cursor: pointer;
}
.footer-col p:hover {
  color: white;
  transform: translateX(-8px);
}
.footer-col p i {
  color: var(--gold);
  font-size: 1.2rem;
  background: rgba(168, 138, 85, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.footer-col p:hover i {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 0 15px rgba(168, 138, 85, 0.5);
}
.footer-bottom {
  text-align: center;
  font-size: 1rem;
  color: #94a3b8;
  position: relative;
  z-index: 1;
}
.footer-bottom span {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo-img-large {
  height: 5rem;
}

/* 🌟 زر الصعود للأعلى 🌟 */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: rgba(26, 43, 76, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(168, 138, 85, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 999;
}
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--gold);
  color: white;
  box-shadow: 0 8px 25px rgba(168, 138, 85, 0.5);
  transform: translateY(-5px);
}

/* منع متصفحات الموبايل من تغيير لون الأرقام */
a[href^="tel"],
a[href^="sms"],
.footer-col p a {
  color: inherit !important;
  text-decoration: none !important;
}
/* 🌟 شاشة التحميل (Preloader VIP) 🌟 */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
.loader-content {
  text-align: center;
  position: relative;
}
.loader-logo {
  width: 140px;
  margin-bottom: 30px;
  animation: pulse-logo 1.5s infinite alternate ease-in-out;
}
.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(168, 138, 85, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin-loader 1s linear infinite;
  margin: 0 auto;
}

@keyframes pulse-logo {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(168, 138, 85, 0.2));
  }
  100% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(168, 138, 85, 0.7));
  }
}
@keyframes spin-loader {
  100% {
    transform: rotate(360deg);
  }
}

/* 🌟 زرار الواتساب العائم (يمين الشاشة) 🌟 */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px; /* على اليمين عكس زرار الصعود اللي على الشمال */
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: float-wa 3s infinite ease-in-out;
}
/* نبض خلفي للزرار */
.floating-whatsapp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2s infinite;
  z-index: -1;
}
.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.1);
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
  color: white;
}
@keyframes float-wa {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
