/* =======================================
   JOIN MISSION PAGE SPECIFIC STYLES
   ======================================= */

.mission-hero {
  background: linear-gradient(135deg, #061020 0%, #0a1931 100%);
  padding: 80px 5%;
  text-align: center;
  color: #ffffff;
  border-bottom: 2px solid rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
}

.mission-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
  z-index: 1;
}

.mission-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.banner-tag {
  color: #d4af37;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.05);
}

.mission-hero h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.mission-hero h1 span {
  color: #d4af37;
}

.mission-hero p {
  font-size: 17px;
  color: #cccccc;
  line-height: 1.6;
}

/* INFO BOX & PILLARS */
.mission-info-box {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  margin-bottom: 50px;
}

.mission-info-box h2 {
  font-size: 28px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.mission-info-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 20px;
}

.pillars-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 35px;
}

.pillar-card {
  background: #fcfbfa;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.08);
}

.p-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.pillar-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 0;
}

/* CTA ACTIONS SECTION */
.cta-wrapper {
  text-align: center;
  margin-top: 20px;
}

.cta-wrapper h3 {
  font-size: 32px;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.cta-desc {
  font-size: 16px;
  color: #666666;
  margin-bottom: 40px;
}

.cta-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.action-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.gold-color {
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
}

.red-color {
  background: rgba(235, 87, 87, 0.1);
  color: #eb5757;
}

.green-color {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.action-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}

.action-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #555555;
  margin-bottom: 30px;
  flex-grow: 1;
}

.btn-action {
  display: inline-block;
  text-align: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-gold {
  background: #000000;
  color: #d4af37;
  border: 1px solid #000000;
}

.btn-gold:hover {
  background: #d4af37;
  color: #000000;
  border-color: #d4af37;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-red {
  background: rgba(235, 87, 87, 0.1);
  color: #eb5757;
  border: 1px solid rgba(235, 87, 87, 0.2);
}

.btn-red:hover {
  background: #eb5757;
  color: #ffffff;
  border-color: #eb5757;
  box-shadow: 0 4px 15px rgba(235, 87, 87, 0.3);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border: 1px solid #25d366;
}

.btn-whatsapp:hover {
  background: #20ba59;
  border-color: #20ba59;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* RESPONSIVE DESIGN */
@media(max-width: 768px) {
  .mission-hero {
    padding: 60px 5%;
  }
  
  .mission-hero h1 {
    font-size: 34px;
  }
  
  .mission-hero p {
    font-size: 15px;
  }
  
  .mission-info-box {
    padding: 24px;
  }
  
  .mission-info-box h2 {
    font-size: 24px;
  }
  
  .cta-wrapper h3 {
    font-size: 26px;
  }
  
  .cta-buttons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .action-card {
    padding: 24px;
  }
}
