/* UNIFIED TRUSTWORTHY DESIGN SYSTEM - Based on about.html */

/* Corporate Color Variables */
:root {
  --corporate-primary: #cf173c;
  --corporate-secondary: #8a0f3d;
  --corporate-gradient: linear-gradient(
    0deg,
    rgb(138, 15, 61) 0%,
    rgb(207, 23, 60) 100%
  );
  --text-dark: #1a1c23;
  --text-light: #495057;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-light: #e9ecef;
  --shadow-light: 0 2px 15px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 25px rgba(0, 0, 0, 0.12);
}

/* TRUSTWORTHY SECTION STYLES */
.trustworthy-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.trustworthy-section:nth-child(even) {
  background: var(--bg-white);
}

/* UNIFIED CONTAINER STYLES */
.trustworthy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* UNIFIED SECTION TITLES */
.trustworthy-section .sec-title {
  text-align: center;
  margin-bottom: 60px;
}

.trustworthy-section .sec-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.trustworthy-section .sec-title .sub-title p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* UNIFIED CARD SYSTEM */
.trustworthy-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  text-align: center;
}

.trustworthy-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.trustworthy-card .icon {
  width: 80px;
  height: 80px;
  background: var(--corporate-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 32px;
}

.trustworthy-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.trustworthy-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* UNIFIED BUTTON STYLES */
.trustworthy-btn {
  display: inline-block;
  background: var(--corporate-gradient);
  color: white !important;
  padding: 15px 35px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.trustworthy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 23, 60, 0.3);
  color: white !important;
  text-decoration: none;
}

.trustworthy-btn-outline {
  background: transparent;
  color: var(--corporate-primary) !important;
  border: 2px solid var(--corporate-primary);
}

.trustworthy-btn-outline:hover {
  background: var(--corporate-gradient);
  color: white !important;
}

/* UNIFIED LIST STYLES */
.trustworthy-list {
  list-style: none;
  padding: 0;
}

.trustworthy-list li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

.trustworthy-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--corporate-primary);
  font-size: 14px;
}

/* UNIFIED STATS/FACTS BOXES */
.trustworthy-fact-box {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  height: 100%;
}

.trustworthy-fact-box .icon {
  width: 70px;
  height: 70px;
  background: var(--corporate-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
}

.trustworthy-fact-box h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.trustworthy-fact-box p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

/* UNIFIED TESTIMONIAL STYLES */
.trustworthy-testimonial {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 35px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  position: relative;
}

.trustworthy-testimonial::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: -15px;
  left: 35px;
  background: var(--corporate-gradient);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.trustworthy-testimonial .testimonial-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.trustworthy-testimonial .testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
}

/* UNIFIED PRICING STYLES */
.trustworthy-pricing-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  position: relative;
  height: 100%;
}

.trustworthy-pricing-card.featured {
  border: 2px solid var(--corporate-primary);
  position: relative;
  transform: scale(1.05);
}

.trustworthy-pricing-card.featured::before {
  content: "POPULAR";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--corporate-gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.trustworthy-pricing-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.trustworthy-pricing-card .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--corporate-primary);
  margin-bottom: 30px;
  line-height: 1;
}

.trustworthy-pricing-card .price span {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 400;
}

/* UNIFIED FORM STYLES */
.trustworthy-form-group {
  margin-bottom: 25px;
}

.trustworthy-form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--border-light);
  border-radius: 6px;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: all 0.3s ease;
}

.trustworthy-form-control:focus {
  outline: none;
  border-color: var(--corporate-primary);
  box-shadow: 0 0 0 3px rgba(207, 23, 60, 0.1);
}

.trustworthy-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

/* UNIFIED ALERT STYLES */
.trustworthy-alert {
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 25px;
  position: relative;
  padding-left: 60px;
}

.trustworthy-alert::before {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
}

.trustworthy-alert.alert-info {
  background: #e7f3ff;
  border: 1px solid #b8daff;
  color: #004085;
}

.trustworthy-alert.alert-info::before {
  content: "\f05a";
  color: #0066cc;
}

.trustworthy-alert.alert-warning {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
}

.trustworthy-alert.alert-warning::before {
  content: "\f071";
  color: #e67e22;
}

.trustworthy-alert.alert-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.trustworthy-alert.alert-success::before {
  content: "\f00c";
  color: #28a745;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .trustworthy-section {
    padding: 60px 0;
  }

  .trustworthy-section .sec-title h2 {
    font-size: 32px;
  }

  .trustworthy-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .trustworthy-pricing-card.featured {
    transform: none;
    margin-bottom: 30px;
  }
}
