/* =========================
DEALS SECTION
========================= */

.deals-section {
  padding: 70px 20px;
  background: #f6f8ff;
}

.section-heading {
  max-width: 750px;
  margin: 0 auto 50px;
}

.section-heading span {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-heading h2 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
}

.section-heading p {
  font-size: 15px;
  line-height: 1.8;
  color: #64748b;
}

/* =========================
DEALS GRID
========================= */

.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =========================
DEAL CARD
========================= */

.deal-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
  position: relative;
}

.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.deal-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.deal-card div {
  padding: 24px;
}

.deal-card span {
  display: inline-block;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.deal-card h3 {
  font-size: 24px;
  color: #0f172a;
  margin-bottom: 12px;
  font-weight: 700;
}

.deal-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.deal-card p i {
  color: #2563eb;
}

.deal-card strong {
  display: inline-block;
  font-size: 22px;
  color: #0f172a;
  font-weight: 800;
}

/* =========================
SUPPORT SECTION
========================= */

.flight-support-section {
  padding: 80px 20px;
  background: #ffffff;
}

.support-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* =========================
SUPPORT TEXT
========================= */

.support-copy span {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.support-copy h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 18px;
  font-weight: 800;
}

.support-copy p {
  font-size: 15px;
  line-height: 1.9;
  color: #64748b;
}

/* =========================
SUPPORT GRID
========================= */

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* =========================
SUPPORT CARD
========================= */

.support-grid article {
  background: #f8fbff;
  border-radius: 24px;
  padding: 35px 25px;
  transition: 0.35s ease;
  border: 1px solid #e2e8f0;
}

.support-grid article:hover {
  transform: translateY(-6px);
  background: #2563eb;
}

.support-grid article i {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 24px;
  margin-bottom: 22px;
  transition: 0.3s ease;
}

.support-grid article h3 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.support-grid article p {
  font-size: 14px;
  line-height: 1.8;
  color: #64748b;
  transition: 0.3s ease;
}

/* HOVER EFFECT */

.support-grid article:hover i {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.support-grid article:hover h3,
.support-grid article:hover p {
  color: #fff;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 992px) {

  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-wrap {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .section-heading h2,
  .support-copy h2 {
    font-size: 30px;
  }

  .deals-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .deal-card img {
    height: 220px;
  }

  .support-grid article {
    padding: 30px 22px;
  }
}

@media (max-width: 480px) {

  .section-heading h2,
  .support-copy h2 {
    font-size: 26px;
  }

  .deal-card div {
    padding: 20px;
  }

  .support-grid article {
    padding: 25px 20px;
  }
}