/* ========================================
   FACILITI x quickprism Partnership Page Styles
   ======================================== */

/* ==================== Partnership Banner ==================== */
.qp-partnership-banner {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #282961 0%, #1f1f4d 50%, #2d3561 100%);
  position: relative;
  overflow: hidden;
}

.qp-partnership-banner::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.qp-partnership-banner::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(85, 132, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.qp-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.qp-banner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.qp-logo-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px 40px;
}

.qp-partnership-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: qp-pulse 2s infinite;
}

.qp-partnership-icon i {
  font-size: 32px;
  color: #ffffff;
}

@keyframes qp-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

.qp-banner-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

/* ==================== Main Content Section ==================== */
.qp-main-content {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.qp-content-block {
  margin-bottom: 100px;
}

.qp-content-block:last-child {
  margin-bottom: 0;
}

.qp-content-block-alt {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 10px 40px rgba(40, 41, 97, 0.08);
}

.qp-content-header {
  text-align: center;
  margin-bottom: 50px;
}

.qp-heading-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #5584ff 0%, #ff6b35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 25px rgba(85, 132, 255, 0.3);
}

.qp-heading-icon i {
  font-size: 32px;
  color: #ffffff;
}

.qp-section-title {
  font-size: 38px;
  font-weight: 700;
  color: #282961;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.qp-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #5584ff 0%, #ff6b35 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.qp-intro-box {
  background: linear-gradient(
    135deg,
    rgba(85, 132, 255, 0.05) 0%,
    rgba(255, 107, 53, 0.05) 100%
  );
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 50px;
  border-left: 5px solid #5584ff;
  border-right: 5px solid #ff6b35;
}

.qp-intro-text {
  font-size: 17px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 20px;
}

.qp-intro-text:last-child {
  margin-bottom: 0;
}

.qp-features-title {
  margin-bottom: 40px;
}

.qp-features-title h3 {
  font-size: 24px;
  font-weight: 600;
  color: #282961;
  text-align: center;
  line-height: 1.5;
}

/* Features Grid */
.qp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.qp-features-grid .col-md-4 {
  width: 100%;
  padding: 0;
}

.qp-feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(40, 41, 97, 0.1);
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.qp-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #5584ff 0%, #ff6b35 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.qp-feature-card:hover {
  border-color: #5584ff;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(85, 132, 255, 0.2);
}

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

.qp-feature-number {
  font-size: 48px;
  font-weight: 800;
  color: #5584ff;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 15px;
}

.qp-feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(85, 132, 255, 0.1) 0%,
    rgba(255, 107, 53, 0.1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.qp-feature-card:hover .qp-feature-icon {
  background: linear-gradient(135deg, #5584ff 0%, #ff6b35 100%);
  transform: scale(1.1) rotate(5deg);
}

.qp-feature-icon i {
  font-size: 32px;
  color: #5584ff;
  transition: color 0.4s ease;
}

.qp-feature-card:hover .qp-feature-icon i {
  color: #ffffff;
}

.qp-feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #282961;
  margin: 0 0 15px;
  line-height: 1.3;
}

.qp-feature-text {
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  margin: 0;
  flex-grow: 1;
}

/* Differentiators Grid */
.qp-differentiators-grid {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.qp-differentiators-grid .col-md-6 {
  width: 100%;
  padding: 0;
}

.qp-diff-card {
  background: linear-gradient(
    135deg,
    rgba(85, 132, 255, 0.03) 0%,
    rgba(255, 107, 53, 0.03) 100%
  );
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 0;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  border-left: 4px solid #5584ff;
  transition: all 0.3s ease;
  height: 100%;
}

.qp-diff-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(85, 132, 255, 0.15);
  border-left-color: #ff6b35;
}

.qp-diff-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #5584ff 0%, #ff6b35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(85, 132, 255, 0.3);
}

.qp-diff-icon i {
  font-size: 26px;
  color: #ffffff;
}

.qp-diff-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.qp-diff-title {
  font-size: 20px;
  font-weight: 700;
  color: #282961;
  margin: 0 0 10px;
  flex-shrink: 0;
}

.qp-diff-text {
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  margin: 0;
  flex-grow: 1;
}

/* Conclusion Box */
.qp-conclusion-box {
  background: linear-gradient(135deg, #282961 0%, #1f1f4d 100%);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.qp-conclusion-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.qp-conclusion-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  z-index: 2;
}

.qp-conclusion-icon i {
  font-size: 32px;
  color: #4caf50;
}

.qp-conclusion-text {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  position: relative;
  z-index: 2;
}

/* ==================== CTA Section ==================== */
.qp-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #282961 0%, #1f1f4d 50%, #ff6b35 100%);
  position: relative;
  overflow: hidden;
}

.qp-cta::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.qp-cta::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(85, 132, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.qp-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.qp-cta-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.qp-cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.qp-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.qp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.qp-btn-primary {
  background: #ffffff;
  color: #282961;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.qp-btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  color: #282961;
  text-decoration: none;
}

.qp-btn-primary i {
  transition: transform 0.3s ease;
}

.qp-btn-primary:hover i {
  transform: translateX(5px);
}

.qp-btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.qp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-3px);
  color: #ffffff;
  text-decoration: none;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 991px) {
  .qp-partnership-banner {
    padding: 60px 0 50px;
  }

  .qp-banner-title {
    font-size: 36px;
  }

  .qp-brand-name {
    font-size: 28px;
  }

  .qp-main-content {
    padding: 70px 0;
  }

  .qp-content-block {
    margin-bottom: 70px;
  }

  .qp-content-block-alt {
    padding: 40px;
  }

  .qp-section-title {
    font-size: 32px;
  }

  .qp-features-grid {
    grid-template-columns: 1fr;
  }

  .qp-cta {
    padding: 70px 0;
  }

  .qp-cta-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .qp-partnership-banner {
    padding: 50px 0 40px;
  }

  .qp-banner-title {
    font-size: 28px;
  }

  .qp-brand-name {
    font-size: 24px;
  }

  .qp-banner-logos {
    gap: 20px;
  }

  .qp-logo-item {
    padding: 15px 25px;
  }

  .qp-partnership-icon {
    width: 55px;
    height: 55px;
  }

  .qp-partnership-icon i {
    font-size: 24px;
  }

  .qp-main-content {
    padding: 50px 0;
  }

  .qp-content-block {
    margin-bottom: 50px;
  }

  .qp-content-block-alt {
    padding: 30px 20px;
  }

  .qp-section-title {
    font-size: 26px;
  }

  .qp-intro-box {
    padding: 30px 20px;
  }

  .qp-feature-card {
    padding: 30px 20px;
  }

  .qp-differentiators-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .qp-diff-card {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
  }

  .qp-cta {
    padding: 50px 0;
  }

  .qp-cta-title {
    font-size: 28px;
  }

  .qp-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .qp-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .qp-banner-title {
    font-size: 24px;
  }

  .qp-section-title {
    font-size: 24px;
  }

  .qp-cta-title {
    font-size: 24px;
  }

  .qp-feature-title,
  .qp-diff-title {
    font-size: 20px;
  }
}
