/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #fdfaf4;
  color: #111;
  display: flex;
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Main Layout */
.peru-page {
  display: flex;
  width: 100%;
  height: 100vh;
}

/* Left Section (Image + Overlay) */
.left-section {
  flex: 1;
  background: url('https://images.unsplash.com/photo-1617824077360-7a77db40aae1?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
  position: relative;
}
.overlay {
  background: rgba(0, 0, 0, 0.35);
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.logo {
  background: #fff;
  color: #000;
  padding: 4px 10px;
  font-weight: 600;
  border-radius: 4px;
  font-size: 14px;
}

/* Title Section */
.main-title {
  color: #fff;
}
.main-title h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
}
.main-title p {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.9;
}

/* Arrows */
.nav-arrows {
  display: flex;
  gap: 14px;
}
.nav-arrows button {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 18px;
  border: none;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.nav-arrows button:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Right Section */
.right-section {
  flex: 1;
  padding: 40px 50px;
  background: #fffbe9;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Header Top */
.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.back {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}
.header-icons span {
  margin-left: 12px;
  font-size: 18px;
  cursor: pointer;
}

/* Dates */
.trip-dates {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.trip-dates span {
  padding: 6px 14px;
  background: #fff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Info Cards */
.trip-card {
  background: #fff;
  padding: 30px 28px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.trip-card .tag {
  color: #ff3b3b;
  font-size: 13px;
  font-weight: 600;
}
.trip-card h2 {
  font-size: 28px;
  margin-top: 10px;
  margin-bottom: 14px;
  font-weight: 900;
  color: #111;
}
.trip-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}
.trip-card .location {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .peru-page {
    flex-direction: column;
  }
  .left-section,
  .right-section {
    flex: none;
    width: 100%;
    height: auto;
  }
  .overlay {
    padding: 30px 20px;
  }
  .main-title h1 {
    font-size: 32px;
  }
  .right-section {
    padding: 30px 20px;
  }
}

.trip-card {
  background: #fff;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  max-width: 700px;
}
.trip-card .tag {
  color: #fff;
  background: #ffc107;
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 10px;
}
.trip-card h2 {
  font-size: 28px;
  margin-bottom: 14px;
  font-weight: 900;
  color: #111;
}
.trip-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
  text-align: justify;
}
.trip-card .highlight-location {
  background: #f3e78a;
  padding: 14px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
  border-left: 5px solid #d8c300;
  color: #222;
}

.right-section {
  background: #f5f1dc;
  padding: 40px;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
}

.trip-details-card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  max-width: 760px;
}

.trip-details-card .intro,
.trip-details-card .description {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
  margin-bottom: 18px;
}

.location-card {
  background-color: #f6e67f;
  padding: 16px 20px;
  margin: 20px 0;
  border-left: 4px solid #f1cc00;
}

.location-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #222;
}

.more-info-link {
  font-size: 14px;
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.more-info-link:hover {
  text-decoration: underline;
}

.trip-details-card-1 {
  background: #fffdf7;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto 16px auto;
  font-family: 'Inter', sans-serif;
  transition: transform 0.3s ease;
  position: relative;
  top: -4px; /* adjust value as needed */
  z-index: 1;
}
.trip-details-card-1:hover {
  transform: translateY(-4px);
}

.trip-details-card-1 h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #222;
  letter-spacing: -0.5px;
  border-left: 4px solid #ffba00;
  padding-left: 14px;
}

.included-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.included-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  transition: color 0.3s;
}

.included-list li:hover {
  color: #ff6f00;
}

.included-list .bullet {
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: #ff6f00;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.included-list li:hover .bullet {
  transform: scale(1.2);
  background-color: #ffa000;
}

.login-button {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ff6f00, #ff9500);
  color: white;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(255, 111, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

.login-button:hover {
  background: linear-gradient(135deg, #ff8500, #ffaa00);
  box-shadow: 0 12px 24px rgba(255, 136, 0, 0.4);
  transform: translateY(-2px);
}

.login-button:active {
  transform: scale(0.98);
  box-shadow: 0 6px 14px rgba(255, 136, 0, 0.3);
}

.booking-wrapper {
  max-width: 420px;
  margin: 50px auto;
  padding: 30px 28px;
  background: #fffdf7;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  transition: box-shadow 0.3s ease;
}

.booking-wrapper:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.booking-header {
  font-size: 28px;
  font-weight: 700;
  color: #FF7F00;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.booking-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed #e4e4e4;
}

.label {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.value {
  font-size: 17px;
  font-weight: 600;
  color: #222;
}

.total-row {
  margin-top: 10px;
  border-top: 2px solid #FFB300;
  padding-top: 18px;
}

input[type="number"] {
  width: 70px;
  padding: 8px 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s ease;
}

input[type="number"]:focus {
  border-color: #FF7F00;
}

.booking-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  padding: 16px 0;
  background: linear-gradient(to right, #FFA500, #FF7F00);
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
  transition: all 0.3s ease;
}

.booking-button:hover {
  background: linear-gradient(to right, #ff9900, #ff6600);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 140, 0, 0.4);
}

@media (max-width: 600px) {

  body {
    flex-direction: column;
  }

  .peru-page {
    flex-direction: column;
    height: auto;
  }

  /* LEFT IMAGE SECTION */
  .left-section {
    height: 55vh;
  }

  .overlay {
    padding: 20px;
  }

  .main-title h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .main-title p {
    font-size: 13px;
  }

  /* RIGHT CONTENT SECTION */
  .right-section {
    padding: 20px 16px;
    gap: 22px;
  }

  /* CARDS */
  .trip-card,
  .trip-details-card,
  .trip-details-card-1 {
    padding: 20px;
    border-radius: 14px;
    max-width: 100%;
  }

  .trip-card h2,
  .trip-details-card-1 h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .trip-card p,
  .trip-details-card .intro,
  .trip-details-card .description {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
  }

  /* LOCATION HIGHLIGHT */
  .highlight-location,
  .location-card {
    font-size: 14px;
    padding: 12px;
  }

  /* INCLUDED LIST */
  .included-list li {
    font-size: 14px;
    line-height: 1.6;
    padding-left: 26px;
  }

  .included-list .bullet {
    top: 6px;
    width: 8px;
    height: 8px;
  }

  /* BOOKING BOX */
  .booking-wrapper {
    padding: 20px;
    margin: 30px auto;
  }

  .booking-header {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .label {
    font-size: 14px;
  }

  .value {
    font-size: 15px;
  }

  input[type="number"] {
    width: 60px;
    font-size: 15px;
  }

  .booking-button {
    font-size: 16px;
    padding: 14px 0;
  }

  /* BUTTON */
  .login-button {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    font-size: 15px;
  }

}

