/**
 * Membership Pages - Unified Professional Styling
 * Simple, clean design with consistent appearance across all membership types
 */

/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */
.breadcrumb-nav {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
}

.breadcrumb-nav .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  color: #666;
}

.breadcrumb-list li a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-list li a:hover {
  color: #0d4068;
  text-decoration: underline;
}

.breadcrumb-list li .separator {
  margin: 0 10px;
  color: #999;
}

.breadcrumb-list li.active {
  color: #0d4068;
  font-weight: 500;
}

/* ============================================
   MEMBERSHIP PAGE HEADER WITH IMAGE - Smaller Uniform Banner
   ============================================ */
.membership-page-header {
  position: relative;
  background-color: #2c3e50;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
}

.membership-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.membership-page-header .container {
  position: relative;
  z-index: 2;
}

.membership-page-header h1 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px 0;
  text-transform: none;
  letter-spacing: 0.5px;
}

.membership-page-header .subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}

/* ============================================
   MEMBERSHIP DETAILS SECTION
   ============================================ */
.membership-section {
  background: #f9f9f9;
  padding: 50px 0;
}

.membership-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
}

.section-title p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-title .divider {
  width: 60px;
  height: 3px;
  background: #0d4068;
  margin: 20px auto 0;
}

/* ============================================
   INTRO BOX
   ============================================ */
.membership-intro-box {
  background: #fff;
  padding: 30px;
  border-radius: 4px;
  margin-bottom: 40px;
  border-left: 4px solid #0d4068;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.membership-intro-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

/* ============================================
   CARDS GRID
   ============================================ */
.membership-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.membership-card {
  background: #fff;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-top: 3px solid #0d4068;
  transition: box-shadow 0.2s ease;
}

.membership-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.membership-card .card-icon {
  width: 50px;
  height: 50px;
  background: #0d4068;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.membership-card .card-icon i {
  font-size: 22px;
  color: #fff;
}

.membership-card h3 {
  font-size: 20px;
  color: #333;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.membership-card > p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Requirements/Benefits List */
.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li {
  font-size: 14px;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.card-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.card-list li i {
  color: #0d4068;
  margin-right: 10px;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Service/Institution Tags */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.tag-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f5;
  color: #333;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #e0e0e0;
}

.tag-item i {
  font-size: 14px;
  color: #0d4068;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-box {
  background: #fff;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-top: 3px solid #333;
}

.pricing-box h3 {
  font-size: 20px;
  color: #333;
  margin: 0 0 25px 0;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 4px;
  border-left: 3px solid #0d4068;
}

.pricing-row .label {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.pricing-row .amount {
  font-size: 22px;
  color: #333;
  font-weight: 700;
}

.pricing-row .amount span {
  font-size: 13px;
  color: #777;
  font-weight: 400;
}

.pricing-row .note {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
  font-style: italic;
}

.pricing-row-info {
  text-align: right;
}

/* ============================================
   CTA SECTION
   ============================================ */
.membership-cta-section {
  background: #333;
  padding: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}

.membership-cta-section .cta-text h3 {
  font-size: 24px;
  color: #fff;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.membership-cta-section .cta-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.membership-cta-section .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0d4068;
  color: #fff;
  padding: 15px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.membership-cta-section .cta-btn:hover {
  background: #1a5a8a;
  color: #fff;
}

.membership-cta-section .cta-btn i {
  font-size: 18px;
}

/* ============================================
   ADDITIONAL INFO SECTION (Optional)
   ============================================ */
.additional-info {
  background: #fff;
  padding: 35px;
  border-radius: 4px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.additional-info h3 {
  font-size: 20px;
  color: #333;
  margin: 0 0 25px 0;
  font-weight: 600;
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.info-item {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 4px;
}

.info-item .info-icon {
  width: 50px;
  height: 50px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.info-item .info-icon i {
  font-size: 20px;
  color: #0d4068;
}

.info-item h4 {
  font-size: 16px;
  color: #333;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.info-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   SCOPE NOTE (for institutional)
   ============================================ */
.scope-notice {
  margin-top: 15px;
  padding: 12px 15px;
  background: #fff8e1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 3px solid #ffc107;
}

.scope-notice i {
  font-size: 16px;
  color: #f57c00;
}

.scope-notice span {
  font-size: 13px;
  font-weight: 500;
  color: #795548;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
  .membership-cards {
    grid-template-columns: 1fr;
  }
  
  .membership-page-header h1 {
    font-size: 28px;
  }
  
  .membership-cta-section {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  
  .membership-cta-section .cta-btn {
    width: 100%;
    justify-content: center;
  }
  
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .membership-page-header {
    padding: 60px 0;
  }
  
  .membership-page-header h1 {
    font-size: 24px;
  }
  
  .membership-card {
    padding: 25px;
  }
  
  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .pricing-row-info {
    text-align: left;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .breadcrumb-list {
    font-size: 13px;
  }
}
