/* ============================================
   ENROLL.CSS - Enroll 2026-27 Admissions Page
   Fully Responsive for All Devices
   ============================================ */

/* 1️⃣ HERO BANNER SECTION */
.enroll-hero {
  height: auto;
  min-height: 85vh;
  background: linear-gradient(105deg, rgba(13, 47, 91, 0.92) 0%, rgba(28, 63, 115, 0.88) 100%), url('../img/dem.avif') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 60px;
}

.enroll-hero .container {
  position: relative;
  z-index: 2;
}

.enroll-hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  color: #ffffff;
}

.enroll-hero .lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
}

.enroll-hero .text-gold {
  color: #e0b45c !important;
}

.btn-gold {
  background: linear-gradient(135deg, #c9a03d, #e0b45c, #c9a03d);
  border: none;
  color: #0D2F5B;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
}

.btn-gold:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #e0b45c, #f3cd7a, #e0b45c);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* 2️⃣ PHILOSOPHY SECTION - LEFT TEXT, RIGHT IMAGE */
.philosophy-section {
  background: var(--white);
  padding: 80px 0;
}

.gold-line-left {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #c89b3c, #e0b45c, #c89b3c);
  border-radius: 2px;
  margin: 0 0 1.5rem 0;
}

.philosophy-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #2c3e50;
}

.philosophy-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-image-container img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  display: block;
}

.philosophy-image-container:hover img {
  transform: scale(1.03);
}

.image-overlay-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.excellence-badge {
  background: rgba(13, 47, 91, 0.9);
  backdrop-filter: blur(5px);
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.excellence-badge i {
  color: #e0b45c;
  font-size: 1.2rem;
}

.excellence-badge span {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* 3️⃣ ADMISSIONS PROCESS SECTION */
.process-section {
  background: #f8f5f0;
  padding: 80px 0;
}

.process-card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid transparent;
}

.process-card:hover {
  transform: translateY(-8px);
  border-bottom-color: #c9a03d;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-card i {
  font-size: 2.5rem;
  color: #c9a03d;
  margin-bottom: 1rem;
}

.process-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0D2F5B;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.process-subtitle {
  color: #2c3e50;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #eee;
}

.process-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-item strong {
  display: block;
  color: #0D2F5B;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.detail-item p {
  color: #2c3e50;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #c9a03d, #e0b45c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D2F5B;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-content strong {
  display: block;
  color: #0D2F5B;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.step-content p {
  color: #2c3e50;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Global Styles */
.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: #c89b3c;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c89b3c, #e0b45c, #c89b3c);
  border-radius: 2px;
  margin: 0 auto 1.2rem;
}

.text-gold {
  color: #e0b45c !important;
}

.text-navy {
  color: #0D2F5B !important;
}

section {
  scroll-margin-top: 100px;
}

img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 1200px) {
  .enroll-hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 991px) {
  .enroll-hero {
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: auto;
  }
  .enroll-hero h1 {
    font-size: 2.5rem;
  }
  .display-5 {
    font-size: 2rem;
  }
  .philosophy-section,
  .process-section {
    padding: 60px 0;
  }
  .process-card {
    padding: 1.5rem;
  }
  .process-card h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .enroll-hero {
    padding-top: 120px;
  }
  .enroll-hero h1 {
    font-size: 2rem;
  }
  .display-5 {
    font-size: 1.5rem;
  }
  .section-eyebrow {
    font-size: 0.6rem;
  }
  .section-eyebrow.text-start {
    text-align: center !important;
  }
  .gold-line-left {
    margin: 0 auto 1.5rem auto;
  }
  .philosophy-section,
  .process-section {
    padding: 50px 0;
  }
  .philosophy-text {
    text-align: center;
    font-size: 0.95rem;
  }
  .excellence-badge {
    padding: 6px 12px;
  }
  .excellence-badge i {
    font-size: 0.9rem;
  }
  .excellence-badge span {
    font-size: 0.75rem;
  }
  .process-card {
    padding: 1.2rem;
  }
  .process-card i {
    font-size: 2rem;
  }
  .process-card h4 {
    font-size: 1.1rem;
  }
  .gold-line {
    width: 50px;
  }
  .btn-gold {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .enroll-hero {
    padding-top: 130px;
  }
  .enroll-hero h1 {
    font-size: 1.8rem;
  }
  .display-5 {
    font-size: 1.3rem;
  }
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
  .step-content strong {
    font-size: 0.85rem;
  }
  .step-content p {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .enroll-hero {
    padding-top: 150px;
  }
  .enroll-hero h1 {
    font-size: 1.5rem;
  }
}




/* ============================================
   ADMISSION FORM SECTION CSS
   IAEM Enroll 2026-27 - Fully Responsive
   ============================================ */

/* Admission Form Section */
.admission-form-section {
    background: linear-gradient(135deg, #f8f5f0 0%, #f0ebe3 100%);
    padding: 80px 0;
    position: relative;
}

.admission-form-wrapper {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.iaem-admission-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

/* Form Sections */
.form-section {
    background: #fefefe;
    border-radius: 20px;
    padding: 1rem 0;
    border-bottom: 1px solid #e8e0d5;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0D2F5B;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(192, 155, 60, 0.3);
    display: inline-block;
}

.form-section-title i {
    color: #c89b3c;
    font-size: 1.2rem;
}

/* Form Controls */
.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2c3e50;
    margin-bottom: 0.4rem;
}

.form-control, .form-select {
    border: 1.5px solid #e2d8cc;
    border-radius: 12px;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s ease;
    background: #fff;
}

.form-control:focus, .form-select:focus {
    border-color: #c89b3c;
    box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.2);
    outline: none;
}

.form-control.is-invalid, .form-select.is-invalid {
    border-color: #dc3545;
    background-color: #fff8f8;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* Declaration Box */
.declaration-box {
    background: #f8f5f0;
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    margin: 0.5rem 0;
    border-left: 4px solid #c89b3c;
}

.checkbox-label {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
}

.checkbox-label input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.1rem;
    accent-color: #c89b3c;
    cursor: pointer;
}

/* Form Actions Buttons */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1.2rem;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
}

.btn-reset {
    background: transparent;
    border: 2px solid #c89b3c;
    color: #c89b3c;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-reset:hover {
    background: #c89b3c;
    color: #fff;
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(135deg, #c89b3c, #e0b45c, #c89b3c);
    border: none;
    color: #0D2F5B;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(200, 155, 60, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 155, 60, 0.4);
    background: linear-gradient(135deg, #e0b45c, #f3cd7a, #e0b45c);
}

.btn-submit:disabled {
    opacity: 0.7;
    transform: none;
    cursor: not-allowed;
}

/* Success Message */
.success-message {
    margin-top: 1.5rem;
    text-align: center;
    background: #d4edda;
    color: #155724;
    padding: 1rem 1.5rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    border-left: 5px solid #28a745;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Global Text Colors */
.text-navy {
    color: #0D2F5B !important;
}

.text-gold {
    color: #c89b3c !important;
}

.section-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    color: #c89b3c;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c89b3c, #e0b45c, #c89b3c);
    border-radius: 2px;
    margin: 0 auto 1.2rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .admission-form-section {
        padding: 60px 0;
    }
    
    .admission-form-wrapper {
        padding: 1.8rem;
    }
    
    .form-section-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .admission-form-section {
        padding: 50px 0;
    }
    
    .admission-form-wrapper {
        padding: 1.2rem;
        border-radius: 20px;
    }
    
    .form-section {
        padding: 0.5rem 0;
    }
    
    .form-section-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .declaration-box {
        padding: 1rem;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-reset, .btn-submit {
        width: 100%;
        text-align: center;
        padding: 0.7rem 1.5rem;
    }
    
    .display-5 {
        font-size: 1.6rem;
    }
}

@media (max-width: 575px) {
    .admission-form-section {
        padding: 40px 0;
    }
    
    .admission-form-wrapper {
        padding: 1rem;
    }
    
    .form-control, .form-select {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .form-label {
        font-size: 0.75rem;
    }
    
    .form-section-title {
        font-size: 1rem;
    }
    
    .form-section-title i {
        font-size: 0.9rem;
    }
    
    .declaration-box {
        padding: 0.8rem;
    }
    
    .success-message {
        font-size: 0.8rem;
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 360px) {
    .admission-form-wrapper {
        padding: 0.8rem;
    }
    
    .form-section-title {
        font-size: 0.9rem;
    }
}

/* Admission Form Section CSS */
.admission-form-section {
    background: linear-gradient(135deg, #f8f5f0 0%, #f0ebe3 100%);
    padding: 80px 0;
    position: relative;
}

.admission-form-wrapper {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.iaem-admission-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-section {
    background: #fefefe;
    border-radius: 20px;
    padding: 1rem 0;
    border-bottom: 1px solid #e8e0d5;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0D2F5B;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(192, 155, 60, 0.3);
    display: inline-block;
}

.form-section-title i {
    color: #c89b3c;
    font-size: 1.2rem;
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2c3e50;
    margin-bottom: 0.4rem;
}

.form-control, .form-select {
    border: 1.5px solid #e2d8cc;
    border-radius: 12px;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s ease;
    background: #fff;
}

.form-control:focus, .form-select:focus {
    border-color: #c89b3c;
    box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.2);
    outline: none;
}

.form-control.is-invalid, .form-select.is-invalid {
    border-color: #dc3545;
    background-color: #fff8f8;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* File Upload Styling */
input[type="file"] {
    padding: 0.6rem 0.8rem;
    cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button {
    background: #c89b3c;
    border: none;
    color: rgb(255, 255, 255);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

input[type="file"]::-webkit-file-upload-button:hover {
    background: #e0b45c;
    transform: translateY(-1px);
}

input[type="file"]::file-selector-button {
    background: #0D2F5B;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

input[type="file"]::file-selector-button:hover {
    background: #8b661c;
    transform: translateY(-1px);
}

input[type="file"].is-invalid {
    border-color: #dc3545;
    background-color: #fff8f8;
}

small.text-muted {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.7rem;
}

.declaration-box {
    background: #f8f5f0;
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    margin: 0.5rem 0;
    border-left: 4px solid #c89b3c;
}

.checkbox-label {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
}

.checkbox-label input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.1rem;
    accent-color: #c89b3c;
    cursor: pointer;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1.2rem;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
}

.btn-reset {
    background: transparent;
    border: 2px solid #c89b3c;
    color: #c89b3c;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-reset:hover {
    background: #c89b3c;
    color: #fff;
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(135deg, #c89b3c, #e0b45c, #c89b3c);
    border: none;
    color: #0D2F5B;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(200, 155, 60, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 155, 60, 0.4);
    background: linear-gradient(135deg, #e0b45c, #f3cd7a, #e0b45c);
}

.btn-submit:disabled {
    opacity: 0.7;
    transform: none;
    cursor: not-allowed;
}

.text-navy {
    color: #0D2F5B !important;
}

.section-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    color: #c89b3c;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c89b3c, #e0b45c, #c89b3c);
    border-radius: 2px;
    margin: 0 auto 1.2rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .admission-form-section {
        padding: 60px 0;
    }
    
    .admission-form-wrapper {
        padding: 1.8rem;
    }
    
    .form-section-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .admission-form-section {
        padding: 50px 0;
    }
    
    .admission-form-wrapper {
        padding: 1.2rem;
        border-radius: 20px;
    }
    
    .form-section {
        padding: 0.5rem 0;
    }
    
    .form-section-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .declaration-box {
        padding: 1rem;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-reset, .btn-submit {
        width: 100%;
        text-align: center;
        padding: 0.7rem 1.5rem;
    }
    
    .display-5 {
        font-size: 1.6rem;
    }
}

@media (max-width: 575px) {
    .admission-form-section {
        padding: 40px 0;
    }
    
    .admission-form-wrapper {
        padding: 1rem;
    }
    
    .form-control, .form-select {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .form-label {
        font-size: 0.75rem;
    }
    
    .form-section-title {
        font-size: 1rem;
    }
    
    .form-section-title i {
        font-size: 0.9rem;
    }
    
    .declaration-box {
        padding: 0.8rem;
    }
}