/* ===== Base ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f2f6fb;
  color: #222;
}

/* ===== Header ===== */
.header {
  background: #003580;
  color: #fff;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.partner-btn {
  background: #ff8c00;
  border: none;
  padding: 10px 18px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
}

.partner-btn:hover {
  opacity: 0.9;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #006ce4, #003580);
  color: #fff;
  padding: 42px 20px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
}

.hero-sub {
  margin-top: 10px;
  font-size: 16px;
  opacity: 0.95;
}

/* ===== Container ===== */
.container {
  max-width: 1100px;
  margin: -40px auto 20px;
  padding: 0 16px;
}

/* ===== Flight / Hotel Toggle ===== */
.toggle {
  display: flex;
  background: #fff;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.toggle-btn {
  flex: 1;
  padding: 16px;
  background: #f1f1f1;
  border: none;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.toggle-btn img {
  height: 22px;
}

.toggle-btn.active {
  background: #ff8c00;
  color: #fff;
}

/* ===== Search Box ===== */
.search-box {
  background: #fff;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.hidden {
  display: none;
}

.search-box input {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.search-box input:focus {
  outline: none;
  border-color: #006ce4;
}

.search-box button {
  background: #006ce4;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
}

.search-box button:hover {
  background: #0056b3;
}

/* ===== Results ===== */
#results {
  margin-top: 24px;
}

.card {
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.card img {
  width: 120px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
}

.card b {
  font-size: 15px;
}

/* ===== Price & Buttons ===== */
.price {
  font-size: 18px;
  font-weight: bold;
  color: #006ce4;
  margin-right: 10px;
}

.book {
  background: #ff5a5f;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.book:hover {
  opacity: 0.9;
}

.map-btn {
  background: #eaeaea;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 8px;
}

/* ===== Modal ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

.modal-content {
  background: #fff;
  max-width: 700px;
  margin: 60px auto;
  padding: 30px;
  border-radius: 14px;
}

.modal-content h2 {
  margin-top: 0;
}

.modal-content h3 {
  margin-bottom: 6px;
}

.modal-content p {
  margin-top: 0;
  margin-bottom: 14px;
  color: #444;
}

.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 24px;
  }

  .card {
    flex-direction: column;
    align-items: flex-start;
  }

  .card img {
    width: 100%;
    height: 160px;
  }
}
.partner-hero {
  background: linear-gradient(135deg, #0b5cff, #ff7a00);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.partner-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.partner-card {
  background: #fff;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.partner-card h2 {
  margin-top: 0;
  color: #0b5cff;
}

.partner-footer {
  text-align: center;
  padding: 40px 20px;
  background: #f2f6fb;
}

.trip-type {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  font-size: 14px;
}

.trip-type label {
  cursor: pointer;
}

.date-row {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}
.pax-wrapper {
  position: relative;
}

.pax-btn {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.pax-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  z-index: 1000;
}

.pax-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pax-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pax-controls button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #f7f7f7;
  cursor: pointer;
}

