/* ===== HERO SECTION ===== */
.ja-hero {
  position: relative;
  background: linear-gradient(135deg, #0d214f 0%, #0067da 100%);
  padding: 0 0;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ja-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/contact/contact-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.ja-bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.ja-bg-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.ja-bg-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.ja-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.ja-hero-text h1 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.ja-hero-text p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== COMMON SECTION STYLES ===== */
.ja-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.ja-badge {
  display: inline-block;
  background: linear-gradient(135deg, #29b9ed, #2563eb);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.ja-section-title h2 {
  font-size: 40px;
  color: black;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.15;
}

.ja-section-title p {
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ===== APPLICATION FORM SECTION ===== */
.ja-form {
  padding: 80px 0;
  background: #f8f9fa;
}

.ja-form-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.ja-form-container {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(13, 33, 79, 0.08);
}

.ja-application-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ja-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
}

.ja-form-group {
  display: flex;
  flex-direction: column;
}

.ja-form-group.full-width {
  grid-column: 1 / -1;
  width: 100%;
}

.ja-form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ja-form-group label i {
  color: #0067da;
  font-size: 16px;
}

.ja-form-group input,
.ja-form-group select,
.ja-form-group textarea {
  width: 90%;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 16px;
  color: #0f172a;
  font-family: 'Poppins', Arial, sans-serif;
  transition: all 0.3s ease;
  background: #fff;
}

.ja-form-group input:focus,
.ja-form-group select:focus,
.ja-form-group textarea:focus {
  outline: none;
  border-color: #0067da;
  box-shadow: 0 0 0 3px rgba(0, 103, 218, 0.1);
}

.ja-form-group input::placeholder,
.ja-form-group textarea::placeholder {
  color: #94a3b8;
}

.ja-form-group select {
  cursor: pointer;
  width: 100%;
}

.ja-form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
  width: 96%;
}

/* File Upload Styling */
.ja-file-upload {
  position: relative;
}

.ja-file-upload input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.ja-file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border: 2px dashed #cbd5e1;
  border-radius: 10px;
  background: #f8faff;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 91%;

}

.ja-file-upload-label:hover {
  border-color: #0067da;
  background: #f0f7ff;
}

.ja-file-upload-label.file-selected {
  border-color: #10b981;
  background: #ecfdf5;
}

.ja-file-upload-label i {
  font-size: 48px;
  color: #0067da;
  margin-bottom: 15px;
}

.ja-file-upload-label span {
  font-size: 16px;
  color: #475569;
  font-weight: 500;
  margin-bottom: 5px;
}

.ja-file-upload-label small {
  font-size: 14px;
  color: #94a3b8;
}

/* Checkbox Styling */
.checkbox-group {
  margin-top: 10px;
}

.ja-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.ja-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 5px;
  background: #fff;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.ja-checkbox input[type="checkbox"]:checked~.checkmark {
  background: #0067da;
  border-color: #0067da;
}

.ja-checkbox input[type="checkbox"]:checked~.checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  flex: 1;
}

.checkbox-text a {
  color: #0067da;
  text-decoration: none;
  font-weight: 600;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

/* Submit Button */
.ja-submit-btn {
  width: 27%;
  padding: 18px;
  background: linear-gradient(135deg, #0067da, #0d214f);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.ja-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 103, 218, 0.3);
}

.ja-submit-btn i {
  font-size: 20px;
}

/* ===== INSTRUCTIONS SECTION ===== */
.ja-instructions {
  padding: 80px 0;
  background: #fff;
}

.ja-instructions-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ja-instructions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.ja-instruction-card {
  background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
  padding: 40px 35px;
  border-radius: 16px;
  border-left: 4px solid #0067da;
  transition: all 0.3s ease;
}

.ja-instruction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 103, 218, 0.12);
}

.ja-instruction-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0067da, #0d214f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.ja-instruction-icon i {
  font-size: 28px;
  color: #fff;
}

.ja-instruction-card h3 {
  font-size: 22px;
  color: black;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.15;
}

.ja-instruction-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ja-instruction-card ul li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.ja-instruction-card ul li::before {
  content: '\2022';
  color: #0067da;
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  left: 0;
}

/* ===== THANK YOU SECTION ===== */
.ja-thankyou {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.ja-thankyou-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.ja-thankyou-content {
  background: #fff;
  padding: 60px 50px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(13, 33, 79, 0.08);
}

.ja-thankyou-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.ja-thankyou-icon i {
  font-size: 56px;
  color: #fff;
}

.ja-thankyou-content h2 {
  font-size: 40px;
  color: black;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.15;
}

.ja-thankyou-content>p {
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 40px;
}

.ja-contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.ja-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #f8faff;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

.ja-contact-item i {
  font-size: 32px;
  color: #0067da;
}

.ja-contact-item h4 {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 5px;
  font-weight: 600;
  text-align: left;
}

.ja-contact-item p {
  font-size: 18px;
  color: #0f172a;
  font-weight: 600;
  margin: 0;
  text-align: left;
}

.ja-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  background: #0067da;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ja-back-btn:hover {
  background: #0d214f;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 103, 218, 0.3);
  color: #fff;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
  .ja-form-row {
    grid-template-columns: 1fr;
  }

  .ja-instructions-grid {
    grid-template-columns: 1fr;
  }

  .ja-contact-info {
    grid-template-columns: 1fr;
  }

  .ja-form-container {
    padding: 35px 25px;
  }

  .ja-form-group input,
  .ja-form-group select,
  .ja-form-group textarea,
  .ja-file-upload-label {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .ja-submit-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {

  .ja-hero-text h1,
  .ja-section-title h2 {
    font-size: 32px;
  }

  .ja-thankyou-content {
    padding: 40px 30px;
  }

  .ja-thankyou-icon {
    width: 80px;
    height: 80px;
  }

  .ja-thankyou-icon i {
    font-size: 42px;
  }
}