/* --- About Us Hero Section --- */
.fal-about-v2 {
  --fal-gold: #c1a564;
  --fal-gold-light: #e3d2a5;
  --fal-bg: transparent; /* Changed to transparent for video */
  --fal-text-dark: #1a1a1a;
  --fal-text-grey: #555555;
  --fal-border: #e0e0e0;

  font-family: "Tajawal", "Cairo", sans-serif;
  padding: 100px 20px;

  /* Full Width & Height Settings */
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;

  text-align: center;
  color: #ffffff; /* Default text white for video contrast */
  box-sizing: border-box;
  margin: 0;
}

/* Reset for Elementor if needed */
.fal-about-v2,
.fal-about-v2 .elementor-widget-container {
  margin: 0;
  padding: 100px 20px; /* Keep padding */
}

/* --- Video Background Styles --- */
.fal-join__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0; /* Behind content */
  overflow: hidden;
}

.fal-join__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55); /* Dimming the video */
}

.fal-join__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top right,
      rgba(201, 174, 112, 0.35),
      transparent 55%
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85));
  z-index: 1; /* Above video, below content */
}

.fal-av2__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2; /* Above video and overlay */
}

/* Header */
.fal-av2__header {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fal-av2__eyebrow {
  color: var(--fal-gold);
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
  text-transform: uppercase;
}

.fal-av2__title {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
  color: #ffffff; /* White title on video */
}

.fal-av2__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 25px auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

.fal-av2__line {
  height: 1px;
  width: 60px;
  background: linear-gradient(to left, var(--fal-gold), transparent);
}
.fal-av2__line:last-child {
  background: linear-gradient(to right, var(--fal-gold), transparent);
}
.fal-av2__icon {
  color: var(--fal-gold);
  font-size: 1.2rem;
}

/* Content Box */
.fal-av2__content-box {
  background: rgba(255, 255, 255, 0.95); /* Slightly transparent white */
  border: 1px solid rgba(193, 165, 100, 0.3);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.4s;
  position: relative;
  backdrop-filter: blur(5px); /* Glass effect */
}

/* Corner Accents */
.fal-av2__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--fal-gold);
  transition: all 0.3s ease;
}
.fal-av2__corner-tl {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
  border-radius: 24px 0 0 0;
}
.fal-av2__corner-tr {
  top: -1px;
  right: -1px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 24px 0 0;
}
.fal-av2__corner-bl {
  bottom: -1px;
  left: -1px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 24px;
}
.fal-av2__corner-br {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 24px 0;
}

.fal-av2__content-box:hover .fal-av2__corner {
  width: 30px;
  height: 30px;
  box-shadow: 0 0 10px rgba(193, 165, 100, 0.3);
}

.fal-av2__text {
  font-size: 1.35rem;
  line-height: 2;
  color: var(--fal-text-grey);
  margin: 0;
}

.fal-av2__text strong {
  color: var(--fal-gold);
  font-weight: 700;
}

/* Stats */
.fal-av2__stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.fal-av2__stat-item {
  text-align: center;
}

.fal-av2__stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fal-gold);
  line-height: 1;
  margin-bottom: 5px;
}

.fal-av2__stat-label {
  font-size: 20px;
  color: var(--fal-text-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .fal-av2__title {
    font-size: 2.2rem;
  }
  .fal-av2__content-box {
    padding: 30px 20px;
  }
  .fal-av2__text {
    font-size: 1.1rem;
  }
  .fal-av2__stats {
    flex-direction: column;
    gap: 30px;
  }
}

/* --- Vision Section --- */
.fal-vision-dark {
  --fal-gold: #c9ae70;
  --fal-ink: #ffffff;
  --fal-text: #cccccc;
  --fal-bg: #14120e; /* Dark Brown/Gold Background */
  --fal-card-bg: #1c1914; /* Dark Card Background */
  --fal-border: rgba(201, 174, 112, 0.3); /* Gold Border */
  --fal-font: "Tajawal", "Cairo", system-ui, -apple-system, sans-serif;

  font-family: var(--fal-font);
  padding: 100px 20px;
  background-color: var(--fal-bg);
  text-align: center;
  color: var(--fal-text);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.fal-vision-dark *,
.fal-vision-dark *::before,
.fal-vision-dark *::after {
  box-sizing: inherit;
}

/* --- Background Pattern (Static & Lightweight) --- */
.fal-vision-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  /* Simple noise pattern + Gradient */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.10'/%3E%3C/svg%3E"),
    radial-gradient(
      circle at top right,
      rgba(201, 174, 112, 0.1),
      transparent 70%
    );
  mix-blend-mode: overlay;
}

.fal-vv2__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.fal-vv2__header {
  margin-bottom: 40px;
  /* Simple fade in animation */
  animation: falFadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.fal-vv2__icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(201, 174, 112, 0.1);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--fal-border);
  margin-bottom: 20px;
  color: var(--fal-gold);
}

.fal-vv2__icon-svg {
  width: 40px;
  height: 40px;
}

.fal-vv2__title {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
  color: var(--fal-ink);
}

.fal-vv2__divider {
  width: 60px;
  height: 3px;
  background: var(--fal-gold);
  margin: 20px auto;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(20px);
  animation: falFadeInUp 0.8s ease forwards 0.2s;
}

/* Content Box */
.fal-vv2__content-box {
  background: var(--fal-card-bg);
  border: 1px solid var(--fal-border);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
  animation: falFadeInUp 0.8s ease forwards 0.4s;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fal-vv2__content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border-color: var(--fal-gold);
}

/* Corner Accents */
.fal-vv2__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--fal-gold);
  transition: all 0.3s ease;
  opacity: 0.7;
}
.fal-vv2__corner-tl {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
  border-radius: 24px 0 0 0;
}
.fal-vv2__corner-tr {
  top: -1px;
  right: -1px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 24px 0 0;
}
.fal-vv2__corner-bl {
  bottom: -1px;
  left: -1px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 24px;
}
.fal-vv2__corner-br {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 24px 0;
}

.fal-vv2__content-box:hover .fal-vv2__corner {
  width: 30px;
  height: 30px;
  box-shadow: 0 0 10px rgba(201, 174, 112, 0.3);
  opacity: 1;
}

.fal-vv2__text {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  line-height: 1.8;
  color: var(--fal-ink);
  margin: 0;
  font-weight: 500;
}

/* Background Decoration */
.fal-vv2__bg-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 400px;
  color: var(--fal-gold);
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
}

/* Animations */
@keyframes falFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .fal-vv2__content-box {
    padding: 30px 20px;
  }
}

/* --- Message Section --- */
.fal-message-dark {
  --fal-gold: #c9ae70;
  --fal-ink: #ffffff;
  --fal-text: #cccccc;
  --fal-bg: #14120e; /* Dark Brown/Gold Background */
  --fal-card-bg: #1c1914; /* Dark Card Background */
  --fal-border: rgba(201, 174, 112, 0.3); /* Gold Border */
  --fal-font: "Tajawal", "Cairo", system-ui, -apple-system, sans-serif;

  font-family: var(--fal-font);
  padding: 100px 20px;
  background-color: var(--fal-bg);
  text-align: center;
  color: var(--fal-text);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.fal-message-dark *,
.fal-message-dark *::before,
.fal-message-dark *::after {
  box-sizing: inherit;
}

/* --- Background Pattern (Static & Lightweight) --- */
.fal-message-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  /* Simple noise pattern + Gradient */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.10'/%3E%3C/svg%3E"),
    radial-gradient(
      circle at top right,
      rgba(201, 174, 112, 0.1),
      transparent 70%
    );
  mix-blend-mode: overlay;
}

.fal-mv2__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.fal-mv2__header {
  margin-bottom: 40px;
  /* Simple fade in animation */
  animation: falFadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.fal-mv2__icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(201, 174, 112, 0.1);
  border-radius: 20px; /* Diamond shape base */
  transform: rotate(45deg); /* Diamond shape effect */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--fal-border);
  margin-bottom: 30px;
  margin-top: 10px;
  color: var(--fal-gold);
}

.fal-mv2__icon-inner {
  transform: rotate(-45deg); /* Counter-rotate icon */
  display: flex;
}

.fal-mv2__icon-svg {
  width: 36px;
  height: 36px;
}

.fal-mv2__title {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
  color: var(--fal-ink);
}

.fal-mv2__divider {
  width: 60px;
  height: 3px;
  background: var(--fal-gold);
  margin: 20px auto;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(20px);
  animation: falFadeInUp 0.8s ease forwards 0.2s;
}

/* Content Box */
.fal-mv2__content-box {
  background: var(--fal-card-bg);
  border: 1px solid var(--fal-border);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
  animation: falFadeInUp 0.8s ease forwards 0.4s;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fal-mv2__content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border-color: var(--fal-gold);
}

/* Corner Accents */
.fal-mv2__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--fal-gold);
  transition: all 0.3s ease;
  opacity: 0.7;
}
.fal-mv2__corner-tl {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
  border-radius: 24px 0 0 0;
}
.fal-mv2__corner-tr {
  top: -1px;
  right: -1px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 24px 0 0;
}
.fal-mv2__corner-bl {
  bottom: -1px;
  left: -1px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 24px;
}
.fal-mv2__corner-br {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 24px 0;
}

.fal-mv2__content-box:hover .fal-mv2__corner {
  width: 30px;
  height: 30px;
  box-shadow: 0 0 10px rgba(201, 174, 112, 0.3);
  opacity: 1;
}

.fal-mv2__text {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  line-height: 1.8;
  color: var(--fal-ink);
  margin: 0;
  font-weight: 500;
}

/* Background Decoration */
.fal-mv2__bg-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 400px;
  color: var(--fal-gold);
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
}

/* Animations */
@keyframes falFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .fal-mv2__content-box {
    padding: 30px 20px;
  }
}

/* --- Why Choose Us Section --- */
.fal-why-dark {
  --fal-gold: #c9ae70;
  --fal-ink: #ffffff;
  --fal-text: #cccccc;
  --fal-bg: #14120e; /* Dark Brown/Gold Background */
  --fal-card-bg: #1c1914; /* Dark Card Background */
  --fal-border: rgba(201, 174, 112, 0.3); /* Gold Border */
  --fal-font: "Tajawal", "Cairo", system-ui, -apple-system, sans-serif;

  font-family: var(--fal-font);
  padding: 100px 20px;
  background-color: var(--fal-bg);
  text-align: center;
  color: var(--fal-text);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.fal-why-dark *,
.fal-why-dark *::before,
.fal-why-dark *::after {
  box-sizing: inherit;
}

/* --- Background Pattern (Static & Lightweight) --- */
.fal-why-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  /* Simple noise pattern + Gradient */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.10'/%3E%3C/svg%3E"),
    radial-gradient(
      circle at top right,
      rgba(201, 174, 112, 0.1),
      transparent 70%
    );
  mix-blend-mode: overlay;
}

.fal-wv2__container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.fal-wv2__header {
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: falFadeInUp 0.8s ease forwards;
}

.fal-wv2__title {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
  color: var(--fal-ink);
}

.fal-wv2__divider {
  width: 60px;
  height: 3px;
  background: var(--fal-gold);
  margin: 20px auto;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(20px);
  animation: falFadeInUp 0.8s ease forwards 0.2s;
}

/* Grid Layout */
.fal-wv2__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

/* Card Styles */
.fal-wv2__card {
  background: var(--fal-card-bg);
  border: 1px solid var(--fal-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.fal-wv2__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--fal-gold);
  background: #231f18;
}

/* Number Badge */
.fal-wv2__num {
  width: 50px;
  height: 50px;
  background: rgba(201, 174, 112, 0.1);
  color: var(--fal-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 20px;
  border: 1px solid var(--fal-border);
  transition: all 0.3s ease;
}

.fal-wv2__card:hover .fal-wv2__num {
  background: var(--fal-gold);
  color: #000;
  border-color: var(--fal-gold);
}

.fal-wv2__text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--fal-ink);
  margin: 0;
  font-weight: 600;
}

/* Button */
.fal-wv2__btn-wrapper {
  opacity: 0;
  transform: translateY(20px);
  animation: falFadeInUp 0.8s ease forwards 1s;
}

.fal-wv2__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--fal-gold);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 174, 112, 0.3);
  border: 2px solid transparent;
}

.fal-wv2__btn:hover {
  background-color: transparent;
  color: var(--fal-gold);
  border-color: var(--fal-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 174, 112, 0.4);
}

.fal-wv2__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Animations */
@keyframes falFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .fal-wv2__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Partners Title Section --- */
.fal-section-title-wrapper {
  text-align: center;
  padding: 60px 20px 40px;
  font-family: "Tajawal", "Cairo", sans-serif;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.fal-gold-badge {
  display: inline-block;
  background: linear-gradient(135deg, #c9ae70 0%, #a08845 100%);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  padding: 10px 35px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(201, 174, 112, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.fal-gold-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(201, 174, 112, 0.3);
}

/* Shine effect */
.fal-gold-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
  animation: falShine 3s infinite;
}

@keyframes falShine {
  0% {
    left: -100%;
  }
  20% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}
