/* ====================== RESET ====================== */
* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background: #f4f4f4;
}

/* ====================== HERO (HOME ONLY) ====================== */
.hero {
  position: relative;
  height: 260px;
  overflow: visible;
}

.hero video {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: contain;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

/* ====================== HERO BOTTOM ====================== */
.hero-bottom {
  position: absolute;
  bottom: -140px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  z-index: 10;
}

/* LOGO */
.logo-circle {
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.logo-circle img {
  width: 65px;
}

/* BRAND NAME */
.brand-name {
  font-size: 26px;
  font-weight: bold;
  margin: 6px 0 12px;
  color: #f4b400;
}

/* ====================== SOCIAL ICONS ====================== */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  background: #f4b400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a7c6d;
  font-size: 18px;
  text-decoration: none;
}

/* ====================== MAIN CONTENT (HOME) ====================== */
.container {
  width: 92%;
  max-width: 450px;
  margin: 200px auto 20px;
}

/* ====================== ACCORDION ====================== */
.accordion {
  margin-bottom: 15px;
}

.accordion-btn {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 18px;
  background: #38c7b3;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* الزر الأصفر */
.accordion:nth-child(even) .accordion-btn {
  background: #f4b400;
}

/* ======================
   ACCORDION CONTENT (NEW COLORS)
====================== */
.accordion-content {
  display: none;
  padding: 15px;
  margin-top: 10px;
  border-radius: 15px;
  color: #fff;
}

/* محتوى مع زر أخضر */
.accordion:nth-child(odd) .accordion-content {
  background: #38c7b3;
}

/* محتوى مع زر أصفر */
.accordion:nth-child(even) .accordion-content {
  background: #f4b400;
}

/* النصوص جوه المحتوى */
.accordion-content p,
.accordion-content li {
  color: #fff;
  line-height: 1.7;
}

.work-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
}


/* ======================
   OUR GOALS IMAGE
====================== */
.goals-image-wrapper {
  width: 100%;
  margin-top: 15px;
}

.goals-image-wrapper img {
  width: 100%;
  height: auto;          /* الطول الطبيعي */
  display: block;
  border-radius: 12px;   /* نفس روح التصميم */
}


/* الصور */
.full-img {
  width: 100%;
  border-radius: 15px;
  margin-top: 10px;
}

/* ====================== CONTACT LIST (HOME) ====================== */
.contact-list a {
  display: block;
  padding: 12px;
  background: #38c7b3;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  margin-bottom: 10px;
  text-align: center;
}

/* ====================== FLOATING BUTTONS ====================== */
.floating-share {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #38c7b3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  z-index: 1000;
}

.floating-lang {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #f4b400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a7c6d;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
}

/* ====================== QR MODAL ====================== */
.qr-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.qr-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  width: 90%;
  max-width: 320px;
  position: relative;
}

.qr-card img {
  margin: 15px 0;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* ====================== TEAM PAGES ONLY ====================== */
.team-page {
  background: #f4f4f4;
}

.team-page .hero,
.team-page .hero-bottom,
.team-page .logo-circle,
.team-page .brand-name,
.team-page .social-icons {
  display: none !important;
}

.team-page .profile-card-page {
  background: #fff;
  width: 90%;
  max-width: 420px;
  margin: 40px auto;
  padding: 40px 20px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.team-page .profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: block;
}

.team-page .position {
  color: #777;
  margin-bottom: 20px;
}

.team-page .actions {
  display: grid;
  gap: 12px;
}

.team-page .action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  border-radius: 30px;
  background: #38c7b3;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.team-page .btn-value {
  font-size: 13px;
  opacity: 0.9;
}

.team-page .save-contact {
  display: block;
  margin-top: 20px;
  padding: 14px;
  border-radius: 30px;
  background: #000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.team-page a {
  color: inherit;
  text-decoration: none;
}

/* ====================== OUR WORK SECTION ====================== */
.work-item {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 18px;
}

.work-item h4 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #0a7c6d;
  text-align: center;
}

.work-item p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: center;
  color: #333;
}

.work-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* RTL */
body[dir="rtl"] .work-item h4,
body[dir="rtl"] .work-item p {
  text-align: center;
}

/* SUPPLIER BOX */
.supplier-box {
  margin-bottom: 25px;
}

.supplier-box h3 {
  margin-bottom: 10px;
  color: #0a7c6d;
  font-size: 20px;
  text-align: center;
}



/* ======================
   OUR GOALS FULL IMAGE
====================== */
.goals-content {
  padding: 15px;
  background: #f4b400; /* نفس لون الزر */
  border-radius: 15px;
}

.goals-full-image {
  width: 100%;
  height: auto;        /* الطول الطبيعي */
  display: block;
  border-radius: 12px;
}

/* ======================
   ABOUT US FULL IMAGE
====================== */
.about-content {
  padding: 15px;
  background: #38c7b3; /* نفس لون About Us */
  border-radius: 15px;
}

.about-full-image {
  width: 100%;
  height: auto;        /* الطول الطبيعي */
  display: block;
  border-radius: 12px;
}


/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
  .hero {
    height: auto;
  }

  .hero video {
    width: 100vw;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
  }
}

