/* ========================================
   MAHARAJAH TOURS - HOME PAGE
   Tour Cards Only
   ======================================== */

/* ========== TOUR CARDS (HOMEPAGE) ========== */
.tour-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  border: none;
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.tour-card .card-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.tour-card .card-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-card:hover .card-img-wrapper::after {
  opacity: 1;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover img {
  transform: scale(1.08);
}

.tour-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--brand-gold) 0%, #c09b2d 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  z-index: 10;
  letter-spacing: 0.3px;
}

.tour-card .card-body {
  padding: 1.75rem;
}

.tour-card .card-title {
  font-size: 1.4rem;
  color: var(--brand-burgundy);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.tour-card .card-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ========== PASSENGER INFO CTA SECTION ========== */
.passenger-info-cta {
  border-top: 2px solid #d4af37;
  border-bottom: 2px solid #d4af37;
}

.passenger-info-cta .btn-light {
  background: #ffffff;
  border: 2px solid #d4af37;
  color: #4e0e10;
  font-weight: 600;
  transition: all 0.3s ease;
}

.passenger-info-cta .btn-light:hover {
  background: #d4af37;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* ===== FLIGHTS ADVERT ===== */
.flights-advert {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #0d1b3e 0%, #1a2a5e 30%, #4e0e10 70%, #2d0608 100%);
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  min-height: 260px;
}

/* Starfield dot pattern */
.flights-advert::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Watermark plane icon */
.flights-plane-bg {
  position: absolute;
  bottom: -10px;
  right: -24px;
  font-size: 180px;
  color: #fff;
  opacity: 0.05;
  transform: rotate(-20deg);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

.flights-advert-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.flights-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #c9a84c;
  display: block;
  margin-bottom: 4px;
}

.flights-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 12px;
}

.flights-title em {
  color: #c9a84c;
  font-style: normal;
}

.flights-features {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  flex-grow: 1;
}

.flights-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.flights-features li i {
  color: #c9a84c;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.flights-cta-btn {
  display: block;
  width: 100%;
  padding: 10px 14px;
  background: #c9a84c;
  color: #0d1b3e;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
  margin-bottom: 8px;
}

.flights-cta-btn:hover {
  background: #e0c060;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.4);
}

.flights-cta-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin: 0 0 12px;
  font-style: italic;
}

.flights-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.flights-badge {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: #c9a84c;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ===== SPOTLIGHT TOUR ===== */
.spotlight-section {
  background: linear-gradient(135deg, #1a0204 0%, #2d0608 40%, #4e0e10 70%, #2d0608 100%);
  position: relative;
  overflow: hidden;
}

.spotlight-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 168, 76, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.spotlight-badge {
  display: inline-block;
  background: linear-gradient(90deg, #c9a84c, #f0d080, #c9a84c);
  color: #2a0608;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 0.45rem 1.6rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.45);
}

.spotlight-eyebrow {
  color: #c9a84c;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.spotlight-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f0d080);
  border-radius: 2px;
}

.spotlight-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.7;
}

.spotlight-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #f0d080;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 50px;
}

.spotlight-chip i {
  font-size: 0.85rem;
  flex-shrink: 0;
}

.spotlight-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
  color: #2a0608;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
  transition: all 0.3s ease;
}

.spotlight-cta:hover {
  color: #2a0608;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201, 168, 76, 0.65);
}

.spotlight-cta:hover i {
  transform: translateX(4px);
}

.spotlight-cta i {
  transition: transform 0.3s ease;
}

.spotlight-urgency {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-style: italic;
}

/* Pulsing gold glow on the poster */
@keyframes spotlight-glow {
  from {
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.55),
                0 0 30px rgba(201, 168, 76, 0.2),
                0 20px 50px rgba(0, 0, 0, 0.6);
  }
  to {
    box-shadow: 0 0 0 3px rgba(240, 208, 128, 0.9),
                0 0 55px rgba(201, 168, 76, 0.5),
                0 24px 60px rgba(0, 0, 0, 0.7);
  }
}

.spotlight-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  animation: spotlight-glow 2.2s ease-in-out infinite alternate;
  transition: transform 0.3s ease;
}

.spotlight-img-wrapper:hover {
  transform: scale(1.015);
}

.spotlight-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.spotlight-img-wrapper:hover img {
  transform: scale(1.03);
}

.spotlight-radio {
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  padding-bottom: 0.75rem;
}

.spotlight-radio-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
