:root {
  --tf-navy: #10233f;
  --tf-blue: #1a73e8;
  --tf-blue-dark: #0f5fc4;
  --tf-white: #ffffff;
  --tf-muted: #6b7280;
  --tf-border: #e5e7eb;
}

.tf-ota-hero {
  min-height: 560px;
  background-image:
    linear-gradient(rgba(10, 25, 45, 0.35), rgba(10, 25, 45, 0.45)),
    url("../images/video.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 20px 90px;
  color: var(--tf-white);
}

.tf-ota-hero-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.tf-ota-hero h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}

.tf-ota-hero p {
  color: rgba(255,255,255,.92);
  font-size: 20px;
  margin-bottom: 34px;
}

.tf-search-box {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 999px;
  padding: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.tf-search-icon {
  width: 54px;
  color: #667085;
  font-size: 22px;
}

.tf-search-box input {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 17px;
  padding: 18px 10px;
  color: var(--tf-navy);
}

.tf-search-box button {
  border: 0;
  background: var(--tf-blue);
  color: #fff;
  border-radius: 999px;
  padding: 18px 38px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.tf-search-box button:hover {
  background: var(--tf-blue-dark);
}

.tf-popular-searches {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tf-popular-searches a {
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 14px;
  background: rgba(255,255,255,.12);
}

.tf-popular-searches a:hover {
  background: rgba(255,255,255,.25);
  color: #fff;
}

@media (max-width: 767px) {
  .tf-ota-hero {
    min-height: 520px;
    padding: 105px 16px 70px;
  }

  .tf-ota-hero h1 {
    font-size: 42px;
  }

  .tf-ota-hero p {
    font-size: 17px;
  }

  .tf-search-box {
    border-radius: 24px;
    flex-direction: column;
    padding: 14px;
  }

  .tf-search-icon {
    display: none;
  }

  .tf-search-box input {
    width: 100%;
    text-align: center;
    padding: 15px 10px;
  }

  .tf-search-box button {
    width: 100%;
    padding: 16px;
  }
}

.tf-ota-intro {
  background: #ffffff;
  padding: 64px 0;
}

.tf-ota-intro-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: center;
}

.tf-ota-eyebrow {
  color: #1a73e8;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.tf-ota-intro h2 {
  color: #10233f;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 18px;
}

.tf-ota-intro p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.75;
  max-width: 700px;
}

.tf-ota-intro-cards {
  display: grid;
  gap: 16px;
}

.tf-ota-mini-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 10px 24px rgba(16, 35, 63, 0.06);
}

.tf-ota-mini-card strong {
  display: block;
  color: #10233f;
  font-size: 20px;
  margin-bottom: 6px;
}

.tf-ota-mini-card span {
  color: #6b7280;
  font-size: 15px;
}

@media (max-width: 991px) {
  .tf-ota-intro {
    padding: 44px 0;
  }

  .tf-ota-intro-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tf-ota-intro h2 {
    font-size: 34px;
  }
}
.tf-featured-tours {
  background: #ffffff;
  padding: 54px 0 72px;
}

.tf-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.tf-featured-card {
  display: block;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(16, 35, 63, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.tf-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(16, 35, 63, 0.14);
}

.tf-featured-img {
  position: relative;
  height: 210px;
  background: #f1f5f9;
}

.tf-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #10233f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 999px;
}

.tf-featured-body {
  padding: 18px;
}

.tf-featured-location {
  color: #64748b;
  font-size: 13px;
  margin-bottom: 8px;
}

.tf-featured-body h3 {
  color: #10233f;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  min-height: 46px;
  margin-bottom: 18px;
}

.tf-featured-meta {
  color: #10233f;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tf-featured-meta span {
  color: #64748b;
  font-weight: 500;
}

.tf-featured-price {
  color: #10233f;
  font-size: 20px;
  font-weight: 900;
  text-align: right;
}

.tf-featured-price span {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .tf-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .tf-featured-tours {
    padding: 38px 0 50px;
  }

  .tf-featured-grid {
    grid-template-columns: 1fr;
  }

  .tf-featured-img {
    height: 230px;
  }
}

.tf-featured-hidden {
  display: none !important;
}



.tf-featured-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #1a73e8;
  background: #ffffff;
  color: #1a73e8;
  border-radius: 999px;
  padding: 14px 32px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
}

.tf-featured-more-btn:hover {
  background: #1a73e8;
  color: #ffffff;
}

.tf-featured-tours .tf-featured-more-wrap {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 34px auto 0 auto !important;
  clear: both !important;
}

.tf-featured-tours .tf-featured-more-btn {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 auto !important;
  float: none !important;
}
.tf-destinations-section {
  background: #eaf6ff;
  padding: 70px 0;
}

.tf-destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.tf-destination-card {
  position: relative;
  display: block;
  height: 230px;
  border-radius: 18px;
  overflow: hidden;
  background: #10233f;
  box-shadow: 0 10px 24px rgba(16, 35, 63, 0.12);
}

.tf-destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.tf-destination-card:hover img {
  transform: scale(1.06);
}

.tf-destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.05));
}

.tf-destination-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
}

@media (max-width: 991px) {
  .tf-destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .tf-destination-grid {
    grid-template-columns: 1fr;
  }

  .tf-destination-card {
    height: 210px;
  }
}

.tf-search-page-head {
  background: #f8fafc;
  padding: 110px 0 48px;
  text-align: center;
}

.tf-search-page-head h1 {
  color: #10233f;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 24px;
}
.search-header {
  position: relative !important;
  background: #ffffff !important;
  min-height: auto !important;
}

.search-header .menu {
  background: #ffffff !important;
}

.search-header .topbar {
  display: none !important;
}

.tf-search-page-head {
  background: #f8fafc;
  padding: 80px 0 44px !important;
  text-align: center;
}

.tf-search-page-head h1 {
  color: #10233f;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 24px;
}

.tf-search-page-head .tf-search-box {
  box-shadow: 0 14px 35px rgba(16, 35, 63, 0.16);
}

.tf-featured-tours {
  padding-top: 44px !important;
}

.tf-search-simple-header {
  background: #ffffff;
  padding: 18px 0;
  border-bottom: 1px solid #eef2f7;
}

.tf-search-simple-header img {
  width: 120px;
  height: auto;
}

.tf-search-page-head {
  padding: 42px 0 34px !important;
}
.tf-search-simple-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.tf-search-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.tf-search-logo img {
  width: 120px;
  height: auto;
}

.tf-search-top-form {
  flex: 1;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid #dbe4f0;
  border-radius: 999px;
  overflow: hidden;
  max-width: 720px;
}

.tf-search-top-form input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 16px 20px;
  font-size: 16px;
}

.tf-search-top-form button {
  border: 0;
  background: #1a73e8;
  color: #ffffff;
  padding: 16px 28px;
  font-weight: 700;
  cursor: pointer;
}

.tf-featured-tours {
  padding-top: 40px !important;
}

@media (max-width: 767px) {

  .tf-search-header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .tf-search-logo {
    text-align: center;
  }

  .tf-search-top-form {
    max-width: 100%;
  }
}