/* ============= HERO SECTION STYLES ============= */
.hero-section {
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.hero-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: auto;
  position: relative;
  display: flex;
  align-items: center;
  padding: 50px 0 60px 0;
}


/* Remove the skyline effect since using actual background image */

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

.hero-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    border-radius: 13px;
    overflow: hidden;
    gap: 0;
    width: 76%;
    margin: 0 auto;
}

/* ============= VISA FORM CARD STYLES ============= */
.visa-form-card {
  background: white;
  /* border-radius: 8px; */
  padding: 24px 26px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  flex: 0 0 53%;
  /* max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  height: auto; */
}

.form-header {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.green-border {
  width: 4px;
  height: 48px;
  background: var(--primary-color);
  position: relative;
  left: 0;
  top: 0;
  border-radius: 0;
  flex-shrink: 0;
}

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

.form-content {
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 0;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.apply-now-btn {
  background: var(--primary-color);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 0 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: none;
  flex-shrink: 0;
  height: 46px;
  min-width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.apply-now-btn i {
  display: none;
}

.form-label {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.form-select {
  width: 100%;
  padding: 12px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #333333;
  background: white;
  border: 1px solid #cccccc;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding-right: 14px;
  height: 46px;
  border-right: none;
}

.form-select:focus {
  outline: none;
  border-color: #cccccc;
  background: white;
  box-shadow: none;
}

.form-select option {
  padding: 10px;
  font-family: "Poppins", sans-serif;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background: var(--primary-color);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  pointer-events: none;
}

.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 12px;
  pointer-events: none;
  z-index: 1;
}

.select-wrapper:hover .select-arrow {
  color: white;
}

/* ============= APPLY NOW BUTTON ============= */
/* Button styles moved to form-row section above */

.apply-now-btn:hover {
  background: #005523;
  transform: none;
  box-shadow: none;
}

.apply-now-btn:active {
  transform: none;
  box-shadow: none;
}

/* ============= SECURITY SECTION ============= */
.security-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  /* background: rgba(255, 255, 255, 0.15); */
  border-radius: 6px;
  border-left: 2px solid rgba(255, 255, 255, 0.4);
}

.security-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-icon i {
  /* color: white;/ */
  font-size: 16px;
}

.security-text {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  /* color: white;/ */
  line-height: 1.5;
}

.security-text strong {
  /* color: white; */
  font-weight: 600;
}

/* ============= HERO TEXT CONTENT ============= */
.hero-text-content {
    color: black;
    padding: 14px;
    background:#D9DFDB;
    border-radius: 0;
    backdrop-filter: none;
    position: relative;
    margin-left: 0;
    flex: 0 0 41%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px 0;
  /* color: white; */
  text-shadow: none;
}

.hero-title em {
  font-style: italic;
  /* color: white; */
}

.hero-description {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  /* color: white; */
  margin: 0 0 16px 0;
  text-shadow: none;
  opacity: 0.95;
}

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

/* Large Desktop */
@media (max-width: 1400px) {
  .hero-content {
    gap: 60px;
  }

  .hero-title {
    font-size: 34px;
  }

  .visa-form-card {
    max-width: 400px;
    padding: 26px;
  }

  .hero-text-content {
    margin-left: 0;
    padding: 25px 30px 25px 0;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .hero-content {
    gap: 40px;
  }

  .hero-title {
    font-size: 32px;
  }

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

  .visa-form-card {
    max-width: 380px;
    padding: 24px;
  }

  .hero-text-content {
    margin-left: 0;
    padding: 20px 25px 20px 0;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-section {
    min-height: auto;
  }

  .hero-background {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding-top: 20px;
  }

  .hero-text-content {
    margin-left: 0;
    padding: 20px;
    order: 1;
    max-width: 100%;
  }

  .visa-form-card {
    order: 2;
    max-width: 450px;
    width: 100%;
  }

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

  .hero-background .container {
    padding: 0 30px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .hero-background {
    min-height: auto;
    padding: 30px 0;
  }

  .hero-content {
    min-height: auto;
    padding-top: 10px;
    gap: 25px;
  }

  .visa-form-card {
    padding: 22px;
    margin: 0 10px;
    border-radius: 10px;
  }

  .green-border {
    left: -22px;
    height: 35px;
  }

  .form-title {
    font-size: 18px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .apply-now-btn {
    width: 100%;
    height: 46px;
    font-size: 14px;
    padding: 12px 25px;
  }

  .form-select {
    padding: 10px 12px;
    font-size: 13px;
    padding-right: 40px;
    height: 46px;
  }

  .hero-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

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

  .hero-text-content {
    margin-left: 0;
    padding: 15px;
  }

  .security-info {
    padding: 12px;
    margin-top: 15px;
  }

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

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

  .visa-form-card {
    padding: 20px;
    margin: 0 5px;
  }

  .form-title {
    font-size: 18px;
  }

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

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-select {
    padding: 10px 12px;
    font-size: 14px;
    padding-right: 40px;
    height: 48px;
  }

  .apply-now-btn {
    width: 100%;
    height: 48px;
    padding: 12px 25px;
    font-size: 15px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

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

  .security-info {
    gap: 12px;
    padding: 12px;
  }

  .green-border {
    left: -20px;
    height: 35px;
    width: 3px;
  }
}

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

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

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

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

  .form-select {
    padding: 8px 10px;
    padding-right: 35px;
  }

  .apply-now-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ============= HOVER EFFECTS ============= */
.visa-form-card {
  transition: all 0.3s ease;
}

/* .visa-form-card:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
} */

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

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

.visa-form-card {
  animation: fadeInUp 0.8s ease-out;
}

.hero-text-content {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

/* ============= ACCESSIBILITY ============= */
.form-select:focus,
.apply-now-btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.apply-now-btn:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

/* ============= PRINT STYLES ============= */
@media print {
  .hero-section {
    background: white !important;
    color: black !important;
    min-height: auto;
  }

  .hero-background {
    background: white !important;
  }

  .hero-text-content {
    color: black !important;
  }
}

/* ============= 4 EASY STEPS SECTION ============= */
.steps-section {
  padding: 40px 0 50px 0;
  background: #f9fafb;
  position: relative;
}

.steps-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.steps-header {
  text-align: center;
  margin-bottom: 30px;
}

.steps-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.steps-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1260px;
  margin: 0 auto;
}

.step-card {
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 0;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  min-height: 220px;
  box-shadow: 0 2px 8px rgba(0, 108, 44, 0.06);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 108, 44, 0.15);
  border-color: #005a24;
}

.step-icon-wrapper {
  width: 60px;
  height: 60px;
  background: #e8f5ed;
  border-radius: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 16px auto;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.step-card:hover .step-icon-wrapper {
  background: var(--primary-color);
  transform: scale(1.1) rotate(5deg);
  border-color: #005a24;
}

.step-icon {
  font-size: 28px;
  color: var(--primary-color);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-icon {
  color: white;
  transform: scale(1.05);
}

.step-description {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
  padding: 0 18px 16px 18px;
  text-align: center;
}

.step-footer {
  margin-top: auto;
  padding: 14px 16px;
  background: var(--primary-color);
  border-radius: 0 0 14px 14px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-footer {
  background: #005a24;
}

.step-badge {
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  margin-left: 10px;
}

.step-number {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.step-label {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  letter-spacing: 0.2px;
  flex: 1;
}

/* Steps Section Responsive */
@media (max-width: 1400px) {
  .steps-section {
    padding: 35px 0 45px 0;
  }

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

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

  .steps-grid {
    gap: 20px;
  }

  .step-card {
    min-height: 210px;
  }

  .step-icon-wrapper {
    width: 56px;
    height: 56px;
    margin: 18px auto 14px auto;
  }

  .step-icon {
    font-size: 26px;
  }
}

@media (max-width: 1200px) {
  .steps-section {
    padding: 30px 0 40px 0;
  }

  .steps-header {
    margin-bottom: 25px;
  }

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

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

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

  .step-card {
    min-height: 240px;
  }

  .step-icon-wrapper {
    width: 65px;
    height: 65px;
    margin: 24px auto 18px auto;
  }

  .step-icon {
    font-size: 30px;
  }

  .step-description {
    font-size: 13px;
    padding: 0 20px 18px 20px;
  }

  .step-footer {
    padding: 16px 20px;
  }

  .step-badge {
    width: 30px;
    height: 30px;
  }

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

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

@media (max-width: 1024px) {
  .steps-section {
    padding: 30px 0 40px 0;
  }

  .steps-header {
    margin-bottom: 25px;
  }

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

  .step-card {
    min-height: 230px;
    border-radius: 16px;
  }

  .step-footer {
    border-radius: 0 0 14px 14px;
  }

  .step-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .step-icon {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .steps-section {
    padding: 30px 0 40px 0;
  }

  .steps-header {
    margin-bottom: 25px;
  }

  .steps-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

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

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

  .step-card {
    min-height: auto;
    border-radius: 14px;
  }

  .step-footer {
    border-radius: 0 0 12px 12px;
  }

  .step-icon-wrapper {
    width: 65px;
    height: 65px;
    margin: 24px auto 18px auto;
  }

  .step-icon {
    font-size: 30px;
  }

  .step-description {
    font-size: 13px;
    padding: 0 20px 18px 20px;
    line-height: 1.6;
  }

  .step-footer {
    padding: 16px 20px;
  }

  .step-badge {
    width: 30px;
    height: 30px;
  }

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

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

@media (max-width: 480px) {
  .steps-section {
    padding: 25px 0 35px 0;
  }

  .steps-header {
    margin-bottom: 22px;
  }

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

  .steps-subtitle {
    font-size: 11px;
  }

  .step-card {
    border-width: 2px;
    border-radius: 12px;
  }

  .step-footer {
    border-radius: 0 0 10px 10px;
  }

  .step-icon-wrapper {
    width: 58px;
    height: 58px;
    margin: 20px auto 14px auto;
  }

  .step-icon {
    font-size: 26px;
  }

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

  .step-footer {
    padding: 14px 16px;
  }

  .step-badge {
    width: 26px;
    height: 26px;
  }

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

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

@media (max-width: 360px) {
  .steps-section {
    padding: 22px 0 32px 0;
  }

  .steps-header {
    margin-bottom: 20px;
  }

  .steps-title {
    font-size: 18px;
  }

  .steps-subtitle {
    font-size: 10px;
  }

  .step-card {
    border-width: 2px;
    border-radius: 10px;
  }

  .step-footer {
    border-radius: 0 0 8px 8px;
  }

  .step-icon-wrapper {
    width: 54px;
    height: 54px;
    margin: 18px auto 12px auto;
  }

  .step-icon {
    font-size: 24px;
  }

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

  .step-footer {
    padding: 12px 14px;
    gap: 8px;
  }

  .step-badge {
    width: 24px;
    height: 24px;
  }

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

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

/* ============= WHY CHOOSE US SECTION ============= */
.why-choose-section {
  padding: 60px 0;
  background: #f5f5f5;
  position: relative;
}

.why-choose-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-choose-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* ============= LEFT SIDE - HEADING & FEATURES ============= */
.why-choose-left {
  flex: 0 0 380px;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.why-choose-title {
  font-family: "Poppins", sans-serif;
  margin: 0 0 30px 0;
  padding-left: 12px;
  border-left: 5px solid var(--primary-color);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: #2a2a2a;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-flag {
  width: 28px;
  height: 21px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

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

/* ============= RIGHT SIDE - VISA INFO ============= */
.why-choose-right {
  flex: 1;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 420px;
}

.visa-content-wrapper {
  display: flex;
  gap: 0;
  height: 100%;
}

.visa-types-tabs {
  display: flex;
  flex-direction: column;
  background: white;
  border-right: 1px solid #e8e8e8;
  min-width: 200px;
  padding: 15px 0;
  height: 100%;
  overflow-y: auto;
}

.visa-tab {
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-left: 4px solid transparent;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  line-height: 1.5;
  border-radius: 0;
}

.visa-tab span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #888888;
  margin-top: 2px;
}

.visa-tab.active {
  background: var(--primary-color);
  color: white;
  border-left-color: var(--primary-color);
  border-radius: 0 8px 8px 0;
  margin-right: 8px;
}

.visa-tab.active span {
  color: rgba(255, 255, 255, 0.9);
}

.visa-tab:hover:not(.active) {
  background: #f8f8f8;
  color: var(--primary-color);
}

.visa-info-content {
  flex: 1;
  padding: 20px 25px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.visa-tab-content {
  display: none;
}

.visa-tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease-in;
}

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

.visa-info-text {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555555;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.visa-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.visa-info-list li {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #555555;
  padding: 3px 0;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.visa-info-list li:before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
}

.visa-info-footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #ebebeb;
  display: flex;
}

.uae-emirates-info {
  display: flex;
  align-items: flex-start;
  width: 50%;
  gap: 8px;
  padding: 10px 12px;
  background: #f5faf7;
  border-radius: 6px;
  margin-bottom: 14px;
  border-left: 3px solid var(--primary-color);
}

.info-icon {
  color: var(--primary-color);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.emirates-text {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  color: #333333;
  line-height: 1.5;
}

.visa-action-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 50%;
}

.apply-visa-btn {
  background: var(--primary-color);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 108, 44, 0.2);
  width: 100%;
  text-align: center;
}

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

.more-info-link {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--primary-color);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
  font-weight: 500;
  text-align: center;
}

.more-info-link:hover {
  color: #005523;
  text-decoration: underline;
}

/* ============= WHY CHOOSE RESPONSIVE ============= */
@media (max-width: 1200px) {
  .why-choose-content {
    gap: 25px;
  }

  .why-choose-left {
    flex: 0 0 340px;
  }

  .why-choose-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .visa-types-tabs {
    min-width: 180px;
  }

  .visa-info-content {
    padding: 25px 30px;
  }
}

@media (max-width: 1024px) {
  .why-choose-section {
    padding: 50px 0;
  }

  .why-choose-content {
    flex-direction: column;
    gap: 25px;
  }

  .why-choose-left {
    flex: 1;
    width: 100%;
    max-width: 100%;
  }

  .why-choose-title {
    font-size: 26px;
  }

  .visa-content-wrapper {
    min-height: 420px;
    flex-direction: column;
  }

  .visa-types-tabs {
    flex-direction: row;
    min-width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    padding: 0;
  }

  .visa-tab {
    flex: 1 1 33.333%;
    min-width: 140px;
    font-size: 13px;
    padding: 14px 10px;
    text-align: center;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .visa-tab.active {
    border-left: none;
    border-bottom-color: var(--primary-color);
    border-radius: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 45px 0;
  }

  .why-choose-title {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .features-list {
    gap: 14px;
  }

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

  .visa-content-wrapper {
    flex-direction: column;
    min-height: auto;
  }

  .visa-types-tabs {
    flex-direction: column;
    min-width: 100%;
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
  }

  .visa-tab {
    width: 100%;
    padding: 14px 20px;
    text-align: left;
    border-radius: 0;
    border-left: 3px solid transparent;
    border-bottom: none;
  }

  .visa-tab.active {
    border-left-color: var(--primary-color);
    border-bottom: none;
    border-radius: 0;
    margin-right: 0;
  }

  .visa-info-content {
    padding: 25px 20px;
  }

  .visa-action-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .apply-visa-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .why-choose-section {
    padding: 40px 0;
  }

  .why-choose-container {
    padding: 0 15px;
  }

  .why-choose-title {
    font-size: 22px;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left-width: 4px;
  }

  .features-list {
    gap: 12px;
  }

  .feature-flag {
    width: 26px;
    height: 20px;
  }

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

  .visa-types-tabs {
    flex-direction: column;
  }

  .visa-tab {
    font-size: 13px;
    padding: 12px 16px;
    text-align: left;
    border-left: 3px solid transparent;
    border-bottom: none;
  }

  .visa-tab.active {
    border-left-color: var(--primary-color);
    border-bottom: none;
    border-radius: 0;
    margin-right: 0;
  }

  .visa-tab span {
    font-size: 11px;
  }

  .visa-info-content {
    padding: 20px 16px;
  }

  .visa-info-text {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .visa-info-list li {
    font-size: 13px;
    padding-left: 20px;
  }

  .uae-emirates-info {
    padding: 12px 14px;
    margin-bottom: 16px;
  }

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

  .apply-visa-btn {
    font-size: 14px;
    padding: 12px 24px;
  }

  .more-info-link {
    font-size: 13px;
  }
}

/* ============= COMBINED SECTIONS WRAPPER ============= */
.combined-sections-wrapper {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-attachment: fixed;
  position: relative; */
}

/* .combined-sections-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 1;
} */

.combined-sections-wrapper > section {
  position: relative;
  z-index: 2;
}

/* ============= THINGS TO DO BEFORE ARRIVAL SECTION ============= */
.things-todo-section {
  padding: 50px 0;
  background: transparent;
  position: relative;
}

.things-todo-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.things-todo-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.things-todo-left {
  flex: 1;
}

.things-todo-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2a2a2a;
  margin: 0 0 8px 0;
  line-height: 1.3;
  padding-bottom: 12px;
  border-bottom: 3px solid #e0e0e0;
}

.things-todo-text {
  margin-top: 20px;
}

.things-todo-text p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  line-height: 1.7;
  margin: 0 0 16px 0;
  text-align: justify;
}

.things-todo-text p:last-child {
  margin-bottom: 0;
}

.things-todo-right {
  flex: 0 0 223px;
}

.evisa-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  border: 6px solid #f5f5f5;
}

.evisa-sample-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============= BENEFITS OF EVISA SECTION ============= */
.benefits-section {
  padding: 50px 0;
  background: transparent;
  position: relative;
}

.benefits-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.benefits-left {
  flex: 0 0 223px;
}

.airport-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.airport-img {
  width: 100%;
  height: auto;
  display: block;
}

.benefits-right {
  flex: 1;
}

.benefits-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2a2a2a;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.benefits-text p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  line-height: 1.7;
  margin: 0 0 16px 0;
  text-align: justify;
}

.benefits-text p:last-child {
  margin-bottom: 0;
}

/* ============= THINGS TODO & BENEFITS RESPONSIVE ============= */
@media (max-width: 1200px) {
  .things-todo-content,
  .benefits-content {
    gap: 35px;
  }

  .things-todo-title,
  .benefits-title {
    font-size: 28px;
  }

  .things-todo-right {
    flex: 0 0 150px;
  }

  .benefits-left {
    flex: 0 0 180px;
  }
  
  .things-todo-text p,
  .benefits-text p {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .things-todo-section,
  .benefits-section {
    padding: 40px 0;
  }

  .things-todo-content {
    flex-direction: column;
    gap: 30px;
  }

  .benefits-content {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .things-todo-right,
  .benefits-left {
    flex: 1;
    width: 100%;
    max-width: 480px;
  }

  .things-todo-title,
  .benefits-title {
    font-size: 26px;
    margin-bottom: 15px;
  }
  
  .things-todo-title {
    padding-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .things-todo-section,
  .benefits-section {
    padding: 35px 0;
  }

  .things-todo-title,
  .benefits-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .things-todo-text,
  .benefits-text {
    margin-top: 15px;
  }

  .things-todo-text p,
  .benefits-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .evisa-image-wrapper {
    border: 5px solid #f5f5f5;
  }
}

@media (max-width: 480px) {
  .things-todo-section,
  .benefits-section {
    padding: 30px 0;
  }

  .things-todo-container,
  .benefits-container {
    padding: 0 15px;
  }

  .things-todo-title,
  .benefits-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .things-todo-title {
    padding-bottom: 8px;
  }

  .things-todo-text p,
  .benefits-text p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .evisa-image-wrapper {
    border: 4px solid #f5f5f5;
    border-radius: 8px;
  }

  .airport-image-wrapper {
    border-radius: 12px;
  }
}

@media (max-width: 360px) {
  .things-todo-section,
  .benefits-section {
    padding: 25px 0;
  }

  .things-todo-title,
  .benefits-title {
    font-size: 20px;
  }

  .things-todo-text p,
  .benefits-text p {
    font-size: 11px;
    margin-bottom: 10px;
  }
}

/* ============= COMBINED WRAPPER RESPONSIVE ============= */
@media (max-width: 768px) {
  /* .combined-sections-wrapper {
    background-attachment: scroll;
  } */

  /* .combined-sections-wrapper::before {
    background: rgba(255, 255, 255, 0.95);
  } */
}

/* ============= BUDGET-FRIENDLY THINGS TO DO SECTION ============= */
.budget-friendly-section {
    padding: 50px 0;
    background: var(--primary-color);
    position: relative;
}

.budget-friendly-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.budget-friendly-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* Left Side - Text Content */
.budget-friendly-left {
    flex: 1;
    color: white;
}

.budget-friendly-title {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.budget-friendly-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.budget-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet-point {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-top: 1px;
    flex-shrink: 0;
}

.budget-text {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: white;
    line-height: 1.5;
    margin: 0;
}

/* Right Side - Beach Image */
.budget-friendly-right {
    flex: 0 0 380px;
}

.budget-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.budget-beach-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.budget-image-wrapper:hover .budget-beach-img {
    transform: scale(1.05);
}

/* ============= BUDGET-FRIENDLY RESPONSIVE DESIGN ============= */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
    .budget-friendly-content {
        gap: 45px;
    }

    .budget-friendly-title {
        font-size: 34px;
    }

    .budget-friendly-right {
        flex: 0 0 350px;
    }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
    .budget-friendly-section {
        padding: 45px 0;
    }

    .budget-friendly-content {
        gap: 40px;
    }

    .budget-friendly-title {
        font-size: 32px;
    }

    .budget-friendly-right {
        flex: 0 0 320px;
    }

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

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .budget-friendly-section {
        padding: 40px 0;
    }

    .budget-friendly-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .budget-friendly-right {
        flex: 1;
        width: 100%;
        max-width: 400px;
    }

    .budget-friendly-title {
        font-size: 30px;
        text-align: center;
        margin-bottom: 25px;
    }

    .budget-item {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }

    .budget-friendly-list {
        gap: 15px;
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    .budget-friendly-section {
        padding: 35px 0;
    }

    .budget-friendly-container {
        padding: 0 15px;
    }

    .budget-friendly-content {
        gap: 25px;
    }

    .budget-friendly-title {
        font-size: 26px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .budget-friendly-list {
        gap: 12px;
    }

    .budget-item {
        gap: 10px;
    }

    .bullet-point {
        font-size: 18px;
        margin-top: 1px;
    }

    .budget-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .budget-image-wrapper {
        border-radius: 15px;
        border: 3px solid rgba(255, 255, 255, 0.1);
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .budget-friendly-section {
        padding: 30px 0;
    }

    .budget-friendly-container {
        padding: 0 12px;
    }

    .budget-friendly-content {
        gap: 20px;
    }

    .budget-friendly-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .budget-friendly-list {
        gap: 10px;
    }

    .budget-item {
        gap: 8px;
    }

    .bullet-point {
        font-size: 16px;
    }

    .budget-text {
        font-size: 12px;
        line-height: 1.4;
    }

    .budget-image-wrapper {
        border-radius: 12px;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
    .budget-friendly-section {
        padding: 25px 0;
    }

    .budget-friendly-container {
        padding: 0 10px;
    }

    .budget-friendly-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .budget-friendly-list {
        gap: 8px;
    }

    .budget-item {
        gap: 6px;
    }

    .bullet-point {
        font-size: 14px;
    }

    .budget-text {
        font-size: 11px;
        line-height: 1.4;
    }

    .budget-image-wrapper {
        border-radius: 10px;
    }
}

/* ============= HOVER EFFECTS ============= */
.budget-item {
    transition: all 0.3s ease;
}

.budget-item:hover {
    transform: translateX(10px);
}

.budget-item:hover .bullet-point {
    color: #e2e8e4;
}

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

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

.budget-friendly-left {
    animation: fadeInLeft 0.8s ease-out;
}

.budget-friendly-right {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

/* ============= ACCESSIBILITY ============= */
.budget-item:focus-within {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
    border-radius: 4px;
}

/* ============= PRINT STYLES ============= */
@media print {
    .budget-friendly-section {
        background: white !important;
        color: black !important;
    }

    .budget-friendly-title,
    .budget-text,
    .bullet-point {
        color: black !important;
    }
}

/* ============= APPLY FOR DUBAI E-VISA SECTION ============= */
.apply-evisa-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.apply-evisa-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.apply-evisa-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(255, 255, 255, 0.95); */
    z-index: 1;
}

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

.apply-evisa-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* ============= LEFT SIDE - APPLY INFO & VISA OPTIONS ============= */
.apply-evisa-left {
    flex: 1;
    max-width: 600px;
}

.apply-info-section {
    margin-bottom: 25px;
}

.apply-title {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.apply-description {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.apply-description strong {
    color: #333333;
    font-weight: 600;
}

.visa-options-section {
    /* background: rgba(255, 255, 255, 0.8); */
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.visa-options-title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.visa-options-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.visa-options-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.visa-option-item {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 18px;
}

.visa-option-item:last-child {
    border-bottom: none;
}

.visa-option-item::before {
    content: '•';
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 8px;
}

/* ============= RIGHT SIDE - DOCUMENTS & STEPS ============= */
.apply-evisa-right {
    flex: 1;
    max-width: 600px;
}

.documents-section {
    margin-bottom: 25px;
}

.documents-title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.documents-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

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

.document-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
}

.document-bullet {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

.document-text {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
}

.application-steps-section {
    /* background: rgba(255, 255, 255, 0.8); */
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.steps-section-title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.application-steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.application-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.step-icon-small {
    color: white;
    font-size: 12px;
}

.step-text {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #333333;
    line-height: 1.4;
}

/* ============= APPLY E-VISA RESPONSIVE DESIGN ============= */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
    .apply-evisa-content {
        gap: 50px;
    }

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

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

/* Desktop - 1200px */
@media (max-width: 1200px) {
    .apply-evisa-section {
        padding: 35px 0;
    }

    .apply-evisa-content {
        gap: 35px;
    }

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

    .visa-options-title,
    .documents-title,
    .steps-section-title {
        font-size: 18px;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .apply-evisa-section {
        padding: 30px 0;
    }

    .apply-evisa-content {
        flex-direction: column;
        gap: 25px;
    }

    .apply-evisa-left,
    .apply-evisa-right {
        max-width: 100%;
    }

    .apply-info-section {
        margin-bottom: 20px;
    }

    .documents-section {
        margin-bottom: 18px;
    }

    .apply-title {
        font-size: 24px;
        text-align: center;
    }

    .visa-options-section,
    .application-steps-section {
        padding: 15px;
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    .apply-evisa-section {
        padding: 35px 0;
    }

    .apply-evisa-container {
        padding: 0 15px;
    }

    .apply-evisa-content {
        gap: 25px;
    }

    .apply-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .apply-description {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .visa-options-title,
    .documents-title,
    .steps-section-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .visa-options-subtitle,
    .documents-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .visa-options-section,
    .application-steps-section {
        padding: 18px;
    }

    .visa-option-item,
    .document-text,
    .step-text {
        font-size: 13px;
    }

    .application-steps-list {
        gap: 12px;
    }

    .step-icon-circle {
        width: 28px;
        height: 28px;
    }

    .step-icon-small {
        font-size: 12px;
    }

    .apply-info-section {
        margin-bottom: 25px;
    }

    .documents-section {
        margin-bottom: 20px;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .apply-evisa-section {
        padding: 30px 0;
    }

    .apply-evisa-container {
        padding: 0 12px;
    }

    .apply-evisa-content {
        gap: 20px;
    }

    .apply-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .apply-description {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .visa-options-title,
    .documents-title,
    .steps-section-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .visa-options-subtitle,
    .documents-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .visa-options-section,
    .application-steps-section {
        padding: 15px;
    }

    .visa-option-item,
    .document-text,
    .step-text {
        font-size: 12px;
    }

    .application-steps-list {
        gap: 10px;
    }

    .step-icon-circle {
        width: 26px;
        height: 26px;
    }

    .step-icon-small {
        font-size: 11px;
    }

    .application-step {
        gap: 10px;
    }

    .apply-info-section {
        margin-bottom: 20px;
    }

    .documents-section {
        margin-bottom: 18px;
    }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
    .apply-evisa-section {
        padding: 25px 0;
    }

    .apply-evisa-container {
        padding: 0 10px;
    }

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

    .apply-description {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .visa-options-title,
    .documents-title,
    .steps-section-title {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .visa-options-subtitle,
    .documents-subtitle {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .visa-options-section,
    .application-steps-section {
        padding: 12px;
    }

    .visa-option-item,
    .document-text,
    .step-text {
        font-size: 11px;
    }

    .step-icon-circle {
        width: 24px;
        height: 24px;
    }

    .step-icon-small {
        font-size: 10px;
    }
}

/* ============= HOVER EFFECTS ============= */
.visa-option-item:hover {
    background: rgba(0, 108, 44, 0.05);
    padding-left: 25px;
    transition: all 0.3s ease;
}

.application-step:hover .step-icon-circle {
    background: #005a24;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.application-step:hover .step-text {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

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

.apply-evisa-left {
    animation: fadeInLeft 0.8s ease-out;
}

.apply-evisa-right {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

/* ============= ACCESSIBILITY ============= */
.visa-option-item:focus,
.application-step:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ============= PRINT STYLES ============= */
@media print {
    .apply-evisa-section {
        background: white !important;
        color: black !important;
    }

    .apply-evisa-background::before {
        display: none;
    }

    .apply-title,
    .visa-options-title,
    .documents-title,
    .steps-section-title {
        color: black !important;
    }

    .step-icon-circle {
        background: #666 !important;
    }
}

/* ============= CUSTOMER INSIGHTS SECTION ============= */
.customer-insights-section {
    padding: 50px 0;
    background: #e8e8e8;
    position: relative;
}

.customer-insights-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============= SECTION HEADER ============= */
.insights-header {
    text-align: center;
    margin-bottom: 40px;
}

.insights-title {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* ============= CUSTOMER REVIEWS GRID ============= */
.customer-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* ============= REVIEW CARD ============= */
.review-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ============= REVIEW HEADER ============= */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.customer-avatar {
    flex-shrink: 0;
}

.customer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.customer-details {
    flex: 1;
}

.customer-name {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star-rating i {
    color: #ffc107;
    font-size: 14px;
}

.country-flag {
    flex-shrink: 0;
}

.flag-image {
    width: 30px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #ddd;
}

/* ============= REVIEW CONTENT ============= */
.review-content {
    margin-top: 15px;
}

.review-text {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* ============= CUSTOMER INSIGHTS RESPONSIVE DESIGN ============= */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
    .customer-reviews-grid {
        gap: 25px;
    }

    .insights-title {
        font-size: 34px;
    }

    .review-card {
        padding: 22px;
    }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
    .customer-insights-section {
        padding: 45px 0;
    }

    .insights-header {
        margin-bottom: 35px;
    }

    .insights-title {
        font-size: 32px;
    }

    .customer-reviews-grid {
        gap: 20px;
    }

    .review-card {
        padding: 20px;
    }

    .customer-name {
        font-size: 15px;
    }

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

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .customer-insights-section {
        padding: 40px 0;
    }

    .insights-header {
        margin-bottom: 30px;
    }

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

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

    .review-card {
        padding: 18px;
    }

    .customer-photo {
        width: 45px;
        height: 45px;
    }

    .customer-name {
        font-size: 14px;
    }

    .star-rating i {
        font-size: 13px;
    }

    .flag-image {
        width: 28px;
        height: 18px;
    }

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

/* Mobile Large - 768px */
@media (max-width: 768px) {
    .customer-insights-section {
        padding: 35px 0;
    }

    .customer-insights-container {
        padding: 0 15px;
    }

    .insights-header {
        margin-bottom: 25px;
    }

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

    .title-underline {
        width: 50px;
        height: 2px;
    }

    .customer-reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .review-card {
        padding: 16px;
    }

    .customer-info {
        gap: 10px;
    }

    .customer-photo {
        width: 40px;
        height: 40px;
    }

    .customer-name {
        font-size: 14px;
    }

    .star-rating i {
        font-size: 12px;
    }

    .flag-image {
        width: 25px;
        height: 16px;
    }

    .review-text {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .customer-insights-section {
        padding: 30px 0;
    }

    .customer-insights-container {
        padding: 0 12px;
    }

    .insights-header {
        margin-bottom: 20px;
    }

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

    .title-underline {
        width: 40px;
    }

    .customer-reviews-grid {
        gap: 15px;
    }

    .review-card {
        padding: 14px;
    }

    .review-header {
        margin-bottom: 12px;
    }

    .customer-info {
        gap: 8px;
    }

    .customer-photo {
        width: 35px;
        height: 35px;
    }

    .customer-name {
        font-size: 13px;
    }

    .star-rating i {
        font-size: 11px;
    }

    .flag-image {
        width: 22px;
        height: 14px;
    }

    .review-content {
        margin-top: 12px;
    }

    .review-text {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
    .customer-insights-section {
        padding: 25px 0;
    }

    .customer-insights-container {
        padding: 0 10px;
    }

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

    .title-underline {
        width: 35px;
    }

    .review-card {
        padding: 12px;
    }

    .customer-photo {
        width: 32px;
        height: 32px;
    }

    .customer-name {
        font-size: 12px;
    }

    .star-rating i {
        font-size: 10px;
    }

    .flag-image {
        width: 20px;
        height: 12px;
    }

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

/* ============= HOVER EFFECTS ============= */
.review-card:hover .customer-photo {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.review-card:hover .star-rating i {
    color: #ff9500;
    transition: color 0.3s ease;
}

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

.review-card {
    animation: fadeInUp 0.6s ease-out;
}

.review-card:nth-child(1) {
    animation-delay: 0.1s;
}

.review-card:nth-child(2) {
    animation-delay: 0.2s;
}

.review-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* ============= ACCESSIBILITY ============= */
.review-card:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.customer-photo {
    transition: transform 0.3s ease;
}

/* ============= PRINT STYLES ============= */
@media print {
    .customer-insights-section {
        background: white !important;
        color: black !important;
    }

    .insights-title {
        color: black !important;
    }

    .review-card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        break-inside: avoid;
    }

    .star-rating i {
        color: #666 !important;
    }
}

/* ============= PREFERRED DESTINATION SECTION ============= */
.preferred-destination-section {
    padding: 35px 0;
    background: white;
    position: relative;
}

.preferred-destination-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============= DESTINATION HEADER ============= */
.destination-header {
    text-align: center;
    margin-bottom: 25px;
}

.destination-title {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.destination-title-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* ============= ALPHABET NAVIGATION ============= */
.alphabet-navigation {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.alphabet-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #ddd;
    background: white;
    color: #666666;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alphabet-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.alphabet-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* ============= COUNTRIES GRID ============= */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

/* ============= COUNTRY CARD ============= */
.country-card {
    background: #f8fff8;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 15px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.country-card:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 108, 44, 0.15);
}

.country-card:hover .country-name {
    color: white;
}

.country-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #ddd;
    flex-shrink: 0;
}

.country-name {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    transition: color 0.3s ease;
    line-height: 1.3;
}

/* ============= PREFERRED DESTINATION RESPONSIVE DESIGN ============= */

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

    .countries-grid {
        gap: 18px;
    }

    .country-card {
        padding: 18px 12px;
    }

    .alphabet-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

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

    .destination-header {
        margin-bottom: 35px;
    }

    .destination-title {
        font-size: 32px;
    }

    .alphabet-navigation {
        gap: 6px;
        margin-bottom: 30px;
    }

    .alphabet-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .countries-grid {
        gap: 16px;
    }

    .country-card {
        padding: 16px 10px;
    }

    .country-flag {
        width: 26px;
        height: 16px;
    }

    .country-name {
        font-size: 13px;
    }
}

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

    .destination-header {
        margin-bottom: 30px;
    }

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

    .alphabet-navigation {
        gap: 5px;
        margin-bottom: 25px;
    }

    .alphabet-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

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

    .country-card {
        padding: 15px 8px;
        gap: 10px;
    }

    .country-flag {
        width: 24px;
        height: 15px;
    }

    .country-name {
        font-size: 12px;
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    .preferred-destination-section {
        padding: 25px 0;
    }

    .preferred-destination-container {
        padding: 0 15px;
    }

    .destination-header {
        margin-bottom: 20px;
    }

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

    .destination-title-underline {
        width: 50px;
        height: 2px;
    }

    .alphabet-navigation {
        gap: 3px;
        margin-bottom: 15px;
    }

    .alphabet-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

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

    .country-card {
        padding: 10px 5px;
        gap: 6px;
        flex-direction: column;
        text-align: center;
    }

    .country-flag {
        width: 20px;
        height: 12px;
    }

    .country-name {
        font-size: 11px;
        line-height: 1.2;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .preferred-destination-section {
        padding: 20px 0;
    }

    .preferred-destination-container {
        padding: 0 12px;
    }

    .destination-header {
        margin-bottom: 15px;
    }

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

    .destination-title-underline {
        width: 35px;
    }

    .alphabet-navigation {
        gap: 2px;
        margin-bottom: 12px;
    }

    .alphabet-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
        border-radius: 6px;
    }

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

    .country-card {
        padding: 10px 5px;
        gap: 6px;
    }

    .country-flag {
        width: 20px;
        height: 12px;
    }

    .country-name {
        font-size: 10px;
    }
}

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

    .preferred-destination-container {
        padding: 0 10px;
    }

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

    .destination-title-underline {
        width: 35px;
    }

    .alphabet-navigation {
        gap: 2px;
        margin-bottom: 15px;
    }

    .alphabet-btn {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }

    .countries-grid {
        gap: 8px;
    }

    .country-card {
        padding: 8px 4px;
        gap: 5px;
    }

    .country-flag {
        width: 18px;
        height: 11px;
    }

    .country-name {
        font-size: 9px;
    }
}

/* ============= HOVER EFFECTS ============= */
.country-card:hover .country-flag {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.alphabet-btn:active {
    transform: translateY(0);
}

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

.country-card {
    animation: fadeInUp 0.6s ease-out;
}

.country-card:nth-child(1) { animation-delay: 0.1s; }
.country-card:nth-child(2) { animation-delay: 0.2s; }
.country-card:nth-child(3) { animation-delay: 0.3s; }
.country-card:nth-child(4) { animation-delay: 0.4s; }
.country-card:nth-child(5) { animation-delay: 0.5s; }
.country-card:nth-child(6) { animation-delay: 0.6s; }
.country-card:nth-child(7) { animation-delay: 0.7s; }
.country-card:nth-child(8) { animation-delay: 0.8s; }
.country-card:nth-child(9) { animation-delay: 0.9s; }
.country-card:nth-child(10) { animation-delay: 1.0s; }
.country-card:nth-child(11) { animation-delay: 1.1s; }
.country-card:nth-child(12) { animation-delay: 1.2s; }
.country-card:nth-child(13) { animation-delay: 1.3s; }
.country-card:nth-child(14) { animation-delay: 1.4s; }
.country-card:nth-child(15) { animation-delay: 1.5s; }

/* ============= ACCESSIBILITY ============= */
.alphabet-btn:focus,
.country-card:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.alphabet-btn:focus {
    border-color: var(--primary-color);
    /* color: var(--primary-color); */
}

.country-card:focus {
    background: var(--primary-color);
    color: white;
}

.country-card:focus .country-name {
    color: white;
}

/* ============= PRINT STYLES ============= */
@media print {
    .preferred-destination-section {
        background: white !important;
        color: black !important;
    }

    .destination-title {
        color: black !important;
    }

    .country-card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        break-inside: avoid;
        background: white !important;
    }

    .country-name {
        color: black !important;
    }

    .alphabet-btn {
        border: 1px solid #ddd !important;
        background: white !important;
        color: black !important;
    }

    .alphabet-btn.active {
        background: #666 !important;
        color: white !important;
    }
}

/* ============= DISCOVER THE UAE SECTION ============= */
.discover-uae-section {
    background: var(--primary-color);
    padding: 50px 0;
    color: white;
}

.discover-uae-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============= DISCOVER HEADER ============= */
.discover-header {
    text-align: center;
    margin-bottom: 40px;
}

.discover-title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.discover-title-underline {
    width: 60px;
    height: 3px;
    background: #ffffff;
    margin: 0 auto;
    border-radius: 2px;
}

/* ============= DISCOVER CONTENT GRID ============= */
.discover-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ============= DISCOVER COLUMNS ============= */
.discover-left-column,
.discover-right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ============= DISCOVER ITEM ============= */
.discover-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.discover-item-header {
    margin-bottom: 5px;
}

.discover-item-title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.discover-item-text {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: white;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* ============= DISCOVER QUOTE BOX ============= */
.discover-quote-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px 20px;
    margin-top: 10px;
}

.discover-quote-text {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: white;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
    font-style: italic;
}

.discover-quote-text strong {
    font-weight: 700;
    color: white;
}

/* ============= DISCOVER UAE RESPONSIVE DESIGN ============= */

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

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

    .discover-content-grid {
        gap: 35px;
    }

    .discover-item-title {
        font-size: 19px;
    }

    .discover-quote-box {
        padding: 22px 18px;
    }
}

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

    .discover-uae-container {
        padding: 0 18px;
    }

    .discover-header {
        margin-bottom: 35px;
    }

    .discover-title {
        font-size: 28px;
    }

    .discover-content-grid {
        gap: 30px;
    }

    .discover-left-column,
    .discover-right-column {
        gap: 25px;
    }

    .discover-item-title {
        font-size: 18px;
    }

    .discover-item-text {
        font-size: 13px;
    }

    .discover-quote-text {
        font-size: 14px;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .discover-uae-section {
        padding: 35px 0;
    }

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

    .discover-content-grid {
        gap: 25px;
    }

    .discover-item-title {
        font-size: 17px;
    }

    .discover-quote-box {
        padding: 20px 16px;
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    .discover-uae-section {
        padding: 30px 0;
    }

    .discover-uae-container {
        padding: 0 15px;
    }

    .discover-header {
        margin-bottom: 30px;
    }

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

    .discover-title-underline {
        width: 50px;
        height: 2px;
    }

    .discover-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .discover-left-column,
    .discover-right-column {
        gap: 20px;
    }

    .discover-item-title {
        font-size: 16px;
    }

    .discover-item-text {
        font-size: 13px;
        text-align: left;
    }

    .discover-quote-box {
        padding: 18px 15px;
    }

    .discover-quote-text {
        font-size: 13px;
        text-align: left;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .discover-uae-section {
        padding: 25px 0;
    }

    .discover-uae-container {
        padding: 0 12px;
    }

    .discover-header {
        margin-bottom: 25px;
    }

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

    .discover-title-underline {
        width: 45px;
    }

    .discover-content-grid {
        gap: 20px;
    }

    .discover-left-column,
    .discover-right-column {
        gap: 18px;
    }

    .discover-item {
        gap: 10px;
    }

    .discover-item-title {
        font-size: 15px;
    }

    .discover-item-text {
        font-size: 12px;
        line-height: 1.5;
    }

    .discover-quote-box {
        padding: 15px 12px;
    }

    .discover-quote-text {
        font-size: 12px;
        line-height: 1.5;
    }
}

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

    .discover-uae-container {
        padding: 0 10px;
    }

    .discover-header {
        margin-bottom: 20px;
    }

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

    .discover-title-underline {
        width: 40px;
        height: 2px;
    }

    .discover-content-grid {
        gap: 15px;
    }

    .discover-left-column,
    .discover-right-column {
        gap: 15px;
    }

    .discover-item {
        gap: 8px;
    }

    .discover-item-title {
        font-size: 14px;
    }

    .discover-item-text {
        font-size: 11px;
    }

    .discover-quote-box {
        padding: 12px 10px;
    }

    .discover-quote-text {
        font-size: 11px;
    }
}

/* ============= HOVER EFFECTS ============= */
.discover-item:hover .discover-item-title {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    transition: text-shadow 0.3s ease;
}

.discover-quote-box:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

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

.discover-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.discover-item:nth-child(1) { animation-delay: 0.1s; }
.discover-item:nth-child(2) { animation-delay: 0.3s; }

.discover-quote-box {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

/* ============= ACCESSIBILITY ============= */
.discover-item:focus-within .discover-item-title {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ============= PRINT STYLES ============= */
@media print {
    .discover-uae-section {
        background: #f8f8f8 !important;
        color: #333 !important;
        padding: 30px 0 !important;
    }

    .discover-title,
    .discover-item-title,
    .discover-item-text,
    .discover-quote-text {
        color: #333 !important;
    }

    .discover-title-underline {
        background: #333 !important;
    }

    .discover-quote-box {
        background: #f0f0f0 !important;
        border: 1px solid #ddd !important;
    }

    .discover-content-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* ============= FAQ SECTION ============= */
.faq-section {
    background: #E8EDE9;
    padding: 35px 0 40px 0;
}

.faq-content-wrapper {
    display: grid;
    grid-template-columns: 0.75fr 1.8fr;
    gap: 60px;
    align-items: center;
}

/* ============= FAQ LEFT SIDE ============= */
.faq-left-content {
    padding-right: 0;
}

.faq-title-section {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 10px;
}

.faq-green-bar {
    width: 5px;
    height: 75px;
    background: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
    border-radius: 3px 0 0 3px;
}

.faq-main-title {
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.faq-description {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #5a5a5a;
    margin: 0;
    line-height: 1.5;
    padding-left: 20px;
}

/* ============= FAQ RIGHT SIDE ============= */
.faq-right-content {
    width: 100%;
}

.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* ============= FAQ ITEM ============= */
.faq-item {
    background: white;
    border: 1px solid #d0d0d0;
    border-radius: 5px 0 0 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: none;
}

.faq-item:hover {
    border-color: #c0c0c0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
    border-color: #c0c0c0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.faq-question-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    background: white;
    transition: background-color 0.3s ease;
    border-bottom: 0;
}

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

.faq-question-text {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 15px;
}

.faq-arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: transparent;
    border-radius: 0;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-arrow-icon i {
    color: var(--primary-color);
    font-size: 15px;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer-wrapper {
    max-height: 180px;
}

.faq-answer-content {
    padding: 0 20px 14px 20px;
    border-top: 0;
}

.faq-answer-content p {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #5a5a5a;
    line-height: 1.6;
    margin: 0;
}

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

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

    .faq-content-wrapper {
        gap: 55px;
    }

    .faq-main-title {
        font-size: 26px;
    }

    .faq-green-bar {
        height: 75px;
    }
}

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

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

    .faq-main-title {
        font-size: 24px;
    }

    .faq-green-bar {
        height: 70px;
    }

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

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

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

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

    .faq-content-wrapper {
        gap: 45px;
        grid-template-columns: 1fr 1.4fr;
    }

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

    .faq-green-bar {
        height: 65px;
    }

    .faq-question-wrapper {
        padding: 13px 18px;
    }

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

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

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

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

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

    .faq-green-bar {
        height: 65px;
    }

    .faq-description {
        font-size: 13px;
        padding-left: 20px;
    }

    .faq-accordion-wrapper {
        gap: 7px;
    }

    .faq-question-wrapper {
        padding: 13px 18px;
    }

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

    .faq-answer-content {
        padding: 0 18px 14px 18px;
    }

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

    .faq-arrow-icon {
        width: 22px;
        height: 22px;
    }

    .faq-arrow-icon i {
        font-size: 14px;
    }
}

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

    .faq-content-wrapper {
        gap: 24px;
    }

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

    .faq-green-bar {
        height: 60px;
    }

    .faq-description {
        font-size: 12px;
        padding-left: 20px;
    }

    .faq-accordion-wrapper {
        gap: 6px;
    }

    .faq-question-wrapper {
        padding: 12px 16px;
    }

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

    .faq-answer-content {
        padding: 0 16px 13px 16px;
    }

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

    .faq-arrow-icon {
        width: 20px;
        height: 20px;
    }

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

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

    .faq-content-wrapper {
        gap: 22px;
    }

    .faq-main-title {
        font-size: 18px;
    }

    .faq-green-bar {
        height: 55px;
    }

    .faq-description {
        font-size: 11px;
        padding-left: 20px;
    }

    .faq-accordion-wrapper {
        gap: 5px;
    }

    .faq-question-wrapper {
        padding: 11px 14px;
    }

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

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

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

    .faq-arrow-icon {
        width: 18px;
        height: 18px;
    }

    .faq-arrow-icon i {
        font-size: 12px;
    }
}

/* ============= FAQ HOVER EFFECTS ============= */
.faq-arrow-icon:hover {
    background: transparent;
    transform: scale(1.1);
}

/* ============= FAQ ANIMATIONS ============= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

/* ============= FAQ ACCESSIBILITY ============= */
.faq-question-wrapper:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.faq-item[aria-expanded="true"] .faq-arrow-icon {
    background: #005a24;
}

/* ============= EXPLORE OUR TRAVEL & VISA BLOG SECTION ============= */
.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============= BLOG HEADER ============= */
.blog-header {
    text-align: left;
    margin-bottom: 50px;
}

.blog-title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.blog-title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0;
    border-radius: 2px;
}

/* ============= BLOG CARDS GRID ============= */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;
}

/* ============= BLOG CARD ============= */
.blog-card {
    background: #ffffff;
    border: 3px solid var(--primary-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 108, 44, 0.15);
}

/* ============= BLOG IMAGE ============= */
.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 13px 13px 0 0;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.08);
}

/* ============= BLOG CONTENT ============= */
.blog-content {
    padding: 18px 18px 0 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
}

.blog-card-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 10px 0;
    line-height: 1.4;
    min-height: 44px;
}

.blog-card-description {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    line-height: 1.5;
    margin: 0 0 0 0;
    flex-grow: 1;
}

/* ============= BLOG POST META ============= */
.blog-post-meta {
    margin-top: auto;
    padding: 0;
    border-top: none;
    background: var(--primary-color);
    margin: 18px -18px 0 -18px;
    padding: 12px 18px;
    border-radius: 0 0 13px 13px;
}

.blog-post-date {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: inline-block;
}

/* ============= BLOG SECTION RESPONSIVE DESIGN ============= */

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

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

    .blog-cards-grid {
        gap: 22px;
    }

    .blog-image-wrapper {
        height: 170px;
    }
}

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

    .blog-title {
        font-size: 28px;
    }

    .blog-header {
        margin-bottom: 45px;
    }

    .blog-cards-grid {
        gap: 20px;
    }

    .blog-card-title {
        font-size: 15px;
        min-height: 42px;
    }

    .blog-content {
        padding: 16px 16px 0 16px;
    }

    .blog-post-meta {
        margin: 16px -16px 0 -16px;
        padding: 11px 16px;
    }

    .blog-image-wrapper {
        height: 160px;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .blog-section {
        padding: 50px 0;
    }

    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

    .blog-image-wrapper {
        height: 200px;
    }

    .blog-card-title {
        font-size: 16px;
        min-height: auto;
    }

    .blog-content {
        padding: 18px 18px 0 18px;
    }

    .blog-post-meta {
        margin: 18px -18px 0 -18px;
        padding: 12px 18px;
    }
}

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

    .blog-container {
        padding: 0 15px;
    }

    .blog-header {
        margin-bottom: 35px;
    }

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

    .blog-title-underline {
        width: 50px;
        height: 3px;
    }

    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-image-wrapper {
        height: 220px;
    }

    .blog-card-title {
        font-size: 17px;
    }

    .blog-card-description {
        font-size: 14px;
    }

    .blog-content {
        padding: 20px 20px 0 20px;
    }

    .blog-post-meta {
        margin: 20px -20px 0 -20px;
        padding: 14px 20px;
    }

    .blog-post-date {
        font-size: 13px;
    }
}

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

    .blog-container {
        padding: 0 12px;
    }

    .blog-header {
        margin-bottom: 30px;
    }

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

    .blog-title-underline {
        width: 45px;
    }

    .blog-cards-grid {
        gap: 18px;
    }

    .blog-image-wrapper {
        height: 200px;
    }

    .blog-card {
        border-width: 2.5px;
        border-radius: 14px;
    }

    .blog-card-title {
        font-size: 15px;
    }

    .blog-card-description {
        font-size: 13px;
    }

    .blog-content {
        padding: 16px 16px 0 16px;
    }

    .blog-post-date {
        font-size: 11px;
    }

    .blog-post-meta {
        margin: 16px -16px 0 -16px;
        padding: 11px 16px;
    }
}

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

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

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

    .blog-image-wrapper {
        height: 180px;
    }

    .blog-card-title {
        font-size: 14px;
    }

    .blog-card-description {
        font-size: 12px;
    }

    .blog-content {
        padding: 14px 14px 0 14px;
    }

    .blog-post-meta {
        margin: 14px -14px 0 -14px;
        padding: 10px 14px;
    }

    .blog-post-date {
        font-size: 10px;
    }
}

/* ============= BLOG HOVER EFFECTS ============= */
.blog-card:hover .blog-card-title {
    color: var(--primary-color);
}

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

.blog-card {
    animation: blogFadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }

/* ============= BLOG ACCESSIBILITY ============= */
.blog-card:focus-within {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

.blog-card {
    cursor: pointer;
}

/* ============= PRINT STYLES ============= */
@media print {
    .blog-section {
        padding: 20px 0;
        break-inside: avoid;
        background: #ffffff;
    }

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

    .blog-card {
        box-shadow: none;
        border: 2px solid var(--primary-color);
        break-inside: avoid;
    }

    .blog-image-wrapper {
        height: 120px;
    }

    .blog-post-meta {
        background: var(--primary-color);
        color: #ffffff;
    }
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

/* ============= ACCESSIBILITY ============= */
.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.faq-item[aria-expanded="true"] .faq-toggle {
    background: #005a24;
}

/* ============= PRINT STYLES ============= */
@media print {
    .faq-section {
        background: white !important;
        padding: 30px 0 !important;
    }

    .faq-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .faq-main-title,
    .faq-question-text,
    .faq-answer p {
        color: black !important;
    }

    .faq-title-underline {
        background: black !important;
    }

    .faq-item {
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }

    .faq-answer {
        max-height: none !important;
        display: block !important;
    }

    .faq-toggle {
        display: none !important;
    }
}

/* ============= UAE FACTS & FIGURES SECTION ============= */
.uae-facts-section {
    padding: 50px 0;
    background: #e8e8e8;
}

.uae-facts-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============= UAE FACTS HEADER ============= */
.uae-facts-header {
    text-align: left;
    margin-bottom: 35px;
}

.uae-facts-title {
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #4a4a4a;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.uae-facts-title-underline {
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 0;
    border-radius: 0;
}

/* ============= UAE FACTS GRID ============= */
.uae-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: transparent;
}

/* ============= FACT ITEM ============= */
.fact-item {
    padding: 20px 20px 18px 20px;
    border-bottom: 1px solid #c5c5c5;
    background: transparent;
    transition: all 0.2s ease;
}

/* Remove bottom border from last row items */
.fact-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.fact-item:hover {
    background: rgba(255, 255, 255, 0.3);
}

.fact-label {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.fact-value {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin: 0;
    line-height: 1.4;
}

/* ============= UAE FACTS RESPONSIVE DESIGN ============= */

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

    .uae-facts-title {
        font-size: 27px;
    }

    .fact-item {
        padding: 17px 22px;
        min-height: 72px;
    }
}

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

    .uae-facts-title {
        font-size: 26px;
    }

    .uae-facts-header {
        margin-bottom: 35px;
    }

    .fact-item {
        padding: 16px 20px;
        min-height: 70px;
    }

    .fact-label {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .fact-value {
        font-size: 13px;
    }
}

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

    .uae-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reset borders for 2 column layout */
    .fact-item:nth-child(4n) {
        border-right: 1px solid #cccccc;
    }

    .fact-item:nth-child(2n) {
        border-right: none;
    }

    .fact-item:nth-last-child(-n+4) {
        border-bottom: 1px solid #cccccc;
    }

    .fact-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .uae-facts-title {
        font-size: 24px;
    }

    .fact-item {
        padding: 18px 22px;
        min-height: auto;
    }

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

    .fact-value {
        font-size: 14px;
    }
}

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

    .uae-facts-container {
        padding: 0 15px;
    }

    .uae-facts-header {
        margin-bottom: 30px;
    }

    .uae-facts-title {
        font-size: 22px;
    }

    .uae-facts-title-underline {
        width: 45px;
    }

    .uae-facts-grid {
        grid-template-columns: 1fr;
        border: 1px solid #cccccc;
    }

    /* Reset borders for 1 column layout */
    .fact-item {
        border-right: none;
        border-bottom: 1px solid #cccccc;
    }

    .fact-item:last-child {
        border-bottom: none;
    }

    .fact-item {
        padding: 16px 18px;
        min-height: auto;
    }

    .fact-label {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .fact-value {
        font-size: 14px;
    }
}

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

    .uae-facts-container {
        padding: 0 12px;
    }

    .uae-facts-header {
        margin-bottom: 25px;
    }

    .uae-facts-title {
        font-size: 20px;
    }

    .uae-facts-title-underline {
        width: 40px;
        height: 3px;
    }

    .fact-item {
        padding: 14px 16px;
    }

    .fact-label {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .fact-value {
        font-size: 13px;
    }
}

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

    .uae-facts-container {
        padding: 0 10px;
    }

    .uae-facts-title {
        font-size: 18px;
    }

    .uae-facts-title-underline {
        width: 35px;
    }

    .fact-item {
        padding: 12px 14px;
    }

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

    .fact-value {
        font-size: 12px;
    }
}

/* ============= UAE FACTS ANIMATIONS ============= */
@keyframes factFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fact-item {
    animation: factFadeIn 0.4s ease-out;
    animation-fill-mode: both;
}

.fact-item:nth-child(1) { animation-delay: 0.03s; }
.fact-item:nth-child(2) { animation-delay: 0.06s; }
.fact-item:nth-child(3) { animation-delay: 0.09s; }
.fact-item:nth-child(4) { animation-delay: 0.12s; }
.fact-item:nth-child(5) { animation-delay: 0.15s; }
.fact-item:nth-child(6) { animation-delay: 0.18s; }
.fact-item:nth-child(7) { animation-delay: 0.21s; }
.fact-item:nth-child(8) { animation-delay: 0.24s; }
.fact-item:nth-child(9) { animation-delay: 0.27s; }
.fact-item:nth-child(10) { animation-delay: 0.3s; }
.fact-item:nth-child(11) { animation-delay: 0.33s; }
.fact-item:nth-child(12) { animation-delay: 0.36s; }
.fact-item:nth-child(13) { animation-delay: 0.39s; }
.fact-item:nth-child(14) { animation-delay: 0.42s; }
.fact-item:nth-child(15) { animation-delay: 0.45s; }
.fact-item:nth-child(16) { animation-delay: 0.48s; }

/* ============= UAE FACTS ACCESSIBILITY ============= */
.fact-item:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

/* ============= PRINT STYLES ============= */
@media print {
    .uae-facts-section {
        padding: 20px 0;
        break-inside: avoid;
        background: #ffffff;
    }

    .uae-facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        border: 1px solid #000000;
    }

    .fact-item {
        padding: 12px 15px;
        border: 1px solid #000000;
        break-inside: avoid;
        min-height: auto;
    }

    .fact-label {
        color: #000000;
    }

    .fact-value {
        color: #000000;
    }
}
