/* ============= TRACK VISA APPLICATION SECTION ============= */
.track-visa-section {
  width: 100%;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.track-visa-background {
  width: 100%;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px 0;
}

/* .track-visa-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75));
  z-index: 1;
} */

.track-visa-background .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

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

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

.track-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.5;
  margin: 0 0 20px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.track-subtitle strong {
  font-weight: 600;
  color: #2a2a2a;
}

/* ============= SEARCH INPUT SECTION ============= */
.track-search-wrapper {
  max-width: 650px;
  margin: 0 auto;
}

.search-input-group {
  display: flex;
  align-items: center;
  gap: 0;
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  padding: 5px;
  box-shadow: 0 4px 20px rgba(0, 108, 44, 0.15);
  transition: all 0.3s ease;
}

.search-input-group:focus-within {
  box-shadow: 0 6px 25px rgba(0, 108, 44, 0.25);
  transform: translateY(-2px);
}

.track-input {
  flex: 1;
  padding: 12px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #333333;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 4px;
}

.track-input::placeholder {
  color: #999999;
  font-weight: 400;
}

.search-btn {
  background: var(--primary-color);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 108, 44, 0.3);
}

.search-btn:hover {
  background: #005523;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 108, 44, 0.4);
}

.search-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 108, 44, 0.3);
}

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

/* Large Desktop */
@media (max-width: 1400px) {
  .track-title {
    font-size: 30px;
  }

  .track-subtitle {
    font-size: 14px;
    max-width: 650px;
  }

  .track-search-wrapper {
    max-width: 600px;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .track-visa-background {
    min-height: 220px;
    padding: 30px 0;
  }

  .track-title {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .track-subtitle {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .search-btn {
    padding: 11px 26px;
    font-size: 13px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .track-visa-background {
    min-height: 200px;
    padding: 28px 0;
  }

  .track-title {
    font-size: 26px;
  }

  .track-subtitle {
    font-size: 13px;
    max-width: 550px;
  }

  .track-search-wrapper {
    max-width: 550px;
  }

  .track-input {
    font-size: 12px;
    padding: 11px 14px;
  }

  .search-btn {
    padding: 11px 24px;
    font-size: 13px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .track-visa-background {
    min-height: 190px;
    padding: 25px 0;
  }

  .track-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .track-subtitle {
    font-size: 12px;
    margin-bottom: 16px;
    padding: 0 15px;
  }

  .track-search-wrapper {
    max-width: 100%;
    padding: 0 15px;
  }

  .search-input-group {
    padding: 4px;
  }

  .track-input {
    padding: 10px 12px;
    font-size: 12px;
  }

  .search-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* Mobile Medium */
@media (max-width: 480px) {
  .track-visa-background {
    min-height: 180px;
    padding: 22px 0;
  }

  .track-title {
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .track-subtitle {
    font-size: 11px;
    margin-bottom: 14px;
    line-height: 1.4;
  }

  .search-input-group {
    flex-direction: column;
    gap: 6px;
    padding: 6px;
  }

  .track-input {
    width: 100%;
    padding: 10px 12px;
    font-size: 12px;
    text-align: center;
  }

  .search-btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Mobile Small */
@media (max-width: 360px) {
  .track-visa-background {
    min-height: 170px;
    padding: 20px 0;
  }

  .track-title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .track-subtitle {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .track-input {
    padding: 9px 10px;
    font-size: 11px;
  }

  .search-btn {
    padding: 9px 14px;
    font-size: 12px;
  }
}

/* ============= ANIMATIONS ============= */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.track-title {
  animation: fadeInDown 0.6s ease-out;
}

.track-subtitle {
  animation: fadeInDown 0.6s ease-out 0.1s backwards;
}

.track-search-wrapper {
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

/* ============= ACCESSIBILITY ============= */
.track-input:focus {
  outline: none;
}

.search-btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.search-btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ============= PRINT STYLES ============= */
@media print {
  .track-visa-section {
    min-height: auto;
    padding: 20px 0;
  }

  .track-visa-overlay {
    display: none;
  }

  .search-btn {
    display: none;
  }
}

/* ============= APPLICATION STATUS GUIDE SECTION ============= */
.status-guide-section {
  padding: 60px 0 80px;
  background: white;
}

.status-guide-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============= SECTION HEADER ============= */
.status-guide-header {
  margin-bottom: 20px;
}

.status-guide-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

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

/* ============= STATUS TABLE ============= */
.status-table {
  background: white;
  border: none;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 40px;
}

.status-table-header {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: white;
  border-bottom: 1px solid #cccccc;
}

.status-col-status,
.status-col-meaning {
  padding: 12px 20px;
  font-family: "Poppins", sans-serif;
}

.status-table-header .status-col-status,
.status-table-header .status-col-meaning {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.status-table-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #cccccc;
  background: white;
}

.status-table-row:last-child {
  border-bottom: 1px solid #cccccc;
}

.status-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

.status-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0;
}

/* ============= ABOUT VISA PROCESSING ============= */
.about-processing {
  margin-top: 40px;
}

.about-processing-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.about-processing-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.8;
  margin: 0 0 14px 0;
  text-align: justify;
}

.about-processing-text:last-child {
  margin-bottom: 0;
}

/* ============= STATUS GUIDE RESPONSIVE ============= */

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

  .status-guide-content {
    max-width: 1100px;
  }

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

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

  .status-guide-content {
    max-width: 1000px;
  }

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

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

  .status-table-header {
    grid-template-columns: 190px 1fr;
  }

  .status-table-row {
    grid-template-columns: 190px 1fr;
  }

  .status-col-status,
  .status-col-meaning {
    padding: 11px 18px;
  }

  .about-processing-title {
    font-size: 19px;
    margin-bottom: 14px;
  }

  .about-processing-text {
    font-size: 13px;
    margin-bottom: 13px;
  }
}

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

  .status-guide-content {
    max-width: 900px;
  }

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

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

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

  .status-table-header {
    grid-template-columns: 180px 1fr;
  }

  .status-table-row {
    grid-template-columns: 180px 1fr;
  }

  .status-col-status,
  .status-col-meaning {
    padding: 10px 16px;
  }

  .status-table-header .status-col-status,
  .status-table-header .status-col-meaning {
    font-size: 13px;
  }

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

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

  .about-processing {
    margin-top: 35px;
  }

  .about-processing-title {
    font-size: 18px;
  }
}

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

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

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

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

  .status-table {
    border: none;
  }

  .status-table-header {
    grid-template-columns: 1fr;
    background: white;
    border-bottom: 1px solid #cccccc;
  }

  .status-table-header .status-col-status {
    display: none;
  }

  .status-table-header .status-col-meaning {
    color: #1a1a1a;
    text-align: left;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 13px;
  }

  .status-table-row {
    grid-template-columns: 1fr;
    gap: 0;
    border-bottom: 1px solid #cccccc;
  }

  .status-table-row .status-col-status {
    background: #f8f8f8;
    border-bottom: 1px solid #cccccc;
    padding: 9px 16px;
  }

  .status-table-row .status-col-meaning {
    padding: 12px 16px;
    background: white;
  }

  .status-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
  }

  .status-text {
    font-size: 12px;
    line-height: 1.6;
  }

  .about-processing {
    margin-top: 32px;
  }

  .about-processing-title {
    font-size: 17px;
    margin-bottom: 13px;
  }

  .about-processing-text {
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.7;
  }
}

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

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

  .status-guide-description {
    font-size: 11px;
    line-height: 1.5;
  }

  .status-table-header .status-col-meaning {
    font-size: 12px;
    padding: 9px 14px;
  }

  .status-table-row .status-col-status {
    padding: 8px 14px;
  }

  .status-table-row .status-col-meaning {
    padding: 11px 14px;
  }

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

  .status-text {
    font-size: 11px;
  }

  .about-processing-title {
    font-size: 16px;
    margin-bottom: 11px;
  }

  .about-processing-text {
    font-size: 11px;
    margin-bottom: 11px;
  }
}

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

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

  .status-guide-description {
    font-size: 10px;
  }

  .status-table-header .status-col-meaning {
    font-size: 11px;
    padding: 8px 12px;
  }

  .status-table-row .status-col-status {
    padding: 7px 12px;
  }

  .status-table-row .status-col-meaning {
    padding: 10px 12px;
  }

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

  .status-text {
    font-size: 10px;
  }

  .about-processing-title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .about-processing-text {
    font-size: 10px;
    margin-bottom: 10px;
  }
}

/* ============= PRINT STYLES FOR STATUS GUIDE ============= */
@media print {
  .status-guide-section {
    padding: 20px 0;
    background: white;
  }
}

/* ============= FAQ SECTION ============= */
.faq-section {
  padding: 0;
  background: white;
  overflow: hidden;
}

.faq-background {
  background: #e7ecea;
  padding: 60px 0;
  position: relative;
}

.faq-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}

/* ============= FAQ LEFT SIDE ============= */
.faq-left {
  position: relative;
}

.faq-title-wrapper {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.faq-green-border {
  width: 5px;
  min-height: 140px;
  background: var(--primary-color);
  border-radius: 0;
  flex-shrink: 0;
}

.faq-title-content {
  padding-left: 20px;
  flex: 1;
}

.faq-title {
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.faq-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  margin: 0;
  line-height: 1.6;
}

/* ============= FAQ RIGHT SIDE - ACCORDION ============= */
.faq-right {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border-left: 5px solid var(--primary-color);
  padding-left: 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  background: white;
  border-bottom: 1px solid #d0d0d0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.faq-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.faq-item:last-child {
  border-bottom: 1px solid #d0d0d0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: white;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  gap: 20px;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-item.active .faq-question {
  background: white;
}

.faq-question-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.5;
}

.faq-icon {
  color: var(--primary-color);
  font-size: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

/* ============= FAQ RESPONSIVE ============= */

/* Large Desktop */
@media (max-width: 1400px) {
  .faq-content {
    grid-template-columns: 380px 1fr;
    gap: 55px;
  }

  .faq-title {
    font-size: 36px;
  }

  .faq-subtitle {
    font-size: 15px;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .faq-background {
    padding: 50px 0;
  }

  .faq-content {
    grid-template-columns: 350px 1fr;
    gap: 50px;
  }

  .faq-title {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .faq-subtitle {
    font-size: 15px;
  }

  .faq-question {
    padding: 16px 22px;
  }

  .faq-question-text {
    font-size: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 0 22px 18px 22px;
  }

  .faq-answer p {
    font-size: 13px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .faq-background {
    padding: 45px 0;
  }

  .faq-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .faq-green-border {
    min-height: 120px;
  }

  .faq-title {
    font-size: 30px;
  }

  .faq-subtitle {
    font-size: 14px;
  }

  .faq-question {
    padding: 16px 20px;
  }

  .faq-question-text {
    font-size: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 18px 20px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .faq-background {
    padding: 40px 0;
  }

  .faq-content {
    gap: 30px;
  }

  .faq-title-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .faq-green-border {
    width: 100%;
    min-height: 5px;
    margin-bottom: 16px;
  }

  .faq-title-content {
    padding-left: 0;
  }

  .faq-title {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .faq-subtitle {
    font-size: 14px;
  }

  .faq-right {
    border-left: none;
    border-top: 5px solid var(--primary-color);
    padding-left: 0;
    padding-top: 0;
  }

  .faq-question {
    padding: 15px 18px;
  }

  .faq-question-text {
    font-size: 14px;
  }

  .faq-icon {
    font-size: 13px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 16px 18px;
  }

  .faq-answer p {
    font-size: 13px;
  }
}

/* Mobile Medium */
@media (max-width: 480px) {
  .faq-background {
    padding: 35px 0;
  }

  .faq-title {
    font-size: 22px;
  }

  .faq-subtitle {
    font-size: 13px;
  }

  .faq-question {
    padding: 14px 16px;
    gap: 14px;
  }

  .faq-question-text {
    font-size: 13px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 14px 16px;
  }

  .faq-answer p {
    font-size: 12px;
  }
}

/* Mobile Small */
@media (max-width: 360px) {
  .faq-background {
    padding: 30px 0;
  }

  .faq-title {
    font-size: 20px;
  }

  .faq-subtitle {
    font-size: 12px;
  }

  .faq-question {
    padding: 12px 14px;
  }

  .faq-question-text {
    font-size: 12px;
  }

  .faq-item.active .faq-answer {
    padding: 0 14px 12px 14px;
  }

  .faq-answer p {
    font-size: 11px;
  }
}

/* ============= PRINT STYLES FOR FAQ ============= */
@media print {
  .faq-background {
    background: white;
    padding: 20px 0;
  }

  .faq-item.active .faq-answer {
    max-height: none;
  }
}
