/* ===== CSS VARIABLES ===== */
:root {
  --primary-color: #222;
  --primary-gradient: linear-gradient(135deg, #005ba1 0%, #0074d4 100%);
  --text-color: #222;
  --light-bg: #f8f9fa;
  --border-color: #e9ecef;
  --white: #fff;
  --shadow-light: 0 5px 20px rgba(0, 91, 161, 0.08);
  --shadow-medium: 0 10px 30px rgba(0, 91, 161, 0.1);
  --shadow-heavy: 0 20px 40px rgba(0, 91, 161, 0.15);
}

/* ===== SECTION HEADERS ===== */
.custom-sram-placement-section-head {
  text-align: center;
  margin-bottom: 60px;
}

.custom-sram-placement-section-badge {
  display: inline-block;
  background: var(--primary-gradient);
  color: white;
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-sram-placement-section-title-1 {
  color: #222;
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.custom-sram-placement-section-line {
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.custom-sram-placement-section-desc {
  color: #666;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== ADMISSION OVERVIEW SECTION ===== */
.custom-sram-placement-overview {
  padding: 80px 0;
  background: var(--white);
}

.custom-sram-placement-content {
  padding: 40px 0;
}

.custom-sram-placement-badge {
  display: inline-block;
  background: var(--primary-gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.custom-sram-placement-title {
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.custom-sram-placement-text {
  font-size: 17px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.custom-sram-placement-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.custom-sram-placement-stat-item {
  text-align: center;
}

.custom-sram-placement-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.custom-sram-placement-stat-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.custom-sram-placement-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.custom-sram-placement-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

.custom-sram-placement-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 91, 161, 0.3),
    rgba(0, 116, 212, 0.1)
  );
  border-radius: 20px;
}

/* ===== ADMISSION PROCESS FLOW (PAPER PLANE STYLE) ===== */
.custom-sram-admission-process-flow {
  padding: 45px 0 46px 0;
  background: #f8fcff;
}

.custom-sram-process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
  flex-wrap: wrap;
  gap: 0;
}

.custom-sram-process-step {
  flex: 1 1 0;
  min-width: 180px;
  max-width: 220px;
  background: var(--white);
  margin: 0 10px;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  text-align: center;
  padding: 40px 18px 30px 18px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.custom-sram-process-step:hover {
  transform: translateY(-6px) scale(1.035);
  box-shadow: var(--shadow-medium);
}

.custom-sram-plane-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.plane-blue {
  background-image: url('data:image/svg+xml;utf8,<svg width="56" height="56" xmlns="http://www.w3.org/2000/svg"><polygon points="5,50 30,6 51,51 30,40" fill="%23005ba1" stroke="%2300467b" stroke-width="3"/></svg>');
}

.plane-cyan {
  background-image: url('data:image/svg+xml;utf8,<svg width="56" height="56" xmlns="http://www.w3.org/2000/svg"><polygon points="5,50 30,6 51,51 30,40" fill="%2300aec7" stroke="%230089a1" stroke-width="3"/></svg>');
}

.plane-orange {
  background-image: url('data:image/svg+xml;utf8,<svg width="56" height="56" xmlns="http://www.w3.org/2000/svg"><polygon points="5,50 30,6 51,51 30,40" fill="%23ff813e" stroke="%23ff5520" stroke-width="3"/></svg>');
}

.plane-red {
  background-image: url('data:image/svg+xml;utf8,<svg width="56" height="56" xmlns="http://www.w3.org/2000/svg"><polygon points="5,50 30,6 51,51 30,40" fill="%23ea3947" stroke="%23c91a2a" stroke-width="3"/></svg>');
}

.custom-sram-process-step h4 {
  color: var(--primary-color);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
}

.custom-sram-process-step p {
  color: #222;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: justify;
}

.custom-sram-process-arrow {
  align-self: center;
  width: 42px;
  height: 22px;
  background-image: url('data:image/svg+xml;utf8,<svg width="42" height="22" xmlns="http://www.w3.org/2000/svg"><path d="M2 11h36l-6-8M38 11l-6 8" fill="none" stroke="%23005ba1" stroke-width="3" stroke-linecap="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== FEE STRUCTURE SECTION ===== */
.custom-sram-fees-section {
  padding: 38px 0 62px;
  background: var(--white);
}

.custom-sram-fees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.custom-sram-fee-item-col {
  width: 100%;
}

.custom-sram-fee-item {
  display: flex;
  align-items: flex-start;
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  border-left: 5px solid #005ba1 !important;
  height: 100%;
  min-height: 280px;
}

.custom-sram-fee-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.custom-sram-fee-number {
  background: var(--primary-gradient);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 91, 161, 0.3);
}

.custom-sram-fee-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.custom-sram-fee-content h3 {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.custom-sram-fee-details {
  margin-bottom: 20px;
  flex-grow: 1;
}

.custom-sram-fee-details p {
  color: #222;
  text-align: justify;
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.custom-sram-fee-amount {
  background: var(--primary-gradient);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0, 91, 161, 0.3);
  align-self: flex-start;
}

/* ===== MULTI-STEP FORM SECTION ===== */
.custom-sram-multistep-form-section {
  padding: 40px 0 75px;
  background: linear-gradient(135deg, #f8f9fd 0%, #e8f2ff 100%);
}

.custom-sram-form-container {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 91, 161, 0.1);
}

/* Form Steps Progress */
.custom-sram-form-steps {
  display: flex;
  background: var(--primary-gradient);
  padding: 0;
  margin: 0;
}

.custom-sram-step {
  flex: 1;
  padding: 25px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.custom-sram-step.active {
  color: white;
  background: rgba(255, 255, 255, 0.22);
}

.custom-sram-step:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
}

.custom-sram-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
}

.custom-sram-step.active .custom-sram-step-number {
  background: white;
  color: #005ba1;
}

.custom-sram-step-title {
  font-size: 16px;
  font-weight: 600;
}

/* Form Content */
.custom-sram-multistep-form {
  padding: 40px;
}

.custom-sram-form-step {
  display: none;
}

.custom-sram-form-step.active {
  display: block;
}

.custom-sram-form-step-title {
  color: #222;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.custom-sram-form-group {
  margin-bottom: 25px;
}

.custom-sram-form-group label {
  display: block;
  color: #005ba1;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.custom-sram-form-input {
  width: 100%;
  padding: 10px 20px;
  font-size: 17px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  background: var(--white);
}

.custom-sram-form-input:focus {
  border-color: #005ba1;
  box-shadow: 0 0 0 0.2rem rgba(0, 91, 161, 0.25);
}

.custom-sram-form-input::placeholder {
  color: #999;
}

/* Review Step */
.custom-sram-review-content {
  text-align: center;
  padding: 40px 20px;
}

.custom-sram-review-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.custom-sram-terms-checkbox {
  margin: 30px 0;
}

.custom-sram-checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 17px;
  color: #666;
  line-height: 1.6;
}

.custom-sram-checkbox-label input[type="checkbox"] {
  margin-right: 12px;
  transform: scale(1.3);
}

.custom-sram-checkbox-label a {
  color: #005ba1;
  text-decoration: none;
  font-weight: 600;
}

.custom-sram-checkbox-label a:hover {
  text-decoration: underline;
}

/* Form Navigation */
.custom-sram-form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  margin-top: 30px;
  border-top: 2px solid #f0f0f0;
}

.custom-sram-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.custom-sram-btn-cancel {
  background: transparent;
  color: #666;
  border: 2px solid #ddd;
}

.custom-sram-btn-cancel:hover {
  background: var(--light-bg);
  border-color: #999;
}

.custom-sram-btn-previous {
  background: transparent;
  color: #005ba1;
  border: 2px solid #005ba1;
}

.custom-sram-btn-previous:hover {
  background: #005ba1;
  color: white;
}

.custom-sram-btn-next,
.custom-sram-btn-submit {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 91, 161, 0.3);
}

.custom-sram-btn-next:hover,
.custom-sram-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 91, 161, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 992px) {
  .custom-sram-fees-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .custom-sram-fee-item {
    min-height: auto;
  }

  .custom-sram-placement-section-title-1 {
    font-size: 36px;
  }

  .custom-sram-placement-title {
    font-size: 32px;
  }
}

@media (max-width: 980px) {
  .custom-sram-process-steps {
    flex-wrap: wrap;
    gap: 22px 0;
  }

  .custom-sram-process-step,
  .custom-sram-process-arrow {
    flex-basis: 100%;
    max-width: none;
  }

  .custom-sram-process-arrow {
    width: 32px;
    height: 18px;
    margin: 12px auto;
    transform: rotate(90deg);
  }

  .custom-sram-process-step {
    margin: 0 auto 30px auto;
    min-width: 180px;
    max-width: 330px;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .custom-sram-admission-process-flow,
  .custom-sram-fees-section,
  .custom-sram-multistep-form-section,
  .custom-sram-placement-overview {
    padding: 39px 0;
  }
  .custom-sram-fee-amount {
    font-size: 12px;
  }
  .custom-sram-btn {
    font-size: 12px;
  }
  .custom-sram-step {
    padding: 9px 20px;
  }
  .custom-sram-form-container {
    margin-top: -24px;
  }
  .custom-sram-form-input {
    padding: 8px 20px;
  }
  .custom-sram-placement-section-title-1 {
    font-size: 28px;
  }

  .custom-sram-placement-title {
    font-size: 28px;
  }

  .custom-sram-placement-text,
  .custom-sram-form-input {
    font-size: 15px;
  }

  .custom-sram-placement-stats {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .custom-sram-placement-stat-number {
    font-size: 32px;
  }

  .custom-sram-fee-item {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .custom-sram-fee-number {
    margin: 0 auto 20px;
    transform: none;
  }

  .custom-sram-fee-content h3 {
    font-size: 20px;
  }

  .custom-sram-fee-details p {
    font-size: 15px;
  }

  .custom-sram-fee-amount {
    align-self: center;
  }

  .custom-sram-multistep-form {
    padding: 25px;
  }

  .custom-sram-form-step-title {
    font-size: 24px;
  }

  .custom-sram-form-steps {
    flex-direction: column;
  }

  .custom-sram-step:not(:last-child):after {
    display: none;
  }

  .custom-sram-form-navigation {
    flex-direction: column;
    gap: 15px;
  }

  .custom-sram-btn {
    width: 100%;
    max-width: 200px;
  }
}

@media (max-width: 575px) {
  .custom-sram-process-steps {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    gap: 0;
  }

  .custom-sram-process-arrow {
    width: 18px;
    height: 28px;
    margin: 0 auto 18px auto;
    transform: rotate(90deg);
  }

  .custom-sram-process-step {
    padding: 25px 8px 18px 8px;
    min-width: 145px;
    max-width: 98vw;
  }

  .custom-sram-process-step h4 {
    font-size: 18px;
  }

  .custom-sram-process-step p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .custom-sram-fees-grid {
    gap: 20px;
  }

  .custom-sram-fee-item {
    padding: 20px;
  }

  .custom-sram-fee-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .custom-sram-fee-content h3 {
    font-size: 18px;
  }

  .custom-sram-placement-section-title-1 {
    font-size: 28px;
  }

  .custom-sram-placement-title {
    font-size: 24px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-sram-fee-item,
.custom-sram-process-step {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.p-0 {
  padding: 0 !important;
}

/* ===== PRINT STYLES ===== */
@media print {
  .custom-sram-form-navigation,
  .custom-sram-form-steps {
    display: none;
  }

  .custom-sram-form-step {
    display: block !important;
  }

  .custom-sram-multistep-form-section {
    background: white;
  }
}
