/* 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 - FIXED: Working arrow functionality */
.select-wrapper {
  position: relative;
  width: 100%;
}

/* Single arrow for standard selects - starts as DOWN arrow (▼) - SMALLER SIZE */
.select-wrapper .custom-arrow {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #666;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When select is active - rotate 180° to become UP arrow (▲) */
.select-wrapper.active .custom-arrow {
  transform: translateY(-50%) rotate(180deg);
  border-top-color: var(--primary-color);
}

/* For date selects */
.date-select .custom-arrow {
  right: 12px;
}

.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;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.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);
}

/* Hide the Font Awesome arrow since we're using custom arrows */
.select-arrow {
  display: none !important;
}

/* 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);
}

/* Additional Services */
.additional-services {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 12px;
  background: #fafafa;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #2a2a2a;
  margin: 8px 0;
}

.service-item input[type="checkbox"] {
  margin-right: 10px;
}

.service-price {
  color: #dc3545;
  font-weight: 600;
}

/* Visa Fee Box */
.visa-fee-group {
  margin-bottom: 20px;
}

.visa-fee-box {
  width: 30%;
  padding: 12px 16px;
  background: #e9f3ee;
  border: 1px solid #cde6d7;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #2a2a2a;
}

/* ================================
   ADDITIONAL SERVICES DROPDOWN/DIALOG
================================ */

/* Fake select box for Additional Services */
.additional-service-select {
  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;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  transition: all 0.3s ease;
  position: relative;
}

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

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

.additional-service-select .service-placeholder {
  color: #666;
}

.additional-service-select .service-placeholder.has-selection {
  color: #2a2a2a;
  font-weight: 500;
}

/* REMOVED: Custom arrow for Additional Services as requested */

/* Selected Services Preview */
.selected-services-preview {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
}

.selected-services-preview::-webkit-scrollbar {
  height: 4px;
}

.selected-services-preview::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.selected-services-preview::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.selected-services-preview::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.selected-service-tag {
  background-color: #e8f4fc;
  color: #3498db;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

.remove-service {
  background: none;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  display: flex;
  align-items: center;
  line-height: 1;
}

.remove-service:hover {
  color: #c0392b;
}

/* Dialog Box Styles */
.dialog-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  backdrop-filter: blur(3px);
}

.dialog-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  display: none;
}

.dialog-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e9ecef;
  background-color: #f8f9fa;
  border-radius: 12px 12px 0 0;
}

.dialog-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  font-family: "Poppins", sans-serif;
}

.dialog-body {
  padding: 24px;
}

.dialog-footer {
  padding: 20px 24px;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.service-item-dialog {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Poppins", sans-serif;
}

.service-item-dialog:hover {
  border-color: var(--primary-color);
  background-color: #f8fafc;
}

.service-item-dialog.selected {
  border-color: var(--primary-color);
  background-color: #e8f4fc;
}

.service-checkbox {
  margin-right: 12px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.service-label {
  flex: 1;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-name {
  font-size: 16px;
  color: #2c3e50;
  font-family: "Poppins", sans-serif;
}

.service-price-dialog {
  font-size: 16px;
  font-weight: 600;
  color: #27ae60;
  font-family: "Poppins", sans-serif;
}

.btn-dialog {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.btn-dialog-primary {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.btn-dialog-primary:hover {
  background-color: #005a24;
}

.btn-dialog-secondary {
  background-color: #f8f9fa;
  color: #6c757d;
  border: 1px solid #dee2e6;
}

.btn-dialog-secondary:hover {
  background-color: #e9ecef;
}

/* Prevent scrolling when dialog is open */
body.dialog-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Error Styling */
.error {
  border-color: #dc3545 !important;
}

.error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  font-family: "Poppins", sans-serif;
}

/* 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;
  }
  
  /* .select-wrapper .custom-arrow {
    right: 14px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #666;
  } */
}

/* 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;
  }
/*   
  .select-wrapper .custom-arrow {
    right: 12px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #666;
  } */
  
  .additional-service-select {
    font-size: 13px;
    padding: 11px 15px;
  }

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

  .visa-fee-box {
    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;
  }
  
  /* .select-wrapper .custom-arrow {
    right: 10px;
  } */
  
  .date-select .custom-arrow {
    right: 8px;
  }
}

/* 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;
  }
  
  /* .select-wrapper .custom-arrow {
    right: 10px;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #666;
  } */

  .additional-service-select {
    font-size: 12px;
    padding: 10px 14px;
  }

  .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;
  }

  .dialog-box {
    width: 95%;
    max-width: 400px;
  }

  .dialog-header,
  .dialog-body,
  .dialog-footer {
    padding: 16px;
  }

  .service-item-dialog {
    padding: 12px;
  }

  .service-name,
  .service-price-dialog {
    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;
  }
  
  /* .select-wrapper .custom-arrow {
    right: 8px;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-top: 3px solid #666;
  } */

  .additional-service-select {
    font-size: 11px;
    padding: 9px 12px;
  }

  .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;
  }

  .dialog-box {
    width: 95%;
    max-width: 350px;
  }

  .dialog-title {
    font-size: 16px;
  }
}

/* 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;
  }
  
  /* .select-wrapper .custom-arrow {
    right: 6px;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-top: 2px solid #666;
  } */

  .additional-service-select {
    font-size: 10px;
    padding: 8px 10px;
  }

  .file-label {
    font-size: 10px;
    padding: 8px 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;
  }
}