/* Visa Application Form Hero Section */
.visa-application-hero {
  position: relative;
  width: 100%;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0;
}

.visa-application-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.visa-application-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.visa-application-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.visa-application-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4a4a4a;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Design */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
  .visa-application-hero {
    min-height: 105px;
    padding: 28px 0;
  }

  .visa-application-title {
    font-size: 34px;
  }

  .visa-application-subtitle {
    font-size: 14px;
  }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
  .visa-application-hero {
    min-height: 100px;
    padding: 26px 0;
  }

  .visa-application-title {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .visa-application-subtitle {
    font-size: 14px;
  }
}

/* Laptop - 1024px */
@media (max-width: 1024px) {
  .visa-application-hero {
    min-height: 95px;
    padding: 24px 0;
  }

  .visa-application-title {
    font-size: 30px;
    margin-bottom: 8px;
  }

  .visa-application-subtitle {
    font-size: 13px;
  }
}

/* Tablet - 768px */
@media (max-width: 768px) {
  .visa-application-hero {
    min-height: 90px;
    padding: 22px 0;
  }

  .visa-application-title {
    font-size: 26px;
    margin-bottom: 6px;
  }

  .visa-application-subtitle {
    font-size: 13px;
  }
}

/* Mobile Large - 480px */
@media (max-width: 480px) {
  .visa-application-hero {
    min-height: 85px;
    padding: 20px 0;
  }

  .visa-application-title {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .visa-application-subtitle {
    font-size: 12px;
  }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
  .visa-application-hero {
    min-height: 80px;
    padding: 18px 0;
  }

  .visa-application-title {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .visa-application-subtitle {
    font-size: 11px;
  }
}

/* Visa Application Form Section */
.visa-form-section {
  background: #f5f5f5;
  padding: 50px 0;
}

.visa-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #4a4a4a;
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Form Inputs */
.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #2a2a2a;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input::placeholder {
  color: #999;
}

.form-input:hover {
  border-color: #a0a0a0;
}

.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 108, 44, 0.1);
}

/* Select Wrapper */
.select-wrapper {
  position: relative;
  width: 100%;
}

.form-select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #2a2a2a;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-select:hover {
  border-color: #a0a0a0;
}

.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 108, 44, 0.1);
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 12px;
  pointer-events: none;
}

/* Date Inputs */
.form-group-date {
  grid-column: span 1;
}

.date-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.date-select {
  flex: 1;
}

/* File Upload */
.file-upload-wrapper {
  position: relative;
  width: 100%;
}

.file-input {
  display: none;
}

.file-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #999;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-label:hover {
  border-color: #a0a0a0;
}

.file-text {
  flex: 1;
}

.file-icon {
  color: #666;
  font-size: 16px;
}

/* WhatsApp Info */
.whatsapp-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.whatsapp-icon {
  font-size: 20px;
  color: var(--primary-color);
}

.whatsapp-text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2a2a2a;
}

/* Upload Notice */
.upload-notice {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.email-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.email-link:hover {
  text-decoration: underline;
}

/* Terms Group */
.terms-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.terms-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.terms-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  cursor: pointer;
  margin: 0;
}

/* Form Buttons */
.form-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.btn-primary,
.btn-secondary {
  padding: 14px 36px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.btn-primary {
  color: #ffffff;
  background: var(--primary-color);
}

.btn-primary:hover {
  background: #005a24;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 108, 44, 0.3);
}

.btn-secondary {
  color: #ffffff;
  background: #7a7a7a;
}

.btn-secondary:hover {
  background: #666;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 122, 122, 0.3);
}

/* Responsive Design for Form */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
  .visa-form-section {
    padding: 45px 0;
  }

  .visa-form {
    padding: 36px;
  }

  .form-grid {
    gap: 22px;
  }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
  .visa-form-section {
    padding: 40px 0;
  }

  .visa-form {
    padding: 32px;
  }

  .form-grid {
    gap: 20px;
  }

  .form-label {
    font-size: 13px;
  }

  .form-input,
  .form-select {
    font-size: 13px;
    padding: 11px 15px;
  }

  .form-select {
    padding-right: 38px;
  }

  .file-label {
    font-size: 13px;
    padding: 11px 15px;
  }
}

/* Laptop - 1024px */
@media (max-width: 1024px) {
  .visa-form-section {
    padding: 35px 0;
  }

  .visa-form {
    padding: 28px;
  }

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

  .form-group-date {
    grid-column: span 1;
  }
}

/* Tablet - 768px */
@media (max-width: 768px) {
  .visa-form-section {
    padding: 30px 0;
  }

  .visa-form {
    padding: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .form-input,
  .form-select {
    font-size: 12px;
    padding: 10px 14px;
  }

  .form-select {
    padding-right: 36px;
  }

  .file-label {
    font-size: 12px;
    padding: 10px 14px;
  }

  .whatsapp-text {
    font-size: 14px;
  }

  .upload-notice {
    font-size: 12px;
  }

  .terms-label {
    font-size: 13px;
  }

  .form-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 12px 32px;
    font-size: 14px;
  }
}

/* Mobile Large - 480px */
@media (max-width: 480px) {
  .visa-form-section {
    padding: 25px 0;
  }

  .visa-form {
    padding: 20px;
    border-radius: 8px;
  }

  .form-grid {
    gap: 14px;
  }

  .form-label {
    font-size: 11px;
  }

  .form-input,
  .form-select {
    font-size: 11px;
    padding: 9px 12px;
  }

  .form-select {
    padding-right: 34px;
  }

  .file-label {
    font-size: 11px;
    padding: 9px 12px;
  }

  .date-inputs {
    gap: 8px;
  }

  .whatsapp-icon {
    font-size: 18px;
  }

  .whatsapp-text {
    font-size: 13px;
  }

  .upload-notice {
    font-size: 11px;
  }

  .terms-checkbox {
    width: 16px;
    height: 16px;
  }

  .terms-label {
    font-size: 12px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 11px 28px;
    font-size: 13px;
  }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
  .visa-form-section {
    padding: 20px 0;
  }

  .visa-form {
    padding: 16px;
  }

  .form-grid {
    gap: 12px;
  }

  .form-label {
    font-size: 10px;
  }

  .form-input,
  .form-select {
    font-size: 10px;
    padding: 8px 10px;
  }

  .form-select {
    padding-right: 32px;
  }

  .file-label {
    font-size: 10px;
    padding: 8px 10px;
  }

  .select-arrow {
    right: 12px;
    font-size: 10px;
  }

  .file-icon {
    font-size: 14px;
  }

  .whatsapp-text {
    font-size: 12px;
  }

  .upload-notice {
    font-size: 10px;
  }

  .terms-checkbox {
    width: 14px;
    height: 14px;
  }

  .terms-label {
    font-size: 11px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 24px;
    font-size: 12px;
  }
}

/* Visa Application Status Guide Section */
.visa-status-guide-section {
  background: #ffffff;
  padding: 60px 0;
}

.status-guide-header {
  text-align: left;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.status-guide-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #2a2a2a;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.status-guide-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.status-steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.status-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid #e0e0e0;
  align-items: start;
}

.status-step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #4a4a4a;
  line-height: 1.5;
}

.step-content {
  display: flex;
  flex-direction: column;
}

.step-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2a2a2a;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.step-description {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design for Status Guide */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
  .visa-status-guide-section {
    padding: 55px 0;
  }

  .status-guide-header {
    margin-bottom: 36px;
  }

  .status-guide-title {
    font-size: 26px;
  }

  .status-guide-subtitle {
    font-size: 14px;
  }

  .status-step {
    grid-template-columns: 95px 1fr;
    gap: 28px;
    padding: 22px 0;
  }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
  .visa-status-guide-section {
    padding: 50px 0;
  }

  .status-guide-header {
    margin-bottom: 32px;
  }

  .status-guide-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .status-guide-subtitle {
    font-size: 14px;
  }

  .status-step {
    grid-template-columns: 90px 1fr;
    gap: 26px;
    padding: 20px 0;
  }

  .step-number {
    font-size: 15px;
  }

  .step-title {
    font-size: 15px;
  }

  .step-description {
    font-size: 13px;
  }
}

/* Laptop - 1024px */
@media (max-width: 1024px) {
  .visa-status-guide-section {
    padding: 45px 0;
  }

  .status-guide-header {
    margin-bottom: 30px;
  }

  .status-guide-title {
    font-size: 22px;
  }

  .status-guide-subtitle {
    font-size: 13px;
  }

  .status-step {
    grid-template-columns: 85px 1fr;
    gap: 24px;
    padding: 18px 0;
  }

  .step-number {
    font-size: 14px;
  }

  .step-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .step-description {
    font-size: 13px;
  }
}

/* Tablet - 768px */
@media (max-width: 768px) {
  .visa-status-guide-section {
    padding: 40px 0;
  }

  .status-guide-header {
    margin-bottom: 28px;
    padding-bottom: 18px;
  }

  .status-guide-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .status-guide-subtitle {
    font-size: 13px;
  }

  .status-step {
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 16px 0;
  }

  .step-number {
    font-size: 14px;
  }

  .step-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .step-description {
    font-size: 12px;
  }
}

/* Mobile Large - 480px */
@media (max-width: 480px) {
  .visa-status-guide-section {
    padding: 35px 0;
  }

  .status-guide-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .status-guide-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .status-guide-subtitle {
    font-size: 12px;
  }

  .status-step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .step-number {
    font-size: 13px;
  }

  .step-title {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .step-description {
    font-size: 12px;
  }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
  .visa-status-guide-section {
    padding: 30px 0;
  }

  .status-guide-header {
    margin-bottom: 20px;
    padding-bottom: 14px;
  }

  .status-guide-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .status-guide-subtitle {
    font-size: 11px;
  }

  .status-step {
    padding: 14px 0;
    gap: 10px;
  }

  .step-number {
    font-size: 12px;
  }

  .step-title {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .step-description {
    font-size: 11px;
  }
}
