/* =========================
   GENERAL
========================= */

.dream-flight-main {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow: hidden;
}

.dream-flight-main *,
.dream-flight-main *::before,
.dream-flight-main *::after {
  box-sizing: border-box;
}

.dream-flight-main img {
  width: 100%;
  display: block;
}

.section-padding {
  padding: 65px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 28px;
}

.section-title span {
  width: 42px;
  height: 3px;
  background: var(--secondary);
  display: block;
}

.section-title h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.3px;
}

.left-title {
  justify-content: flex-start;
}

/* =========================
   HERO
========================= */

.flight-hero {
  position: relative;
  min-height: 475px;
  padding: 100px 0 20px 50px;
  background-image: url(../uploads/STUDY-VISA.png);
  background-position: center right;
  background-size: cover;
}

.flight-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.flight-hero .container-fluid {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 1280px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--secondary);
  background: var(--primary);
  padding: 7px 15px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.02;
  font-weight: 900;
  color: var(--primary);
}

.hero-content h1 span {
  color: var(--secondary);
}

.hero-content h2 {
  font-size: 32px;
  color: var(--primary-dark);
  font-family: "Dancing Script", cursive;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 18px;
  position: relative;
  align-self: center;
  width: 100%;
  line-height: 1.7;
  color: var(--primary);
}

.hero-content p strong {
  font-weight: 800;
}

.hero-features {
  display: flex;
  gap: 0;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-right: 1px solid rgba(0, 53, 55, 0.25);
  background: var(--secondary-light);
  border-radius: var(--radius-lg);
  margin-inline: 5px;
}

.hero-feature:last-child {
  border-right: 0;
}

.hero-feature i {
  font-size: 28px;
  color: var(--primary);
}

.hero-feature span {
  font-size: 11px;
  line-height: 1.4;
  color: var(--primary);
  font-weight: 600;
}

/* =========================
   BOOKING CARD
========================= */

.booking-card {
  background: var(--primary);
  padding: 25px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  max-width: 500px;
  margin-left: auto;
}

.booking-tabs {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 18px;
}

.booking-tabs button {
  background: none;
  border: 0;
  color: white;
  padding: 0 0 13px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.booking-tabs button.active {
  color: var(--secondary);
}

.booking-tabs button.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary);
}

.booking-tabs i {
  margin-right: 5px;
}

.trip-type {
  display: flex;
  gap: 20px;
  margin-bottom: 17px;
}

.trip-type label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 12px;
}

.trip-type input {
  accent-color: var(--secondary);
}

.booking-input {
  background: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
  min-height: 55px;
}

.booking-input small {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-bottom: 2px;
}

.booking-input select,
.booking-input input {
  border: 0;
  outline: 0;
  width: 100%;
  font-size: 12px;
  color: var(--primary);
  background: transparent;
}

.search-flight-btn {
  width: 100%;
  border: 0;
  background: var(--secondary);
  color: var(--primary-dark);
  font-weight: 800;
  padding: 14px;
  border-radius: 6px;
  transition: var(--transition);
}

.search-flight-btn:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
}

/* =========================
   SERVICES
========================= */

.travel-services {
  position: relative;
  z-index: 5;
  margin-top: -5px;
}

.services-grid {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  box-shadow: var(--shadow-sm);
}

.service-item {
  padding: 18px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--border);
}

.service-item:last-child {
  border-right: 0;
}

.service-icon {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f0f7f7;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 20px;
}

.service-item h5 {
  font-size: 14px;
  margin: 0 0 4px;
  color: var(--primary);
  font-weight: 800;
}

.service-item p,
.service-item span {
  display: block;
  margin: 0;
  font-size: 9px;
  color: var(--muted);
}

/* =========================
   DESTINATIONS
========================= */

.destination-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 13px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 53, 55, 0.04);
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.destination-card img {
  height: 130px;
  object-fit: cover;
}

.destination-info {
  padding: 12px;
}

.destination-info h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 2px;
}

.destination-info small {
  display: block;
  font-size: 9px;
  color: var(--muted);
}

.destination-info strong {
  color: var(--secondary);
  font-size: 17px;
}

/* =========================
   TOUR PACKAGES
========================= */

.tour-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.tour-img {
  position: relative;
}

.tour-img img {
  height: 145px;
  object-fit: cover;
}

.tour-img span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: var(--secondary);
  color: var(--primary);
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 800;
}

.tour-body {
  padding: 11px;
}

.tour-body h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 4px;
}

.tour-body small {
  display: block;
  font-size: 9px;
  color: var(--muted);
}

.tour-body strong {
  display: block;
  color: var(--secondary);
  font-size: 16px;
  margin-bottom: 9px;
}

.tour-body a {
  display: block;
  text-align: center;
  text-decoration: none;
  background: var(--primary);
  color: white;
  border-radius: 5px;
  padding: 7px;
  font-size: 10px;
  transition: var(--transition);
}

.tour-body a:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* =========================
   GROUP TOUR
========================= */

.group-tour-card {
  background: var(--primary);
  min-height: 100%;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.group-content {
  padding: 25px;
  color: var(--white);
}

.small-label {
  color: var(--secondary);
  font-size: 10px;
  font-weight: 700;
}

.group-content h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 8px 0 5px;
}

.group-content p {
  font-size: 12px;
  margin-bottom: 15px;
}

.group-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.group-content li {
  font-size: 10px;
  margin-bottom: 7px;
}

.group-content li::before {
  content: "✓";
  color: var(--secondary);
  font-weight: bold;
  margin-right: 7px;
}

.group-image {
  height: 100%;
}

.group-image img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

/* =========================
   BUTTONS
========================= */

.yellow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 11px 17px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  transition: var(--transition);
}

.yellow-btn:hover {
  background: var(--secondary-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 11px;
}

/* =========================
   INFORMATION CARDS
========================= */

.info-card {
  height: 100%;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 23px;
}

.info-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
}

.why-card {
  display: flex;
  overflow: hidden;
  padding-right: 0;
}

.why-card > div {
  flex: 1;
}

.why-card img {
  width: 42%;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  font-size: 10px;
  margin-bottom: 9px;
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--primary);
  font-weight: 800;
  margin-right: 7px;
}

/* =========================
   AIRLINE GRID
========================= */

.airline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.airline-grid div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
}
.airline-grid div img {
  position: relative;
  object-position: center;
  object-fit: contain;
  /* width: 50px; */
  height: 50px;
}

/* =========================
   TESTIMONIAL
========================= */

.testimonial {
  display: flex;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: 9px;
  margin-bottom: 10px;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

.testimonial p {
  font-size: 9px;
  line-height: 1.5;
  margin: 0 0 4px;
}

.testimonial strong {
  font-size: 8px;
  color: var(--primary);
}

.stars {
  color: var(--secondary);
  font-size: 11px;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* =========================
   CTA
========================= */

.travel-cta {
  padding: 20px 0 70px;
}

.cta-inner {
  background: var(--primary);
  border-radius: 15px;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  position: relative;
  overflow: hidden;
}

.cta-inner::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -80px;
  top: -150px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-inner h2 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: 23px;
  font-weight: 800;
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 2;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .flight-hero {
    background-position: center center;
  }
  .hero-content {
    margin-left: 5%;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-item:nth-child(3) {
    border-right: 0;
  }

  .hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .flight-hero {
    padding: 110px 0 55px;
  }
  .hero-content {
    margin-left: 20%;
  }
  .booking-card {
    margin: 20px auto 0;
  }

  .hero-content {
    margin: auto;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-feature:first-child {
    padding-left: 20px;
  }

  .group-tour-card {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 45px 0;
  }

  .section-title h2 {
    font-size: 18px;
  }

  .section-title span {
    width: 25px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item:nth-child(2n) {
    border-right: 0;
  }

  .hero-content h1 {
    font-size: 39px;
  }

  .hero-content h2 {
    font-size: 27px;
  }

  .hero-features {
    gap: 15px 0;
  }

  .hero-feature {
    width: 50%;
    padding: 0 10px !important;
    border-right: 1px solid var(--border);
  }

  .booking-card {
    padding: 18px;
  }

  .group-tour-card {
    grid-template-columns: 1fr;
  }

  .group-image img {
    min-height: 230px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-buttons {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    border-right: 0 !important;
    border-bottom: 1px solid var(--border);
  }

  .service-item:last-child {
    border-bottom: 0;
  }

  .hero-content h1 {
    font-size: 33px;
  }

  .hero-content h2 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-feature {
    width: 100%;
    justify-content: center;
    border-right: 0 !important;
  }

  .booking-tabs {
    gap: 12px;
  }

  .trip-type {
    gap: 10px;
    flex-wrap: wrap;
  }

  .group-content {
    padding: 20px;
  }

  .cta-inner {
    padding: 22px;
  }

  .cta-buttons a {
    width: 100%;
    justify-content: center;
  }
}
