/* ==========================================
   1. إعدادات عامة وتنسيقات الأساسية
   ========================================== */


* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background-color: #050505 !important; 
    color: white; 
    margin: 0; 
    padding: 0; 
}



/* ==========================================
   3. قسم الـ About Hero
   ========================================== */
.about-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 80px;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.about-text {
  max-width: 650px;
}

.about-hero h1 {
  font-size: 50px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  font-weight: 800;
}

.about-hero p {
  color: #bdbdbd;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-hero img {
  width: 450px;
  height: auto;
  border-radius: 15px;
  border: 1px solid #222;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

/* ==========================================
   4. قسم الرؤية والرسالة (Mission & Vision)
   ========================================== */
.mission {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.mission-card {
  flex: 1;
  background: #111;
  border: 1px solid #222;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.mission-card:hover {
  border-color: #8b0000;
  transform: translateY(-5px);
}

/* 🔴 الأيقونات بالأحمر الدموي */
.mission-card i {
  font-size: 40px;
  color: #8b0000;
  margin-bottom: 20px;
}

.mission-card h2 {
  font-size: 24px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.mission-card p {
  color: #bdbdbd;
  font-size: 15.5px;
  line-height: 1.6;
}

/* ==========================================
   5. قسم المميزات (Why Choose Us)
   ========================================== */
.why-us {
  padding: 80px 60px;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}

.why-us h2 {
  font-size: 36px;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  background: #111;
  padding: 35px 20px;
  border-radius: 12px;
  border: 1px solid #222;
  transition: 0.3s;
}

.why-card:hover {
  border-color: #8b0000;
  transform: translateY(-5px);
}

/* 🔴 أيقونات المزايا بالأحمر */
.why-card i {
  font-size: 35px;
  color: #8b0000;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.why-card p {
  color: #888;
  font-size: 14px;
  line-height: 1.5;
}

/* ==========================================
   6. قسم الـ CTA (Call To Action)
   ========================================== */
.about-cta {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url("../image/owner1.png");
  background-size: cover;
  background-position: center;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.about-cta h2 {
  font-size: 32px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* 🔴 الزر الملوكي الأحمر النظيف المستبدل من الذهبي */
.btn-gold {
    display: inline-block;
    padding: 12px 40px; /* زيادة العرض ليكون الزر مريحاً للعين */
    background-color: #8b0000 !important; /* اللون الأحمر المميز */
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 50px; /* حواف دائرية ليعطي شكلاً عصرياً */
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}


/* تأثير التفاعل عند الضغط أو المرور بالماوس */
.btn-gold:hover {
    background-color: transparent !important;
    border: 2px solid #8b0000;
    color: #8b0000;
    transform: scale(1.05);
}


.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.6s;
}

.btn-gold:hover::after {
  left: 100%;
}
/* ==========================================
   7. الـ Footer والـ Copyright
   ========================================== */
.footer {
  background: #0a0a0a;
  padding: 60px 60px 20px 60px;
  border-top: 1px solid #222;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  gap: 40px;
}

.footer-col {
  flex: 1;
}

.footer-col h3 {
  color: #8b0000; /* 🔴 اسم البراند أحمر */
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-col p {
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
}

.socials {
  display: flex;
  gap: 15px;
}

.socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #111;
  border: 1px solid #222;
  border-radius: 50%;
  color: #bdbdbd;
  text-decoration: none;
  transition: 0.3s;
}

.socials a:hover {
  background: #8b0000;
  color: black;
  border-color: #8b0000;
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #1a1a1a;
  color: #666;
  font-size: 13px;
}

/* ==========================================
   8. شاشات التجاوب (Responsive)
   ========================================== */
@media (max-width: 992px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 40px;
  }
  .about-hero img {
    width: 100%;
    max-width: 400px;
  }
  .mission {
    flex-direction: column;
    padding: 40px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .about-hero h1 {
    font-size: 36px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .socials {
    justify-content: center;
  }
}