/* ============================================
   TRAVELERA - MAIN STYLESHEET
   ============================================ */

:root {
  --primary-blue: #00389f;
  --primary-blue-dark: #10285b;
  --primary-blue-light: #1a54c2;
  --whatsapp-green: #25D366;
  --whatsapp-green-dark: #1fb85a;
  --text-dark: #0a1630;
  --text-muted: #3a3c3f;
  --bg-light: #F8FAFC;
  --border-light: #E5E7EB;
}

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; }

/* ============ TOP BAR ============ */
.top-bar {
  background: #fff;
  font-size: 13px;
  color: var(--text-dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.top-bar a { color: var(--text-dark); }
.top-bar .top-info span { margin-right: 18px; }
.top-bar i { color: var(--primary-blue); margin-right: 6px; }

/* ============ NAVBAR ============ */
.navbar-custom {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  position: relative;
  /* z-index: 100; */
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 5px;
}
.brand-logo .logo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.brand-logo .brand-text h4 {
  color: var(--primary-blue);
  font-weight: 700;
  margin: 0;
  letter-spacing: 2px;
  font-size: 22px;
}
.brand-logo .brand-text small {
  color: var(--text-muted);
  font-size: 10px;
  display: block;
}

/* Desktop Menu - Centered between logo and button */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav-menu .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 16px;
  font-size: 14px;
  display: inline-block;
}
.nav-menu .nav-link.active {
  color: var(--primary-blue);
  border-bottom: 2px solid var(--primary-blue);
}
/* CTA button separated - positioned on the right of navbar */
.nav-cta-wrap {
  margin-left: auto;
}
.nav-menu .nav-cta { display: none; }
.nav-close-wrap { display: none; }

.btn-whatsapp {
  background: var(--primary-blue);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover { background: var(--primary-blue-dark); color: #fff; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--primary-blue);
  cursor: pointer;
  padding: 4px 8px;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  /* z-index: 998; */
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ============ HERO ============ */
.hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgb(255 255 255 / 0%) 40%, rgb(255 255 255 / 36%) 70%), 
    url(image/fli.jpg) center / cover no-repeat;
  padding: 50px 0 130px;
  position: relative;
}
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: #101f3f;
  margin-bottom: 5px;
}
.hero h1 .blue { color: #1446a2; }
.hero p {
  font-size: 15px;
  color: #1f2021;
  max-width: 490px;
  margin-bottom: 18px;
  font-weight: 500;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn-green {
  background: #0d43ad;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  border: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-green:hover { background: var(--primary-blue-dark); color: #fff; }
.btn-outline-blue {
  background: #fff;
  color: var(--primary-blue);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  border: 1px solid var(--primary-blue);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-blue:hover { background: var(--primary-blue); color: #fff; }

/* ============ SEARCH BOX ============ */
.search-wrap {
  position: relative;
  margin-top: -80px;
  z-index: 10;
}
.search-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 18px;
}
.search-tabs {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.search-tabs .tab {
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  padding-bottom: 8px;
  transition: color 0.2s;
}
.search-tabs .tab.active {
  color: var(--primary-blue);
  border-bottom: 2px solid var(--primary-blue);
  margin-bottom: -15px;
}
.search-tabs .tab i { margin-right: 6px; }

.input-field {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 10px 14px;
  position: relative;
  background: #fff;
  transition: border-color 0.2s;
}
.input-field:focus-within {
  border-color: var(--primary-blue);
}
.input-field label {
  color: #232323;
  font-size: 14px;
  margin: 0;
  display: block;
  font-weight: 600;
}
.input-field input,
.input-field select {
  border: none;
  outline: none;
  width: 100%;
  padding: 0;
  font-size: 14px;
  background: transparent;
  color: var(--text-dark);
  font-family: inherit;
}
.input-field input[type="date"] {
  color: var(--text-dark);
}
.input-field .field-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.btn-search {
  background: var(--primary-blue);
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  border: none;
  font-weight: 500;
  width: 100%;
  font-size: 15px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-search:hover { background: var(--primary-blue-dark); }

.search-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 18px;
}
.search-footer i { color: var(--primary-blue); margin-right: 6px; }

/* Travelers Dropdown */
.travelers-field { cursor: pointer; }
.travelers-field input { cursor: pointer; }
.travelers-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 20px;
  z-index: 50;
  display: none;
}
.travelers-dropdown.show { display: block; }
.trav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.trav-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}
.trav-sub {
  font-size: 12px;
  color: var(--text-muted);
}
.counter {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cbtn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--primary-blue);
  background: #fff;
  color: var(--primary-blue);
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0;
  line-height: 1;
}
.cbtn:hover { background: var(--primary-blue); color: #fff; }
.cbtn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #fff;
  color: var(--primary-blue);
}
.counter span {
  min-width: 18px;
  text-align: center;
  font-weight: 600;
}
.trav-class {
  padding-top: 14px;
}
.class-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.class-options label {
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 6px;
  margin: 0;
}
.class-options label:hover { background: #f3f4f6; }
.class-options input[type="radio"] { accent-color: var(--primary-blue); }
.btn-done {
  background: var(--primary-blue);
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  margin-top: 12px;
  font-weight: 500;
  cursor: pointer;
}
.btn-done:hover { background: var(--primary-blue-dark); }

/* Multi City */
.multi-city-row {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--border-light);
}
.multi-city-row:last-child { border-bottom: none; }
.btn-add-city {
  background: transparent;
  color: var(--primary-blue);
  border: 1px dashed var(--primary-blue);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  margin-top: 10px;
}


.search-box h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-add-city:hover { background: var(--primary-blue); color: #fff; }
.btn-remove-city {
  background: #fee2e2;
  color: #dc2626;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-remove-city:hover { background: #dc2626; color: #fff; }
.multi-actions { margin-bottom: 10px; }

/* ============ FEATURES ============ */
.features { padding: 50px 0 20px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid #b9b9b9;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.feature-item h6 {
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 15px;
}
.feature-item p {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
}

/* ============ WELCOME ============ */
.welcome { padding: 50px 0; }
.welcome .eyebrow {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.welcome h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #101f3f;
}
.welcome p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.welcome-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background:linear-gradient(101deg, rgb(2 31 84 / 89%), rgb(0 42 122 / 60%)), 
             url(image/flight-air.webp) center / cover;
  padding: 40px 30px;
  min-height: 360px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.welcome-logo-circle img {
  width: 180px;
  height: 180px;
  /* background: #fff; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 20px auto; */
}
.welcome-logo-circle i {
  font-size: 44px;
  color: var(--primary-blue);
}
.wf-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-right: 1px solid white;
}
.wf-item:last-child {
    border-right: none;
}
.welcome-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  color: #fff;
}
.welcome-features .wf-item i {
  background: rgb(255 255 255);
  color: #011c65;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.welcome-features .wf-item h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
}
.welcome-features .wf-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* ============ HOW IT WORKS ============ */
.how-works { padding: 10px 0px 20px 0px; }
.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.section-title-wrap h3 {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 3px;
  color: var(--text-dark);
  display: inline-block;
  position: relative;
  padding: 0 20px;
  margin: 0;
}
.section-title-wrap h3:before,
.section-title-wrap h3:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--primary-blue);
}
.section-title-wrap h3:before { right: 100%; }
.section-title-wrap h3:after { left: 100%; }

.steps-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.step-item {
  /* text-align: center; */
  flex: 1;
  max-width: 290px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.step-circle-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
}
.step-icon {
  width: 70px;
  height: 70px;
  background: #1654c7;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.step-num-badge {
  /* position: absolute; */
  /* top: -4px;
  right: -8px; */
  width: 35px;
  height: 35px;
  background: #dcfffff7;
  color: var(--primary-blue);
  /* border: 2px solid var(--primary-blue); */
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.step-item h6 {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}
.step-item p {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
}
.step-arrow {
  color: #9ca3af;
  font-size: 22px;
  padding-top: 24px;
  padding-right: 20px;
  padding-left: 10px;
  flex-shrink: 0;
}

/* ============ SERVICES ============ */
.services { padding: 30px 0 60px; }
.service-card {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.service-img-wrap {
  position: relative;
  height: 170px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-icon-float {
  position: absolute;
  /* bottom: -22px; */
      top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  /* border: 3px solid #fff; */
}
.service-card .service-body {
  padding: 30px 18px 20px;
  text-align: center;
  position: relative;
}
.service-card h6 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--primary-blue);
  color: #fff;
  padding: 15px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "\f072";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
  font-size: 60px;
  opacity: 0.08;
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 250px;
}
.cta-icon {
  width: 65px;
  height: 65px;
  /* background: rgba(255,255,255,0.2); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  flex-shrink: 0;
}
.cta-text h5 {
  margin: 0 0 5px;
  font-weight: 500;
  font-size: 24px;
}
.cta-text p {
  margin: 0;
  opacity: 0.9;
  font-size: 16px;
}
.cta-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-cta-green {
  background: var(--whatsapp-green);
  color: #fff;
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 500;
  border: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-cta-green:hover { background: var(--whatsapp-green-dark); color: #fff; }
.btn-cta-white {
  background: transparent;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500;
  border: 1px solid #fff;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-cta-white:hover { background: #fff; color: var(--primary-blue); }

/* ============ FOOTER ============ */
.footer {
  background: var(--primary-blue-dark);
  color: #D1D5DB;
  padding: 50px 0 20px;
  font-size: 13px;
}
.footer h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 15px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bordre-fot {
    border-right: 1px solid gray;
    padding-left: 30px;
}
.bordre-fot:last-child {
    border-right: none;
}
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: #D1D5DB; }
.footer ul li a:hover { color: #fff; }
.footer .brand-text h4 { color: #fff; }
.footer .brand-text small { color: #D1D5DB; }
.footer p {
  color: #D1D5DB;
  line-height: 1.6;
  font-size: 12px;
}
.footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
}
.footer .contact-item i { color: #fff; margin-top: 4px; flex-shrink: 0; font-size: 18px;}
.social-icons {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s;
}
.social-icons a:hover { background: rgba(255,255,255,0.3); }
.social-icons a.whatsapp { background: var(--whatsapp-green); }
.social-icons a.whatsapp:hover { background: var(--whatsapp-green-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 18px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}

/* ============ FLOATING WHATSAPP ============ */
.float-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.2s;
}
.float-whatsapp:hover {
  color: #fff;
  transform: scale(1.05);
  background: var(--whatsapp-green-dark);
}
.class-options label input[type="radio"] {
        width: auto;
    }
/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet and below */
@media (max-width: 991px) {
  .hero h1 { font-size: 36px; }
  .welcome h2 { font-size: 28px; }

  /* Mobile nav slide-in */
  .nav-toggle { display: block; }
  .nav-cta-wrap { display: none; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    transform: none;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.35s ease;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.active { right: 0; }
  .nav-menu li { width: 100%; }
  .nav-menu .nav-cta { display: block; }
  .nav-menu .nav-link {
    display: block;
    padding: 14px 10px;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
  }
  .nav-menu .nav-link.active {
    border-bottom: 1px solid var(--border-light);
    background: rgba(0,56,159,0.08);
    border-left: 4px solid var(--primary-blue);
    padding-left: 12px;
  }
  .nav-menu .nav-cta {
    margin: 20px 0 0;
    padding: 0;
  }
  .nav-menu .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
  .nav-close-wrap {
    display: flex !important;
    justify-content: flex-end;
    padding: 0 0 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-close {
    background: transparent;
    border: none;
    font-size: 22px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 4px 10px;
  }

  /* How it works - stack vertically on mobile */
  .steps-wrap {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  .step-item { max-width: 100%; width: 100%; flex-direction: column; align-items: center; gap: 0px;}
  .icon-box-how {
    display: contents;
}
  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
  .welcome-features {
    grid-template-columns: repeat(1, 1fr);
    gap: 28px;
    margin-top: 25px;
}
    .wf-item{
        border-right: none;
    }
    
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 100px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.7) 60%, rgba(255,255,255,0.4) 100%),
      url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1200&auto=format&fit=crop&q=80') center/cover no-repeat;
  }
  .hero h1 { font-size: 40px; }
  .top-bar { font-size: 11px; text-align: center; display: none;}
  .top-bar .top-info { width: 100%; text-align: center; }
  .top-bar .top-info span {
    display: inline-block;
    margin: 3px 8px;
  }
  .search-tabs { gap: 14px; justify-content: space-around; }
  .search-wrap { margin-top: -60px; }
  .welcome-img-wrap { min-height: 300px; margin-top: 30px; }

  /* CTA banner - stack vertically on mobile */
  .cta-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cta-left {
    flex-direction: column;
    text-align: center;
    min-width: 0;
  }
  .cta-right {
    justify-content: center;
    width: 100%;
    flex-direction: column;
  }
  .cta-right a { flex: 1; justify-content: center; min-width: 140px; }
  .cta-banner::before { display: none; }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  /* Travelers dropdown full-width on mobile */
  .travelers-dropdown {
    width: 100%;
    right: 0;
    left: 0;
  }
  .bordre-fot {
    border-right: none;
    padding-left: 10px;
}
}

/* Small Mobile */
@media (max-width: 576px) {
  .hero h1 { font-size: 40px; }
  .welcome h2 { font-size: 24px; }
  .section-title-wrap h3 {
    font-size: 18px;
    letter-spacing: 2px;
  }
  .section-title-wrap h3:before,
  .section-title-wrap h3:after { width: 20px; }
  .hero-btns .btn-green,
  .hero-btns .btn-outline-blue {
    width: 100%;
    justify-content: center;
  }
  .search-box { padding: 15px; }
  .search-tabs { gap: 10px; justify-content: space-around;}
  .search-tabs .tab { font-size: 13px; }
  .class-options { grid-template-columns: 1fr; }
  .brand-logo .brand-text h4 { font-size: 18px; }
  .brand-logo .logo-icon { width: 42px; height: 42px; font-size: 18px; }
  .bordre-fot {
    border-right: none;
    padding-left: 10px;
}
}




/* ============ HERO ============ */
.pp-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.pp-hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.1;
}
.pp-hero-divider {
  width: 60px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  margin: 0 auto 18px;
  opacity: 0.85;
}
.pp-hero-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  max-width: 600px;
  line-height: 1.7;
  margin: 0 auto;
}
 
/* ============ CONTENT SECTION ============ */
.pp-content-section {
  padding: 50px 0 60px;
}
.pp-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 45px 45px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  max-width: 900px;
  margin: 0 auto;
}
 
.pp-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 56, 159, 0.08);
  color: var(--primary-blue);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 30px;
}
 
/* Block (each section) */
.pp-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}
.pp-block:last-of-type {
  border-bottom: none;
}
.pp-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 56, 159, 0.1);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.pp-block-body h2 {
  font-weight: 700;
  font-size: 19px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.pp-block-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.pp-block-body strong {
  color: var(--text-dark);
  font-weight: 600;
}
 
/* Contact Box */
.pp-contact-box {
  background: #EEF3FB;
  border-radius: 12px;
  padding: 30px;
  margin-top: 35px;
}
.pp-contact-box h3 {
  font-weight: 700;
  font-size: 19px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.pp-contact-box > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.pp-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.pp-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(0, 56, 159, 0.15);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s;
}
.pp-contact-item:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  text-decoration: none;
}
.pp-contact-item i {
  color: var(--primary-blue);
  font-size: 14px;
}
 
/* ============================================
   RESPONSIVE
   ============================================ */
 
@media (max-width: 991px) {
  .pp-hero h1 { font-size: 36px; }
  .pp-card { padding: 35px 30px; }
}
 
@media (max-width: 768px) {
  .pp-hero { padding: 45px 0; }
  .pp-hero h1 { font-size: 30px; }
  .pp-hero-text { font-size: 14px; }
  .pp-content-section { padding: 35px 0 50px; }
  .pp-card { padding: 25px 20px; }
  .pp-block {
    gap: 14px;
    padding: 18px 0;
  }
  .pp-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  .pp-block-body h2 { font-size: 17px; }
  .pp-block-body p { font-size: 14px; }
  .pp-contact-box { padding: 22px; }
}
 
@media (max-width: 576px) {
  .pp-hero h1 { font-size: 26px; }
  .pp-card { padding: 20px 16px; }
  .pp-block {
    flex-direction: column;
    gap: 12px;
  }
  .pp-icon {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }
  .pp-contact-item {
    width: 100%;
    justify-content: flex-start;
  }
}



/* ============================================
   TERMS & CONDITIONS PAGE
   All class names prefixed with `tc-`
   ============================================ */

/* ============ HERO ============ */
.tc-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.tc-hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.1;
}
.tc-hero-divider {
  width: 60px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  margin: 0 auto 18px;
  opacity: 0.85;
}
.tc-hero-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  max-width: 600px;
  line-height: 1.7;
  margin: 0 auto;
}

/* ============ CONTENT SECTION ============ */
.tc-content-section {
  padding: 50px 0 60px;
}
.tc-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 45px 45px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  max-width: 900px;
  margin: 0 auto;
}

.tc-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 56, 159, 0.08);
  color: var(--primary-blue);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
}

.tc-intro {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

/* Block (each term) */
.tc-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}
.tc-block:last-of-type {
  border-bottom: none;
}
.tc-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 56, 159, 0.1);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.tc-block-body h2 {
  font-weight: 700;
  font-size: 19px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.tc-block-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.tc-block-body strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Contact Box */
.tc-contact-box {
  background: #EEF3FB;
  border-radius: 12px;
  padding: 30px;
  margin-top: 35px;
}
.tc-contact-box h3 {
  font-weight: 700;
  font-size: 19px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.tc-contact-box > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.tc-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.tc-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(0, 56, 159, 0.15);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s;
}
.tc-contact-item:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  text-decoration: none;
}
.tc-contact-item i {
  color: var(--primary-blue);
  font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
  .tc-hero h1 { font-size: 36px; }
  .tc-card { padding: 35px 30px; }
}

@media (max-width: 768px) {
  .tc-hero { padding: 45px 0; }
  .tc-hero h1 { font-size: 30px; }
  .tc-hero-text { font-size: 14px; }
  .tc-content-section { padding: 35px 0 50px; }
  .tc-card { padding: 25px 20px; }
  .tc-block {
    gap: 14px;
    padding: 18px 0;
  }
  .tc-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  .tc-block-body h2 { font-size: 17px; }
  .tc-block-body p { font-size: 14px; }
  .tc-intro { font-size: 14px; }
  .tc-contact-box { padding: 22px; }
}

@media (max-width: 576px) {
  .tc-hero h1 { font-size: 26px; }
  .tc-card { padding: 20px 16px; }
  .tc-block {
    flex-direction: column;
    gap: 12px;
  }
  .tc-icon {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }
  .tc-contact-item {
    width: 100%;
    justify-content: flex-start;
  }
}





/* ============================================
   REFUND POLICY PAGE
   All class names prefixed with `rf-`
   ============================================ */

/* ============ HERO ============ */
.rf-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.rf-hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.1;
}
.rf-hero-divider {
  width: 60px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  margin: 0 auto 18px;
  opacity: 0.85;
}
.rf-hero-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  max-width: 600px;
  line-height: 1.7;
  margin: 0 auto;
}

/* ============ CONTENT SECTION ============ */
.rf-content-section {
  padding: 50px 0 60px;
}
.rf-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 45px 45px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  max-width: 900px;
  margin: 0 auto;
}

.rf-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 56, 159, 0.08);
  color: var(--primary-blue);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
}

.rf-intro {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

/* Block (each refund point) */
.rf-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}
.rf-block:last-of-type {
  border-bottom: none;
}
.rf-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 56, 159, 0.1);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.rf-block-body h2 {
  font-weight: 700;
  font-size: 19px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.rf-block-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.rf-block-body strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Contact Box */
.rf-contact-box {
  background: #EEF3FB;
  border-radius: 12px;
  padding: 30px;
  margin-top: 35px;
}
.rf-contact-box h3 {
  font-weight: 700;
  font-size: 19px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.rf-contact-box > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.rf-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.rf-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(0, 56, 159, 0.15);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s;
}
.rf-contact-item:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  text-decoration: none;
}
.rf-contact-item i {
  color: var(--primary-blue);
  font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
  .rf-hero h1 { font-size: 36px; }
  .rf-card { padding: 35px 30px; }
}

@media (max-width: 768px) {
  .rf-hero { padding: 45px 0; }
  .rf-hero h1 { font-size: 30px; }
  .rf-hero-text { font-size: 14px; }
  .rf-content-section { padding: 35px 0 50px; }
  .rf-card { padding: 25px 20px; }
  .rf-block {
    gap: 14px;
    padding: 18px 0;
  }
  .rf-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  .rf-block-body h2 { font-size: 17px; }
  .rf-block-body p { font-size: 14px; }
  .rf-intro { font-size: 14px; }
  .rf-contact-box { padding: 22px; }
}

@media (max-width: 576px) {
  .rf-hero h1 { font-size: 26px; }
  .rf-card { padding: 20px 16px; }
  .rf-block {
    flex-direction: column;
    gap: 12px;
  }
  .rf-icon {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }
  .rf-contact-item {
    width: 100%;
    justify-content: flex-start;
  }
}