/* ============================================
   HOME PAGE STYLES
============================================ */

/* ---- Hero ---- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&q=85');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,35,66,0.93) 0%, rgba(10,35,66,0.78) 50%, rgba(26,74,138,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 130px 24px 90px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: rgba(255,217,90,0.18);
  border: 1px solid rgba(255,217,90,0.55);
  color: var(--gold-lt);
  padding: 8px 20px; border-radius: 40px;
  font-size: 0.8rem; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 700;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700; line-height: 1.08;
  margin-bottom: 22px;
  animation: fadeUp 0.8s ease 0.15s both;
}
.hero-title span { color: var(--gold-lt); font-style: italic; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 580px; margin: 0 auto 38px;
  line-height: 1.75; font-weight: 300;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeUp 0.8s ease 0.45s both;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.6s both;
}
.hero-stats .stat-item { text-align: center; }
.hero-stats .stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--gold-lt); }
.hero-stats .stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-indicator i { font-size: 1.1rem; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ---- Search Section ---- */
#search-section {
  position: relative; z-index: 10;
  margin-top: -80px;
  padding-bottom: 60px;
}
.search-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.search-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--offwhite);
}
.search-tab {
  flex: 1;
  padding: 18px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: var(--trans);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-bottom: 3px solid transparent;
  background: none;
}
.search-tab:hover { color: var(--navy); background: rgba(26,74,138,0.04); }
.search-tab.active { color: var(--blue); border-bottom-color: var(--blue); background: var(--white); }
.search-tab i { font-size: 1rem; }
.search-panel { display: none; padding: 32px; }
.search-panel.active { display: block; }
.trip-type-row { display: flex; gap: 10px; margin-bottom: 22px; }
.radio-pill { cursor: pointer; }
.radio-pill input { display: none; }
.radio-pill span {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--muted);
  transition: var(--trans);
}
.radio-pill input:checked + span { background: var(--navy); color: var(--white); border-color: var(--navy); }
.search-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}
.search-fields-hotels {
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
}
.swap-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--offwhite2);
  border: 1.5px solid var(--border);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: var(--trans);
  cursor: pointer;
  flex-shrink: 0;
  margin-bottom: 0;
  align-self: end;
  margin-bottom: 1px;
}
.swap-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: rotate(180deg); }
.search-submit { white-space: nowrap; align-self: end; }
.widget-area { margin-top: 20px; min-height: 0; }

/* ---- Trust Bar ---- */
.trust-bar { padding: 28px 0; background: var(--navy); }
.trust-grid { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.78); font-size: 0.88rem; font-weight: 500; }
.trust-item i { color: var(--gold-lt); font-size: 1.1rem; }

/* ---- Section backgrounds ---- */
.section-white { padding: 100px 0; background: var(--white); }
.section-offwhite { padding: 100px 0; background: var(--offwhite); }
.section-navy { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.section-navy::before {
  content: ''; position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Two Col ---- */
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.visa-types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0 28px; }
.visa-type-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--offwhite); border-radius: 12px;
  padding: 16px; border: 1px solid var(--border);
  transition: var(--trans);
}
.visa-type-card:hover { border-color: rgba(160,120,32,0.35); transform: translateY(-2px); }
.vt-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff; font-size: 1rem;
}
.vt-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.vt-sub { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.steps-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.stats-grid-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.trust-box {
  background: var(--offwhite); border-radius: var(--radius-lg);
  padding: 26px; border: 1px solid var(--border);
  margin-bottom: 20px;
}
.trust-box-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }

/* ---- Destinations Grid ---- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dest-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/5;
  cursor: pointer; box-shadow: var(--shadow);
  transition: var(--trans);
}
.dest-card:first-child { grid-column: 1; grid-row: 1 / 3; aspect-ratio: unset; }
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-card:hover .dest-img { transform: scale(1.07); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,35,66,0.88) 0%, rgba(10,35,66,0.08) 60%, transparent 100%);
  transition: var(--trans);
}
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(10,35,66,0.92) 0%, rgba(10,35,66,0.2) 55%, transparent 100%); }
.dest-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px; color: var(--white);
  transform: translateY(8px); transition: var(--trans);
}
.dest-card:hover .dest-info { transform: translateY(0); }
.dest-name { font-family: var(--font-head); font-size: 1.55rem; font-weight: 700; line-height: 1.1; margin: 6px 0; }
.dest-desc { font-size: 0.82rem; color: rgba(255,255,255,0.78); margin-bottom: 12px; opacity: 0; transition: var(--trans); }
.dest-card:hover .dest-desc { opacity: 1; }
.dest-explore {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-lt); color: var(--navy);
  font-size: 0.8rem; font-weight: 800;
  padding: 7px 16px; border-radius: 30px;
  transition: var(--trans); opacity: 0; transform: translateY(8px);
}
.dest-card:hover .dest-explore { opacity: 1; transform: translateY(0); }
.dest-explore:hover { background: var(--gold-lt2); }

/* ---- Tours Grid ---- */
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.tour-img-wrap { position: relative; height: 200px; overflow: hidden; }
.tour-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card-dark:hover .tour-img { transform: scale(1.07); }
.tour-cat {
  position: absolute; top: 14px; right: 14px;
  background: rgba(10,35,66,0.85); color: var(--gold-lt);
  font-size: 0.7rem; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; backdrop-filter: blur(5px);
}
.tour-body { padding: 22px; }
.tour-name { font-family: var(--font-head); font-size: 1.18rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.tour-desc { font-size: 0.83rem; color: rgba(255,255,255,0.62); margin-bottom: 14px; line-height: 1.6; }
.tour-meta { display: flex; align-items: center; gap: 14px; font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; flex-wrap: wrap; }
.tour-meta span { display: flex; align-items: center; gap: 5px; }
.tour-meta i { color: var(--gold-lt); }
.tour-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.1); }
.tour-price { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.tour-price strong { display: block; font-family: var(--font-head); font-size: 1.25rem; color: var(--gold-lt); }

/* ---- Why Grid ---- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 50px; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 26px; text-align: center;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: var(--trans); position: relative; overflow: hidden;
}
.why-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(135deg, var(--gold), var(--gold2)); transform: scaleX(0); transition: var(--trans); }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon { width: 70px; height: 70px; background: linear-gradient(135deg, rgba(26,74,138,0.1), rgba(45,125,210,0.07)); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.75rem; color: var(--blue); transition: var(--trans); }
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--blue), var(--sky)); color: var(--white); transform: rotateY(180deg); }
.why-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* ---- Testimonials ---- */
.testimonials-wrap { position: relative; margin-top: 50px; }
.testimonials-slider { display: flex; overflow: hidden; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-card {
  min-width: 100%; flex-shrink: 0;
  background: var(--offwhite); border-radius: var(--radius-lg);
  padding: 48px; border: 1px solid var(--border);
  display: flex; gap: 30px; align-items: flex-start;
}
.testimonial-avatar { width: 78px; height: 78px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); flex-shrink: 0; }
.testimonial-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 14px; }
.testimonial-text { font-family: var(--font-head); font-size: 1.1rem; font-style: italic; color: var(--navy); line-height: 1.75; margin-bottom: 16px; }
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.testimonial-role { font-size: 0.82rem; color: var(--muted); }
.slider-controls { display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: 28px; }
.slider-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--trans); color: var(--navy); }
.slider-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--trans); }
.slider-dot.active { background: var(--blue); width: 24px; border-radius: 4px; }

/* ---- Newsletter ---- */
.newsletter-section { padding: 100px 0; position: relative; overflow: hidden; }
.newsletter-bg { position: absolute; inset: 0; background-image: url('https://i.ibb.co/cckzJFmH/Luxury-airport-lounge.jpg'); background-size: cover; background-position: center; }
.newsletter-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,35,66,0.93) 0%, rgba(26,74,138,0.83) 100%); }
.newsletter-content { position: relative; z-index: 2; text-align: center; color: var(--white); }
.newsletter-form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto 24px; }
.newsletter-form input {
  flex: 1; border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border-radius: 50px; padding: 14px 24px;
  color: var(--white); font-size: 0.95rem; outline: none; transition: var(--trans);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: var(--gold-lt); background: rgba(255,255,255,0.15); }
.newsletter-perks { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.newsletter-perks span { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: rgba(255,255,255,0.68); }
.newsletter-perks i { color: var(--gold-lt); }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .search-fields { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .search-fields .swap-btn,
  .search-fields .search-submit { grid-column: span 1; }
  .swap-btn { display: none; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card:first-child { grid-column: 1; grid-row: auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .two-col-grid { grid-template-columns: 1fr; gap: 40px; }
  .search-fields { grid-template-columns: 1fr 1fr; }
  .search-fields .search-submit { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .hero-stats .stat-divider { display: none; }
  .hero-stats { gap: 18px; }
  .destinations-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .search-fields, .search-fields-hotels { grid-template-columns: 1fr; }
  .testimonial-card { flex-direction: column; padding: 28px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form .btn { border-radius: 12px; }
  .visa-types-grid { grid-template-columns: 1fr; }
  .stats-grid-2x2 { grid-template-columns: 1fr 1fr; }
  .trust-grid { gap: 16px; }
  .trust-item { font-size: 0.78rem; }
}
