/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  top: 0;
  width: 100%;
  z-index: 1000;

  background: #e8d1b9;
  backdrop-filter: blur(10px);

  padding: 12px 0;
  transition: 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  color: #fff;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
  margin: 0;
}

.nav a {
  color: #0021AA;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #1E90FF;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.call-btn {
  background: linear-gradient(135deg, #1E90FF, #00C6FF);
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.menu {
  display: flex;
  gap: 40px;
  transition: all 0.3s ease;
  z-index: 999;
  top: 65px;
}

/* MOBILE TOGGLE */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* HERO SECTION */

.hero{
position:relative;
min-height: 100vh;
padding: 60px 0;
display:flex;
align-items:center;
overflow:hidden;
color:#ffffff;
}

/* BACKGROUND SLIDER */

.hero-bg-slider{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:0;
}

.bg-slide{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity 1.2s ease-in-out;
}

.bg-slide.active{
opacity:1;
}

/* DARK OVERLAY */

.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
z-index:1;
pointer-events:none;
}


.hero-content {
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    width:100%;
}

.hero-text {
  position: relative;
  max-width: 650px;
  min-height: 150px;
  display: flex;
  align-items: center;
}

.hero-text h2 {
  font-size: 50px;
  line-height: 1.2;
  white-space: normal;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 20px;
  margin-top: 10px;
}

.text-slide {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.text-slide.active {
  opacity: 1;
  position: relative;
}


/* =========================
   HERO FORM - RESPONSIVE FIX
   ========================= */

.hero-form {
  width: 100%;
  max-width: 520px;

  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);

  padding: 28px;
  border-radius: 20px;

  border: 1px solid rgba(255,255,255,0.2);

  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* FORM ROW */
.hero-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

/* INPUT GROUP */
.hero-form .input-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

/* LABEL */
.hero-form .input-group label {
  width: 100%;
  margin-bottom: 6px;

  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

/* INPUT */
.hero-form input {
  width: 100%;
  height: 50px;

  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);

  padding: 0 14px;

  background: rgba(255,255,255,0.95);

  font-size: 14px;
}

/* FOCUS */
.hero-form input:focus {
  outline: none;
  border-color: #1E90FF;
  box-shadow: 0 0 10px rgba(30,144,255,0.3);
}

/* PASSENGER BOX */
.passenger-box {
  width: 100%;

  display: flex;
  align-items: center;

  height: 50px;

  border-radius: 12px;
  overflow: hidden;

  background: rgba(255,255,255,0.95);
}

.passenger-box button {
  width: 50px;
  height: 100%;

  border: none;
  background: #f5f5f5;

  font-size: 18px;
  cursor: pointer;
}

.passenger-box input {
  flex: 1;
  border: none;
  background: transparent;
  text-align: center;
}

/* BUTTON */
.search-btn {
  width: 100%;
  height: 52px;

  border: none;
  border-radius: 14px;

  background: linear-gradient(135deg, #1E90FF, #00C6FF);

  color: #fff;
  font-size: 15px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.3s;
}

.search-btn:hover {
  transform: translateY(-2px);
}

/* AUTOCOMPLETE */
.suggestions {
  position: absolute;
  top: 100%;
  left: 0;

  width: 100%;

  background: #fff;
  border-radius: 10px;

  overflow: hidden;

  z-index: 9999;
}

.suggestions div {
  padding: 12px;
  color: #000;
  cursor: pointer;
}

.suggestions div:hover {
  background: #f2f2f2;
}

/* =========================
   MOBILE FIX
   ========================= */

@media(max-width:768px){

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-content {
    flex-direction: column;
    gap: 30px;
  }

  .hero-text {
    text-align: center;
    min-height: auto;
  }

  .hero-text h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
  }

  .hero-form {
    max-width: 100%;
    padding: 22px;
  }

}

/* EXTRA SMALL DEVICES */

@media(max-width:480px){

  .hero-form {
    padding: 18px;
    border-radius: 16px;
  }

  .hero-text h2 {
    font-size: 26px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .search-btn {
    height: 50px;
    font-size: 14px;
  }

}

/* DATE ROW */
.hero-form .date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* MOBILE */
@media(max-width:768px){

  .hero-form .date-row {
    grid-template-columns: 1fr 1fr; /* keep inline */
    gap: 10px;
  }

}

.wave-divider {
  position: relative;
  margin-top: -100px;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 120px;
}

.wave-divider path {
  fill: #eec82a; /* same as next section bg */
}

.wave-dividerServices {
  position: relative;
  margin-top: -100px;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.wave-dividerServices svg {
  display: block;
  width: 100%;
  height: 120px;
}

.wave-dividerServices path {
  fill: #ffffff; /* same as next section bg */
}

/* RESPONSIVE */
@media(max-width: 768px){
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-form {
    width: 100%;
  }
  .hero-text h2 {
    margin: 20px 0;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .hero-text p {
    margin: 30px 50px;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
} 

@media(max-width:768px){

  .menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0A3D62;
    flex-direction: column;
    display: none;
  }

  .menu a {
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}


/*SERVICES SECTION */
.services {
  background: #eec82a;
  padding: 80px 0 120px 0;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-top: -50px;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 50px;
  margin-bottom: 10px;
  color: #0021AA;
}

.section-header p {
  color: #0021AA;
  font-size: 20px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* GRADIENT TOP BORDER */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1E90FF, #00C6FF);
  transform: scaleX(0);
  transition: 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: 0.4s ease;
}

/* INDIVIDUAL COLORS */
.icon-box.flight {
  background: linear-gradient(135deg, #1E90FF, #00C6FF);
  color: #fff;
}

.icon-box.holiday {
  background: linear-gradient(135deg, #28a745, #85e085);
  color: #fff;
}

.icon-box.planning {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
}

.icon-box.insurance {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
}

/* ICON ANIMATION */
.service-card:hover .icon-box {
  transform: scale(1.15) rotate(5deg);
}

@media(max-width:768px){

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 26px;
  }

}

.destinations {
  background: #ffffff;
  padding: 100px 0;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

/* IMAGE */
.destination-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.destination-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}

.destination-card .overlay::after {
  content: "View Deals →";
  display: block;
  margin-top: 10px;
  font-size: 20px;
  opacity: 0;
  transition: 0.3s;
}

.destination-card:hover .overlay::after {
  opacity: 1;
}

.destination-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.destination-card p {
  font-size: 14px;
}

/* HOVER EFFECT */
.destination-card:hover img {
  transform: scale(1.1);
}

.destination-card:hover {
  transform: translateY(-5px);
}

.destination-link {
  text-decoration: none;
  color: inherit;
  display: block;
}


.travel-modal {
  max-width: 500px;
  border-radius: 16px;
  padding: 25px;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group label {
  font-size: 13px;
  margin-bottom: 5px;
  display: block;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.form-row {
  display: flex;
  gap: 10px;
}

#viewFlightsBtn {
  margin-top: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #1E90FF, #00C6FF);
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

@media(max-width:768px){

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .destination-card img {
    height: 200px;
  }

}

/*WHY CHOOSE US */

.why-us {
  background: #f8f9fc;
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.why-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: #fff;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.why-card .icon {
  font-size: 35px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

@media(max-width:768px){

  .why-grid {
    grid-template-columns: 1fr;
  }

}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.user-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1E90FF;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-info h4 {
  font-size: 15px;
  margin: 0;
}

.user-info span {
  font-size: 12px;
  color: #777;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #0A3D62, #1E90FF);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta p {
  font-size: 16px;
  margin-bottom: 25px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cta-btn {
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.cta-btn.primary {
  background: #fff;
  color: #0A3D62;
}

.cta-btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

/* HOVER */
.cta-btn.primary:hover {
  background: #f1f1f1;
}

.cta-btn.secondary:hover {
  background: #fff;
  color: #0A3D62;
}

@media(max-width:768px){

  .cta-buttons {
    flex-direction: column;
  }

}

/* FOOTER */
.footer {
  background: #0A3D62;
  color: #fff;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-links-group {
  display: block;
}

.footer .logo img {
  height: 45px;
  margin-bottom: 15px;
  display: block;
}

@media(max-width:768px){

  .footer .logo img {
    height: 40px;
    margin: 0 auto 10px;
  }

}

/* COLUMNS */
.footer-col h2,
.footer-col h3 {
  margin-bottom: 15px;
}

.footer-col h5 {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  margin-top: 10px;
}

.footer-col p {
  font-size: 14px;
  color: #ccc;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #1E90FF;
}

.footer-col img {
  max-width: 300px;
  margin-top: 20px;
}

/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

@media(max-width:768px){

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }

  .footer-col {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer-col:last-child {
    border-bottom: none;
  }

  .footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
  }

  .footer-links-group .footer-col {
    border: none;
    padding-bottom: 0;
  }
  
  .footer-links-group ul {
  padding-left: 0;
  }

  .footer-links-group li {
  list-style: none;
  }

  .footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
  }

  .footer-subcol h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-subcol ul li {
    margin-bottom: 8px;
  }
}

/* FLIGHTS PAGE*/

.page-hero {
  background: linear-gradient(
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.5)
  ),
  url("../images/airline4.jpg") center/cover no-repeat;

  color: #fff;
  text-align: center;
  padding: 120px 20px;
}


.page-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 16px;
}

/* FORM CENTER */
.flight-search {
  background: #F7DD7D;
  padding: 100px 0;
}

/* BOX */
/* =========================
   FLIGHTS PAGE FORM (PREMIUM)
   ========================= */

.hero-formFlight {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  max-width: 1100px;
  margin: 30px auto 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* GRID LAYOUT */
.hero-formFlight .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

/* LAST ROW (PASSENGER + BUTTON) */
.hero-formFlight .form-row:last-child {
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

/* INPUT GROUP */
.hero-formFlight .input-group {
  display: flex;
  flex-direction: column;
}

/* LABEL */
.hero-formFlight .input-group label {
  font-size: 13px;
  margin-bottom: 6px;
  color: #555;
  font-weight: 500;
}

/* INPUTS */
.hero-formFlight input,
.hero-formFlight select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s ease;
  background: #f9fbff;
}

/* INPUT FOCUS */
.hero-formFlight input:focus,
.hero-formFlight select:focus {
  border-color: #1E90FF;
  box-shadow: 0 0 6px rgba(30,144,255,0.2);
  outline: none;
}

/* =========================
   PASSENGER BOX
   ========================= */

.hero-formFlight .passenger-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f9fbff;
  overflow: hidden;
}

.hero-formFlight .passenger-box button {
  width: 50px;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
}

.hero-formFlight .passenger-box button:hover {
  background: #1E90FF;
  color: #fff;
}

.hero-formFlight .passenger-box input {
  flex: 1;
  border: none;
  text-align: center;
  background: transparent;
  font-size: 14px;
}

/* =========================
   BUTTON
   ========================= */

.hero-formFlight .search-btn {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1E90FF, #00C6FF);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-formFlight .search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* =========================
   AUTOCOMPLETE DROPDOWN
   ========================= */

.hero-formFlight .suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  z-index: 9999;
  max-height: 200px;
  overflow-y: auto;
}

.hero-formFlight .suggestions div {
  padding: 10px;
  cursor: pointer;
}

.hero-formFlight .suggestions div:hover {
  background: #f2f2f2;
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media(max-width:768px){

  .hero-formFlight {
    padding: 20px;
  }

  .hero-formFlight .form-row {
    grid-template-columns: 1fr;
  }

  .hero-formFlight .search-btn {
    margin-top: 10px;
  }

}


/* BENEFITS */
.flight-benefits {
  padding: 80px 0;
  background: #f8f9fc;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  margin-top: 30px;
}

.benefit h3 {
  margin-bottom: 10px;
}

.benefit p {
  font-size: 14px;
  color: #666;
}

@media(max-width:768px){

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .search-top {
    flex-direction: column;
  }

  .search-main {
    grid-template-columns: 1fr;
  }

  .search-main button{
    margin: 0 0;
    padding: 10px 0;
  }
}

.popular-routes {
  padding: 100px 0;
  background: #ffffff;
}

/* GRID */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* CARD */
.route-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-radius: 12px;
  background: #f8f9fc;
  transition: 0.3s ease;
  border: 1px solid #eee;
}

/* TEXT */
.route-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.route-info p {
  font-size: 14px;
  color: #666;
}

/* BUTTON */
.route-card button {
  background: #1E90FF;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.route-card button:hover {
  background: #0A3D62;
}

/* HOVER EFFECT */
.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

@media(max-width:768px){

  .routes-grid {
    grid-template-columns: 1fr;
  }

  .route-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .route-card button {
    width: 100%;
  }

}

.flight-deals {
  padding: 100px 0;
  background: #f4f7fb;
}

/* GRID */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* CARD */
.deal-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.deal-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* OVERLAY */
.deal-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}

.deal-info h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.deal-info p {
  font-size: 14px;
}

.deal-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4d4d;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}

/* HOVER */
.deal-card:hover img {
  transform: scale(1.1);
}

@media(max-width:768px){

  .deals-grid {
    grid-template-columns: 1fr;
  }

}

.how-it-works {
  padding: 100px 0;
  background: #ffffff;
}

/* GRID */
.steps-grid {
  display: grid;
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

/* CARD */
.step-card {
  padding: 30px 20px;
  border-radius: 12px;
  background: #f8f9fc;
  transition: 0.3s ease;
}

/* STEP NUMBER */
.step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #1E90FF;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* TEXT */
.step-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.step-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

@media(max-width:768px){

  .steps-grid {
    grid-template-columns: 1fr;
  }

}

.testimonials {
  padding: 100px 0;
  background: #f4f7fb;
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* TEXT */
.testimonial-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: #222;
}

/* STARS */
.stars {
  color: #f5a623;
  font-size: 14px;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

@media(max-width:768px){

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

}

/* PACKAGES PAGE */

.packages-hero {
  background: linear-gradient(
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.5)
  ),
  url("../images/airline2.jpg") center/cover no-repeat;

  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.packages-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.packages-hero p {
  font-size: 18px;
}

.featured-package {
  padding: 100px 0;
}

.featured-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.featured-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(45deg, #b5c6d7, #97cfde);
  z-index: -1;
}


.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content h2 {
  margin-bottom: 10px;
}

.featured-content span {
  font-size: 22px;
  color: #1E90FF;
  margin: 10px 0;
}

.featured-content button {
  padding: 12px;
  border: none;
  background: #1E90FF;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.section-title {
  font-size: 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.packages-list {
  padding: 50px 0;
  background: #f4f7fb;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.package-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.package-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

.package-content {
  padding: 15px;
  background: #fff;
}

.package-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.package-content .duration {
  font-size: 13px;
  color: #777;
}

.package-content .price {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0;
  color: #1E90FF;
}

.package-btn {
  width: 100%;
  padding: 10px;
  border: none;
  background: #1E90FF;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}


.package-item:hover img {
  transform: translateY(-8px) scale(1.02);
}

@media(max-width:768px){

  .featured-card {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 999;
  align-items: flex-start;
  justify-content: center;
}


.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  max-width: 450px;
  width: 100%;
  position: relative;
  animation: fadeUp 0.3s ease;
}

.modal-content img {
  width: 100%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 10;
  background: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.modal.show {
  display: flex;
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-body {
  padding: 20px;
  text-align: left;
}

.modal-form {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-form input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.modal-form button {
  background: #1E90FF;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#modalHighlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

#modalHighlights li {
  background: #f4f7fb;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: #333;
  white-space: nowrap;
}

.modal-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin: 10px 0 15px;
}

.modal-meta span {
  color: #333;
}

.modal-meta span:first-child {
  font-weight: bold;
  color: #1E90FF;
}

/* Add separator dot */
.modal-meta span:first-child::after {
  content: "•";
  margin-left: 10px;
  color: #999;
}

@media(max-width: 480px){

  .modal {
    margin-top: 60px;
  }
  .modal-meta {
    flex-wrap: wrap;
    font-size: 14px;
  }
}

/* CONTACT PAGE*/

.contact-section {
  padding: 100px 0;
  background: #f4f7fb;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT SIDE */
.contact-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #555;
  margin-bottom: 25px;
}

/* INFO BOX */
.info-box {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.info-box span {
  font-size: 24px;
}

.info-box h4 {
  margin-bottom: 5px;
}

.info-box p {
  font-size: 14px;
  color: #666;
}

/* RIGHT SIDE */
.contact-form-box {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.contact-form-box h3 {
  margin-bottom: 20px;
}

/* FORM */
.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-box input,
.contact-form-box textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: #1E90FF;
  box-shadow: 0 0 6px rgba(30,144,255,0.2);
}

/* BUTTON */
.contact-form-box button {
  background: #1E90FF;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form-box button:hover {
  background: #0A3D62;
}

@media(max-width:768px){

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 25px;
  }

}

.quick-contact {
  padding: 100px 0;
  background: #ffffff;
}

/* GRID */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.quick-card {
  text-decoration: none;
  background: #f8f9fc;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s ease;
  color: #222;
  display: block;
}

/* ICON */
.quick-card .icon {
  font-size: 35px;
  margin-bottom: 15px;
}

/* TEXT */
.quick-card h3 {
  margin-bottom: 10px;
}

.quick-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.quick-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  background: #1E90FF;
  color: #fff;
}

.quick-card:hover p {
  color: #fff;
}

@media(max-width:768px){

  .quick-grid {
    grid-template-columns: 1fr;
  }

}

.faq {
  padding: 100px 0;
  background: #f4f7fb;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

/* ITEM */
.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* QUESTION */
.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 500;
  position: relative;
}

/* ADD + ICON */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 18px;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 10px 0;
  font-size: 14px;
  color: #555;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.legal-content {
  padding: 80px 0;
  background: #ffffff;
}

.legal-content h2 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 20px;
}

.legal-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.legal-content ul {
  margin: 10px 0 20px 20px;
  padding-left: 15px;
}

.legal-content ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  list-style: disc;
}

.input-group {
  position: relative;
}

.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  display: none;
  z-index: 9999;
  max-height: 200px;
  overflow-y: auto;
}

.suggestions div {
  padding: 10px;
  cursor: pointer;
}

.suggestions div:hover {
  background: #f2f2f2;
}

.checkout-meta {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.checkout-meta span:first-child::after {
  content: "•";
  margin-left: 8px;
}

.billing-info {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.billing-type {
  font-size: 13px;
  color: #888;
}

/* =========================
   PACKAGE DETAILS (PREMIUM)
   ========================= */

.packageDetails-hero {
  background: linear-gradient(
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.5)
  ),
  url("../images/airline2.jpg") center/cover no-repeat;

  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.packageDetails-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.packageDetails-hero p {
  font-size: 18px;
}

.package-details {
  padding: 80px 20px;
  background: #f8f9fb;
}

.package-details .container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TITLE */
.package-details h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* META (PRICE + DURATION INLINE) */
.package-details .meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.package-details .meta span {
  background: #f1f3f7;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
}

/* DESCRIPTION */
.package-details .desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* FEATURES */
.package-details .features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 30px;
}

.package-details .features li {
  list-style: none;
  font-size: 14px;
  color: #333;
}

/* CTA BUTTON */
#payNowBtn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

#payNowBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,122,24,0.4);
}

@media(max-width:768px){

  .package-details .container {
    padding: 25px;
  }

  .package-details h1 {
    font-size: 22px;
  }

  .package-details .features {
    grid-template-columns: 1fr;
  }

}

/* =========================
   CHECKOUT - PREMIUM DESIGN
   ========================= */

.checkout-new {
  padding: 80px 20px;
  background: #f4f7fb;
}

.checkout-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* =========================
   SUMMARY
   ========================= */

.checkout-summary {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.checkout-summary h3 {
  margin-bottom: 15px;
}

.summary-meta {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 10px;
}

.billing-desc {
  font-size: 14px;
  margin-top: 10px;
}

.billing-type {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

/* TRUST BOX */
.trust-box {
  background: #f8fbff;
  padding: 15px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.6;
}

/* =========================
   FORM
   ========================= */

.checkout-form-box {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

#checkoutFormNew input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

#checkoutFormNew input:focus {
  border-color: #00A991;
  outline: none;
}

/* TERMS */
.terms-new {
  display: inline-flex;
  gap: 10px;
  margin: 15px 0;
}

.terms-new input {
  margin-top: 4px;
}

.terms-new label {
  font-size: 13px;
  line-height: 1.5;
}

.terms-new a {
  color: #00A991;
  text-decoration: none;
}

.terms-new a:hover {
  text-decoration: underline;
}

/* BUTTON */
.pay-btn {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #00A991, #00c9a7);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.pay-btn:hover {
  transform: translateY(-2px);
}

/* =========================
   MOBILE
   ========================= */

@media(max-width:768px){

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-title {
    font-size: 24px;
  }

}

/* =========================
   HOMEPAGE MODAL (SEPARATE)
   ========================= */

.home-modal {
  align-items: center;
  justify-content: center;
}

#homeSummary {
  font-size: 14px;
  margin-bottom: 15px;
  color: #444;
}

.home-close {
  position: absolute;
  top: 12px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
}

/* AUTOCOMPLETE */
.input-group {
  position: relative;
}

.suggestions {
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  color: #000;
  background: #fff;
  border: 1px solid #ddd;
  z-index: 9999;
  max-height: 200px;
  overflow-y: auto;
}

.suggestions div {
  padding: 10px;
  cursor: pointer;
}

.suggestions div:hover {
  background: #f2f2f2;
}

/*LEADS PAGE*/
.lead-page {
  padding: 80px 20px;
  text-align: center;
}

.lead-page form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lead-page input,
.lead-page textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.lead-page button {
  background: linear-gradient(135deg, #1E90FF, #00C6FF);
  color: white;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
}

/* =========================
   LEGAL PAGES
   PRIVACY / TERMS / REFUND
   ========================= */

.legal-content {
  padding: 80px 20px;
  background: #f4f7fb;
}

.legal-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* =========================
   TEXT
   ========================= */

.legal-container p {
  font-size: 20px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

/* =========================
   HEADINGS
   ========================= */

.legal-container h2 {
  font-size: 30px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #111;
  position: relative;
  padding-left: 16px;
}

/* LEFT ACCENT BAR */
.legal-container h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 24px;
  background: #00A991;
  border-radius: 20px;
}

.legal-container h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #222;
}

/* =========================
   LISTS
   ========================= */

.legal-container ul {
  padding-left: 22px;
  margin-bottom: 20px;
}

.legal-container li {
  margin-bottom: 10px;
  line-height: 1.8;
  color: #555;
  font-size: 20px;
}

/* =========================
   LINKS
   ========================= */

.legal-container a {
  color: #00A991;
  text-decoration: none;
  font-weight: 500;
}

.legal-container a:hover {
  text-decoration: underline;
}

/* =========================
   STRONG TEXT
   ========================= */

.legal-container strong {
  color: #111;
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media(max-width:768px){

  .legal-content {
    padding: 50px 15px;
  }

  .legal-container {
    padding: 28px 20px;
    border-radius: 12px;
  }

  .legal-container h2 {
    font-size: 21px;
    margin-top: 30px;
  }

  .legal-container h3 {
    font-size: 17px;
  }

  .legal-container p,
  .legal-container li {
    font-size: 14px;
    line-height: 1.8;
  }

}

@media(max-width:480px){

  .legal-container {
    padding: 24px 16px;
  }

  .legal-container h2 {
    font-size: 19px;
  }

  .legal-container p,
  .legal-container li {
    font-size: 13.5px;
  }

}