/* ============================================================
   home-enhancements.css
   Additive styles for the enhanced DD Global Yatra homepage.
   This file does NOT modify home.css — it only adds rules for
   the new markup (hero trust strip, popular destinations,
   stats counter, final CTA banner) and a few small utility
   classes (section-eyebrow, section-subtitle, section-cta,
   btn-outline, btn-outline-light).

   Brand palette used (matches the DD Global Yatra catalogue):
   Indigo  #152B52 / #0D1B36
   Gold    #C99A2E / #E8C873
   Coral   #E2613A
   ============================================================ */

:root{
  --ddgy-indigo: #152B52;
  --ddgy-indigo-deep: #0D1B36;
  --ddgy-gold: #C99A2E;
  --ddgy-gold-light: #E8C873;
  --ddgy-coral: #E2613A;
  --ddgy-ink-soft: #5B5E58;
}

/* ---------- Generic section helpers ---------- */
.section-eyebrow{
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ddgy-coral);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-subtitle{
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--ddgy-ink-soft);
  text-align: center;
  font-size: 15.5px;
  line-height: 1.7;
}

.section-cta{
  text-align: center;
  margin-top: 34px;
}

.btn-outline{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1.5px solid var(--ddgy-indigo);
  border-radius: 40px;
  color: var(--ddgy-indigo);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-outline:hover{
  background: var(--ddgy-indigo);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-outline-light{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-outline-light:hover{
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

/* ---------- Hero eyebrow + trust strip ---------- */
.hero-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--ddgy-gold-light);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  padding: 7px 16px;
  margin-bottom: 18px;
}

.hero-trust-strip{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-trust-item{
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  padding: 9px 16px;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}
.hero-trust-item i{
  color: var(--ddgy-gold-light);
  font-size: 13px;
}

/* ---------- Popular Destinations ---------- */
.popular-destinations{
  padding: 70px 0;
}

.destinations-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.destination-card{
  position: relative;
  width: calc(25% - 14px);
  min-width: 200px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(13,27,54,0.10);
}

.destination-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover img{
  transform: scale(1.08);
}

.destination-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(13,27,54,0.88) 0%, rgba(13,27,54,0.05) 60%);
}

.destination-overlay h3{
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}

.destination-overlay span{
  color: var(--ddgy-gold-light);
  font-size: 12.5px;
  font-weight: 500;
}

@media (max-width: 992px){
  .destination-card{ width: calc(33.333% - 12px); }
}
@media (max-width: 700px){
  .destination-card{ width: calc(50% - 9px); height: 180px; }
}

/* ---------- Stats / Trust counter ---------- */
.stats-counter{
  background: linear-gradient(135deg, var(--ddgy-indigo-deep) 0%, var(--ddgy-indigo) 100%);
  padding: 52px 0;
}

.stats-grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}

.stat-item{
  padding: 14px 20px;
  min-width: 160px;
}

.stat-number,
.stat-plus{
  font-size: 40px;
  font-weight: 800;
  color: var(--ddgy-gold-light);
  font-family: inherit;
}

.stat-label{
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

/* ---------- Final CTA banner ---------- */
.home-cta-banner{
  background:
    radial-gradient(circle at 85% 20%, rgba(201,154,46,0.22), transparent 50%),
    linear-gradient(160deg, var(--ddgy-indigo) 0%, var(--ddgy-indigo-deep) 100%);
  padding: 64px 0;
}

.home-cta-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.home-cta-text h2{
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 8px;
}

.home-cta-text p{
  color: rgba(255,255,255,0.78);
  font-size: 15.5px;
  margin: 0;
  max-width: 480px;
}

.home-cta-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 768px){
  .home-cta-inner{ flex-direction: column; text-align: center; }
  .home-cta-text p{ max-width: 100%; }
  .home-cta-actions{ justify-content: center; }
}
