/* Days Info Hero Section */
.daysinfo-hero {
  position: relative;
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 25px 0;
  overflow: hidden;
}

.daysinfo-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.daysinfo-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.daysinfo-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
}

/* Info Bar Section */
.info-bar-section {
  background: var(--primary-color);
  padding: 18px 0;
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
}

.info-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 100%;
}

.info-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.info-bar-label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
}

.info-bar-value {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
}

.info-bar-separator {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

/* Main Content Section */
.main-content-section {
  background: #ffffff;
  padding: 50px 0;
  overflow: hidden;
}

.content-wrapper {
  /* max-width: 900px; */
  width: 100%;
  margin: 0 auto;
  /* padding: 0 10px; CHANGED: Reduced from 0 20px to 0 10px */
  /* box-sizing: border-box; */
}

.intro-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin: 0 0 18px 0;
  text-align: justify;
  word-wrap: break-word;
}

.content-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 30px 0;
  width: 100%;
}

.section-heading {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 30px 0 15px 0;
  /* line-height: 1.3; */
  word-wrap: break-word;
}

.section-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  /* line-height: 1.6; */
  margin: 0 0 15px 0;
  text-align: justify;
  word-wrap: break-word;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 25px 0;
}

.check-list li {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  /* line-height: 1.6; */
  margin: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list li i {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Updated Why Apply With Us Section */
.why-apply-section {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
  box-sizing: border-box;
}

.why-apply-section .section-heading {
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 100%;
}

.benefits-column {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-column li {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin: 0 0 15px 0;
  padding-left: 30px;
  position: relative;
  display: flex;
  align-items: flex-start;
  word-wrap: break-word;
}

.benefits-column li::before {
  content: ".";
  position: absolute;
  left: 0;
  color: #666666;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* UPDATED How to Apply Section - Left text, Right icon */
.how-to-apply-section {
  background: #ffffff;
  padding: 50px 0;
  border-top: 1px solid #e0e0e0;
  overflow: hidden;
}

.how-to-apply-section .content-wrapper {
  padding: 0 10px; /* CHANGED: Reduced from 0 20px to 0 10px */
}

.apply-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: left;
  margin-bottom: 40px;
  line-height: 1.3;
  word-wrap: break-word;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.step-card {
  background: #f6f7f8;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #e5e5e5;
  box-shadow: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
}

.step-card:hover {
  background: #ffffff;
  border-color: var(--primary-color);
}

.step-content {
  text-align: left;
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
}

.step-number {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 5px 0;
}

.step-description {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
}

.step-icon-wrapper {
  margin: 0;
  flex-shrink: 0;
}

.step-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon i {
  font-size: 18px;
  color: #ffffff;
}

/* Updated Visa Summary Section */
.visa-summary-section {
  background: #ffffff;
  padding: 50px 0;
  border-top: 1px solid #e0e0e0;
  overflow: hidden;
}

.visa-summary-section .content-wrapper {
  padding: 0 10px; /* CHANGED: Reduced from 0 20px to 0 10px */
}

.summary-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: left;
  margin: 0 0 40px 0;
  line-height: 1.3;
  word-wrap: break-word;
}

.visa-summary-table {
  max-width: 100%;
  width: 100%;
  margin: 0 auto 35px auto;
  background: #ffffff;
  border: 2px solid #e8f5e8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  table-layout: fixed;
}

.summary-row {
  display: flex;
  border-bottom: 1px solid #e8f5e8;
  background: #ffffff;
  transition: background-color 0.3s ease;
  width: 100%;
}

.summary-row:hover {
  background: #f8f9fa;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  flex: 0 0 40%;
  padding: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  border-right: 1px solid #e8f5e8;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  word-wrap: break-word;
}

.summary-value {
  flex: 0 0 60%;
  padding: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  background: #ffffff;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  word-wrap: break-word;
}

.summary-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}

.btn-apply-now,
.btn-talk-support {
  padding: 16px 32px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  border: none;
  box-sizing: border-box;
  text-align: center;
  word-wrap: break-word;
}

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

.btn-apply-now:hover {
  background: #005a24;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 91, 36, 0.2);
}

.btn-talk-support {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-talk-support:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 91, 36, 0.2);
}

/* ============= RESPONSIVE DESIGN ============= */

/* Large Desktop (1400px+) */
@media (min-width: 1401px) {
  .daysinfo-container {
    max-width: 1300px;
  }
}

/* Desktop (1200px - 1400px) */
@media (max-width: 1400px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}

/* Desktop (992px - 1200px) */
@media (max-width: 1200px) {
  .daysinfo-container {
    max-width: 1140px;
  }

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

  .benefits-grid {
    gap: 25px;
  }

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

/* Tablet (768px - 992px) */
@media (max-width: 992px) {
  .daysinfo-container {
    max-width: 960px;
    padding: 0 15px;
  }

  .content-wrapper {
    padding: 0 15px;
  }

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

  .step-card {
    padding: 15px;
    gap: 12px;
  }

  .step-icon {
    width: 40px;
    height: 40px;
  }

  .step-icon i {
    font-size: 16px;
  }

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

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

  .summary-label,
  .summary-value {
    padding: 15px;
    font-size: 15px;
  }
}

/* Tablet (768px) */
@media (max-width: 768px) {
  .daysinfo-hero {
    min-height: 80px;
    padding: 20px 0;
  }

  .daysinfo-title {
    font-size: 24px;
  }

  .info-bar-section {
    padding: 14px 0;
  }

  .info-bar-wrapper {
    gap: 12px;
    justify-content: flex-start;
  }

  .info-bar-item {
    gap: 6px;
  }

  .info-bar-label {
    font-size: 13px;
  }

  .info-bar-value {
    font-size: 13px;
  }

  .intro-text {
    font-size: 14px;
    margin-bottom: 14px;
    text-align: left;
  }

  .section-heading {
    font-size: 18px;
    margin: 25px 0 12px 0;
  }

  .section-text {
    font-size: 14px;
    margin-bottom: 12px;
    text-align: left;
  }

  .content-divider {
    margin: 25px 0;
  }

  .why-apply-section {
    padding: 20px;
    margin: 25px 0;
  }

  .why-apply-section .section-heading {
    font-size: 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .benefits-column li {
    font-size: 16px;
    padding-left: 25px;
    margin-bottom: 12px;
  }

  .how-to-apply-section {
    padding: 40px 0;
  }

  .apply-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 500px;
  }

  .step-card {
    padding: 20px;
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }

  .step-content {
    width: auto;
  }

  .step-icon-wrapper {
    margin-left: 0;
  }

  .step-icon {
    width: 50px;
    height: 50px;
  }

  .step-icon i {
    font-size: 20px;
  }

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

  .visa-summary-section {
    padding: 40px 0;
  }

  .summary-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .summary-row {
    flex-direction: column;
  }

  .summary-label {
    flex: 1;
    border-right: none;
    border-bottom: 1px solid #e8f5e8;
    padding: 15px 20px;
    font-size: 15px;
    width: 100%;
  }

  .summary-value {
    flex: 1;
    padding: 15px 20px;
    font-size: 15px;
    width: 100%;
  }

  .summary-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
  }

  .btn-apply-now,
  .btn-talk-support {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    min-width: auto;
  }
}

/* Mobile Medium (480px - 576px) */
@media (max-width: 576px) {
  .daysinfo-hero {
    min-height: 70px;
    padding: 16px 0;
  }

  .daysinfo-title {
    font-size: 18px;
    line-height: 1.4;
  }

  .info-bar-section {
    padding: 10px 0;
  }

  .info-bar-wrapper {
    gap: 8px;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }

  .info-bar-item {
    gap: 4px;
    flex-basis: 100%;
    justify-content: flex-start;
  }

  .info-bar-separator {
    display: none;
  }

  .why-apply-section {
    padding: 15px;
    margin: 20px 0;
  }

  .benefits-column li {
    font-size: 14px;
    padding-left: 22px;
    margin-bottom: 10px;
  }

  .benefits-column li::before {
    font-size: 16px;
    width: 18px;
    height: 18px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-card {
    padding: 15px;
    gap: 12px;
  }

  .step-icon-wrapper {
    align-self: flex-start;
  }

  .step-icon {
    width: 45px;
    height: 45px;
  }

  .step-icon i {
    font-size: 18px;
  }

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

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

  .summary-label,
  .summary-value {
    padding: 12px 15px;
    font-size: 13px;
  }

  .btn-apply-now,
  .btn-talk-support {
    padding: 12px 18px;
    font-size: 13px;
    min-width: 100%;
  }
}

/* Mobile Small (360px - 480px) */
@media (max-width: 480px) {
  .content-wrapper {
    padding: 0 10px;
  }

  .daysinfo-container {
    padding: 0 10px;
  }

  .intro-text,
  .section-text {
    text-align: left;
    font-size: 14px;
  }

  .section-heading {
    font-size: 16px;
    margin: 20px 0 10px 0;
  }

  .content-divider {
    margin: 20px 0;
  }

  .check-list li {
    font-size: 14px;
    align-items: flex-start;
  }

  .check-list li i {
    font-size: 16px;
    margin-top: 2px;
  }

  .step-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .step-icon-wrapper {
    align-self: flex-start;
  }

  .step-content {
    width: 100%;
  }

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

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

  .summary-label,
  .summary-value {
    font-size: 12px;
    padding: 10px 12px;
  }

  .btn-apply-now,
  .btn-talk-support {
    font-size: 12px;
    padding: 10px 15px;
  }
}

/* Mobile Extra Small (below 360px) */
@media (max-width: 360px) {
  .daysinfo-title {
    font-size: 16px;
  }

  .info-bar-label,
  .info-bar-value {
    font-size: 12px;
  }

  .intro-text,
  .section-text {
    font-size: 13px;
  }

  .section-heading {
    font-size: 15px;
  }

  .benefits-column li {
    font-size: 13px;
    padding-left: 20px;
  }

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

  .summary-label,
  .summary-value {
    font-size: 11px;
  }
}




/* Prevent horizontal scrolling */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
