/* ================= HERO SECTION ================= */

.recorded-hero {
  background: linear-gradient(135deg, #0f4c81, #0d6efd);
  padding: 35px 0;
  color: #fff;
}

.hero-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.badge-rec {
  background: #22c55e;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

.badge-live {
  background: rgba(255,255,255,0.15);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

.hero-title{
  font-size:30px;
  font-weight:700;
  margin-bottom:25px;
  max-width:900px;

  display:-webkit-box;
  -webkit-line-clamp:2;     /* 👈 max 2 lines */
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 25px;
  align-items: stretch;
}

.hero-card {
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 22px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Instructor */
.instructor-wrap {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 35px;
}

.instructor-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

.instructor-card .label {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 4px;
}

.instructor-card h4 {
  margin: 0;
  font-weight: 600;
}

.designation {
  font-size: 13px;
  opacity: 0.9;
}

/* Recording Header */
.recording-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.recording-header i {
  font-size: 18px;
  background: rgba(255,255,255,0.2);
  padding: 10px;
  border-radius: 10px;
}

.recording-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

/* Details Grid */
.details-card {
  display: flex;
  flex-direction: column;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.detail-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.detail-item i {
  font-size: 18px;
  background: rgba(255,255,255,0.2);
  padding: 9px;
  border-radius: 50%;
}

.detail-item p {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
}

.detail-item strong {
  font-size: 14px;
}

/* Guarantee */
.guarantee-img {
  max-width: 130px;
  margin-bottom: 10px;
}

.refund-link {
  font-size: 13px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 26px;
  }
}

/* ================= MAIN GRID ================= */

.detail-main{
  padding: 20px 0;
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.detail-grid{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  align-items: start;
}

/* ================= DESCRIPTION SECTION ================= */

.details-card-main{
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.3s ease;
}

.details-card-main:hover{
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.section-title{
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 2px solid #0d6efd;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.section-title i{
  font-size: 20px;
  color: #0d6efd;
  background: #eff6ff;
  padding: 10px;
  border-radius: 8px;
}

.section-title h3{
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
}

.content-block{
  margin-bottom: 20px;
  padding: 22px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #0d6efd;
  transition: transform 0.2s ease;
}

.content-block:hover{
  transform: translateX(5px);
}

.content-block h4{
  font-size: 18px;
  font-weight: 800;
  color: #0f4c81;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.content-block strong{
  font-weight:700;
  color:#0f172a;
}

.content-block h4:before{
  content: "▶";
  color: #0d6efd;
  font-size: 12px;
}

.content-block p{
  color: #475569;
  line-height: 1.8;
  font-size: 16px;
  font-weight:500;
  margin-bottom: 10px;
}

.content-block ul{
  list-style: none;
  padding-left: 20px;
  margin-bottom: 0;
}

.content-block li{
  margin-bottom: 12px;
  color: #475569;
  line-height: 1.8;
  position: relative;
  padding-left: 10px;
  font-weight:500;
  font-size: 16px;
}
.content-block p:first-child{
  font-size:17px;
  font-weight:600;
  color:#0f172a;
}

.content-block li:before{
  content: "✓";
  position: absolute;
  left: -18px;
  color: #0d6efd;
  font-weight: 900;
}

.plan-check{
  width:18px;
  height:18px;
  accent-color:#0d6efd;
  cursor:pointer;
}

.plan-select:has(.plan-check:checked){
  border-color:#0d6efd;
  background:#eff6ff;
  transform:scale(1.02);
}

/* ================= PRICING SECTION ================= */

.pricing-box{
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  padding: 25px;
  position: sticky;
  top: 90px;
  box-shadow: 0 10px 40px rgba(13, 110, 253, 0.15);
  border: 2px solid #e0e7ff;
  transition: all 0.3s ease;
}

.pricing-box:hover{
  box-shadow: 0 15px 50px rgba(13, 110, 253, 0.25);
  transform: translateY(-3px);
}

.pricing-title{
  font-size: 19px;
  font-weight: 700;
  color: #0f4c81;
  margin-bottom: 18px;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 2px solid #e0e7ff;
}

.plan-select{
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #e5e7eb;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
}

.plan-select:hover{
  border-color: #0d6efd;
  background: #eff6ff;
  transform: scale(1.02);
}

.plan-select input:checked{
  accent-color: #0d6efd;
}

.plan-select input{
  transform: scale(1.3);
  cursor: pointer;
}

.plan-left{
  flex: 1;
}

.plan-left strong{
  display: block;
  font-size: 16px;
  color: #1e293b;
  margin-bottom: 4px;
  font-weight: 700;
}

.plan-left p{
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.plan-select > span{
  font-size: 22px;
  font-weight: 700;
  color: #0d6efd;
}

.total-amount{
  background: linear-gradient(135deg, #0d6efd 0%, #0f4c81 100%);
  padding: 16px;
  border-radius: 10px;
  margin: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}

.total-amount p{
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
}

.total-amount strong{
  font-size: 26px;
  font-weight: 700;
}

.btn-cart{
  width: 100%;
  background: linear-gradient(135deg, #0d6efd 0%, #0066cc 100%);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-cart:hover{
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.btn-buy{
  width: 100%;
  background: linear-gradient(135deg, #0f4c81 0%, #0a3a66 100%);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(15, 76, 129, 0.3);
}

.btn-buy:hover{
  background: linear-gradient(135deg, #0a3a66 0%, #062d4f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 76, 129, 0.4);
}

.pricing-features{
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
}
.pricing-side{
  position: relative;
  height: 100%;
}

.pricing-features p{
  font-size: 14px;
  color: #475569;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.6;
  font-weight: 500;
}

/* ================= SPEAKER SECTION ================= */

.speaker-section{
  padding: 40px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

.speaker-card{
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid #e0e7ff;
  transition: all 0.3s ease;
}

.speaker-card:hover{
  box-shadow: 0 15px 50px rgba(13, 110, 253, 0.2);
  transform: translateY(-3px);
}

.speaker-head{
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 2px solid #0d6efd;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.speaker-head i{
  font-size: 22px;
  color: #0d6efd;
  background: #eff6ff;
  padding: 12px;
  border-radius: 10px;
}

.speaker-head h3{
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #0f4c81;
}

.speaker-body{
  display: flex;
  gap: 25px;
  align-items: start;
}

.speaker-img{
  width: 130px;
  height: 130px;
  border-radius: 50%;
  
  border: 4px solid #0d6efd;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
  transition: all 0.3s ease;
}

.speaker-img:hover{
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
}

.speaker-info{
  flex: 1;
}

.speaker-info h2{
  font-size: 24px;
  font-weight: 700;
  color: #0f4c81;
  margin-bottom: 8px;
}

.speaker-info .designation{
  font-size: 15px;
  color: #64748b;
  margin-bottom: 15px;
  font-weight: 500;
}

.speaker-info p{
  color: #475569;
  line-height: 1.8;
  font-size: 16px;
  
  
}

.org{
  font-size: 14px;
  color: #6b7280;
}

/* ================= MOBILE RESPONSIVE ================= */

@media(max-width:992px){
  .detail-grid{
    grid-template-columns: 1fr;
  }

  .speaker-body{
    flex-direction: column;
  }
  
  .pricing-box{
    position: relative;
    top: 0;
  }
}
