/* ═══════════════════════════
   ABOUT INTRO SECTION
═══════════════════════════ */
.about-intro-section {
  padding: 80px 0;
  background: #fff;
}
.about-intro-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.about-intro-header {
  margin-bottom: 32px;
}
.about-intro-tag {
  display: inline-block;
  background: rgba(232, 108, 6, 0.1);
  color: var(--orange);
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(232, 108, 6, 0.2);
}
.about-intro-title {
  font-family: 'Nunito', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.about-intro-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-intro-lead {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
  font-weight: 600;
}
.about-intro-lead strong {
  color: var(--navy);
}
.about-intro-text {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
.about-intro-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(12, 29, 88, 0.15);
}
.about-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}
.about-intro-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(12, 29, 88, 0.15);
}
.about-intro-badge svg {
  flex-shrink: 0;
  color: var(--orange);
}
.about-intro-badge-text strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.about-intro-badge-text span {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
/* ═══════════════════════════
   SCHOOL INFO SECTION
═══════════════════════════ */
.school-info-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fd 0%, #fff 100%);
}
.school-info-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(12, 29, 88, 0.08);
}
.school-info-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.school-info-header svg {
  color: var(--orange);
  flex-shrink: 0;
}
.school-info-title {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.school-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.school-info-item {
  padding: 32px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
.school-info-item:nth-child(2n) {
  border-right: 0;
}
.school-info-item:nth-last-child(-n+2) {
  border-bottom: 0;
}
.school-info-item:hover {
  background: var(--light);
}
.school-info-label {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.school-info-value {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 600;
}
.school-info-value strong {
  color: var(--navy);
  font-weight: 700;
}
.school-info-meta {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}
.school-info-value a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}
.school-info-value a:hover {
  color: var(--orange);
}
.school-info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.school-info-link:hover {
  gap: 12px;
}
/* ═══════════════════════════
   VISION & MISSION SECTION
═══════════════════════════ */
.vision-mission-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.vision-mission-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(12, 29, 88, 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.vision-mission-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.vm-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(12, 29, 88, 0.12);
}
.vm-card-vision {
  border-color: var(--orange);
}
.vm-card-vision:hover {
  border-color: var(--orange);
  box-shadow: 0 20px 60px rgba(232, 108, 6, 0.15);
}
.vm-card-mission {
  border-color: var(--navy);
}
.vm-card-mission:hover {
  border-color: var(--navy);
  box-shadow: 0 20px 60px rgba(12, 29, 88, 0.15);
}
.vm-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}
.vm-card-vision .vm-card-icon {
  background: rgba(232, 108, 6, 0.1);
  color: var(--orange);
}
.vm-card-vision:hover .vm-card-icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}
.vm-card-mission .vm-card-icon {
  background: rgba(12, 29, 88, 0.1);
  color: var(--navy);
}
.vm-card-mission:hover .vm-card-icon {
  background: var(--navy);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.vm-card-title {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px 0;
  line-height: 1.2;
}
.vm-card-text {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
.vm-card-decoration {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}
.vm-card-vision .vm-card-decoration {
  background: var(--orange);
}
.vm-card-mission .vm-card-decoration {
  background: var(--navy);
}
/* ═══════════════════════════
   JIS GROUP LEGACY SECTION
═══════════════════════════ */
.jis-legacy-section {
  padding: 90px 0;
  background: linear-gradient(165deg, #f0f4ff 0%, #fef8f3 100%);
  position: relative;
  overflow: hidden;
}
.jis-legacy-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    var(--navy) 0,
    var(--navy) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 40px 40px;
}
.jis-legacy-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.jis-legacy-tag {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.jis-legacy-title {
  font-family: 'Nunito', sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}
.jis-legacy-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
/* Founder Card */
.jis-founder-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(12, 29, 88, 0.1);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
}
.jis-founder-image {
  position: relative;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.jis-founder-image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.jis-founder-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(12, 29, 88, 0.05) 100%);
}
.jis-founder-content {
  padding: 50px;
}
.jis-founder-name {
  font-family: 'Nunito', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.jis-founder-title {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--orange);
  margin: 0 0 24px 0;
}
.jis-founder-text {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
/* Stats Grid */
.jis-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.jis-stat-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.jis-stat-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232, 108, 6, 0.12);
}
.jis-stat-number {
  font-family: 'Nunito', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}
.jis-stat-label {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
}
/* MD Quote */
.jis-md-quote {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%);
  border-radius: 20px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}
.jis-quote-mark {
  position: absolute;
  top: 30px;
  left: 40px;
  color: rgba(255, 255, 255, 0.1);
  opacity: 0.5;
}
.jis-quote-text {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
  font-weight: 500;
  margin: 0 0 28px 0;
  position: relative;
  z-index: 1;
}
.jis-quote-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
}
.jis-quote-author strong {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.jis-quote-author span {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
}
/* Opportunity Card */
.jis-opportunity-card {
  background: #fff;
  border: 2px solid var(--orange);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 8px 24px rgba(232, 108, 6, 0.1);
}
.jis-opportunity-icon {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  background: rgba(232, 108, 6, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.jis-opportunity-title {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px 0;
  line-height: 1.3;
}
.jis-opportunity-text {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
/* ═══════════════════════════
   ABOUT CTA SECTION
═══════════════════════════ */
.about-cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%);
  position: relative;
  overflow: hidden;
}
.about-cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  opacity: 0.6;
}
.about-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-cta-title {
  font-family: 'Nunito', sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.2;
}
.about-cta-text {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 40px 0;
}
.about-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.about-cta-btn-primary {
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
  box-shadow: 0 6px 20px rgba(232, 108, 6, 0.3);
}
.about-cta-btn-primary:hover {
  background: var(--orange-h);
  border-color: var(--orange-h);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 108, 6, 0.4);
}
.about-cta-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.about-cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
  transform: translateY(-2px);
}
.about-cta-btn svg {
  transition: transform 0.3s ease;
}
.about-cta-btn:hover svg {
  transform: translateX(4px);
}
/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 1199px) {
  .about-intro-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .jis-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .about-intro-section,
  .school-info-section,
  .vision-mission-section,
  .jis-legacy-section,
  .why-choose-section,
  .about-cta-section {
    padding: 60px 0;
  }
  .about-intro-title,
  .jis-legacy-title,
  .why-choose-title {
    font-size: 36px;
  }
  .vision-mission-wrapper {
    grid-template-columns: 1fr;
  }
  .jis-founder-card {
    grid-template-columns: 1fr;
  }
  .jis-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .school-info-grid {
    grid-template-columns: 1fr;
  }
  .school-info-item {
    border-right: 0;
  }
}
@media (max-width: 768px) {
  .about-intro-title,
  .jis-legacy-title,
  .why-choose-title {
    font-size: 32px;
  }
  .about-cta-title {
    font-size: 36px;
  }
  .jis-stats-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .jis-opportunity-card {
    flex-direction: column;
    text-align: center;
  }
  .about-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .about-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .jis-md-quote,
  .jis-founder-content {
    padding: 32px;
  }
}
@media (max-width: 480px) {
  .about-intro-title,
  .jis-legacy-title,
  .why-choose-title {
    font-size: 28px;
  }
  .about-cta-title {
    font-size: 30px;
  }
  .school-info-header,
  .school-info-item {
    padding: 24px;
  }
}