/* apg.css - Only specialized styles that don't conflict with main styles */
.score-display {
    text-align: center;
    margin: 20px 0;
}

.score-value {
    font-size: 3rem;
    font-weight: bold;
    color: #0056b3;
    margin: 10px 0;
}

.score-description {
    color: #666;
    margin-bottom: 20px;
}

.cash-cover-display {
    background-color: #f0f8ff;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: center;
}

.cover-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0056b3;
    margin: 10px 0;
}

/* Special form styles for APG */
.apg-form-group {
    margin-bottom: 20px;
}

.apg-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.apg-form-group input, 
.apg-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.apg-btn-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* === Trust & Assurance: append this at the END of apg.css === */
.trust-assurance {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 18px 0;              /* small strip */
  overflow: hidden;
}

.trust-assurance .section-header {
  margin-bottom: 10px;         /* keep heading tight */
  text-align: left;            /* match site heading alignment */
}

.trust-assurance .section-header h2 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  font-weight: 700;
  letter-spacing: 0.6px;
}

/* Force horizontal layout and protect from other overrides */
.trust-assurance .trust-grid {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 20px !important;
  flex-wrap: nowrap !important;     /* keep it horizontal on wide screens */
}

/* Each item looks like a small pill/card inside the strip */
.trust-assurance .trust-item {
  flex: 1 1 30%;
  min-width: 180px;
  max-width: 33%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background-color: rgba(255,255,255,0.04);
  box-shadow: none;
  color: var(--white);
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* visible when scrolled into view */
.trust-assurance .trust-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* icon styling */
.trust-assurance .trust-icon {
  font-size: 1.6rem;
  color: var(--secondary-color);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
  animation: trustFloat 3.2s ease-in-out infinite;
}

/* icon float */
@keyframes trustFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* text */
.trust-assurance .trust-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.25;
  color: var(--white);
}

/* mobile - stack vertically */
@media (max-width: 768px) {
  .trust-assurance .section-header { text-align: center; }
  .trust-assurance .trust-grid {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .trust-assurance .trust-item {
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
  }
  .trust-assurance .trust-item p { text-align: left; }
}

