/* ===================================================
   NEET Course Detail Page — Premium Styles
   Accent: Teal #0F6E56 | Hero: Deep Forest #071A12
   =================================================== */

/* --- Navbar Solid Override (shared with JEE) --- */
.navbar--solid {
  background: #fff !important;
  border-bottom: 1px solid #EEEEEE;
  box-shadow: none;
}

.navbar--solid .nav-links a,
.navbar--solid .nav-link {
  color: #333 !important;
}

.navbar--solid .nav-links__active {
  color: #0F6E56 !important;
  font-weight: 600;
}

.navbar--solid .navbar__enroll-btn {
  background: #0F6E56;
  color: #fff;
}

.navbar--solid .hamburger .bar {
  background: #333;
}

.navbar--solid #navbar-logo {
  filter: none;
}

/* ===================================================
   HERO PANEL — Deep Forest
   =================================================== */
.neet-hero {
  background: #071A12;
  position: relative;
  overflow: hidden;
  padding: 100px 2rem 80px;
}

.neet-hero__bg-art {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 300px;
  height: 450px;
  opacity: 0.04;
  pointer-events: none;
}

.neet-hero__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.neet-hero__content {
  flex: 0 0 55%;
}

.neet-hero__form-wrap {
  flex: 0 0 45%;
}

/* Breadcrumb */
.neet-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.75rem;
}

.neet-hero__breadcrumb a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.neet-hero__breadcrumb a:hover {
  color: rgba(255,255,255,0.7);
}

.neet-hero__breadcrumb span {
  color: rgba(255,255,255,0.25);
}

.neet-hero__breadcrumb-current {
  color: rgba(255,255,255,0.6) !important;
}

/* Tag */
.neet-hero__tag {
  display: inline-block;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

/* Headline */
.neet-hero__headline {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

/* Subtext */
.neet-hero__subtext {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Stat Pills */
.neet-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.neet-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.45rem 0.9rem;
  border-radius: 99px;
}

.neet-hero__pill .ti {
  font-size: 14px;
  color: #1D9E75;
}

/* ===================================================
   HERO FORM CARD
   =================================================== */
.neet-hero__form-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.neet-hero__form-title {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0D0D0D;
  margin-bottom: 0.2rem;
}

.neet-hero__form-sub {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 1.5rem;
}

.neet-hero__form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.neet-hero__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.neet-hero__input-wrap .ti {
  position: absolute;
  left: 14px;
  font-size: 18px;
  color: #aaa;
  pointer-events: none;
}

.neet-hero__input-wrap input,
.neet-hero__input-wrap select {
  width: 100%;
  height: 48px;
  padding: 0 14px 0 44px;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.875rem;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  background: #fff;
  color: #333;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.neet-hero__input-wrap input:focus,
.neet-hero__input-wrap select:focus {
  border-color: #0F6E56;
  box-shadow: 0 0 0 3px rgba(15,110,86,0.08);
}

.neet-hero__input-wrap--select::after {
  content: '';
  position: absolute;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  transform: rotate(45deg);
  pointer-events: none;
  margin-top: -3px;
}

.neet-hero__error {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: #DC2626;
  display: none;
  align-items: center;
  gap: 0.3rem;
  padding-left: 4px;
}

.neet-hero__error .ti {
  font-size: 13px;
}

.neet-hero__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 12px;
  background: #0F6E56;
  color: #fff;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.4rem;
}

.neet-hero__submit:hover {
  background: #085041;
}

.neet-hero__privacy {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: #aaa;
  text-align: center;
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.neet-hero__privacy .ti {
  font-size: 12px;
}

/* ===================================================
   COURSE INFORMATION
   =================================================== */
.neet-info {
  background: #fff;
  padding: 4rem 2rem;
}

.neet-info__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.neet-info__content {
  min-width: 0;
}

.neet-info__section {
  margin-bottom: 2.5rem;
}

.neet-info__heading {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #0D0D0D;
  border-left: 3px solid #0F6E56;
  padding-left: 12px;
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.neet-info__section p {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 0.8rem;
}

.neet-info__section h3 {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0F6E56;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

/* Overview Box */
.neet-info__overview-box {
  background: #EEFAF4;
  border-left: 4px solid #0F6E56;
  border-radius: 12px;
  padding: 1.5rem;
}

.neet-info__overview-box p {
  color: #444;
}

.neet-info__check-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
}

.neet-info__check-list li {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: #444;
  line-height: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.neet-info__check-list .ti {
  color: #0F6E56;
  font-size: 16px;
  flex-shrink: 0;
}

/* Feature Icon Grid */
.neet-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.neet-info__grid-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.1rem;
  background: #fff;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.neet-info__grid-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.neet-info__grid-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(15,110,86,0.1);
  color: #0F6E56;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.neet-info__grid-card h4 {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0D0D0D;
  margin-bottom: 0.15rem;
}

.neet-info__grid-card p {
  font-size: 0.8rem !important;
  color: #777 !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}

/* Subject Cards */
.neet-info__subjects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.neet-info__subject-card {
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.2s;
}

.neet-info__subject-card:hover {
  transform: translateY(-2px);
}

.neet-info__subject-card--bio { background: #EEFAF4; }
.neet-info__subject-card--physics { background: #EEF2FF; }
.neet-info__subject-card--chem { background: #FFF8EE; }

.neet-info__subject-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 0.8rem;
}

.neet-info__subject-card--bio .neet-info__subject-icon { background: rgba(15,110,86,0.15); color: #0F6E56; }
.neet-info__subject-card--physics .neet-info__subject-icon { background: rgba(10,25,49,0.08); color: #0A1931; }
.neet-info__subject-card--chem .neet-info__subject-icon { background: rgba(212,130,10,0.12); color: #D4820A; }

.neet-info__subject-card h3 {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0D0D0D !important;
  margin-bottom: 0.4rem;
  margin-top: 0 !important;
}

.neet-info__subject-badge {
  display: inline-block;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: #0F6E56;
  background: rgba(15,110,86,0.12);
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
}

.neet-info__subject-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.neet-info__subject-card ul li {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #666;
  line-height: 2;
  padding-left: 0.8rem;
  position: relative;
}

.neet-info__subject-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.neet-info__subject-card--bio ul li::before { background: #0F6E56; }
.neet-info__subject-card--physics ul li::before { background: #0A1931; }
.neet-info__subject-card--chem ul li::before { background: #D4820A; }

/* Benefit Grid */
.neet-info__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.neet-info__benefit {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: #F8F8F6;
  border-radius: 10px;
}

.neet-info__benefit .ti {
  font-size: 18px;
  color: #0F6E56;
  flex-shrink: 0;
}

.neet-info__benefit span {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #0D0D0D;
  line-height: 1.4;
}

/* Callout Box */
.neet-info__callout {
  background: #EEFAF4;
  border-left: 4px solid #0F6E56;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.neet-info__callout h3 {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F6E56 !important;
  margin-bottom: 0.5rem;
  margin-top: 0 !important;
}

.neet-info__callout p {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.neet-info__callout-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #0F6E56;
  padding: 0.6rem 1.4rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}

.neet-info__callout-cta:hover {
  background: #085041;
}

/* ===================================================
   STICKY SIDEBAR
   =================================================== */
.neet-sidebar {
  position: sticky;
  top: 90px;
}

.neet-sidebar__card {
  background: #fff;
  border: 1px solid #EEEEEE;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.neet-sidebar__title {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0D0D0D;
  margin-bottom: 1.2rem;
}

.neet-sidebar__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.neet-sidebar__row-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(15,110,86,0.1);
  color: #0F6E56;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.neet-sidebar__label {
  display: block;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: #999;
  margin-bottom: 0.1rem;
}

.neet-sidebar__value {
  display: block;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0D0D0D;
}

.neet-sidebar__divider {
  height: 1px;
  background: #F0F0F0;
  margin: 0.3rem 0;
}

.neet-sidebar__enroll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  height: 48px;
  border-radius: 12px;
  background: #0F6E56;
  color: #fff;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 1.2rem;
}

.neet-sidebar__enroll:hover {
  background: #085041;
}

.neet-sidebar__phone {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #0F6E56;
  text-align: center;
  margin-top: 0.8rem;
}

.neet-sidebar__phone a {
  color: #0F6E56;
  text-decoration: none;
  font-weight: 500;
}

.neet-sidebar__phone a:hover {
  color: #085041;
}

/* ===================================================
   OTHER COURSES
   =================================================== */
.neet-other {
  background: #F8F8F6;
  padding: 4rem 2rem;
}

.neet-other__container {
  max-width: 1100px;
  margin: 0 auto;
}

.neet-other__headline {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0D0D0D;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.neet-other__subtext {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #888;
  text-align: center;
  margin-bottom: 2.5rem;
}

.neet-other__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.neet-other__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #EBEBEB;
}

.neet-other__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.neet-other__img-wrap {
  height: 180px;
  overflow: hidden;
}

.neet-other__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.neet-other__card:hover .neet-other__img-wrap img {
  transform: scale(1.05);
}

.neet-other__card-body {
  padding: 1.5rem;
}

.neet-other__card-tag {
  display: inline-block;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
}

.neet-other__card-tag--purple { background: #F5EEFF; color: #6B3FA0; }
.neet-other__card-tag--amber { background: #FFF8EE; color: #D4820A; }
.neet-other__card-tag--navy { background: #EEF2FF; color: #0A1931; }

.neet-other__card-title {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0D0D0D;
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}

.neet-other__card-sub {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: #999;
  margin-bottom: 0.6rem;
}

.neet-other__card-desc {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #777;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.neet-other__card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 100%;
  height: 44px;
  border-radius: 10px;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s, transform 0.15s;
}

.neet-other__card-cta--purple { background: #6B3FA0; }
.neet-other__card-cta--purple:hover { background: #573388; }
.neet-other__card-cta--amber { background: #D4820A; }
.neet-other__card-cta--amber:hover { background: #B97008; }
.neet-other__card-cta--navy { background: #0A1931; }
.neet-other__card-cta--navy:hover { background: #0D2247; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .neet-hero__container {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .neet-hero__content,
  .neet-hero__form-wrap {
    flex: none;
    width: 100%;
    max-width: 560px;
  }

  .neet-hero__headline {
    font-size: 2.2rem;
  }

  .neet-info__container {
    grid-template-columns: 1fr;
  }

  .neet-sidebar {
    position: static;
    order: -1;
  }

  .neet-info__subjects {
    grid-template-columns: 1fr 1fr;
  }

  .neet-info__benefits {
    grid-template-columns: 1fr 1fr;
  }

  .neet-other__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .neet-hero {
    padding: 90px 1.25rem 3rem;
  }

  .neet-hero__headline {
    font-size: 1.8rem;
  }

  .neet-hero__subtext {
    max-width: 100%;
  }

  .neet-hero__pills {
    flex-direction: column;
  }

  .neet-hero__breadcrumb {
    display: none;
  }

  .neet-info {
    padding: 2.5rem 1.25rem;
  }

  .neet-info__grid {
    grid-template-columns: 1fr;
  }

  .neet-info__subjects {
    grid-template-columns: 1fr;
  }

  .neet-info__benefits {
    grid-template-columns: 1fr;
  }

  .neet-other__grid {
    grid-template-columns: 1fr;
  }

  .neet-other {
    padding: 2.5rem 1.25rem;
  }

  .neet-other__headline {
    font-size: 1.6rem;
  }

  .neet-other__card-body {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .neet-hero {
    padding: 80px 1rem 2.5rem;
  }

  .neet-hero__headline {
    font-size: 1.5rem;
  }

  .neet-hero__form-card {
    padding: 1.5rem;
    border-radius: 18px;
  }

  .neet-hero__content {
    max-width: 100%;
  }

  .neet-info {
    padding: 2rem 1rem;
  }

  .neet-info__heading {
    font-size: 1.3rem;
  }

  .neet-info__section p {
    font-size: 0.875rem;
  }

  .neet-other {
    padding: 2rem 1rem;
  }

  .neet-other__headline {
    font-size: 1.4rem;
  }

  .neet-other__card-title {
    font-size: 1.1rem;
  }
}
