/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--navy-900) 0%,
    var(--navy-700) 60%,
    #1c3668 100%
  );
  padding: 160px 0 90px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.page-hero .bg-image-wrap {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(184, 145, 58, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(184, 145, 58, 0.08) 0%,
      transparent 40%
    );
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.page-breadcrumb a:hover {
  color: var(--gold-300);
}

.page-breadcrumb .sep {
  font-size: 0.55rem;
  opacity: 0.4;
}

.page-breadcrumb .active {
  color: var(--gold-300);
  font-weight: 700;
}

.page-hero-title {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.page-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  line-height: 1.8;
}

.page-hero-deco {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(184, 145, 58, 0.15);
  pointer-events: none;
}

.page-hero-deco::after {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(184, 145, 58, 0.1);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.stats-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 48px;
  border-left: 1px solid var(--gray-100);
  flex: 1;
  min-width: 150px;
}

.stat-item:last-child {
  border-right: none;
  border-left: none;
}

.stat-number {
  font-family: "Cairo", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 600;
  text-align: center;
}

/* ===== STORY SECTION ===== */
.story-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.story-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--grad-gold);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 16px 22px;
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: var(--shadow-gold);
}

.story-img-badge span {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2px;
}

.story-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.story-title {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy-900);
  line-height: 1.25;
  margin-bottom: 20px;
}

.story-text {
  font-size: 0.97rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* ===== VALUES ===== */
.values-section {
  background: var(--gray-50);
}

.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--gray-100);
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: var(--t-base);
  transform-origin: right;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: #fdf4e3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: #c9a44f;
}

.value-title {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.value-text {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin: 0;
}

/* ===== TEAM ===== */
.team-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--t-base);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.team-img-placeholder {
  width: 100%;
  height: 260px;
  /* background: linear-gradient(135deg, var(--navy-900), var(--navy-600)); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  /* color: rgba(184,145,58,0.5); */
  overflow: hidden;
}

.team-img-placeholder img {
  object-fit: cover;
}

.team-info {
  padding: 24px;
}

.team-name {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.82rem;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.team-socials {
  display: flex;
  gap: 8px;
}

.team-soc {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--navy-700);
  transition: var(--t-fast);
}

.team-soc:hover {
  background: var(--grad-gold);
  border-color: transparent;
  color: var(--navy-900);
}

/* ===== WHY US ===== */
.why-wrap {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.why-wrap .bg-image-wrap {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  border-radius: var(--radius-xl);
}

.why-wrap .container {
  position: relative;
  z-index: 2;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.why-item:last-child {
  margin-bottom: 0;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(184, 145, 58, 0.15);
  border: 1px solid rgba(184, 145, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-content h5 {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}

.why-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* ===== PARTNERS ===== */
.partners-section {
  background: var(--gray-50);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  height: 80px;
  transition: var(--t-base);
  filter: grayscale(1);
  opacity: 0.5;
  width: 100%;
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  box-shadow: var(--shadow-sm);
}

.partner-logo span {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy-900);
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {
  .page-hero {
    padding: 130px 0 70px;
    min-height: 320px;
  }

  .stat-item {
    padding: 20px 24px;
    border-left: none;
  }

  /* .stat-item:nth-of-type(4) {
    border-left: none !important;
  }

  .stat-item:nth-of-type(3) {
    border-left: 1px solid var(--gray-100);
  } */

  .why-wrap {
    padding: 40px 24px;
  }
}

@media (max-width: 767px) {
  .stat-item {
    min-width: 130px;
    padding: 18px 16px;
        border-left: none;

  }

  .stat-number {
    font-size: 1.6rem;
  }

  /* .stat-item:nth-of-type(4) {
    border-left: 1px solid var(--gray-100) !important;
  }

  .stat-item:nth-of-type(3) {
    border-left: none !important;
  } */

  .story-img-wrap img {
    height: 300px;
  }

  .page-hero-deco {
    display: none;
  }
}
