/* ==========================================================================
   Prospectus Page Styles - VK College
   ========================================================================== */

/* ==========================================================================
   Download Banner Section
   ========================================================================== */
.download-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  padding: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.download-banner h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.download-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.download-banner .btn-primary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.download-banner .btn-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Program Category Cards
   ========================================================================== */
.program-category-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.program-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f8f9fa;
  position: relative;
}

.category-header i {
  font-size: 2.5rem;
  color: #667eea;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  flex: 1;
}

.duration-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.programs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.program-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.program-item:hover {
  background: #e3f2fd;
  border-left-color: #764ba2;
  transform: translateX(5px);
}

.program-info h4 {
  color: #2c3e50;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.program-info p {
  color: #6c757d;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.program-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.program-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #495057;
  font-size: 0.875rem;
  font-weight: 500;
}

.program-meta i {
  color: #667eea;
  font-size: 1rem;
}

.program-highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  padding: 1.5rem;
  color: white;
  margin-top: 1rem;
}

.program-highlight h5 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.program-highlight ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-highlight li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.program-highlight li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
}

/* ==========================================================================
   Admission Steps
   ========================================================================== */
.admission-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.admission-steps::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(to bottom, #667eea, #764ba2);
  z-index: 1;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.step-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-content h4 {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-content p {
  color: #6c757d;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.step-details {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #495057;
  font-size: 0.9rem;
  font-weight: 500;
}

.detail-item i {
  color: #667eea;
  font-size: 1rem;
}

/* ==========================================================================
   Eligibility Cards
   ========================================================================== */
.eligibility-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.eligibility-card h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f8f9fa;
}

.eligibility-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eligibility-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #667eea;
}

.eligibility-item h5 {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.eligibility-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eligibility-item li {
  padding: 0.5rem 0;
  color: #6c757d;
  position: relative;
  padding-left: 1.5rem;
}

.eligibility-item li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
  font-size: 1.2rem;
}

.reservation-info {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  padding: 1.5rem;
  color: white;
  margin-top: 1.5rem;
}

.reservation-info h5 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.reservation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 1rem;
}

.reservation-item {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.reservation-item .category {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.reservation-item .percentage {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.age-limit-info {
  background: #e3f2fd;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  border-left: 4px solid #667eea;
}

.age-limit-info h5 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.age-limit-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.age-limit-info li {
  padding: 0.5rem 0;
  color: #6c757d;
}

/* ==========================================================================
   Fee Structure Table
   ========================================================================== */
.fee-table-container {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.fee-table {
  margin-bottom: 2rem;
}

.fee-table thead th {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-weight: 600;
  padding: 1rem;
  border: none;
  font-size: 0.95rem;
}

.fee-table thead th:first-child {
  border-top-left-radius: 10px;
}

.fee-table thead th:last-child {
  border-top-right-radius: 10px;
}

.fee-table tbody tr {
  transition: all 0.3s ease;
}

.fee-table tbody tr:hover {
  background-color: #f8f9fa;
  transform: scale(1.01);
}

.fee-table tbody td {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  vertical-align: middle;
}

.fee-table tbody td strong {
  color: #2c3e50;
  font-size: 1.1rem;
}

.fee-table tbody td small {
  color: #6c757d;
  display: block;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.fee-notes {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 2rem;
  border-left: 4px solid #667eea;
}

.fee-notes h5 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.fee-notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fee-notes-list li {
  padding: 0.5rem 0;
  color: #6c757d;
  position: relative;
  padding-left: 1.5rem;
}

.fee-notes-list li::before {
  content: "ℹ";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

/* ==========================================================================
   Timeline Styles
   ========================================================================== */
.dates-timeline {
  position: relative;
  padding: 2rem 0;
}

.dates-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #667eea, #764ba2);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-date {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
  position: relative;
  z-index: 2;
  margin: 0 2rem;
}

.timeline-date .month {
  font-size: 0.8rem;
  line-height: 1;
}

.timeline-date .day {
  font-size: 1.5rem;
  line-height: 1;
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 300px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
  color: #2c3e50;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   Support Cards
   ========================================================================== */
.support-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.support-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.support-icon i {
  font-size: 2rem;
  color: white;
}

.support-card h4 {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.support-card p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-info strong {
  color: #2c3e50;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-info small {
  color: #6c757d;
  font-size: 0.9rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  color: white;
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
}

.cta-section h3 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(10px);
}

.cta-buttons .btn-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline-primary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.cta-buttons .btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 991.98px) {
  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .program-meta {
    justify-content: center;
  }
  
  .step-details {
    justify-content: center;
  }
  
  .reservation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-item {
    flex-direction: column !important;
    text-align: center;
  }
  
  .timeline-item:nth-child(even) {
    flex-direction: column !important;
  }
  
  .dates-timeline::before {
    display: none;
  }
  
  .timeline-date {
    margin: 0 0 1rem 0;
  }
  
  .timeline-content {
    max-width: 100%;
  }
  
  .cta-section h3 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 250px;
  }
}

@media (max-width: 767.98px) {
  .download-banner {
    text-align: center;
  }
  
  .download-banner .row {
    gap: 1rem;
  }
  
  .program-category-card,
  .eligibility-card,
  .support-card {
    margin-bottom: 2rem;
  }
  
  .admission-steps::before {
    left: 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .step-item {
    gap: 1rem;
  }
  
  .fee-table-container {
    padding: 1rem;
  }
  
  .fee-table {
    font-size: 0.9rem;
  }
  
  .fee-table thead th,
  .fee-table tbody td {
    padding: 0.75rem 0.5rem;
  }
  
  .support-icon {
    width: 60px;
    height: 60px;
  }
  
  .support-icon i {
    font-size: 1.5rem;
  }
  
  .cta-section {
    padding: 2rem 1rem;
  }
  
  .cta-section h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .program-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .step-details {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .reservation-grid {
    grid-template-columns: 1fr;
  }
  
  .fee-table {
    font-size: 0.8rem;
  }
  
  .timeline-date {
    width: 60px;
    height: 60px;
  }
  
  .timeline-date .day {
    font-size: 1.2rem;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
  .download-banner,
  .cta-section {
    background: #f8f9fa !important;
    color: #333 !important;
    box-shadow: none !important;
  }
  
  .program-category-card,
  .eligibility-card,
  .support-card,
  .fee-table-container {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
  
  .step-number,
  .timeline-date,
  .support-icon {
    background: #333 !important;
    box-shadow: none !important;
  }
  
  .program-highlight,
  .reservation-info {
    background: #f8f9fa !important;
    color: #333 !important;
  }
}
