/* ===============================
   About Us & Contact Us Page Styles
   Modern Orange Theme
================================= */

:root {
  --cta: #ff6a00;
  --cta-hover: #e35a00;
  --text: #0b1b2b;
  --muted: #5b6b7a;
  --bg-light: #f9fbfc;
  --border: #e6edf3;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(11, 29, 50, 0.08);
  --background-width: 1500px;
  --container: 1200px;
}

/* ========== CONTAINERS ========== */
.about-container,
.contact-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 102px 20px;
  position: relative;
  z-index: 1;
}

.about-container::before,
.contact-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--background-width);
  height: 100%;
  transform: translateX(-50%);
  background:
    linear-gradient(to right, #FCFEFF 0%, #ffe8cc 50%, #FCFEFF 100%),
    linear-gradient(to bottom, #ffe3d3 0%, #fff 15%, #fff 100%);
  z-index: -1;
  border-radius: 0 0 60px 60px;
}

.about-container > *,
.contact-container > * {
  position: relative;
  z-index: 1;
}

/* ========== HERO SECTIONS ========== */
.about-hero,
.contact-hero {
  text-align: center;
  padding: 0px 20px 20px;
}

.about-hero-badge,
.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff;
  border: 2px solid var(--cta);
  border-radius: 50px;
  color: var(--cta);
  font-size: 0.85em;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.15);
  transition: all 0.3s ease;
}

.about-hero h1,
.contact-hero h1 {
  font-size: 3.5em;
  margin: 0 0 20px 0;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.about-hero h1 .highlight,
.contact-hero h1 .highlight {
  color: var(--cta);
  position: relative;
  display: inline-block;
}

.about-hero h1 .highlight::after,
.contact-hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: -2%;
  width: 104%;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 8'%3E%3Cpath d='M2,4 Q125,2 250,4 T498,4' stroke='%23ff8c3c' stroke-width='4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.85;
}

.about-hero-subtitle,
.contact-hero-subtitle {
  font-size: 1.25em;
  color: #4a4a4a;
  margin: 0 auto;
  font-weight: 400;
  max-width: 700px;
  line-height: 1.7;
}

/* ========== INFO BOXES ========== */
.about-info-box,
.contact-info-box {
  background: #fff;
  border-radius: 24px;
  padding: 50px;
  margin-bottom: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.1);
  transition: all 0.3s ease;
}

.about-info-box:hover,
.contact-info-box:hover {
  box-shadow: 0 16px 50px rgba(255, 106, 0, 0.12);
  border-color: rgba(255, 106, 0, 0.2);
}

.about-section-title,
.contact-section-title {
  font-size: 2.3em;
  text-align: center;
  margin: 0 0 30px 0;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* ========== MISSION CARDS ========== */
.about-mission-section {
  margin-bottom: 40px;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-mission-card {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 100%);
  border: 2px solid #ffd699;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 106, 0, 0.2);
  border-color: var(--cta);
}

.about-mission-icon {
  font-size: 4em;
  margin-bottom: 20px;
}

.about-mission-card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: 800;
  color: var(--text);
}

.about-mission-card p {
  color: #666;
  font-size: 1em;
  line-height: 1.7;
  margin: 0;
}

/* ========== STORY CONTENT ========== */
.about-story-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1em;
  color: #4a4a4a;
  line-height: 1.8;
}

.about-story-content p {
  margin-bottom: 25px;
}

.about-story-content strong {
  color: var(--text);
  font-weight: 700;
}

/* ========== TIMELINE ========== */
.about-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 80px;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cta) 0%, #ff8b1f 100%);
  border-radius: 2px;
}

.about-timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 40px;
}

.about-timeline-item::before {
  content: '';
  position: absolute;
  left: -57px;
  top: 8px;
  width: 20px;
  height: 20px;
  background: var(--cta);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

.about-timeline-year {
  position: absolute;
  left: -75px;
  top: 0;
  font-size: 0.9em;
  font-weight: 800;
  color: var(--cta);
  writing-mode: horizontal-tb;
  white-space: nowrap;
}

.about-timeline-content h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--text);
}

.about-timeline-content p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ========== BENEFITS GRID ========== */
.about-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.about-benefit-card {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 100%);
  border: 2px solid #ffd699;
  border-radius: 18px;
  padding: 35px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.2);
  border-color: var(--cta);
}

.about-benefit-icon {
  font-size: 3.5em;
  margin-bottom: 20px;
  display: block;
}

.about-benefit-card h3 {
  font-size: 1.3em;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text);
}

.about-benefit-card p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.6;
  margin: 0;
}

/* ========== STATS SECTION ========== */
.about-stats-section {
  background: linear-gradient(135deg, var(--cta) 0%, #ff8b1f 100%);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 40px;
  box-shadow: 0 12px 40px rgba(255, 106, 0, 0.3);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-stat-card {
  text-align: center;
  color: #fff;
}

.about-stat-number {
  font-size: 3.5em;
  font-weight: 900;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-stat-label {
  font-size: 1.1em;
  font-weight: 600;
  opacity: 0.95;
}

/* ========== TEAM SECTION ========== */
.about-team-content {
  text-align: center;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-team-card {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 100%);
  border: 2px solid #ffd699;
  border-radius: 18px;
  padding: 35px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.2);
  border-color: var(--cta);
}

.about-team-icon {
  font-size: 4em;
  margin-bottom: 20px;
}

.about-team-card h3 {
  font-size: 1.4em;
  margin-bottom: 5px;
  font-weight: 700;
  color: var(--text);
}

.about-team-role {
  font-size: 0.9em;
  color: var(--cta);
  font-weight: 600;
  margin-bottom: 15px;
}

.about-team-card p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.6;
  margin: 0;
}

/* ========== CTA SECTIONS ========== */
.about-cta-section,
.contact-cta-section {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border: 2px solid #ffb74d;
  border-radius: 24px;
  padding: 60px 40px;
  margin: 45px 0;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255, 183, 77, 0.2);
}

.about-cta-section h2,
.contact-cta-section h2 {
  font-size: 2.5em;
  margin: 0 0 15px 0;
  font-weight: 800;
  color: var(--text);
}

.about-cta-section p,
.contact-cta-section p {
  font-size: 1.2em;
  color: #666;
  margin: 0 0 35px 0;
}

.contact-cta-icon {
  font-size: 4em;
  margin-bottom: 20px;
}

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

.about-cta-btn,
.contact-cta-btn {
  padding: 16px 40px;
  background: #fff;
  color: var(--cta);
  border: 2px solid var(--cta);
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.about-cta-btn:hover,
.contact-cta-btn:hover {
  background: var(--cta);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.3);
  text-decoration: none;
}

.about-cta-btn-primary,
.contact-cta-btn-primary {
  background: linear-gradient(135deg, var(--cta) 0%, #ff8b1f 100%);
  border-color: var(--cta);
  color: #fff;
}

.about-cta-btn-primary:hover,
.contact-cta-btn-primary:hover {
  background: linear-gradient(135deg, #e35a00 0%, var(--cta) 100%);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.4);
}

/* ========== TRUST SECTIONS ========== */
.about-trust-section,
.contact-trust-section {
  background: #fff;
  border-radius: 20px;
  padding: 45px;
  margin-bottom: 35px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.08);
  text-align: center;
}

.about-trust-section h3,
.contact-trust-section h3 {
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 1.5em;
  color: var(--text);
}

.about-trust-logos,
.contact-trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-trust-logos img,
.contact-trust-logos img {
  height: 36px;
  opacity: 0.8;
  filter: grayscale(100%) brightness(0.9);
  transition: all 0.3s ease;
}

.about-trust-logos img:hover,
.contact-trust-logos img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.06);
}

/* ========== CONTACT METHODS ========== */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.contact-method-card {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 100%);
  border: 2px solid #ffd699;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.contact-method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 106, 0, 0.2);
  border-color: var(--cta);
}

.contact-method-primary {
  background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
  border: 3px solid var(--cta);
  box-shadow: 0 12px 40px rgba(255, 106, 0, 0.2);
}

.contact-method-icon {
  font-size: 4em;
  margin-bottom: 20px;
}

.contact-method-card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: 800;
  color: var(--text);
}

.contact-method-card p {
  color: #666;
  font-size: 1em;
  line-height: 1.7;
  margin: 0 0 25px 0;
}

.contact-method-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #fff;
  color: var(--cta);
  border: 2px solid var(--cta);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method-btn:hover {
  background: var(--cta);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.25);
  text-decoration: none;
}

.contact-method-btn-primary {
  background: linear-gradient(135deg, var(--cta) 0%, #ff8b1f 100%);
  border-color: var(--cta);
  color: #fff;
}

.contact-method-btn-primary:hover {
  background: linear-gradient(135deg, #e35a00 0%, var(--cta) 100%);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.35);
}

.contact-method-meta {
  margin-top: 20px;
}

.contact-method-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--cta);
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 700;
}

.contact-method-badge-success {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
}

/* ========== HELP CARDS ========== */
.contact-help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.contact-help-card {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 100%);
  border: 2px solid #ffd699;
  border-radius: 18px;
  padding: 35px 30px;
  transition: all 0.3s ease;
}

.contact-help-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.2);
  border-color: var(--cta);
}

.contact-help-icon {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-align: center;
}

.contact-help-card h3 {
  font-size: 1.4em;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.contact-help-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.contact-help-card li {
  padding: 8px 0;
  color: #666;
  font-size: 0.95em;
  border-bottom: 1px solid rgba(255, 106, 0, 0.1);
}

.contact-help-card li:last-child {
  border-bottom: none;
}

.contact-help-card li::before {
  content: "✓ ";
  color: var(--cta);
  font-weight: bold;
  margin-right: 8px;
}

.contact-help-link {
  display: block;
  text-align: center;
  padding: 12px 24px;
  background: #fff;
  color: var(--cta);
  border: 2px solid var(--cta);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.contact-help-link:hover {
  background: var(--cta);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ========== SUPPORT CARDS ========== */
.contact-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.contact-support-card {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 100%);
  border: 2px solid #ffd699;
  border-radius: 18px;
  padding: 35px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.2);
  border-color: var(--cta);
}

.contact-support-icon {
  font-size: 3.5em;
  margin-bottom: 20px;
}

.contact-support-card h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--text);
}

.contact-support-card p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.7;
  margin: 0;
}

/* ========== RESOURCE CARDS ========== */
.contact-resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.contact-resource-card {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 100%);
  border: 2px solid #ffd699;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.2);
  border-color: var(--cta);
}

.contact-resource-icon {
  font-size: 3em;
  margin-bottom: 16px;
}

.contact-resource-card h3 {
  font-size: 1.2em;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text);
}

.contact-resource-card p {
  color: #666;
  font-size: 0.9em;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.contact-resource-link {
  color: var(--cta);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95em;
  transition: all 0.2s ease;
}

.contact-resource-link:hover {
  color: var(--cta-hover);
  text-decoration: underline;
}

/* ========== CONTACT FORM ========== */
.contact-form-section {
  margin: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start; /* ensure both columns align to top */
}

/* Make image column sticky so it stays in view while the form scrolls */
.contact-image-container {
  position: sticky;
  top: 100px;            /* adjust how far from top it sticks */
  align-self: start;
  text-align: center;
  /* remove transition that fights rAF-based transform updates */
  transition: none;
  will-change: transform;
  margin-bottom: 30px;
}
.contact-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.1);
}

.contact-form {
  margin-top: 30px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-group label {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-size: 0.95em;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: var(--cta);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form-btn {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, var(--cta) 0%, #ff8b1f 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form-btn:hover {
  background: linear-gradient(135deg, #e35a00 0%, var(--cta) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.3);
}

.contact-form-result {
  margin-top: 20px;
}

/* ========== BUSINESS INFO ========== */
.contact-business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.contact-business-card {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 100%);
  border: 2px solid #ffd699;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-business-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.2);
  border-color: var(--cta);
}

.contact-business-card h3 {
  font-size: 1.3em;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--text);
}

.contact-business-card p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.8;
  margin: 0;
}

.contact-business-card a {
  color: var(--cta);
  text-decoration: none;
  font-weight: 600;
}

.contact-business-card a:hover {
  text-decoration: underline;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-mission-grid,
  .about-benefits-grid,
  .about-stats-grid,
  .about-team-grid,
  .contact-methods-grid,
  .contact-support-grid,
  .contact-business-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-container,
  .contact-container {
    padding: 40px 15px;
  }

  .about-hero h1,
  .contact-hero h1 {
    font-size: 2.2em;
  }

  .about-hero-subtitle,
  .contact-hero-subtitle {
    font-size: 1.1em;
  }

  .about-mission-grid,
  .about-benefits-grid,
  .about-stats-grid,
  .about-team-grid,
  .contact-methods-grid,
  .contact-help-grid,
  .contact-support-grid,
  .contact-resources-grid,
  .contact-business-grid {
    grid-template-columns: 1fr;
  }

  .about-info-box,
  .contact-info-box,
  .contact-form-container {
    padding: 30px 20px;
  }

  .about-timeline {
    padding-left: 60px;
  }

  .about-timeline-year {
    font-size: 0.75em;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .about-cta-buttons,
  .contact-cta-buttons {
    flex-direction: column;
  }

  .about-cta-btn,
  .contact-cta-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about-hero h1,
  .contact-hero h1 {
    font-size: 1.8em;
  }

  .about-section-title,
  .contact-section-title {
    font-size: 1.6em;
  }

  .about-stat-number {
    font-size: 2.5em;
  }
}

/* ========== SUPPORT STATS BANNER ========== */
.support-stats-banner {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-lighter) 100%);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  margin-bottom: 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  font-size: 3em;
}

.stat-content {
  text-align: left;
}

.stat-number {
  font-size: 2.5em;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.95em;
  color: var(--muted);
  font-weight: 600;
}

.stat-divider {
  width: 2px;
  height: 80px;
  background: rgba(255, 106, 0, 0.2);
}