/* =========================
   PAGE BANNER (PREMIUM IMAGE)
========================= */
.page-banner {
  margin-top: -80px;
  border-radius: 8px;
  position: relative;
  padding: 140px 0 100px;
  color: var(--white);
  overflow: hidden;
}

/* background image */
.banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.1);
}

/* gradient overlay */
.page-banner::after {
  opacity: 0.5;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(73, 50, 153, 0.85),
    rgba(220, 48, 32, 0.75)
  );
  z-index: 1;
}

/* subtle light blobs */
.page-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

/* content */
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

/* breadcrumb - improved glass */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);

  padding: 10px 18px;
  border-radius: 50px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumb a {
  color: var(--white);
  opacity: 0.85;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  opacity: 0.7;
}

.breadcrumb .active {
  opacity: 1;
  font-weight: var(--fw-medium);
}

/* title */
.banner-title {
  font-size: clamp(34px, 5vw, 52px);
  color: var(--white);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.5px;
}

/* subtitle */
.banner-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-lg);
  line-height: 1.7;
}

/* mobile polish */
@media (max-width: 768px) {
  .page-banner {
    padding: 110px 0 80px;
  }

  .banner-title {
    font-size: 30px;
  }

  .banner-subtitle {
    font-size: var(--fs-md);
  }
}

/* =========================
   CLIENTS SECTION (LUXURY LIGHT)
========================= */
.clients-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

/* Header */
.clients-header h2 {
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.clients-header p {
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto;
  color: var(--gray-500);
}

/* Grid */
.clients-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 45px;
}

/* Card */
.client-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px;
  height: 170px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);

  transition: all 0.35s ease;
  position: relative;
}

/* Soft premium gradient highlight */
.client-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(92,160,197,0.08), transparent);
  opacity: 0;
  transition: 0.4s;
}

/* Hover */
.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.client-card:hover::before {
  opacity: 1;
}

/* Logo - CLEAN (NO BLACK FILTER) */
.client-card img {
  max-height: 200px;
  width: auto;
  object-fit: contain;

  /* REMOVE dull grayscale */
  filter: none;
  opacity: 0.9;

  transition: all 0.35s ease;
}

/* Slight zoom only */
.client-card:hover img {
  transform: scale(1.08);
  opacity: 1;
}

/* =========================
   RESPONSIVE FIX
========================= */

/* Tablet */
@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 25px;
  }

  .client-card {
    height: 140px;
    padding: 25px;
  }

  .client-card img {
    max-height: 100px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr); /* still 2 per row */
    gap: 18px;
  }

  .client-card {
    height: 120px; /* reduced from 170/200 */
    padding: 20px;
    border-radius: 14px;
  }

  .client-card img {
    max-height: 50px; /* scaled down nicely */
  }
}