/* ==========================================
   ABOUT US PAGE - DIOR LUXURY STYLE
   ========================================== */

/* Dr. INA Signature Style */
.dr-ina-signature {
  color: #ff8c42 !important;
font-family: 'Hurricane', cursive;
  font-weight: 400 !important;
  font-style: italic;
     padding-right: 10px; /* مسافة من اليمين */

}

/* About Hero Section */
.about-hero-dior {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, #2c2c2c 0%, #444 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/img/about-who-we-are.jpg") center / cover;
  opacity: 0.1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-hero-tag {
  display: inline-block;
  padding: 8px 25px;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.about-hero-title {
  font-size: 72px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.about-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 1px;
}

/* About Sections */
.about-section-dior {
  padding: 100px 0;
  background: white;
}

.about-bg-light {
  background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%);
}

.about-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content-box {
  padding-right: 40px;
}

.about-mini-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.about-mini-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ff8c42, transparent);
}

.about-mini-tag {
  font-size: 11px;
  color: #ff8c42;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-section-title {
  font-size: 42px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 30px;
  letter-spacing: 1px;
  line-height: 1.3;
}

.about-text {
  font-size: 16px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-text-highlight {
  font-size: 18px;
  color: #ff8c42;
  font-weight: 600;
  margin-top: 30px;
  font-style: italic;
}

.about-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.about-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image-box:hover .about-image {
  transform: scale(1.05);
}

.about-center-text {
  text-align: center;
  font-size: 18px;
  color: #666;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto 40px;
  font-weight: 300;
}

/* Added INA Ecosystem Cards Styling */
.about-ina-ecosystem {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.about-ecosystem-card {
  background: white;
  padding: 50px 35px;
  border: 2px solid #f0f0f0;
  transition: all 0.5s ease;
  text-align: center;
}

.about-ecosystem-card:hover {
  border-color: #ff8c42;
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 140, 66, 0.15);
}

.about-ecosystem-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 107, 53, 0.1));
  border-radius: 50%;
  transition: all 0.5s ease;
}

.about-ecosystem-card:hover .about-ecosystem-icon {
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  transform: rotate(360deg);
}

.about-ecosystem-icon i {
  font-size: 40px;
  color: #ff8c42;
  transition: all 0.3s ease;
}

.about-ecosystem-card:hover .about-ecosystem-icon i {
  color: white;
}

.about-ecosystem-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about-ecosystem-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  text-align: justify;
  font-weight: 300;
}

/* Added Mission, Vision, Philosophy Grid */
.about-mvp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 60px;
}

.about-mvp-card {
  background: white;
  padding: 60px 40px;
  border: 2px solid #f5f5f5;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.about-mvp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff8c42, #ff6b35);
  transition: left 0.5s ease;
}

.about-mvp-card:hover::before {
  left: 0;
}

.about-mvp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
  border-color: #ff8c42;
}

.about-mvp-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.15), rgba(255, 107, 53, 0.15));
  border-radius: 50%;
  transition: all 0.5s ease;
}

.about-mvp-card:hover .about-mvp-icon {
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  transform: scale(1.1);
}

.about-mvp-icon i {
  font-size: 36px;
  color: #ff8c42;
  transition: all 0.3s ease;
}

.about-mvp-card:hover .about-mvp-icon i {
  color: white;
}

.about-mvp-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.about-mvp-text {
  font-size: 16px;
  color: #666;
  line-height: 1.9;
  font-weight: 300;
}

/* Philosophy Grid */
.about-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.about-philosophy-card {
  text-align: center;
  padding: 40px 30px;
  background: white;
  transition: all 0.5s ease;
  border: 1px solid #f0f0f0;
}

.about-philosophy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: #ff8c42;
}

.about-philosophy-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 107, 53, 0.1));
  border-radius: 50%;
  transition: all 0.5s ease;
}

.about-philosophy-card:hover .about-philosophy-icon {
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
}

.about-philosophy-icon i {
  font-size: 32px;
  color: #ff8c42;
  transition: all 0.3s ease;
}

.about-philosophy-card:hover .about-philosophy-icon i {
  color: white;
  transform: scale(1.1);
}

.about-philosophy-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.about-philosophy-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
}

/* Vision Wrapper */
.about-vision-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-vision-content {
  padding: 80px 60px;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.05), rgba(255, 107, 53, 0.05));
  border-left: 4px solid #ff8c42;
}

/* Promise Section */
.about-promise-dior {
  padding: 100px 0;
  background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%);
}

.about-promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.about-promise-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: white;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
  word-break: break-word;
}

.about-promise-text {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.about-promise-item:hover {
  border-color: #ff8c42;
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-promise-check {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-promise-check i {
  font-size: 20px;
  color: white;
}

.about-promise-text {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Global Section */
.about-global-section {
  padding: 120px 0;
  background: white;
}

.about-global-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-global-tagline {
  font-size: 22px;
  color: #ff8c42;
  font-weight: 600;
  text-align: center;
  margin: 30px 0 40px;
  font-style: italic;
}

.about-map-wrapper {
  position: relative;
}

.about-map-container {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.05), rgba(255, 107, 53, 0.05));
  padding: 60px;
  border-radius: 0;
}

.about-map-image {
  width: 100%;
  height: auto;
  opacity: 0.3;
  filter: grayscale(1);
}

.about-map-marker {
  position: absolute;
  top: 45%;
  left: 52%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.about-map-pin {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  border-radius: 50%;
  margin: 0 auto 10px;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(255, 140, 66, 0.7);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 140, 66, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 140, 66, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 66, 0);
  }
}

.about-map-label {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-map-caption {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 30px;
  font-style: italic;
}

/* CTA Section */
.about-cta-dior {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}

.about-cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-cta-title {
  font-size: 52px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about-cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
}

.about-cta-btn {
  padding: 20px 60px;
  background: transparent;
  color: white;
  border: 2px solid white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
}

.about-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  transition: left 0.4s ease;
  z-index: -1;
}

.about-cta-btn:hover {
  border-color: #ff8c42;
  transform: translateY(-3px);
}

.about-cta-btn:hover::before {
  left: 0;
}

/* Added dior-section-header styling for consistency */
.dior-section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.dior-header-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff8c42, transparent);
}

.dior-title {
  font-size: 48px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 1px;
  text-align: center;
}

/* Responsive About Page */
@media (max-width: 992px) {
  .about-hero-title {
    font-size: 52px;
  }

  .about-grid-two,
  .about-global-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-ina-ecosystem {
    grid-template-columns: 1fr;
  }

  .about-mvp-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-hero-dior {
    height: 400px;
  }

  .about-hero-title {
    font-size: 42px;
  }

  .about-section-dior {
    padding: 80px 0;
  }

  .about-section-title {
    font-size: 32px;
  }

  .about-philosophy-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-title {
    font-size: 36px;
  }

  .about-promise-item {
    padding: 20px 15px;
    flex-wrap: wrap;
  }

  .about-promise-text {
    font-size: 15px;
    flex: 1;
    min-width: 0;
  }

  .about-content-box {
    padding-right: 0;
    padding-left: 0;
  }

  .dior-title {
    font-size: 36px;
  }

  /* Fix Dr. INA Achievements section - Text above image on mobile */
  .about-grid-two[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    display: flex;
    flex-direction: column-reverse;
  }


}

@media (max-width: 480px) {
  .about-promise-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .about-promise-check {
    margin-bottom: 5px;
  }

  .about-hero-title {
    font-size: 32px;
  }

  .dior-title {
    font-size: 28px;
  }

  .about-cta-title {
    font-size: 28px;
  }
}