/* ===========================
   Directory - Hero
   =========================== */
.dir-hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #100329 0%, #0F0039 50%, #1a0a3e 100%);
  position: relative;
  overflow: hidden;
}

.dir-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(130, 94, 231, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.dir-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.dir-hero__content {
  flex: 1;
  max-width: 600px;
}

.dir-hero__title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 16px;
}

.dir-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

.dir-hero__checks {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dir-hero__checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.dir-hero__checks li svg {
  flex-shrink: 0;
}

.dir-hero__badge {
  flex-shrink: 0;
}

.dir-hero__badge img {
  width: 220px;
  height: auto;
}

/* ===========================
   Client Logos
   =========================== */
.dir-logos {
  padding: 60px 0;
  background: linear-gradient(180deg, #1a0a3e 0%, #0F0039 100%);
}

.dir-logos__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.dir-logos__grid img {
  height: 36px;
  width: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.dir-logos__grid img:hover {
  opacity: 0.8;
}

/* ===========================
   Team
   =========================== */
.dir-team {
  padding: 100px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.dir-team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.dir-team-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(130, 94, 231, 0.15);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.dir-team-card:hover {
  background: rgba(130, 94, 231, 0.08);
  border-color: rgba(130, 94, 231, 0.3);
  transform: translateY(-4px);
}

.dir-team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid rgba(130, 94, 231, 0.3);
}

.dir-team-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.dir-team-card__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* ===========================
   Testimonials
   =========================== */
.dir-testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, #1C0944 0%, #100329 100%);
}

.dir-testi__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.dir-testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(130, 94, 231, 0.15);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.3s ease;
}

.dir-testi-card:hover {
  background: rgba(130, 94, 231, 0.06);
  border-color: rgba(130, 94, 231, 0.25);
}

.dir-testi-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.dir-testi-card__stars span {
  color: #f5a623;
  font-size: 1.25rem;
}

.dir-testi-card__headline {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.dir-testi-card__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.dir-testi-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dir-testi-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.dir-testi-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.dir-testi-card__role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.dir-testi-card__metrics {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(130, 94, 231, 0.15);
}

.dir-metric {
  display: flex;
  flex-direction: column;
}

.dir-metric__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #825EE7;
}

.dir-metric__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ===========================
   CTA
   =========================== */
.dir-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, #100329 0%, #0F0039 100%);
}

.dir-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.dir-cta__content .section-title {
  margin-bottom: 16px;
}

.dir-cta__booking {
  min-height: 500px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(130, 94, 231, 0.12);
  overflow: hidden;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .dir-hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .dir-hero__title {
    font-size: 2.75rem;
  }

  .dir-hero__checks {
    align-items: center;
  }

  .dir-hero__badge img {
    width: 180px;
  }

  .dir-team__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .dir-testi__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .dir-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .dir-hero {
    padding: 140px 0 60px;
  }

  .dir-hero__title {
    font-size: 2.25rem;
  }

  .dir-hero__inner {
    gap: 40px;
  }

  .dir-logos__grid {
    gap: 32px;
  }

  .dir-logos__grid img {
    height: 28px;
  }

  .dir-team {
    padding: 64px 0;
  }

  .dir-testimonials {
    padding: 64px 0;
  }

  .dir-cta {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .dir-hero__title {
    font-size: 1.85rem;
  }

  .dir-hero__checks li {
    font-size: 0.9rem;
    text-align: left;
  }

  .dir-logos__grid img {
    height: 24px;
  }

  .dir-testi-card {
    padding: 28px 24px;
  }

  .dir-testi-card__metrics {
    flex-direction: column;
    gap: 16px;
  }
}
