/* travel-req */
.travel-req {
  background: url(imgs/practialinfobg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 70px;
  margin-top: -30px;
  position: relative;
  overflow: hidden;
}

.travel-req::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(201, 162, 77, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.travel-req-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Top Cards */
.travel-top-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.travel-info-card {
  background: linear-gradient(
    135deg,
    rgb(12, 10, 7) 0%,
    rgb(12, 10, 7) 50%,
    rgba(201, 162, 77, 0) 100%
  );
  border: 1px solid rgba(201, 162, 77, 0.2);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.travel-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(201, 162, 77, 0.15);
}

.travel-info-card h4 {
  font-family: var(--font-playfair);
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.travel-info-card p {
  font-family: var(--font-popins);
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}

/* Main Content */
.travel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Side - Requirements */
.travel-requirements-list {
  padding-right: 20px;
}

.travel-req-title {
  font-family: var(--font-playfair);
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.travel-req-subtitle {
  font-family: var(--font-popins);
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.6;
}

.requirement-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.requirement-item {
  background: linear-gradient(
    77.68deg,
    rgba(201, 162, 77, 0) 50.18%,
    rgba(201, 162, 77, 0.2) 108.69%
  );
  border: 1px solid rgba(201, 162, 77, 0.15);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.requirement-item img {
  height: 50px;
  width: 50px;
}
.requirement-item:hover {
  background: linear-gradient(
    77.68deg,
    rgba(201, 162, 77, 0) 50.18%,
    rgba(201, 162, 77, 0.2) 108.69%
  );
  border-color: rgba(201, 162, 77, 0.3);
  transform: translateX(5px);
}

.req-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(201, 162, 77, 0.2) 0%,
    rgba(201, 162, 77, 0.05) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.requirement-item:hover .req-icon {
  background: var(--primary-color);
  color: #1a1a1a;
}

.req-content h3 {
  font-family: var(--font-playfair);
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.req-content p {
  font-family: var(--font-popins);
  font-size: 14px;
  color: #b8b8b8;
  line-height: 1.7;
  margin: 0;
}

/* Right Side - Image */
.travel-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 600px;
}

.travel-image-wrapper img {
  width: 100%;
  height: 70%;
  border-radius: 20px;

  object-fit: cover;
}

/* .travel-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 162, 77, 0.1) 0%,
    transparent 100%
  );
} */

/* Responsive */
@media (max-width: 1024px) {
  .travel-top-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .travel-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .travel-requirements-list {
    padding-right: 0;
  }

  .travel-image-wrapper {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .travel-req {
    padding: 60px 15px;
  }

  .travel-top-cards {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
  }

  .travel-req-title {
    font-size: 32px;
  }

  .requirement-item {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .req-icon {
    margin: 0 auto;
  }

  .travel-image-wrapper {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .travel-req-title {
    font-size: 28px;
  }

  .travel-req-subtitle {
    font-size: 14px;
  }

  .req-content h3 {
    font-size: 18px;
  }

  .req-content p {
    font-size: 13px;
  }
}
/* travel-req */
/* what-to-pack */
/* what-to-pack */
.what-to-pack {
  background: url(imgs/whatto.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 120px;
  position: relative;
  overflow: hidden;
}

.what-to-pack::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(201,162,77,0.1)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.pack-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pack-title {
  font-family: var(--font-playfair);
  font-size: 53px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.pack-subtitle {
  font-family: var(--font-custom);
  font-size: 18px;
  color: rgba(201, 162, 77, 0.8);
  text-align: center;
  margin-bottom: 60px;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pack-card {
  background:
    linear-gradient(
      77.68deg,
      rgba(201, 162, 77, 0) 50.18%,
      rgba(201, 162, 77, 0.2) 108.69%
    ),
    linear-gradient(0deg, #0c0c0c, #0c0c0c);
  border: 1px solid rgba(201, 162, 77, 0.3);
  border-radius: 10px;
  padding: 30px 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.last-list {
  border: none !important;
}

.pack-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(201, 162, 77, 0.2);
}

.pack-card-title {
  font-family: var(--font-playfair);
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 24px;
  padding-bottom: 7px;
  /* border-bottom: 2px solid rgba(201, 162, 77, 0.3); */
}

.pack-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pack-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  transition: all 0.2s ease;
  border-bottom: 1px solid #212121;
}

.pack-item:hover {
  transform: translateX(4px);
}

.check-icon {
  min-width: 24px;
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  color: #1a1410;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  margin-top: 2px;
}

.item-content {
  font-family: var(--font-custom);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.item-content strong {
  color: white;
  font-weight: 600;
}

@media (max-width: 968px) {
  .pack-grid {
    grid-template-columns: 1fr;
  }
  .what-to-pack {
    padding: 20px 10px !important;
  }
}

@media (max-width: 768px) {
  .pack-title {
    font-size: 36px;
  }

  .pack-subtitle {
    font-size: 16px;
  }

  .pack-card {
    padding: 24px 20px;
  }

  .pack-card-title {
    font-size: 20px;
  }
}
/* what-to-pack */
/* health-guide-line */
.health-guide-line {
  background: url(imgs/health.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 70px;
  position: relative;
}

.health-container {
  max-width: 1400px;
  margin: 0 auto;
}

.health-title {
  font-family: var(--font-playfair);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.health-subtitle {
  font-family: var(--font-custom);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 60px;
}

.health-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.health-card {
  background:
    linear-gradient(
      77.68deg,
      rgba(201, 162, 77, 0) 50.18%,
      rgba(201, 162, 77, 0.2) 108.69%
    ),
    linear-gradient(0deg, #0c0c0c, #0c0c0c);
  border: 1px solid rgba(201, 162, 77, 0.3);
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.health-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(201, 162, 77, 0.2);
}

.health-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.health-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(73%) sepia(14%) saturate(1547%)
    hue-rotate(358deg) brightness(92%) contrast(84%);
}

.health-card:hover .health-icon img {
  filter: brightness(0) saturate(100%) invert(73%) sepia(54%) saturate(1547%)
    hue-rotate(358deg) brightness(102%) contrast(84%);
}

.health-card-title {
  font-family: var(--font-playfair);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  /* margin-bottom: 16px; */
}

.health-card-desc {
  font-family: var(--font-custom);
  font-size: 15px;
  margin-bottom: 0 !important;
  /* line-height: 1.7; */
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1200px) {
  .health-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .health-title {
    font-size: 36px;
  }
  .health-guide-line {
    padding: 20px !important;
  }
  .health-subtitle {
    font-size: 16px;
  }

  .health-grid {
    grid-template-columns: 1fr;
  }

  .health-card {
    padding: 32px 20px;
  }
}
/* health-guide-line */
