@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}

.main-header {
  background-color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #c0cad5;
  max-width: 100%;
  margin: 0 auto;
}

.container {
  max-width: 90%;
  margin: 0 auto;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.align-center {
  align-items: center;
}
.text-center {
  text-align: center;
}
.justify-center {
  justify-content: center;
}
.space-bw {
  justify-content: space-between;
}
.space-between {
  justify-content: space-between;
}
/* Logo Styling */
.logo img {
  width: 135px;
  display: block;
}

/* Nav Links Styling */
.nav-links {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: 40px;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #2b70c9;
}

/* Support Widget Pill Styling */
.support-widget {
  display: flex;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  height: 40px;
  border: 2px solid #ffb400; /* Subtle orange border from image */
}

.support-info {
  background-color: #ffcc33; /* Yellow Background */
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 10px;
  height: 100%;
}

.agent-box {
  position: relative;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #ff8c00;
  overflow: visible; /* To allow status dot to peek out */
}

/* .agent-box::before,
.agent-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgb(253 48 29);
  animation: pulseSpread 2.8s ease-out infinite;
  z-index: 1;
} */

/* @keyframes pulseSpread {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.7);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
} */

.agent-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background-color: #4caf50; /* Online Green */
  border: 2px solid white;
  border-radius: 50%;
}

.support-label {
  font-size: 13px;
  font-weight: bold;
  color: #1a4da3; /* Deep Blue text */
  white-space: nowrap;
}

.phone-box {
  background-color: #2b70c9; /* Blue Background */
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.phone-box a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}
.hamburger {
  display: none;
}
/* Default (desktop) */
.nav-links {
  display: flex;
  gap: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 65px; /* adjust as per header height */
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
    padding: 15px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
    align-items: center;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }
}

/* Responsive adjustments for Mobile */
@media (max-width: 900px) {
  .nav-links {
    margin-right: 0;
    justify-content: center;
  }
  .hamburger {
    display: block;
    margin-left: 10px;
  }
  .container {
    max-width: 95%;
  }
  .logo {
    width: 90px;
  }
  .logo img {
    height: 44px;
    display: block;
  }
  .phone-box a {
    font-weight: 500;
    font-size: 10px;
  }
  .support-label {
    font-size: 10px;
    font-weight: bold;
    color: #1a4da3;
    white-space: nowrap;
  }
  .container {
    padding: 0px 0;
  }
  .support-widget {
    display: flex;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
    height: 32px;
    border: 2px solid #ffb400;
  }
  .agent-box {
    position: relative;
    width: 35px;
    height: 27px;
    background: #fff;
    border-radius: 50%;
    border: none;
    overflow: visible;
  }

  .search-now-btn {
    font-size: 16px !important;
    margin-top: 10px !important;
  }
}

/* banner   */
/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0 0 70px;
}

.hero-section .overlay-content {
  width: 60%;
}

.hero-section .overlay-image {
  width: 40%;
}

.overlay-image img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgb(236, 239, 242);
  background-attachment: scroll;
  width: 100%;
  height: 100%;
  border-radius: 9999px 0px 0px 9999px;
}

.text-header h1 {
  color: rgb(0, 60, 138);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 32px;
}

.text-header p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Glassmorphism Search Box */
.search-container {
  padding: 15px;
  border-radius: 15px;
  width: 100%;
  max-width: 800px;
  box-shadow:
    rgba(0, 0, 0, 0.03) 0px -1px 0px 0px,
    rgba(0, 0, 0, 0.16) 0px 2px 8px 0px,
    rgba(0, 0, 0, 0.16) 0px 10px 8px -5px,
    rgba(0, 0, 0, 0.16) 0px 12px 32px -2px;
}

.flights-div {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgb(0, 104, 239);
  background: rgb(232, 242, 255);
  border-radius: 30px;
  padding: 10px 30px;
  margin-bottom: 25px;
}

.flights-div img {
  width: 25px;
}

.flights-div p {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 700;
  color: rgb(0, 104, 239);
}

.tabs {
  margin-bottom: 20px;
}

.tab {
  background: transparent;
  border: none;
  color: white;
  padding: 8px 18px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  margin-right: 5px;
}

.tab.active {
  background: #29abe2;
  font-weight: 600;
}

/* Form Layout */
.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-end;
}

.input-group {
  flex: 1;
  background: #ffffff94;
  border-radius: 4px;
  transition: opacity 0.3s;
  color: rgb(0, 24, 51);
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  margin: 0px;
  padding: 14px 12px 14px 12px;
  border-color: rgb(192, 202, 213);
  border-radius: 12px;
}

.input-group label {
  display: block;
  font-size: 11px;
  font-weight: bold;
  color: #555;
  margin-bottom: 4px;
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-wrapper i {
  color: rgb(0, 104, 239);
  font-size: 14px;
}

.input-wrapper input,
.input-wrapper select {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 15px;
  font-weight: 00;
  outline: none;
  color: #000;
}

/* Swap Button Circle */
.swap-btn {
  background: white;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 10px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Disabled State for One Way */
.input-group.disabled {
  opacity: 0.4;
  background: rgba(200, 200, 200, 0.8);
  pointer-events: none;
}

/* Main Button */
.search-now-btn {
  width: 100%;
  padding: 14px;
  background: #0068ef;
  border: none;
  color: white;
  font-size: 20px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 5px;
}

.col-50 {
  width: 49%;
}
/* Responsive */
@media (max-width: 768px) {
  /* .form-row {
    flex-direction: column;
  } */
  .swap-btn {
    display: none;
  }
  .text-header h1 {
    font-size: 30px;
  }
  .counter-row {
    margin-bottom: 8px;
  }
  .traveler-popup {
    padding: 10px;
    z-index: 1000;
  }
  .traveler-popup {
    padding: 10px !important;
  }
  .done-btn {
    padding: 6px 0;
  }
  .counter-row {
    margin-bottom: 10px !important;
  }
}
/* Position the parent relative so the popup anchors to it */
.traveler-group {
  position: relative;
  cursor: pointer;
}

.traveler-popup {
  display: none; /* Hidden by default */
  position: absolute;
  top: 105%; /* Position right below the input */
  left: 0;
  width: 280px;
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 20px;
  z-index: 1000;
}

.traveler-popup.active {
  display: block;
}

.counter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.label-info {
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.count-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.2s;
}

.count-btn:hover {
  background: #f0f0f0;
  border-color: #999;
}

.count-val {
  font-weight: bold;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.minor-link {
  display: block;
  color: #29abe2;
  text-decoration: none;
  font-size: 14px;
  margin: 10px 0 20px 0;
}

.minor-link:hover {
  text-decoration: underline;
}

.done-btn {
  width: 100%;
  padding: 12px;
  background: #0068ef; /* Red color matching your theme */
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

/* why choose  */
.why-choose {
  /* padding: 60px 0;
  background-color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
  position: relative;
  display: block; /* Ensures it acts as a separate block */
  clear: both; /* Ensures it stays below any floats */
  background-color: #ffffff;
  /* z-index: 1; */
  padding: 60px 0;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
  max-width: 1000px;
}

/* Grid setup to match the 4-top, 2-bottom look */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  border: 1px solid #e1e8f0; /* Soft light blue border */
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: #fff;
  transition:
    transform 0.2s,
    box-shadow 0.2s;

  background: #fed00105;
  border: 1px solid #1b6dc23b;
  border-radius: 10px;
}

/* To make the last two cards centered or span specifically */
.feature-card.bottom-row {
  grid-column: span 2; /* Spans 2 columns to center the 2 bottom cards */
}

.card-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.card-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card.bottom-row {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 24px;
  }
  .feature-card.bottom-row {
    grid-column: span 1;
  }
}

/* ////  section */
.class-of-service {
  padding: 60px 0;
  background-color: #fff;
}

.class-of-service .section-desc {
  margin-bottom: 40px;
  max-width: 1100px;
}

.class-of-service .section-desc p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 10px;
}

/* Grid Layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  border-radius: 15px;
  overflow: hidden; /* Clips the image and label to the rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover; /* Ensures the image fills the area without stretching */
  display: block;
}

/* Red Label at the Bottom */
.service-label {
  background: linear-gradient(to right, #0068ef, #ff3333);
  color: white;
  text-align: center;
  padding: 12px 5px;
  font-weight: bold;
  font-size: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}

/* ///// section */
.about-portal {
  background-color: #032663; /* Dark Navy Blue */
  padding: 60px 0;
  color: #ffffff;
}

.about-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Text Styling */
.about-content {
  flex: 1.2; /* Takes up a bit more space than the image */
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

/* Image Styling */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px; /* Rounded corners as seen in the image */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-flex {
    flex-direction: column; /* Stack vertically on tablets/phones */
    text-align: center;
  }

  .about-content h2 {
    font-size: 28px;
  }
}

.col-33 {
  width: 32.33%;
}

/* Responsive Stacking */
@media (max-width: 768px) {
  .icon-flex {
    flex-direction: column;
    gap: 30px;
  }

  .main-flex {
    flex-direction: column;
    gap: 40px;
  }
  .col-33 {
    width: 100% !important;
    text-align: left;
  }
}

footer {
  background: #f7f7f7;
  padding: 30px 0;
}

footer h3 {
  margin-bottom: 15px;
}

footer li {
  list-style: none;
  margin-bottom: 10px;
}
footer li a {
  color: #000;
  text-decoration: none;
}

footer .disclaimer {
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #c0cad5;
}

/* abouy page  */
.page-banner {
  /* Red linear gradient from left to right */
  background: linear-gradient(90deg, #0068ef 0%, #0068ef 100%);

  /* Section sizing */
  width: 100%;
  height: 180px; /* Adjust this to change the banner height */

  /* Center the text vertically and horizontally */
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-banner h1 {
  color: #ffffff;
  font-family: "Arial", sans-serif; /* Replace with your site font */
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}

.info-section {
  padding: 40px 0;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.info-section h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 30px;
  margin-bottom: 12px;
}

.info-section p {
  margin-bottom: 15px;
  font-size: 15px;
}

.info-section ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.info-section li {
  margin-bottom: 8px;
  font-size: 15px;
}

.info-section a {
  color: #023481; /* Matching your blue theme */
  text-decoration: none;
  font-weight: 500;
}

.info-section a:hover {
  text-decoration: underline;
}

.support-details,
.company-info {
  margin-bottom: 20px;
}

.support-details p,
.company-info p {
  margin-bottom: 5px;
}

.info-section strong {
  color: #1a1a1a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* .info-section {
    padding: 20px 15px;
  } */

  .info-section h3 {
    font-size: 20px;
  }
}

/* contact us page  */
/* --- Contact Page Specific Styles --- */

/* 1. Red Banner */
.page-banner {
  background: linear-gradient(90deg, #0068ef 0%, #0068ef 100%);
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-banner h1 {
  color: #ffffff;
  font-size: 36px;
  font-weight: bold;
}

/* 2. Grid Layout */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr; /* Info side is narrower than form side */
  gap: 40px;
}

/* 3. Info Cards (Left Side) */
.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  background: #fdfdfd;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #023481; /* Theme Blue */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

.info-text h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.info-text p,
.info-text a {
  font-size: 15px;
  color: #666;
  text-decoration: none;
}

/* 4. Contact Form (Right Side) */
.contact-form-container h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #023481;
}

.contact-form-container p {
  margin-bottom: 30px;
  color: #555;
  line-height: 1.6;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #023481; /* Blue glow on focus */
}

.submit-btn {
  background: #0068ef; /* Theme Red */
  color: white;
  border: none;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #e63535;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr; /* Stack vertically on mobile */
  }

  .form-row {
    /* flex-direction: column; */
    gap: 1;
  }
}

/* privacy page */
/* --- Legal/Privacy Page Styles --- */

.legal-section {
  padding: 60px 0;
}

.legal-content {
  /* max-width: 900px; 
  margin: 0 auto; */
  color: #333;
  line-height: 1.8; /* Increased line height for readability */
}

.last-updated {
  font-style: italic;
  color: #777;
  margin-bottom: 30px;
}

.legal-content h3 {
  font-size: 22px;
  color: #023481; /* Theme Blue */
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.legal-content p {
  margin-bottom: 20px;
  font-size: 16px;
}

.legal-content ul {
  margin-bottom: 25px;
  padding-left: 25px;
}

.legal-content li {
  margin-bottom: 10px;
  list-style-type: disc;
}

.legal-content strong {
  color: #1a1a1a;
}

.contact-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #0068ef; /* Red Accent */
  margin-top: 20px;
}

.contact-box a {
  color: #023481;
  text-decoration: none;
  font-weight: bold;
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
  .legal-section {
    padding: 10px 15px;
  }
  .legal-content h3 {
    font-size: 20px;
  }
}
.input-group {
  position: relative;
}
.input-group .input-wrapper ul {
  position: absolute;
  top: 50px;
  left: 0px;
  right: 0;
  display: none;
  background: #fff;
  border: 1px solid #ccc;
  overflow-y: auto;
  list-style-type: none;
  padding: 0;
  margin: 0;
  z-index: 99999;
  width: 100%;
  height: 250px;
}

.input-group .input-wrapper ul li {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #0068ef;
  font-size: 15px;
  color: #0068ef;
}

/* sadsadasdasd */
.airlineModal {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
}

.mod-top.allegiant {
  text-align: center;
  padding: 15px 0;
}

.mod-top img {
  width: 200px;
}

.mod-mid img {
  width: 250px;
  display: block;
  margin: 0px auto 20px;
}

.mod-mid h3 {
  text-align: center;
  text-transform: capitalize;
  font-size: 22px;
  text-decoration: underline;
}

.mod-mid .flex.align-center {
  background: #0068ef;
  border-radius: 30px;
  padding: 10px;
  margin: 20px 0;
}

.mod-mid .flex.space-between {
  margin: 20px 0;
  padding: 0 15px;
}

.mod-mid .flex .icon {
  background: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
}

.mod-mid .flex .icon i {
  font-size: 26px;
}

.mod-mid .flex .text p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
}

.mod-mid .flex .text a {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.mod-mid .iaia > div {
  width: 32.33%;
  text-align: center;
}

.mod-mid .iaia i {
  color: #0068ef;
  margin-bottom: 10px;
  font-size: 24px;
}

.mod-mid .iaia p {
  font-size: 14px;
}

.mod-mid .reserve {
  background: #0068ef;
  padding: 10px 0;
  text-align: center;
  margin: 15px 0;
}

.mod-mid .reserve p {
  font-size: 16px;
  color: #fff;
}

.mod-foot .flex.align-center {
  background: #0068ef;
  padding: 10px;
  margin: 0px 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  justify-content: center;
}

.mod-foot .flex .icon {
  background: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 20px;
}

.mod-foot .flex .icon i {
  font-size: 26px;
}

.mod-foot .flex .text p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.mod-foot .flex .text a {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

/* my new css */

/* HERO */
.travel-section {
  padding: 30px 0;
}

.hero {
  border-radius: 16px;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #fff;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 15px;
}

.hero-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

/* DESTINATIONS */
.destinations {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.destinations::-webkit-scrollbar {
  height: 6px;
}

.destinations::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* CARD */
.card {
  min-width: 200px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.card h3 {
  font-size: 16px;
  padding: 10px 10px 2px;
}

.card span {
  font-size: 13px;
  color: #666;
  padding: 0 10px 10px;
  display: block;
}

.for-mobile-view {
  display: none;
}

/* ====== Feature Section ====== */
.fh-features {
  width: 100%;
  padding: 18px 0;
  background: #ffffff;
}

.fh-features__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: center;
}

/* ====== Feature Item ====== */
.fh-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Highlight cards (3rd and 4th) */
.fh-feature--highlight {
  background: #ffffff;
  border: 1px solid #e8eef8;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  position: relative;
}

/* Icon Circle */
.fh-feature__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fh-feature__emoji {
  font-size: 18px;
  line-height: 1;
}

/* Content */
.fh-feature__content {
  flex: 1;
}

.fh-feature__title {
  font-size: 15px;
  font-weight: 700;
  color: #0b1220;
  margin: 0 0 4px 0;
}

.fh-feature__text {
  font-size: 13px;
  line-height: 1.4;
  color: #5b667a;
  margin: 0;
}

/* Arrow for highlighted cards */
.fh-feature__arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #1a73e8;
  font-weight: 700;
}

.search-form {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #c0cad5;
}

/* ====== Responsive CSS ====== */

/* Tablet */
@media (max-width: 992px) {
  .fh-features__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .fh-feature--highlight {
    padding-right: 40px; /* space for arrow */
  }
}

/* Mobile */
@media (max-width: 576px) {
  .fh-features__container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fh-feature {
    padding: 10px 0;
  }

  .fh-feature--highlight {
    padding: 14px;
  }

  .fh-feature__arrow {
    right: 12px;
  }
}

@media (max-width: 767px) {
  .hero-section .overlay-content {
    width: 100%;
  }
  .hero-section {
    padding: 20px 10px 0 10px;
  }

  .text-header,
  .overlay-image,
  .flights-div {
    display: none;
  }
  .flights-div.mo {
    display: inline-flex;
  }
  .search-container {
    padding: 0px;
    border-radius: 0px;
    width: 0%;
    max-width: 00px;
    box-shadow: none;
  }

  .for-mobile-view {
    display: block;
    padding-top: 30px;
  }
  .for-mobile-view .input-wrapper {
    text-align: center;
    text-decoration: none;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    border-radius: 16px;
    font-size: 16px;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 104, 239);
    width: 100%;
    padding: 16px 24px 16px 20px;
    box-shadow:
      rgba(0, 104, 239, 0.12) 0px 2px 4px 0px,
      rgba(0, 104, 239, 0.16) 0px 1px 1px 0px,
      rgba(0, 104, 239, 0.24) 0px 0px 1px 0px,
      rgba(0, 104, 239, 0.03) 0px -1px 0px 0px,
      rgba(0, 68, 153, 0.01) 0px -1px 0px 0px,
      rgba(0, 68, 153, 0.1) 0px 4px 24px 0px,
      rgba(0, 68, 153, 0.1) 0px 4px 24px -4px,
      rgba(0, 68, 153, 0.1) 0px 12px 32px -2px;
  }

  .bottom-sheet .input-group {
    flex: 0 0 100%;
    background: #ffffff94;
    border-radius: 4px;
    transition: opacity 0.3s;
    color: rgb(0, 24, 51);
    background-color: transparent;
    border-width: 1px;
    border-style: solid;
    margin: 0px;
    padding: 14px 12px 14px 12px;
    border-color: rgb(192, 202, 213);
    border-radius: 12px;
  }

  .col-50 {
    width: 100%;
  }
  /* Slide up form */
  .mobile-form-slide {
    position: fixed; /* must be fixed to overlay content */
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    transform: translateY(100%); /* hidden at bottom */
    transition: transform 0.35s ease-in-out;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 18px 18px 0 0;
    padding: 15px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  }

  /* when active */
  .mobile-form-slide.active {
    transform: translateY(0%); /* slide to visible */
  }

  .mobile-form-slide.active .input-group {
    flex: 0 0 100%;
  }
}

/* call header */
.new_call_header {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  align-items: center;
  border-radius: 22px;
  padding: 4px 12px 4px 4px;
  position: relative;
  color: #ffffff;
  top: auto;
  cursor: pointer;
  background: linear-gradient(90deg, #fed001 60%, #1b6dc2 60%);
}
.new_call_image {
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new_call_image img {
  object-fit: cover;
  width: 34px;
  border-radius: 50%;
  height: 35px;
  background: #fd301d;
  padding: 1px;
  position: relative;
  z-index: 2;
  display: block;
}

.new_call_image::before,
.new_call_image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgb(253 48 29);
  animation: pulseSpread 2.8s ease-out infinite;
  z-index: 1;
}

.new_call_image::after {
  animation-delay: 1.4s;
}

@keyframes pulseSpread {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.7);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.new_call_info {
  font-weight: 700;
  color: #1b6dc2;
  font-size: 14px;
}

.new_call_info span a {
  color: #fff;
}

@media (max-width: 767px) {
  .new_call_header {
    background: linear-gradient(180deg, #fed001 48%, #1b6dc2 48%);
  }
  .new_call_image img {
    border-radius: 30px;
    height: 26px;
    width: 26px;
  }
  .new_call_image1:after {
    width: 10px;
    height: 10px;
    border: 2px solid #2b5f78;
  }
  .new_call_info {
    font-weight: 600;
    font-size: 10px;
    display: flex;
    flex-direction: column;
  }
  .new_call_info span {
    color: #fff;
    font-size: 12px;
  }
}

.city-cards-section {
  width: 100%;
  padding: 20px 0;
  background: #ffffff;
}

.city-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 22px;
}

.city-card-box {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: 0.25s ease;
}

.city-card-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.city-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.city-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.city-card-arrow {
  font-size: 14px;
  color: #111827;
  line-height: 1;
  cursor: pointer;
}

.city-card-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.city-card-link {
  font-size: 13px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  transition: 0.2s ease;
}

.city-card-link:hover {
  text-decoration: underline;
}

.city-cards-container {
  padding: 30px 0;
}

/* Tablets */
@media (max-width: 992px) {
  .city-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .city-cards-grid {
    grid-template-columns: 1fr;
  }

  .city-card-box {
    padding: 14px 14px;
    border-radius: 12px;
  }

  .city-card-title {
    font-size: 14px;
  }

  .city-card-link {
    font-size: 12px;
  }
}
