/* ======================================
   GLOBAL BASE STYLES (ALL PAGES)
   ====================================== */

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Regular.ttf');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Medium.ttf');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-SemiBold.ttf');
  font-weight: 600;
  font-style: normal;
}
/* =========================
   Satoshi Font (Local)
========================= */

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi/Satoshi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi/Satoshi-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi/Satoshi-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #121826;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 5. Lists Reset */
ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  z-index: 999;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header-logo img {
  height: 75px;
  display: block;
}

/* Right navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* Normal nav links */
.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #121826;
  text-decoration: none;
}

/* Country */
.nav-country {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #121826;
}

.flag-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-circle img {
  width: 90%;
  height: 90%;
  object-fit: cover;
}

.country-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
}

/* CTA Button */
.nav-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
}

/* Left side vertical divider */
.nav-call,
.nav-button{
  position: relative;
  padding-left: 18px;
}

/* Vertical border BEFORE item */
.nav-call::before,
.nav-button::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: #e5e7eb;
}

/* HAMBURGER */
.header-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

.nav-call{
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-family:'Poppins', sans-serif;
  text-decoration:none;
  color:#121826;
  white-space:nowrap;
}

.nav-call i{
  font-size:16px;
  color:#F49B31; 
  margin-top:3px;
}

.nav-call-text{
  font-size:14px;
  font-weight:500;
  font-family: 'Poppins', sans-serif;
  color:#000;
}

/* header close */

/*  HERO START */

.hero-section {
  position: relative;
  height: 460px;
  background: url('../images/hero-img.png') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 25%;
}

/* ===== FLIGHT PAGE HERO ===== */
.page-flight .hero-section {
  background-image: url('../images/hero-flight.jpg');
  background-size: cover;
  background-position: center;
}

.page-flight .hero-page-icon {
  display: block;
  margin: 0 auto 10px;
  width: 46px;
  height: auto;
}

.hero-content h1 {
  font-family: 'Satoshi', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #fff;
}

.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #fff;
}

.hero-phone {
  color: #F49B31;
  font-weight: 600;
}

/*  SEARCH START */
.flight-searchbar-wraps{
    padding: 34px 0 34px 0;
}

.flight-searchbar-wrap{
  padding: 0 16px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 99999;
  margin-top: -76px;
}
.flight-searchbar{
  max-width: 1220px;
  margin: 0 auto;
  background: #eef5f9;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  overflow: visible;
  position: relative;
}

/* tabs */
.fsb-tabs{
  position: relative;
  display: flex;
  gap: 28px;
  padding: 14px 18px 10px;
  align-items: center;
  background: #eef5f9;
  border-bottom: 1px solid rgba(0,0,0,.08);
  border-radius: 10px 10px 0 0;
}
.fsb-tab{
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 400;
  color: #0e5d84;
  cursor: pointer;
  padding: 2px 2px 10px;
  font-family: 'Satoshi', sans-serif;
}
.fsb-tab i{ font-size: 18px; }
.fsb-underline{
  position: absolute;
  left: 18px;
  bottom: 0;
  height: 3px;
  width: 95px;
  background: #ff8a00;
}

/* top row */
.fsb-top{
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 18px 6px;
  background: #fff;
}
.fsb-radio{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #111;
  cursor: pointer;
  font-family:'Satoshi', sans-serif;
}
.fsb-radio input{
  width: 14px;
  height: 14px;
  accent-color: #0e5d84;
}

/* traveller dropdown button */
.fsb-dd{
  position: relative;
  height: 28px;
  min-width: 220px;
}
.fsb-dd-btn{
  width: 100%;
  height: 36px;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #111;
}
.fsb-dd-btn i{ font-size: 12px; opacity: .8; }
.fsb-dd-text{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* dropdown panel */
.fsb-panel{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 240px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 3px;
  box-shadow: 0 18px 30px rgba(0,0,0,.20);
  padding: 12px;
  display: none;
  z-index: 999999;
}
.fsb-dd.open .fsb-panel{ display: block; }

.fsb-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.fsb-row-title{
  font-size: 16px;
  font-weight: 700;
  color: #111;
  font-family: 'Satoshi', sans-serif;
}
.fsb-stepper{
  display: flex;
  align-items: center;
  gap: 14px;
}
.fsb-step{
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 4px;
  background: #e9e9e9;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.fsb-step i{ font-size: 14px; color: #111; }
.fsb-num{
  min-width: 18px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

/* class select inside panel */
.fsb-class{
  position: relative;
  margin-top: 10px;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  height: 34px;
  display: flex;
  align-items: center;
  padding: 0 34px 0 10px;
}
.fsb-class select{
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  appearance: none;
  -webkit-appearance: none;
}
.fsb-class i{
  position: absolute;
  right: 10px;
  font-size: 16px;
  opacity: .8;
  pointer-events: none;
}

/* apply button */
.fsb-apply{
  width: 100%;
  margin-top: 12px;
  height: 44px;
  border: 0;
  border-radius: 3px;
  background: #ff8a00;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: ;'Satoshi', sans-serif;
  cursor: pointer;
}

/* form row */
.fsb-form{
  display: grid;
  grid-template-columns: 1.35fr 38px 1.35fr 1fr 1fr 0.7fr;
  gap: 10px;
  padding: 18px 18px 30px;
  background: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.fsb-field{
  position: relative;
  height: 36px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding: 0 12px;
}
.fsb-field input{
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  color: #111;
  font-family: 'Poppins', sans-serif;
}
.fsb-field input::placeholder{ color: #9DB2BF; }
.fsb-ico{
  position: absolute;
  right: 10px;
  font-size: 14px;
  color: #cfcfcf;
  pointer-events: none;
}

/* swap button (circle) */
.fsb-swap{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  align-self: center;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}
.fsb-swap i{ font-size: 14px; color: #111; }

/* search button */
.fsb-btn{
  height: 36px;
  border: 0;
  border-radius: 3px;
  background: #ff8a00;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Satoshi', sans-serif;
  box-shadow: 0 10px 18px rgba(255,138,0,.22);
}

/* SEARCH START END */


/* REASONS SECTION */
.reasons-section {
  padding:0px 16px 40px;
  background: #ffffff;
  margin-top: 60px;
  z-index: 1;
}

.reasons-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
  font-family: 'Satoshi', sans-serif;
}

.reasons-title span {
  color: #F49B31;
}

/* card */
.reasons-box {
  max-width: 1220px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #D9D9D9;
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Single item */
.reason-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Icon circle */
.reason-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reason-icon img {
  width: 64px;
  height: 64px;
}

/* Text */
.reason-text h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 2px;
  color: #000000;
  font-family: 'Satoshi', sans-serif;
}

.reason-text p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: #000000;
  font-family: poppins, sans-serif;
}
/* REASONS SECTION END */


/* ROUTES SECTION */
.routes-section {
  padding: 48px 0;
  background: #ffffff;
}

/* SECTION HEADING */
.routes-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 32px;
  color: #111827;
  font-family: 'Satoshi', sans-serif;
}

.routes-title span {
  color: #F49B31;
}

/* GRID */
.routes-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* CARD */
.route-card {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
  padding: 8px;
  border: 1px solid #D9D9D9;
  text-align: center;
  
}

/* CARD HEADING */
.route-title {
  position: absolute;
  top: 16px;
  left: 130px;
  z-index: 5;
  text-align: left;
  margin: 0;
  pointer-events: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4px;
  color: #090909;
  font-family: 'Satoshi', sans-serif;
  max-width: 60%;
}

.route-title span {
  font-weight: 400;
  color: #6b7280;
  font-family: poppins, sans-serif;
  font-size: 18px;
}

/* SHAPE IMAGE */
.route-shape {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 10px;
  display: block;
}

/* INFO ROW */
.route-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 18px;
  text-align: left;
  font-family: poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding-top: 10px;
}

.route-info small {
  display: block;
  font-size: 14px;
  color: #6b7280;
}

.route-info strong {
  font-size: 18px;
  color: #144D73;
  font-weight: 400;
  font-family: 'Satoshi', sans-serif;
}

/* BUTTON */
.route-btn {
  width: 90%;
  height: 36px;
  background: #F49B31;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Satoshi', sans-serif;
  cursor: pointer;
  margin-bottom: 10px;
}
/* ROUTES SECTION END */

/* packages */
.packages-section {
  padding: 34px 16px 40px;
  background: #ffffff;
  text-align: center;
}

/* HEADING */
.packages-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: 'Satoshi', sans-serif;
}

.packages-title span {
  color: #f49b31;
}

.packages-subtitle {
  font-size: 18px;
  color: #000000;
  margin-bottom: 36px;
  font-family: 'Poppins', sans-serif;
}

/* GRID */
.packages-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CARD */
.package-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  text-align: left;
}

/* IMAGE */
.package-image {
  position: relative;
}

.package-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

/* BADGE */
.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.badge-orange {
  background: #F49B31;
}

.badge-green {
  background: #4B96A7;
}

/* CONTENT */
.package-content {
  padding: 16px;
}

.package-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: 'Satoshi', sans-serif;
}

/* META */
.package-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 400;
  color: #6b7280;
  font-family: 'Poppins', sans-serif;
  flex-wrap: wrap;
}
.package-meta i {
  color: #4B96A7;
  font-size: 13px;
}
.package-meta .fa-star{
  color: #F49B31;
}

/* DIVIDER */
.package-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 14px 0;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  display: flex;
  align-items: center;
  gap: 6px;
}

.price small {
  font-size: 18px;
  color: #000000;
  margin: 0;
  font-family: poppins, sans-serif;
  font-weight: 400;
}

.price strong {
  font-size: 28px;
  font-weight: 700;
  color: #f49b31;
  margin: 0;
  font-family: 'Satoshi', sans-serif;
}

/* BUTTON */
.package-btn {
  background: #f49b31;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Satoshi', sans-serif;
}
/* PACKAGES SECTION END */
.divider{
    width: 100%;
    height: 1px;
    background-color: #F49B31;
}


/* Airline partner */
.airline-partners {
  padding: 34px 16px 40px;
  background: #ffffff;
  text-align: center;
}

/* HEADING */
.airline-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #111827;
  font-family: 'Satoshi', sans-serif;
}

.airline-title span {
  color: #f49b31;
}

/* GRID */
.airline-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.airline-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 170px;
}

/* IMAGE */
.airline-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* AIRLINE NAME OVER IMAGE */
.airline-name {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Satoshi', sans-serif;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
/* Airline partner End */

/* INFO CARDS SECTION */
.info-cards-section {
  padding: 34px 16px 40px;
  background: #ffffff;
}

/* GRID */
.info-cards-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.info-card {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 26px 22px;
  text-align: center;
}

/* IMAGE */
.info-card img {
  width: 90px;
  height: auto;
  display: block;
  margin: 0 auto 14px;
}

/* HEADING */
.info-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #144D73;
  font-family: 'Satoshi', sans-serif;
}

/* TEXT */
.info-card p {
  font-size: 12px;
  line-height: 1.6;
  color: #374151;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}
/* INFO CARDS SECTION END */

/* PROPERTIES SECTION */
/* SECTION */
.properties-section {
  padding: 60px 0;
  background: #ffffff;
  text-align: center;
}

/* TITLE */
.properties-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 36px;
  color: #f49b31;
  font-family: 'Satoshi', sans-serif;
}

/* GRID */
.properties-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.property-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  overflow: hidden;
  text-align: left;
}

/* IMAGE */
.property-image {
  position: relative;
}

.property-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* REVIEW BADGE — IMAGE + BODY KE BEECH */
.property-badge {
  position: absolute;
  left: 16px;
  bottom: -14px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #4B96A7;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.property-badge .score {
  color: #4B96A7;
  font-size: 16px;
  font-weight: 700;
  font-family: poppins, sans-serif;
}

.property-badge .reviews {
  color: #4B96A7;
  font-size: 16px;
  font-weight: 700;
  font-family: poppins, sans-serif;
}

/* CONTENT */
.property-content {
  padding: 28px 16px 16px;
}

/* TITLE + STARS */
.property-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.property-title-row h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  font-family: 'Satoshi', sans-serif;
}

/* STARS */
.property-rating {
  color: #fbbf24;
  font-size: 14px;
}

/* LOCATION */
.property-location {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
}

/* FOOTER */
.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PRICE RIGHT */
.property-price {
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-price small {
  font-size: 12px;
  color: #6b7280;
}

.property-price strong {
  font-size: 18px;
  color: #f49b31;
  font-weight: 700;
  font-family: 'Satoshi', sans-serif;
}

/* PROPERTIES SECTION END */

/* HOTEL PARTNERS SECTION */
.hotel-partners-section {
  padding: 34px 16px 40px;
  background: #ffffff;
  text-align: center;
}

/* partners section */
.partners-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 36px;
  font-family: 'Satoshi', sans-serif;
  color: #111827;
}

.partners-title span {
  color: #f49b31;
}

/* GRID */
.partners-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* CARD */
.partner-card {
  height: 140px;
  width: 100%;
  border: 1px solid #f6c28b;
  border-radius: 8px;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

/* LOGO */
.partner-card img {
  width: 90%;
  object-position: center;
  display: block;
}
/* HOTEL PARTNERS SECTION END */

/* EXPLORE CTA SECTION */
.explore-cta-section {
  position: relative;
  width: 100%;
  height: 520px;
  background: url("../images/cta-image.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* DARK OVERLAY */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 23, 39, 0.65);
  z-index: 1;
}

/* CONTENT */
.cta-content {
  position: relative;
  max-width: 900px;
  padding: 0 20px;
  z-index: 2;
}

/* HEADING */
.cta-content h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
}

/* SUB TEXT */
.cta-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #e5e7eb;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  background: #f49b31;
  color: #ffffff;
  padding: 8px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Satoshi', sans-serif;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #e68a1f;
}
/* EXPLORE CTA SECTION END */

/* TRENDING SECTION */
.trending-section {
  padding: 34px 16px 40px;
  background: #ffffff;
  text-align: center;
}

.trending-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Satoshi', sans-serif;
}
.trending-title span {
    color: #ff8a00;
}
.trending-subtitle {
  font-size: 14px;
  color: #000000;
  max-width: 720px;
  margin: 0 auto 36px;
  font-family: 'Poppins', sans-serif;
}

/* GRID */
.trending-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.video-card {
  position: relative;
  height: 460px;
  border-radius: 14px;
  overflow: hidden;
  background: #000; /* fallback */
}

/* VIDEO */
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DARK OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* CONTENT */
.video-content {
  position: absolute;
  left: 40px;
  bottom: 80px;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  transition: all 0.4s ease;
}


/* SHOW ON HOVER */
.video-card:hover .video-overlay {
  opacity: 1;
}

.video-card:hover .video-content {
  opacity: 1;
  transform: translateY(0);
}

/* HEADING */
.video-content h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Satoshi', sans-serif;
}

/* BUTTONS */
.video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 180px;
  padding: 14px 0;
  margin: 0 auto 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Satoshi', sans-serif;
  text-decoration: none;
  border: 1px solid #f49b31;
  color: #f49b31;
  background: transparent;
  transition: all 0.3s ease;
}

/* hover same as before */
.video-btn:hover {
  background: #f49b31;
  color: #ffffff;
}

.video-btn:hover i {
  color: #ffffff;
}


.video-btn i {
  color: inherit;
  transition: color 0.3s ease;
}

.video-btn:hover {
  background: #f49b31;
  color: #ffffff;
}

.video-btn:hover i {
  color: #ffffff;
}
/* TRENDING SECTION END */

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 34px 16px 40px;
  background: #fffdf8;
  text-align: center;
}

/* TITLE */
.testimonials-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: 'Satoshi', sans-serif;
}

.testimonials-title span {
  color: #f49b31;
}

/* GRID */
.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */
.testimonial-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 26px 22px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  position: relative;
}

/* QUOTE ICON */
.quote-icon {
  margin-bottom: 8px;
}

.quote-icon img {
  width: 32px;
  height: auto;
  display: block;
}

/* STARS */
.stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 12px;
}

/* TEXT */
.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 18px;
}

/* DIVIDER */
.testimonial-divider {
  height: 1px;
  background: #e5e7eb;
  margin-bottom: 14px;
}

/* USER */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user p {
  font-size: 14px;
  display: block;
  color: #000000;
}

.testimonial-user span {
  font-size: 14px;
  color: #000000;
}

/* NAV */
.testimonial-nav {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ARROWS */
.nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #f49b31;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DOTS */
.nav-dots {
  display: flex;
  gap: 6px;
}

.nav-dots span {
  width: 6px;
  height: 6px;
  background: #d1d5db;
  border-radius: 50%;
}

.nav-dots span.active {
  background: #f49b31;
}
/* TESTIMONIALS SECTION END */

/* =============================== 
FLIGHT PAGE – ROUTES SECTION
=============================== */

.flight-routes-section {
  padding-top: 60px;
  padding-bottom: 48px;
  background: #ffffff;
}

/* SECTION HEADING */
.flight-routes-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 32px;
  color: #111827;
  font-family: 'Satoshi', sans-serif;
}

.flight-routes-title span {
  color: #F49B31;
}

/* GRID */
.flight-routes-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* CARD */
.flight-route-card {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
  padding: 12px;
  border: 1px solid #D9D9D9;
  text-align: center;
}

/* CARD HEADING (ON IMAGE) */
.flight-route-title {
  position: absolute;
  top: 16px;
  left: 130px;
  z-index: 5;
  text-align: left;
  margin: 0;
  pointer-events: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #090909;
  font-family: 'Satoshi', sans-serif;
  max-width: 60%;
}

.flight-route-title span {
  font-weight: 400;
  color: #6b7280;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
}

/* SHAPE IMAGE */
.flight-route-shape {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 10px;
  display: block;
}

/* INFO ROW */
.flight-route-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 10px 18px 0;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.flight-route-info small {
  display: block;
  font-size: 14px;
  color: #6b7280;
}

.flight-route-info strong {
  font-size: 18px;
  color: #144D73;
  font-weight: 400;
  font-family: 'Satoshi', sans-serif;
}

/* BUTTON */
.flight-route-btn {
  width: 90%;
  height: 36px;
  background: #F49B31;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Satoshi', sans-serif;
  cursor: pointer;
  margin-bottom: 10px;
}
/* FLIGHT PAGE – ROUTES SECTION END */

/* WHY BOOK FLIGHTS SECTION */
.why-flights-section {
  padding: 34px 16px 40px;
   background: linear-gradient(95.55deg, #ACC9EF 0%, #00252D 100%);
  text-align: center;
}

/* TITLE */
.why-flights-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
}

.why-flights-title span {
  color: #f49b31;
}

/* GRID */
.why-flights-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */
.why-flight-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 26px 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  text-align: center;
}

/* ICON */
.why-flight-card img {
  display: block;
  margin: 0 auto 14px;
  width: 56px;
  height: auto;
}

/* HEADING */
.why-flight-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
  font-family: 'Satoshi', sans-serif;
}

/* TEXT */
.why-flight-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
  font-family: 'Poppins', sans-serif;
}
/* WHY BOOK FLIGHTS SECTION END */


/* FAQ SECTION */
.faq-section {
  padding: 34px 16px 40px;
  background: #ffffff;
  text-align: center;
}

/* TITLE */
.faq-title {
  font-size: 26px;
  font-weight: 700;
  color: #f49b31;
  font-family: 'Satoshi', sans-serif;
  margin-bottom: 6px;
}

/* SUBTITLE */
.faq-subtitle {
  font-size: 14px;
  color: #111827;
  margin-bottom: 32px;
  font-family: 'Poppins', sans-serif;
}

/* LIST */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

/* ITEM (CARD) */
.faq-item {
  margin-bottom: 14px;
  border-radius: 6px;
  overflow: hidden;

  border: 1px solid rgba(244, 155, 49, 0.35);
  background: #fffaf6;

  /* shadow for desktop + mobile */
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);

  /* smooth */
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

/* Desktop hover lift */
@media (hover:hover){
  .faq-item:hover{
    box-shadow: 0 14px 28px rgba(0,0,0,0.14);
    transform: translateY(-1px);
    border-color: rgba(244, 155, 49, 0.55);
  }
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 14px 18px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;

  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #111827;
  text-align: left;
}

.faq-question i {
  color: #f49b31;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
  text-align: left;
  font-family: 'Poppins', sans-serif;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* FAQ SECTION END */


/* HOTEL HERO */

.hotel-hero {
  height: 500px;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.25)
    ),
    url("../images/hotel-hero.jpg") center / cover no-repeat;
}


.hotel-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.hotel-hero-icon {
  width: 64px;
  margin-bottom: 12px;
}

.hotel-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  font-family: 'Satoshi', sans-serif;
}

.hotel-hero-content p {
  margin-top: 6px;
  font-size: 24px;
  font-family: 'Poppins', sans-serif;
  color: #e5e7eb;
}
/* HOTEL HERO END */


/* FEATURED HOTELS SECTION  */
.featured-hotels {
  padding: 60px 0;
  background: #fffdf8;
  text-align: center;
}

.featured-title {
  font-size: 26px;
  font-weight: 700;
  font-family: 'Satoshi', sans-serif;
}

.featured-title span {
  color: #f49b31;
}

.featured-subtitle {
  font-size: 14px;
  margin-top: 6px;
  margin-bottom: 36px;
  color: #374151;
}

.featured-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-track-wrapper {
  overflow: hidden;
}

.featured-track {
  display: flex;
  gap: 26px;
  transition: transform 0.5s ease;
}

.featured-card {
  min-width: 540px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  text-align: left;
}

.featured-img {
  position: relative;
}

.featured-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.hotel-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.featured-body {
  padding: 16px;
}

.featured-body h4 {
  font-size: 16px;
  font-weight: 700;
}

.hotel-location {
  font-size: 13px;
  margin: 6px 0;
  color: #374151;
}

.hotel-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hotel-tags span {
  background: #0ea5a5;
  color: #fff;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 12px;
}

.hotel-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 12px 0;
}

.hotel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hotel-price strong {
  color: #f49b31;
  font-size: 16px;
}

.hotel-price span {
  font-size: 12px;
}

.book-btn {
  background: #f49b31;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  cursor: pointer;
}

/* ARROWS */
.featured-arrow {
  position: absolute;
  top: 40%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
}

.featured-arrow.left {
  left: -18px;
}

.featured-arrow.right {
  right: -18px;
}
/* FEATURED HOTELS SECTION END */

/*  FEATURED HOTELS SECTION */
.featured-hotels{
  padding: 34px 16px 40px;
  background: #fffdf8;
  font-family: 'Poppins', sans-serif;
}
.fh-container{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.fh-head{ margin-bottom: 20px; }
.fh-title{
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  font-size: 26px;
  font-weight: 800;
}
.fh-title span{ color: #ff8a00; }
.fh-subtitle{
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

/* slider frame */
.fh-slider{
  position: relative;
  padding: 0 34px;
}
.fh-viewport{
  overflow: hidden; 
}
.fh-track{
  display: flex; 
  gap: 18px;
  transition: transform .45s ease;
  will-change: transform;
}

.fh-card{
  flex: 0 0 calc((100% - 18px) / 2);
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  min-height: 255px;
}

/* arrows */
.fh-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #f3a04a;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
  padding: 0;
  z-index: 3;
}
.fh-left{ left: 20px; }
.fh-right{ right: 20px; }

/* FA icons styling */
.fh-arrow i{
  font-size: 14px;
  color: #f08b2d;
}

/* image */
.fh-img{
  position: relative;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid #eaeaea;
}
.fh-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* rating pill */
.fh-rate{
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 14px rgba(0,0,0,.10);
}
.fh-rate i{
  color: #ffb703;
  font-size: 14px;
}

/* body */
.fh-body{
  padding: 12px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.fh-name{
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}
.fh-loc{
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: -2px;
  font-size: 14px;
  font-weight: 600;
  color: #7b7b7b;
}
.fh-loc i{
  color: #4B96A7;
  font-size: 16px;
}
.fh-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.fh-tag{
  background: #4B96A7;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(15,138,148,.18);
  white-space: nowrap;
  font-family: 'satoshi', sans-serif;
}
.fh-line{
  height: 1px;
  background: #dcdcdc;
  margin-top: 2px;
}
.fh-foot{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
}
.fh-price{
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.fh-amt{
  color: #f49b31;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .2px;
  font-family: 'satoshi', sans-serif;

}
.fh-per{
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  font-family: 'poppins', sans-serif;
}
.fh-btn{
  background: #f49b31;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'satoshi', sans-serif;
}

/*  FEATURED HOTELS SECTION END */

/* HOTEL AMENITIES SECTION */
.hotel-amenities{
  padding: 34px 16px 40px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}
.ha-container{
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
.ha-title{
  font-family: 'Satoshi', sans-serif;
  margin: 0 0 22px;
  font-size: 26px;
  font-weight: 700;
  color: #111;
}
.ha-title span{ color: #ff8a00; }

.ha-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ha-card{
  background: #ffffff;
  border-radius: 8px;
  padding: 18px 16px 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,.10);
  border: 1px solid rgba(0,0,0,.05);
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ha-icon{
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.ha-icon img{
  width: 74px;
  height: 74px;
  object-fit: contain;
  display: block;
}

.ha-name{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}
.ha-desc{
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
  font-family: poppins, sans-serif;
}

/* Show/Hide */
.ha-mobile{ display: none; }

/* HOTEL AMENITIES SECTION END */

/* Affordable flights */
.affordable-flights{
  padding: 34px 16px 40px;
  background: #fffaf3;
  font-family: 'Poppins', sans-serif;
}
.af-container{
  max-width: 1120px;
  margin: 0 auto;
}
.af-title{
  text-align: center;
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 700;
  color: #111;
  font-family: 'Satoshi', sans-serif;
}
.af-brand{
  color: #ff8a00;
  font-weight: 800;
}

/* grid like screenshot: 3 columns */
.af-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* card */
.af-card{
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
}

/* image */
.af-img{
  position: relative;
  height: 165px;
  overflow: hidden;
}
.af-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* date pill on image (top-left) */
.af-date{
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,.70);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

/* bottom row */
.af-bottom{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 10px 12px 12px;
  gap: 10px;
}
.af-left{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}
.af-left i{
  font-size: 16px;
  color: #000;
}

.af-right{
  text-align: right;
  line-height: 1.1;
}
.af-price{
  color: #ff8a00;
  font-size: 18px;
  font-weight: 900;
}
.af-per{
  color: #D9D9D9;
  font-size: 14px;
  font-weight: 700;
}
/* Affordable flights css end

/* HOTEL SEARCH BAR */
.searchbar-wrap{
  position: relative;
  z-index: 99999;
  padding: 0 16px;
  font-family: 'Poppins', sans-serif;
  margin-top: -70px;
}
.searchbar{
  overflow: visible !important;
  max-width: 1200px;
  margin: 0 auto;
  background: #eef5f9;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  overflow: hidden;
}

/* tabs */
.sb-tabs{
  position: relative;
  display: flex;
  gap: 28px;
  padding: 14px 18px 10px;
  align-items: center;
  background: #eef5f9;
  border-bottom: 1px solid rgba(0,0,0,.08);
  border-radius: 10px 10px 0 0;
}
.sb-tab{
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #0e5d84;
  cursor: pointer;
  padding: 2px 2px 10px;
}
.sb-tab i{
  font-size: 16px;
}
.sb-tab.active{
  color: #0e5d84;
}
.sb-underline{
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 120px;
  background: #ff8a00;
  transform: translateX(120px); /* default under Hotels */
  transition: transform .25s ease, width .25s ease;
}

/* form row */
.sb-form{
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.6fr 1fr 0.9fr;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border-radius: 0 0 10px 10px;
}

/* shared field */
.sb-field{
  position: relative;
  height: 44px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding: 0 14px;
}

/* inputs */
.sb-field input{
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  color: #111;
  font-family: 'Poppins', sans-serif;
}
.sb-field input::placeholder{ color: #cfcfcf; }

/* icon in input */
.sb-field-ico{
  position: absolute;
  right: 14px;
  font-size: 16px;
  color: #cfcfcf;
  pointer-events: none;
}

/* date range */
.sb-date-range{
  padding: 0;
  overflow: hidden;
}
.sb-date-half{
  position: relative;
  flex: 1;
  height: 44px;
  padding: 0 14px;
  display:flex;
  align-items:center;
}
.sb-date-right{
  border-left: 1px solid #e2e2e2;
}
.sb-date-half input{ padding-right: 28px; }
.sb-date-half .sb-field-ico{ right: 12px; }

/* dropdown base */
.sb-dd{ padding: 0; }
.sb-dd-btn{
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #111;
}
.sb-dd-arrow{
  font-size: 14px;
  color: #111;
  opacity: .85;
}
.sb-dd-text{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* dropdown panel */
.sb-panel{
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width:  286px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 3px;
  box-shadow: 0 18px 30px rgba(0,0,0,.20);
  padding: 6px 26px 12px;
  display: none;
  z-index: 9999 !important;
}
.sb-dd.open .sb-panel{ display: block; }

/* rooms panel */
.sb-panel-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.sb-lbl{
  font-weight: 700;
  font-size: 18px;
  color: #111;
}
.sb-stepper{
  display: flex;
  align-items: center;
  gap: 18px;
}
.sb-step{
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 4px;
  background: #efefef;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.sb-step i{ font-size: 14px; color: #111; }
.sb-num{
  min-width: 22px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}
.sb-panel-actions{
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 12px;
}
.sb-ghost{
  border: 1px solid #d8d8d8;
  background: #fff;
  height: 42px;
  padding: 0 22px;
  border-radius: 3px;
  font-weight: 700;
  cursor: pointer;
}
.sb-apply{
  border: 0;
  background: #ff8a00;
  color: #fff;
  height: 42px;
  padding: 0 32px;
  border-radius: 3px;
  font-weight: 800;
  cursor: pointer;
}

/* nationality list */
.sb-panel--list{
  width: 200px;
  padding: 8px 0;
}
.sb-opt{
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  font-size: 16px;
  color: #cfcfcf; /* like image (light) */
  cursor: pointer;
}
.sb-opt:hover{ background: #f6f6f6; color: #111; }

/* search button */
.sb-btn{
  height: 44px;
  border: 0;
  border-radius: 3px;
  background: #ff8a00;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

/* HOTEL SEARCH BAR END */


/* POPULAR CITIES */
.popular-cities{
      padding: 34px 16px 40px;
  background: #fffdf8;
  font-family: 'Poppins', sans-serif;
}

.pc-container{
  max-width: 1120px;
  margin: 0 auto;
}

.pc-title{
  margin: 0 0 26px;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  font-family: 'Satoshi', sans-serif;
  color: #111827;
}
.pc-title span{ color:#ff8a00; }

.pc-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* Card */
.pc-card{
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  height: 420px;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  background: #000;
}

/* Image */
.pc-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .35s ease;
}

.pc-card::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  background: #0f8f9b; /* teal */
  transform: translateY(100%);
  transition: transform .35s ease;
}

.pc-card::before{
  content: attr(data-city) "\A" attr(data-hotels);
  white-space: pre;
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  transform: translateY(140%);
  transition: transform .35s ease;
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
}

.pc-card::before{
  font-size: 22px;
}
.pc-card::before{
    text-shadow: 0 0 0 transparent;
}

.pc-card .pc-overlay{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 96px;
  background: #0f8f9b;
  transform: translateY(100%);
  transition: transform .35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 22px;
  z-index: 2;
}

.pc-card .pc-overlay-inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pc-card .pc-city{
  margin: 0;
  font-family: 'Satoshi', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  text-align: center;
}

.pc-card .pc-hotels{
  margin: 6px 0 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #eaffff;
  line-height: 1;
  text-align: center;
}


/* Hover */
.pc-card:hover img{ transform: scale(1.05); }
.pc-card:hover::after{ transform: translateY(0); }
.pc-card:hover::before{ transform: translateY(0); }
.pc-card:hover .pc-overlay{ transform: translateY(0); }

.pc-card.has-overlay::before,
.pc-card.has-overlay::after{ content:none; }


/* --------BLOG HERO---------- */
.blog-hero{
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b2230;
}

/* change image path as needed */
.blog-hero__bg{
  position:absolute; inset:0;
  background: url(../images/blog-hero.jpg) center / cover no-repeat;
  transform: scale(1.02);
}
.blog-hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.15) 100%);
}

.blog-hero__container{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.blog-hero__left{
  max-width: 620px;
  color: #fff;
}
.blog-hero__title{
  margin: 0 0 10px;
  font-family: 'Satoshi', sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 8px 22px rgba(0,0,0,.35);
}
.blog-hero__subtitle{
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  text-shadow: 0 8px 18px rgba(0,0,0,.28);
}

/* CARD */
.blog-hero__card{
  width: 360px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(0,0,0,.20);
  padding: 14px 14px 16px;
}

.blog-hero__trip{
  display:flex;
  align-items:center;
  gap: 14px;
  justify-content:flex-start;
  padding: 2px 2px 10px;
}
.blog-hero__radio{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color:#111827;
  cursor:pointer;
}
.blog-hero__radio input{
  width: 14px;
  height: 14px;
  accent-color: #000000;
}

.blog-hero__fields{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.blog-hero__field{
  position: relative;
  height: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  display:flex;
  align-items:center;
  padding: 0 12px;
  background:#fff;
}
.blog-hero__field input{
  width:100%;
  height:100%;
  border:0;
  outline:none;
  background:transparent;
  font-family:'Poppins', sans-serif;
  font-size: 12px;
  color:#111827;
}
.blog-hero__field input::placeholder{ color:#cbd5e1; }

.blog-hero__ico{
  position:absolute;
  right: 10px;
  font-size: 12px;
  color:#d1d5db;
  pointer-events:none;
}

.blog-hero__select{
  height: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 12px;
  cursor:pointer;
  font-family:'Poppins', sans-serif;
  font-size: 12px;
  color:#111827;
}

.blog-hero__btn{
  height: 34px;
  border: 0;
  border-radius: 4px;
  background:#f49b31;
  color:#fff;
  font-family:'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor:pointer;
}

/* FEATURED STORY (BLOG) */
.featured-story{
  padding: 34px 14px 34px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}
.fs-container{
  max-width: 1120px;
  margin: 0 auto;
}
.fs-heading{
  margin: 0 0 22px;
  text-align: center;
  font-family: 'Satoshi', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
}
.fs-heading span{ color:#ff8a00; }

/* card layout */
.fs-card{
  display:grid;
  grid-template-columns: 1fr 310px;
  gap:26px;
  align-items:stretch;
  background:#ffffff;
  border-radius:14px;
  padding:18px;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
  border:1px solid #D9D9D9;
  margin-bottom:28px;
}


/* image */
.fs-media{
  display: block;
  border-radius: 14px;
  overflow: hidden;
  height: 360px;
  background: #0b1220;
}
.fs-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .35s ease;
}
.fs-media:hover img{ transform: scale(1.05); }

/* right content */
.fs-content{
  text-align: left;
  padding-right: 4px;
}
.fs-top{
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

/* pill */
.fs-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #0f8f9b;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Satoshi', sans-serif;
  white-space: nowrap;
}

/* date */
.fs-date{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  padding-left: 10px;
}
.fs-date i{ color:#6b7280; }

/* title */
.fs-title{
  margin: 0 0 10px;
  font-family: 'Satoshi', sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}
.fs-title a{
  color: #111827;
  text-decoration: none;
}
.fs-title a:hover{ color:#0e5d84; }

/* desc */
.fs-desc{
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.65;
}

/* meta row */
.fs-meta{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.fs-meta-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
}
.fs-meta-item i{
  color: #0f8f9b;
}

/* button */
.fs-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding: 0 14px;
  border-radius: 4px;
  background: #f49b31;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  font-family: 'Satoshi', sans-serif;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(244,155,49,.22);
}
.fs-btn i{ font-size: 12px; }
.fs-btn:hover{ filter: brightness(.98); }
/* Featured Story ( Blog) End*/

/* ============ RECENT ARTICLES ============ */
.ra-section{
  padding: 34px 14px 34px;
  background: #fffdf8;
  font-family: 'Poppins', sans-serif;
}
.ra-container{
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
.ra-title{
  margin: 0;
  font-family: 'Satoshi', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color:#111827;
  line-height: 1.2;
}
.ra-title span{ color:#ff8a00; }

.ra-subtitle{
  margin: 6px 0 22px;
  font-size: 14px;
  color:#111827;
  opacity:.85;
}

/* grid */
.ra-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* card */
.ra-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  overflow: hidden;
  text-align: left;
  display:flex;
  flex-direction:column;
}

.ra-img{
  display:block;
  padding: 10px 10px 0;
}
.ra-img img{
  width:100%;
  height: 260px;
  object-fit: cover;
  border-radius: 3px;
  display:block;
}

/* body */
.ra-body{
  padding: 12px 12px 10px;
  display:flex;
  flex-direction:column;
  flex:1;
}

/* top row */
.ra-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-top: 6px;
  margin-bottom: 10px;
}
.ra-cat{
  font-size: 15px;
  font-weight: 700;
  font-family:'Satoshi',sans-serif;
  color:#0b4d6b;
  text-decoration: underline;
  letter-spacing: .2px;
}

/* share icons */
.ra-share{
  display:flex;
  align-items:center;
  gap: 6px;
}
.ra-ico{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.20);
  display:grid;
  place-items:center;
  color:#111827;
  background:#fff;
  cursor:pointer;
  padding:0;
  text-decoration:none;
}
.ra-ico i{ font-size: 10px; }

/* heading */
.ra-h{
  margin: 0 0 10px;
  font-family:'Satoshi',sans-serif;
  font-size: 16px;
  font-weight: 700;
  color:#111827;
  line-height: 1.25;
}
.ra-h a{ color: inherit; text-decoration:none; }
.ra-h a:hover{ text-decoration: underline; }

/* excerpt */
.ra-p{
  margin: 0;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.55;
  color:#6b7280;
  flex:1;
}

/* footer small */
.ra-foot{
  margin-top: 12px;
  font-size: 12px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  color:#9ca3af;
  border-top: 1px solid rgba(0,0,0,.10);
  padding-top: 10px;
}

/* load more button */
.ra-more{
  margin: 18px auto 0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 220px;
  height: 32px;
  background:#ff8a00;
  color:#fff;
  font-family:'Satoshi',sans-serif;
  font-weight: 700;
  font-size: 12px;
  border-radius: 2px;
  text-decoration:none;
}
.ra-more:hover{ filter: brightness(.95); }

/* ===== TRENDING NOW ===== */
.tn-section{
  padding: 34px 14px 34px;
  background: linear-gradient(95.55deg, #ACC9EF 0%, #00252D 100%);
  font-family: 'Poppins', sans-serif;
}
.tn-container{
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
.tn-title{
  margin: 0;
  font-family: 'Satoshi', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.tn-title span {
    color: #ff8a00;
}
.tn-subtitle{
  margin: 6px 0 20px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}

/* grid */
.tn-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}

/* card */
.tn-card{
  display: block;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, filter .18s ease;
}
.tn-card:hover{ transform: translateY(-2px); }

/* image */
.tn-img{
  height: 180px;
  overflow: hidden;
  background: #dbe7ee;
}
.tn-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* body */
.tn-body{
  padding: 10px 10px 8px;
}
.tn-h{
  margin: 0 0 8px;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}

/* meta row like screenshot */
.tn-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tn-meta-item{
  font-size: 14px;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tn-meta-item i{
  color: #ff8a00;
  font-size: 14px;
}

/* ===== EXPLORE BY CATEGORY ===== */
.ec-section{
  padding: 34px 14px 34px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}
.ec-container{
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
.ec-title{
  margin: 0;
  font-family: 'Satoshi', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #111827;
  line-height: 1.2;
}
.ec-title span{ color: #ff8a00; }

.ec-subtitle{
  margin: 8px 0 22px;
  font-size: 14px;
  color: #374151;
}

.ec-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* card */
.ec-card{
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  padding: 18px 12px 16px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.ec-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,.12);
}

.ec-icon{
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.ec-icon img{
  width: 74px;
  height: 74px;
  object-fit: contain;
  display: block;
}

.ec-name{
  margin: 0;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}
.ec-count{
  margin: 8px 0 0;
  font-size: 13px;
  color: #6b7280;
}

/* AIRLINE MARQUEE SECTION */
.airline-marquee{
  padding: 34px 14px 34px;
  background: #ffffff;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.am-container{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.am-title{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: 'Satoshi', sans-serif;
  color: #111;
}
.am-title span{
  color: #ff8a00;
}

/* marquee frame */
.am-marquee{
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* moving track */
.am-track{
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: am-scroll 14s linear infinite; /* SPEED CONTROL */
  animation-duration: 18s;
}

/* logo card */
.am-logo{
  flex: 0 0 auto;
  min-width: 160px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.am-logo img{
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(0%);
  transition: transform .25s ease;
}

.am-logo img:hover{
  transform: scale(1.05);
}


/* FLIGHT SECTION WRAPPER */
.flight-section{
  max-width:1200px;
  margin:40px auto;
  padding:0 15px;
  box-sizing:border-box;
}

/* FILTER BAR */
.fs-filter-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#fff;
  padding:14px 18px;
  border-radius:10px;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
  border: 1px solid #D9D9D9;
}

.fs-filter-left{
  display:flex;
  gap:100px;
}

.fs-filter-btn{
  background:none;
  border:none;
  cursor:pointer;
  font-size:16px;
  font-weight: 600;
  font-family: 'Satoshi', sans-serif;
  color:#222;
  display:flex;
  align-items:center;
  gap:6px;
}

.fs-filter-btn.active{
  color:#0b5c87;
  font-weight:600;
}

.fs-reset-btn{
  background:none;
  border:none;
  cursor:pointer;
  font-size:16px;
  font-weight: 400;
  font-family: 'Satoshi', sans-serif;
}

/* FILTER PANEL */
.fs-filter-panel{
  display:none;
  margin-top:16px;
  background:#fff;
  padding:24px;
  border-radius:12px;
  box-shadow:0 4px 14px rgba(0,0,0,.15);
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}

.fs-col h4{
  color:#0b5c87;
  margin-bottom:10px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.fs-col label{
  display:block;
  font-size:14px;
  color:#777;
  margin-bottom:8px;
  cursor:pointer;
}

.fs-col input{
  margin-right:6px;
}

.fs-time{
  border:1px solid #ddd;
  padding:10px;
  border-radius:8px;
  text-align:center;
  cursor:pointer;
  color:#888;
  margin-bottom:8px;
  font-size:14px;
  display: inline-grid;
}

.fs-time.active{
  border-color:#0b5c87;
  color:#0b5c87;
}

/* PROMO BANNER (TOP) */
.fs-promo{
  margin:18px 0;
  background:#FFFFFF;
  color:#000000;
  padding:18px;
  border-radius:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
  border:1px solid #D9D9D9;
  overflow:hidden;
}

.fs-promo-left{
  display:flex;
  align-items:center;
  gap:16px;
  flex:1 1 auto;
  min-width:0;
}

.fs-promo-left img{
  width:184px;
  margin:-18px 0 -18px -18px;
  object-fit:cover;
  border-radius:12px 0 0 12px;
  flex-shrink:0;
}

.fs-promo-left span{
  color:#ffb000;
}

.fs-promo-call{
  background:#144D73;
  color:#ffffff;
  padding:16px 24px;
  border-radius:8px;
  font-weight:700;
  'font-family: 'Satoshi', sans-serif;
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  line-height:1.2;
  flex:0 0 auto;
}
.fs-promo h2{
font-family: Satoshi;
font-weight: 700;
font-size: 28px;
line-height: 48px;
letter-spacing: 0%;
}

.fs-promo p{
font-family: 'Poppins', sans-serif;
font-weight: 400;
font-size: 16px;
line-height: 18px;
}

.fs-routes{
  display:flex;
  flex-direction:column;
  gap:14px;
  height: 100%;
}

/* SINGLE STOP – vertical center */
.fs-single-stop .fs-routes{
    display: flex;
  justify-content:center;
  min-height:100%;
}

.fs-route{
  display:grid;
  grid-template-columns:140px 96px 1fr 96px;
  align-items:center;
  gap:12px;
}

.fs-airline{
  display:flex;
  align-items:center;
  padding-right:16px;
  border-right:1px solid #d9d9d9;
}

.fs-airline img{
  width:108px;
  height:auto;
}

.fs-point{
  text-align:center;
}

.fs-point strong{
  display:block;
  font-size:15px;
  color:#003e6b;
}

.fs-point span{
  font-size:12px;
  color:#888;
}

.fs-point p{
  margin:2px 0 0;
  font-size:14px;
  font-weight:600;
}

.fs-line{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0;
}

.fs-line::before{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  top:50%;
  height:1px;
  background:#cfcfcf;
  z-index:0;
}

.fs-line-text{
  background:#fff;
  padding:0 12px;
  position:relative;
  z-index:2;
}

.fs-left-icon,
.fs-right-icon{
  width:28px;
  height:28px;
  border-radius:50%;
  background:#ffffff;
  border:1px solid #d9d9d9;
  color:#9aa3ad;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:2;
}

.fs-price{
  border-left:1px solid #d9d9d9;
  padding-left:22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.fs-price del,
.fs-price h3{
  align-self:flex-end;
  text-align:right;
}

.fs-price del{
  color:#999;
  font-size:14px;
}

.fs-price h3{
  margin:6px 0;
  font-size:26px;
}

.fs-price p{
  font-size:12px;
  color:#555;
  text-align:center;
  margin:6px 0 10px;
}

.fs-price button{
  width:100%;
  align-self:center;
}

.fs-book{
  margin-top:10px;
  background:#ff9800;
  border:none;
  color:#fff;
  padding:10px;
  border-radius:4px;
  cursor:pointer;
  font-weight:600;
}

.fs-detail{
  margin-top:8px;
  border:1px solid #0b5c87;
  background:none;
  color:#0b5c87;
  padding:8px;
  border-radius:4px;
  cursor:pointer;
}

/* ================= ASSIST BANNER ================= */
.fs-assist{
  background:#ffffff;
  border:1px solid #d9d9d9;
  border-radius:16px;
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  overflow:hidden;
  box-shadow:0 2px 6px rgba(0,0,0,.06);
}

/* LEFT */
.fs-assist-left{
  display:flex;
  align-items:center;
  gap:18px;
  padding:16px 20px;
  flex:1;
}

/* EDGE-TO-EDGE IMAGE */
.fs-assist-left img{
  object-fit:cover;
  margin:-16px 0 -16px -20px;
  border-radius:0;
  flex-shrink:0;
}

/* CENTER TEXT */
.fs-assist-text{
  text-align:center;
  flex:1;
}

.fs-assist-text strong{
  font-family:'Satoshi', sans-serif;
  font-size:18px;
  font-weight:700;
  color:#000;
  display:block;
}

.fs-assist-text p{
  margin:4px 0 0;
  font-family:'Poppins', sans-serif;
  font-size:14px;
  color:#555;
}

/* RIGHT CALL */
.fs-assist-call{
  display:flex;
  align-items:center;
  gap:10px;
  padding:16px 20px;
  border-left:1px solid #d9d9d9;
  background:#fff;
}

.fs-assist-call i{
  color:#ff7a00;
  font-size:18px;
}

.fs-assist-number{
  font-size:16px;
  font-weight:700;
  color:#ff7a00;
  display:block;
}

.fs-assist-call small{
  font-size:12px;
  color:#444;
}



/* FOOTER – FULL START */
.site-footer {
  font-family: 'Poppins', sans-serif;
}

.footer-top-section {
  background-color: #062a30;
  color: #ffffff;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 45px;
}

.footer-row {
  display: grid;
  align-items: flex-start;
}

.footer-row-1 {
  grid-template-columns: 1.25fr 1fr 1.15fr;
  column-gap: 96px;
}

.footer-row-2 {
  grid-template-columns: 1.6fr 1fr;
  column-gap: 96px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #F49B31;
  margin: 16px 0 24px;
}

.footer-logo {
  height: 75px;
  margin-bottom: 18px;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  color: #F49B31;
  margin-bottom: 14px;
}

.footer-text {
  font-size: 14px;
  line-height: 22px;
  color: #cbd5e1;
}

.footer-links li,
.footer-contact li {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 8px;
}

.footer-links a {
  color: #e5e7eb;
}

.newsletter-box {
  width: 380px;
  max-width: 100%;
  display: flex;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 14px;
}

.newsletter-box input {
  flex: 1;
  padding: 16px 12px;
  border: none;
}

.newsletter-box button {
  background: #0b4d6b;
  color: #ffffff;
  border: none;
  padding: 0 22px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0b4d6b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.footer-blue-copy {
  text-align: center;
}

.footer-blue-copy p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #cbd5e1;
}
.footer-copyright {
  color: #A6A6A6;
}
.footer-blue-copy a {
  color: #cbd5e1;
}

/* ---------- disclaimer part ---------- */

.footer-white-section {
  background-color: #ffffff;
}

.footer-white-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 45px;
}

.footer-white-inner p,
.footer-white-inner li {
  font-size: 13px;
  line-height: 20px;
  color: #000000;
  margin-bottom: 10px;
}

.footer-white-inner ul {
  padding-left: 18px;
  list-style-type: disc;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.footer-logos img {
  height: 40px;
  width: auto;
}


.footer-final-copy {
  text-align: center;
  font-size: 18px;
  line-height: 1;
  color: #374151;
}


