:root {
  --primary: #faa61a;
  --primary-dark: #e59408;
  --secondary: #000;
  --text-light: #f9f9f9;
  --text-dark: #333;
  --card-bg: #fff;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.2);
  --border-radius: 12px;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.page-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary);
}

.page-title h1 {
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title p {
  color: #666;
  font-size: 1.1rem;
}

.card-custom {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--card-bg);
  margin-bottom: 30px;
  transition: var(--transition);
  border: none;
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.flight-img-box {
  position: relative;
  height: 200px;
  overflow: hidden;
  width: 100%;
}

.flight-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.card-custom:hover .flight-img-cover {
  transform: scale(1.05);
}

.img-heading {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px 15px;
  color: var(--text-light);
  font-weight: 600;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.img-heading h3 {
  font-size: 1.3rem;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.img-heading small {
  font-size: 0.8rem;
  opacity: 0.9;
}

.flight-details {
  padding: 20px;
}

.flight-times {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.price {
  color: var(--primary-dark);
  font-size: 1.8rem;
  font-weight: 700;
}

.pkg {
  font-size: 0.85rem;
  color: #777;
}

.rating .fa {
  margin-left: 2px;
}

.orange {
  color: var(--primary);
}

.lightgrey {
  color: #e0e0e0;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition);
}

.card-link:hover {
  text-decoration: none;
  color: inherit;
}

.flight-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.airline-logo {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
}

.flight-duration {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

.flight-duration i {
  color: var(--primary);
  margin-right: 5px;
}

.booking-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 15px;
  width: 100%;
}

.booking-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(234, 150, 8, 0.3);
}

.flight-stops {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  margin-top: 5px;
}

.btn-orange {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
}

.btn-orange:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 150, 8, 0.4);
  color: white;
}
