/* Associates & Partners Page Styles */

/* Stats banner under About section */
.assoc-stats-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  margin: 25px 0;
  text-align: center;
}
.assoc-stats-title { color: #fff; margin-bottom: 20px; font-size: 22px; }
.assoc-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 20px 0; }
.assoc-stats-item { text-align: center; }
.assoc-stats-value { font-size: 28px; font-weight: 700; color: #ffd700; margin-bottom: 5px; }
.assoc-stats-label { font-size: 14px; color: #fff; }
.assoc-about-text { font-size: 16px; line-height: 1.6; color: #555; margin-top: 20px; }

/* Section header */
.assoc-header { text-align: center; margin-bottom: 60px; }
.assoc-title { font-size: 36px; color: #333; margin-bottom: 20px; font-weight: 700; }
.assoc-subtitle { font-size: 18px; color: #666; max-width: 800px; margin: 0 auto; line-height: 1.6; }

/* Programs section */
.assoc-programs-section { background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); padding: 80px 0; }
.assoc-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-bottom: 50px; }
.assoc-card {
  background: #fff;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.assoc-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.assoc-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 5px; }
.assoc-card-head { text-align: center; margin-bottom: 25px; }
.assoc-icon-circle { width: 80px; height: 80px; border-radius: 50%; display:flex; align-items:center; justify-content:center; margin: 0 auto 20px; color:#fff; }
.assoc-card-title { color: #333; font-size: 24px; margin-bottom: 15px; font-weight: 700; }
.assoc-features { list-style: none; padding: 0; margin-bottom: 25px; }
.assoc-feature { padding: 8px 0; color: #666; border-bottom: 1px solid #eee; }
.assoc-feature:last-child { border-bottom: none; }
.assoc-feature i { color: #28a745; margin-right: 10px; }
.assoc-commission { font-weight: 700; font-size: 18px; margin-bottom: 15px; }
.btn-assoc { color: #fff; padding: 12px 25px; border-radius: 25px; text-decoration: none; font-weight: 600; display: inline-block; }

/* Accent colors */
.accent-blue .assoc-icon-circle { background: linear-gradient(135deg, #667eea, #764ba2); }
.accent-blue .assoc-commission { color: #667eea; }
.accent-blue.assoc-card::before { background: linear-gradient(135deg, #667eea, #764ba2); }
.btn-blue { background: linear-gradient(135deg, #667eea, #764ba2); }

.accent-green .assoc-icon-circle { background: linear-gradient(135deg, #28a745, #20c997); }
.accent-green .assoc-commission { color: #28a745; }
.accent-green.assoc-card::before { background: linear-gradient(135deg, #28a745, #20c997); }
.btn-green { background: linear-gradient(135deg, #28a745, #20c997); }

.accent-orange .assoc-icon-circle { background: linear-gradient(135deg, #dc3545, #fd7e14); }
.accent-orange .assoc-commission { color: #dc3545; }
.accent-orange.assoc-card::before { background: linear-gradient(135deg, #dc3545, #fd7e14); }
.btn-orange { background: linear-gradient(135deg, #dc3545, #fd7e14); }

.accent-purple .assoc-icon-circle { background: linear-gradient(135deg, #6f42c1, #8e2de2); }
.accent-purple .assoc-commission { color: #6f42c1; }
.accent-purple.assoc-card::before { background: linear-gradient(135deg, #6f42c1, #8e2de2); }
.btn-purple { background: linear-gradient(135deg, #6f42c1, #8e2de2); }

.accent-cyan .assoc-icon-circle { background: linear-gradient(135deg, #17a2b8, #138496); }
.accent-cyan .assoc-commission { color: #17a2b8; }
.accent-cyan.assoc-card::before { background: linear-gradient(135deg, #17a2b8, #138496); }
.btn-cyan { background: linear-gradient(135deg, #17a2b8, #138496); }

.accent-amber .assoc-icon-circle { background: linear-gradient(135deg, #ffc107, #fd7e14); }
.accent-amber .assoc-commission { color: #ffc107; }
.accent-amber.assoc-card::before { background: linear-gradient(135deg, #ffc107, #fd7e14); }
.btn-amber { background: linear-gradient(135deg, #ffc107, #fd7e14); color: #333; }

/* Benefits */
.assoc-benefits-section { padding: 80px 0; background: #fff; }
.assoc-benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.assoc-benefit { text-align: center; padding: 30px; }
.assoc-icon-lg { width: 100px; height: 100px; border-radius: 50%; display:flex; align-items:center; justify-content:center; margin: 0 auto 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); color:#fff; }
.assoc-benefit h4 { color:#333; font-size:22px; margin-bottom:15px; }
.assoc-benefit p { color:#666; line-height:1.6; }

.icon-blue { background: linear-gradient(135deg, #667eea, #764ba2); box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3); }
.icon-green { background: linear-gradient(135deg, #28a745, #20c997); box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3); }
.icon-orange { background: linear-gradient(135deg, #dc3545, #fd7e14); box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3); }
.icon-purple { background: linear-gradient(135deg, #6f42c1, #8e2de2); box-shadow: 0 10px 30px rgba(111, 66, 193, 0.3); }
.icon-cyan { background: linear-gradient(135deg, #17a2b8, #138496); box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3); }
.icon-amber { background: linear-gradient(135deg, #ffc107, #fd7e14); box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3); color: #333; }

/* Application process */
.assoc-process-section { padding: 80px 0; background: #f8f9fa; }
.assoc-process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 50px; }
.assoc-process-step { text-align: center; position: relative; }
.assoc-step-circle { width: 80px; height: 80px; border-radius: 50%; display:flex; align-items:center; justify-content:center; margin: 0 auto 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); color:#fff; font-size:32px; font-weight:700; }
.assoc-step-title { color:#333; margin-bottom: 15px; font-size: 18px; }
.assoc-step-text { color:#666; line-height:1.6; }

.step-blue { background: linear-gradient(135deg, #667eea, #764ba2); box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3); }
.step-green { background: linear-gradient(135deg, #28a745, #20c997); box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3); }
.step-orange { background: linear-gradient(135deg, #dc3545, #fd7e14); box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3); }
.step-purple { background: linear-gradient(135deg, #6f42c1, #8e2de2); box-shadow: 0 10px 30px rgba(111, 66, 193, 0.3); }

/* Application form section */
.assoc-application-section { padding: 60px 0; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); position: relative; overflow: hidden; }
.assoc-bg-animation { position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat; animation: assoc-float 20s linear infinite; }
@keyframes assoc-float { 0% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-20px) rotate(180deg); } 100% { transform: translateY(0) rotate(360deg); } }

.assoc-app-wrap { position: relative; z-index: 2; }
.assoc-chip { display: inline-block; background: rgba(255,255,255,0.1); padding: 12px 24px; border-radius: 50px; margin-bottom: 20px; backdrop-filter: blur(10px); color: #fff; }
.assoc-app-title { font-size: 36px; margin-bottom: 15px; font-weight: 700; color: #fff; text-align: center; }
.assoc-app-subtitle { font-size: 18px; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto; line-height: 1.6; text-align: center; }

.assoc-form-card { background: #fff; border-radius: 24px; padding: 0; box-shadow: 0 25px 50px rgba(0,0,0,0.2); overflow: hidden; backdrop-filter: blur(20px); }
.assoc-progress { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); padding: 20px 40px; border-bottom: 1px solid #e9ecef; display:flex; align-items:center; justify-content:center; gap: 15px; }
.assoc-progress .step { display:flex; align-items:center; gap: 8px; color: #adb5bd; }
.assoc-progress .step.is-active { color: #667eea; }
.assoc-progress .dot { width: 32px; height: 32px; border-radius: 50%; background: #e9ecef; color: #6c757d; display:flex; align-items:center; justify-content:center; font-size: 14px; font-weight: 700; }
.assoc-progress .step.is-active .dot { background: #667eea; color: #fff; }
.assoc-progress .bar { height: 2px; background: #e9ecef; width: 80px; position: relative; }
.assoc-progress .bar .fill { position:absolute; height: 100%; left:0; top:0; width: 0%; background: #667eea; transition: width .5s ease; }

.assoc-form-body { padding: 40px; }
.assoc-form { max-width: 800px; margin: 0 auto; }
.assoc-step { display: none; }
.assoc-step.is-active { display: block; }
.assoc-step-header { text-align:center; margin-bottom: 35px; }
.assoc-step-title { color:#333; font-size:24px; margin-bottom:10px; font-weight:600; }
.assoc-step-subtitle { color:#666; font-size:16px; }
.assoc-grid-2 { display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.assoc-input, .assoc-select, .assoc-textarea { width: 100%; padding: 16px 20px; border: 2px solid #e9ecef; border-radius: 12px; font-size: 15px; transition: all .3s ease; background: #f8f9fa; box-sizing: border-box; }
.assoc-input:focus, .assoc-select:focus, .assoc-textarea:focus { border-color: #667eea; background: #fff; outline: none; }
.assoc-actions { display:flex; justify-content: space-between; margin-top: 30px; gap: 10px; flex-wrap: wrap; }
.btn-secondary { background: #f8f9fa; color: #666; padding: 14px 30px; border: 2px solid #e9ecef; border-radius: 50px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all .3s ease; }
.btn-primary { background: linear-gradient(135deg, #667eea, #764ba2); color: #fff; padding: 14px 40px; border: none; border-radius: 50px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all .3s ease; box-shadow: 0 8px 20px rgba(102,126,234,0.3); }
.btn-submit { background: linear-gradient(135deg, #28a745, #20c997); color: #fff; padding: 16px 50px; border: none; border-radius: 50px; font-size: 18px; font-weight: 700; cursor: pointer; transition: all .3s ease; box-shadow: 0 10px 25px rgba(40,167,69,0.4); }

#successMessage { display: none; }
.assoc-success { background: #fff; border-radius: 24px; padding: 40px; text-align: center; box-shadow: 0 25px 50px rgba(0,0,0,0.2); margin-top: 30px; }
.assoc-success .icon { width: 80px; height: 80px; background: linear-gradient(135deg, #28a745, #20c997); border-radius: 50%; display:flex; align-items:center; justify-content:center; margin: 0 auto 25px; color:#fff; font-size:36px; }
.assoc-success h3 { color:#333; font-size:28px; margin-bottom:15px; font-weight:700; }
.assoc-success p { color:#666; font-size:16px; margin-bottom:25px; line-height:1.6; }
.assoc-success .note { background: #f8f9fa; padding: 20px; border-radius: 12px; margin: 20px 0; }
.assoc-success .note p { color:#333; margin: 0; font-weight: 600; }
.assoc-success .note #confirmEmail { color: #667eea; }

/* FAQ */
.faq-section { padding: 80px 0; background: #fff; }
.faq-grid { display: grid; gap: 20px; }
.faq-card { background: #f8f9fa; border-radius: 12px; padding: 25px; border-left: 5px solid #667eea; }
.faq-card h4 { color:#333; margin-bottom:15px; font-size:18px; }
.faq-card p { color:#666; line-height:1.6; margin: 0; }
.faq-accent-blue { border-left-color: #667eea; }
.faq-accent-green { border-left-color: #28a745; }
.faq-accent-red { border-left-color: #dc3545; }
.faq-accent-purple { border-left-color: #6f42c1; }
.faq-accent-cyan { border-left-color: #17a2b8; }
.faq-accent-amber { border-left-color: #ffc107; }

/* Contact */
.assoc-contact-section { padding: 80px 0; background: linear-gradient(135deg, #0a2540 0%, #153c63 100%); color: #fff; }
.assoc-contact-header { text-align:center; margin-bottom: 50px; }
.assoc-contact-title { font-size: 36px; color:#fff; margin-bottom: 20px; font-weight: 700; }
.assoc-contact-sub { font-size: 18px; color: rgba(255,255,255,0.9); max-width: 800px; margin: 0 auto; line-height: 1.6; }
.assoc-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-bottom: 50px; }
.assoc-contact-card { text-align:center; background: rgba(255,255,255,0.1); padding: 35px; border-radius: 15px; backdrop-filter: blur(10px); }
.assoc-contact-icon { width: 80px; height: 80px; background: rgba(255,255,255,0.2); border-radius: 50%; display:flex; align-items:center; justify-content:center; margin: 0 auto 20px; color:#fff; font-size:32px; }
.assoc-contact-card h4 { color:#fff; margin-bottom: 15px; font-size: 20px; }
.assoc-contact-card p { color: rgba(255,255,255,0.9); margin-bottom: 15px; }
.assoc-contact-link { color: #ffd700; text-decoration:none; font-weight: 600; font-size: 18px; }

.assoc-hotline { text-align:center; background: rgba(255,255,255,0.1); padding: 40px; border-radius: 15px; backdrop-filter: blur(10px); }
.assoc-hotline h3 { color:#fff; margin-bottom:20px; font-size:24px; }
.assoc-hotline p { color: rgba(255,255,255,0.9); margin-bottom: 25px; font-size: 16px; }
.assoc-hotline-actions { display:flex; justify-content:center; gap: 20px; flex-wrap: wrap; }
.assoc-hotline-btn { padding: 15px 30px; border-radius: 25px; text-decoration:none; font-weight: 600; display:inline-flex; align-items:center; gap: 10px; }
.assoc-hotline-btn.call { background: #ffd700; color: #333; }
.assoc-hotline-btn.whatsapp { background: #25d366; color: #fff; }

/* Utilities */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.ml-8 { margin-left: 8px; }
.mr-8 { margin-right: 8px; }
.mr-10 { margin-right: 10px; }
.icon-36 { font-size: 36px; }
.icon-40 { font-size: 40px; }
/* Simple grid utility used in form */
.grid-gap-25 { display: grid; gap: 25px; }
/* Flex utility for terms row */
.flex-start-gap-12 { display: flex; align-items: flex-start; gap: 12px; }

/* Alerts */
.assoc-alert { padding: 15px; border-radius: 8px; margin-bottom: 25px; border: 1px solid transparent; display: flex; align-items: center; gap: 8px; }
.assoc-alert-success { background: #d4edda; color: #155724; border-color: #c3e6cb; }
.assoc-alert-error { background: #f8d7da; color: #721c24; border-color: #f5c6cb; }
.assoc-errors-list { margin: 10px 0 0 20px; }

/* CTA card */
.assoc-cta-card { background: #fff; padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; }
.assoc-btn-group { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.btn-outline { background: transparent; color: #667eea; padding: 15px 30px; border: 2px solid #667eea; border-radius: 25px; text-decoration: none; font-weight: 600; transition: all 0.3s; display: inline-block; }

/* Application header and review */
.assoc-app-header { text-align: center; margin-bottom: 50px; color: #fff; }
.assoc-review-summary { background: #f8f9fa; padding: 25px; border-radius: 12px; margin-bottom: 30px; border: 1px solid #e9ecef; }
.assoc-summary-title { color: #333; margin-bottom: 20px; font-weight: 600; }
.assoc-summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; font-size: 14px; }
.assoc-terms { background: rgba(102, 126, 234, 0.05); padding: 20px; border-radius: 12px; border-left: 4px solid #667eea; margin-bottom: 25px; }
.assoc-checkbox-lg { margin-top: 4px; transform: scale(1.2); }
.assoc-terms-label { color: #333; font-size: 14px; line-height: 1.6; cursor: pointer; }
.assoc-link { color: #667eea; text-decoration: underline; }

/* Contact address */
.assoc-contact-address { color: #ffd700; font-weight: 600; font-size: 14px; line-height: 1.4; }

/* Success Stories */
.assoc-stories-section { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: 80px 0; color: #fff; }
.assoc-stories-header { text-align: center; margin-bottom: 60px; }
.assoc-stories-title { font-size: 36px; color: #fff; margin-bottom: 20px; font-weight: 700; }
.assoc-stories-subtitle { font-size: 18px; color: rgba(255,255,255,0.9); max-width: 800px; margin: 0 auto; line-height: 1.6; }
.assoc-stories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.assoc-story-card { background: rgba(255,255,255,0.15); padding: 35px; border-radius: 15px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); }
.assoc-story-header { margin-bottom: 20px; }
.assoc-story-title { color: #fff; font-size: 20px; margin-bottom: 10px; }
.assoc-story-subtitle { color: #ffd700; font-size: 14px; margin: 0; }
.assoc-story-quote { color: rgba(255,255,255,0.9); font-style: italic; margin-bottom: 20px; line-height: 1.6; }
.assoc-story-metrics { display: flex; justify-content: space-between; align-items: center; }
.assoc-story-metric { text-align: center; }
.assoc-story-metric-value { font-size: 24px; font-weight: bold; color: #ffd700; }
.assoc-story-metric-label { font-size: 12px; color: rgba(255,255,255,0.8); }
