
.search-box {
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.16) 0%
    ),
    url("../images/home/banner-back.png");
  height: 350px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 45%;
}

.search-box-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  top: 3rem;
}

/* LEFT SIDE BOX */
.search-main {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 67%;
}

.flight-hadding {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
}

.trip-upper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.trip-input {
  display: flex;
  flex-direction: column;
}

.trip-input label {
  font-size: 15px;
  margin-bottom: 10px;
  color: black;
}

.trip-input input,
.trip-input select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.trip-down {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  align-items: end;
}

.btn-search {
  background: #0066ff;
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.btn-search:hover {
  background: #004dc9;
}

/* RIGHT SIDE CONTENT */
.right-content {
  width: 35%;
}

.right-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.right-content p {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 25px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgb(255 255 255 / 0.2);
  border-radius: 20px;
  padding: 8px 12px;
  font-size: 13px;
  color: #fff;
}

.feature-box i {
  color: #fff;
}

.airline-box {
  padding: 20px 0;

  .airline-header {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #575656;
  }

  ul {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;

    li {
      h2 {
        opacity: 0.5;
        color: rgb(75 85 99 / var(--tw-text-opacity, 1));
        font-size: 25px;
        font-weight: 700;
      }
    }
  }
}

.infotext {
  background-color: #f9fafb;

  padding: 3rem 0;

  .info-text-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    .info-left-box {
      width: 70%;

      .text-one {
        background-color: #fff;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 20px;
      }

      .text-one-hadding {
        line-height: 1.2;
        font-size: 27px;
        font-weight: 700;
        padding: 13px 0px;
      }

      .text-pragraph {
        font-size: 17px;
        text-align: justify;
        line-height: 1.4;
        padding: 10px 0px;
        font-weight: 500;
        color: #343333;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
      }

      .feature-card {
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        transition: 0.3s;
      }

      .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
      }

      .feature-icon {
        font-size: 24px;
        color: #0066ff;
        margin-bottom: 12px;
      }

      .feature-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #222;
      }

      .feature-text {
        font-size: 14px;
        line-height: 1.6;
        color: #555;
      }

      .class-comparison {
        margin-top: 20px;
        display: flex;
        gap: 20px;
      }

      .class-box {
        flex: 1;
        border: 1px solid #d1d5db; /* light border like image */
        border-radius: 8px;
        padding: 24px;
        line-height: 1.6;
      }

      /* Economy card */
      .economy-box {
        background: #f0f7ff; /* very light blue */
      }

      .economy-box h3 {
        font-size: 20px;
        font-weight: 700;
        color: #1d4ed8; /* bright blue */
        margin-bottom: 12px;
      }

      /* Business card */
      .business-box {
        background: #faf5ff; /* very light purple */
      }

      .business-box h3 {
        font-size: 20px;
        font-weight: 700;
        color: #7e22ce; /* purple heading */
        margin-bottom: 12px;
      }

      /* Shared text styles */
      .class-box p {
        font-size: 15px;
        color: #374151;
        margin-bottom: 14px;
        line-height: 28px;
        font-weight: 500;
      }

      .class-box ul {
        margin: 0;
        padding-left: 20px;
      }

      .class-box ul li {
        font-size: 15px;
        color: #374151;
        list-style: disc;
      }

      .info-cards {
        margin-top: 20px;
        display: flex;
        gap: 20px;
      }

      .info-card {
        flex: 1;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        padding: 20px 22px;
        line-height: 1.6;
      }

      /* Card 1 - Green */
      .safety-card {
        background: #f0fdf4;
        border-color: #bbf7d0;
      }
      .safety-card h3 {
        font-size: 16px;
        font-weight: 700;
        color: #15803d;
        margin-bottom: 14px;
      }

      /* Card 2 - Blue */
      .punctuality-card {
        background: #eff6ff;
        border-color: #bfdbfe;
      }
      .punctuality-card h3 {
        font-size: 16px;
        font-weight: 700;
        color: #1d4ed8;
        margin-bottom: 14px;
      }

      /* Card 3 - Orange */
      .industry-card {
        background: #fff7ed;
        border-color: #fed7aa;
      }
      .industry-card h3 {
        font-size: 16px;
        font-weight: 700;
        color: #c2410c;
        margin-bottom: 14px;
      }

      /* Shared text */
      .info-card p {
        font-size: 14px;
        color: #111827;
        margin: 8px 0;
      }

      .info-card strong {
        font-weight: 700;
        color: #111827;
      }

      /* Icons */
      .info-card h3 i {
        margin-right: 6px;
      }
    }

    .info-right-box {
      width: 30%;

      .stats-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        padding: 10px;
      }

      .stats-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 18px;
      }

      .stats-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0px;
        font-size: 14px;
        color: #374151;
      }

      .stats-row:not(:last-child) {
        border-bottom: 1px solid #e5e7eb;
      }

      .stats-label {
        font-weight: 400;
        font-size: 15px;
        line-height: 25px;
      }

      .stats-value {
        font-weight: 600;
        color: #1d4ed8;
        cursor: pointer;
        text-decoration: none;
        font-size: 15px;
        text-align: end;
      }

      .stats-value:hover {
        text-decoration: underline;
      }

      .main-handige {
        padding: 10px;
      }

      .handige-container {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 10px 0 rgba(25, 33, 61, 0.08);
        margin-top: 1rem;
        padding: 20px 0 16px 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .handige-title-row {
        display: flex;
        align-items: center;
        padding: 0 24px 4px 24px;
        font-weight: 700;
        font-size: 17px;
        color: #17214a;
        gap: 10px;
        margin-bottom: 15px;
      }

      .handige-title-icon {
        color: #4672f6;
      }

      .handige-title {
        font-weight: 600;
      }

      .handige-btn-row {
        display: flex;
        align-items: center;
        border-radius: 10px;
        padding: 13px 24px;
        justify-content: space-between;
        transition: box-shadow 0.15s, transform 0.15s;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        gap: 16px;
      }

      .handige-btn-checkin {
        background: #eef6fe;
        color: #1754c5;
        margin-bottom: 10px;
      }
      .handige-btn-checkin .handige-btn-icon {
        color: #1d6ce1;
      }
      .handige-btn-checkin .handige-btn-arrow {
        color: #5ca6fe;
      }

      .handige-btn-bagage {
        background: #edf8f3;
        color: #258764;
        margin-bottom: 10px;
      }
      .handige-btn-bagage .handige-btn-icon {
        color: #2eb77e;
      }
      .handige-btn-bagage .handige-btn-arrow {
        color: #42cd97;
      }

      .handige-btn-vluchtstatus {
        background: #f5f0fc;
        color: #882e97;
        margin-bottom: 10px;
      }
      .handige-btn-vluchtstatus .handige-btn-icon {
        color: #a973e2;
      }
      .handige-btn-vluchtstatus .handige-btn-arrow {
        color: #c493e2;
      }

      .handige-btn-flyingblue {
        background: #fff3eb;
        color: #e06114;
      }
      .handige-btn-flyingblue .handige-btn-icon {
        color: #f18e3b;
      }
      .handige-btn-flyingblue .handige-btn-arrow {
        color: #ffc19d;
      }

      .handige-btn-row:hover {
        box-shadow: 0 2px 10px 0 rgba(25, 33, 61, 0.1);
        transform: translateY(-2px) scale(1.01);
      }
      .handige-btn-icon {
        font-size: 22px;
      }
      .handige-btn-text {
        flex: 1;
        font-weight: 500;
        margin-left: 14px;
      }
      .handige-btn-arrow {
        font-size: 18px;
      }

      .vloot-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 12px 0 rgba(25, 33, 61, 0.08);
        padding: 18px 0 18px 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 1rem;
      }

      .vloot-title {
        color: #17214a;
        font-size: 20px;
        font-weight: 700;
        padding: 0 24px;
        margin-bottom: 7px;
        letter-spacing: -0.01em;
      }

      .vloot-row {
        background: #f7f9fa;
        border-radius: 10px;
        padding: 13px 18px 13px 18px;
        margin: 0 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        font-weight: 600;
      }

      .vloot-plane {
        color: #232b3f;
        font-weight: 600;
      }

      .vloot-count {
        color: #246cfb;
        margin-left: 12px;
        font-weight: 600;
        font-size: 15px;
      }
    }
  }
}

.last-drop {
  .faq-section {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 34px;
    padding-bottom: 20px;
  }

  .faq-heading {
    font-size: 34px;
    font-weight: bold;
    color: #1a2551;
    margin-bottom: 6px;
    margin-top: 0;
    letter-spacing: -0.02em;
    text-align: center;
  }

  .faq-subheading {
    padding-top: 19px;
    font-size: 20px;
    color: #7684a2;
    margin-bottom: 26px;
    text-align: center;
  }

  .faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 auto;
  }

  .faq-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px 0 rgba(25, 33, 61, 0.08);
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    padding: 21px 22px 19px 22px;
    font-size: 17px;
    font-weight: 600;
    color: #1a2551;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.12s;
  }

  .faq-question:hover {
    background: #f4f7fa;
  }

  .faq-arrow {
    font-size: 22px;
    margin-left: 16px;
    color: #7684a2;
    transition: transform 0.2s;
  }

  .faq-item.open .faq-arrow {
    transform: rotate(180deg);
  }

  .faq-answer {
    display: none;
    padding: 0 22px 18px 22px;
    font-size: 15px;
    color: #33436b;
    font-weight: 500;
    background: #fff;
    line-height: 1.6;
  }

  .faq-item.open .faq-answer {
    display: block;
    animation: faqFadeIn 0.25s;
  }

  @keyframes faqFadeIn {
    0% {
      opacity: 0;
      transform: translateY(-8px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
