/* Exact Travhub page-header + Turmet news-card-items-3 (logo yellow accents) */
:root {
  --w2f-turmet-theme: #ffd200;
  --w2f-turmet-white: #ffffff;
  --w2f-turmet-header: #0a1f24;
  --w2f-turmet-text: #535353;
}

/* ========== Travhub page header + bg image + black opacity overlay ========== */
.page-header {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 90px;
  background-color: transparent;
  background-image: none;
}

@media (min-width: 768px) {
  .page-header {
    padding-top: 165px;
    padding-bottom: 130px;
  }
}

.page-header__art {
  display: none !important;
}

/* Background image restored */
.page-header__image {
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-header__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Black overlay with opacity (not solid background-color) */
.page-header__overlay,
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.65);
}

.page-header__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 158px;
  background-image: url(../imgs/travhub/shapes/page-header-bg-shape.png);
  background-size: cover;
  background-repeat: repeat-x;
  background-position: center bottom;
  animation: w2fCloudMove 60s linear infinite;
  pointer-events: none;
  z-index: 4;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

@media (max-width: 767px) {
  .page-header__bg {
    height: 95px;
  }
}

/* Plane flying */
.page-header__shape-one {
  position: absolute;
  left: -5%;
  top: 28%;
  width: 140px;
  height: 110px;
  background-image: url(../imgs/travhub/shapes/page-header-shape-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: w2fPlaneFly 14s linear infinite;
  pointer-events: none;
  z-index: 4;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* Hot air balloon floating */
.page-header__shape-two {
  position: absolute;
  right: 6%;
  top: 22%;
  width: 100px;
  height: 130px;
  background-image: url(../imgs/travhub/shapes/page-header-shape-2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: w2fBalloonFloat 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 4;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

@media (max-width: 767px) {
  .page-header__shape-one {
    width: 90px;
    height: 70px;
    top: 32%;
  }
  .page-header__shape-two {
    width: 70px;
    height: 90px;
    top: 26%;
    right: 4%;
  }
}

.page-header .container {
  position: relative;
  z-index: 5;
  text-align: center;
}

.page-header__title {
  margin: 0 0 1px;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
  line-height: 1.2;
  text-shadow: none;
}

@media (min-width: 768px) {
  .page-header__title {
    font-size: 48px;
  }
}

.travhub-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.travhub-breadcrumb li {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
  .travhub-breadcrumb li {
    font-size: 20px;
  }
}

.travhub-breadcrumb li:not(:last-of-type)::after {
  content: "/";
  position: relative;
  top: 0;
  margin-left: 6px;
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.65);
}

.travhub-breadcrumb li a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 500ms ease;
  line-height: 1em;
  display: inline-flex;
}

.travhub-breadcrumb li a:hover {
  background-size: 100% 1px;
  color: #ffd200 !important;
}

.travhub-breadcrumb li:last-child {
  color: #ffd200;
}

@keyframes w2fCloudMove {
  0% { background-position: 1920px 100%; }
  100% { background-position: 0 100%; }
}

@keyframes w2fPlaneFly {
  0% { transform: translate(0, 0); opacity: 0; }
  8% { opacity: 1; }
  50% { transform: translate(45vw, -18px); opacity: 1; }
  92% { opacity: 1; }
  100% { transform: translate(90vw, -36px); opacity: 0; }
}

@keyframes w2fBalloonFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-22px) rotate(2deg); }
}

@keyframes w2fSlideRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(100px); }
}

@keyframes w2fSlideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100px); }
}

/* Hide old dark breadcrumb if any leftover */
.breadcrumb__area {
  display: none !important;
}

/* ========== Turmet news-card-items-3 (exact layout) ========== */
.news-section {
  position: relative;
  padding: 80px 0 100px;
  background: #fff;
}

.news-card-items-3 {
  margin-top: 0;
  height: 100%;
  padding-bottom: 10px;
}

.news-card-items-3 .news-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.news-card-items-3 .news-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: transform 500ms ease;
}

.news-card-items-3:hover .news-image img {
  transform: scale(1.05);
}

.news-card-items-3 .news-content {
  padding: 24px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: -82px 22px 0px;
  z-index: 2;
}

@media (max-width: 1199px) {
  .news-card-items-3 .news-content {
    padding: 20px;
  }
}

.news-card-items-3 .news-content .post-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 15px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

@media (max-width: 1399px) {
  .news-card-items-3 .news-content .post-meta {
    gap: 18px;
  }
}

.news-card-items-3 .news-content .post-meta .post {
  background: var(--w2f-turmet-theme);
  color: #000000;
  border-radius: 6px;
  font-size: 24px;
  font-weight: 700;
  padding: 5px 14px;
  display: grid;
  line-height: 1;
  text-align: center;
}

.news-card-items-3 .news-content .post-meta .post span {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  margin-top: 6px;
  text-align: center;
}

.news-card-items-3 .news-content .post-meta li {
  color: #535353;
  font-size: 14px;
  font-weight: 500;
}

.news-card-items-3 .news-content .post-meta li i {
  margin-right: 5px;
  color: var(--w2f-turmet-theme);
}

.news-card-items-3 .news-content h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.4;
  color: #0a1f24;
}

.news-card-items-3 .news-content h4 a {
  color: #0a1f24 !important;
  text-decoration: none !important;
  transition: color 300ms ease;
}

.news-card-items-3 .news-content h4 a:hover {
  color: var(--w2f-turmet-theme) !important;
}

.news-card-items-3 .news-content .link-btn {
  font-size: 16px;
  font-weight: 700;
  color: #0a1f24 !important;
  text-transform: capitalize;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 300ms ease;
}

.news-card-items-3 .news-content .link-btn i {
  margin-left: 0;
  font-size: 14px;
}

.news-card-items-3 .news-content .link-btn:hover {
  color: var(--w2f-turmet-theme) !important;
}

@media (max-width: 767px) {
  .news-section {
    padding: 60px 0 80px;
  }
  .news-card-items-3 .news-image img {
    height: 240px;
  }
  .news-card-items-3 .news-content {
    margin: -70px 14px 0;
  }
  .news-card-items-3 .news-content h4 {
    font-size: 15px;
  }
}

.w2f-blog-filter-note {
  font-size: 15px;
  color: #555;
}

.w2f-blog-filter-note a {
  color: #000 !important;
  font-weight: 600;
  text-decoration: underline !important;
}

/* ========== Travhub tours cards (lighter height) ========== */
.tours-one {
  padding: 20px 0 20px;
  background: #fff;
}

.tours-one__item {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
}

.tours-one__item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.tours-one__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.82) 100%
  );
  pointer-events: none;
}

.tours-one__item:hover > img {
  transform: scale(1.06);
}

.tours-one__item__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 20px 20px;
  color: #fff;
}

.tours-one__item__title {
  margin: 0 0 8px;
  font-family: "DM Serif Display", "Plus Jakarta Sans", serif !important;
  font-size: 20px !important;
  line-height: 1.3 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.tours-one__item__title a {
  color: #fff !important;
  text-decoration: none !important;
  line-height: inherit !important;
}

.tours-one__item__title a:hover {
  color: #ffd200 !important;
}

.tours-one__item__text {
  margin: 0 0 10px;
  font-family: "DM Sans", "Plus Jakarta Sans", sans-serif !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  letter-spacing: 0 !important;
  color: rgba(255, 255, 255, 0.88);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tours-one__item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.tours-one__item__meta li i {
  margin-right: 5px;
  color: #ffd200;
}

@media (max-width: 767px) {
  .tours-one {
    padding: 60px 0 80px;
  }
  .tours-one__item {
    height: 290px;
  }
}

/* ========== Blog details (Visanet left-sidebar layout, static) ========== */
.w2f-blog-details {
  padding: 70px 0 90px;
  background: #fff;
}

.w2f-blog-sidebar__widget {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 24px;
}

.w2f-blog-sidebar__title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  position: relative;
  padding-bottom: 12px;
}

.w2f-blog-sidebar__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: #ffd200;
}

.w2f-blog-sidebar__list li + li {
  margin-top: 10px;
}

.w2f-blog-sidebar__list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333 !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 250ms ease;
}

.w2f-blog-sidebar__list a:hover,
.w2f-blog-sidebar__list a:hover span {
  color: #000 !important;
}

.w2f-blog-sidebar__list span {
  color: #888;
  font-weight: 600;
}

.w2f-blog-sidebar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.w2f-blog-sidebar__tags a {
  display: inline-flex;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  color: #333 !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 600;
  transition: background 250ms ease, color 250ms ease, border-color 250ms ease;
}

.w2f-blog-sidebar__tags a:hover {
  background: #ffd200;
  border-color: #ffd200;
  color: #000 !important;
}

.w2f-blog-sidebar__post {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none !important;
  margin-bottom: 16px;
}

.w2f-blog-sidebar__post:last-child {
  margin-bottom: 0;
}

.w2f-blog-sidebar__post img {
  width: 84px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.w2f-blog-sidebar__post span {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}

.w2f-blog-sidebar__post h4 {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #111;
  font-weight: 600;
}

.w2f-blog-sidebar__post:hover h4 {
  color: #000;
}

.w2f-blog-details__thumb {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 22px;
}

.w2f-blog-details__thumb img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.w2f-blog-details__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 16px;
  padding: 0;
  color: #666;
  font-size: 14px;
}

.w2f-blog-details__meta i {
  color: #ffd200;
  margin-right: 6px;
}

.w2f-blog-details__title {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.35;
  color: #111;
  font-weight: 700;
}

.w2f-blog-details__text {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
}

.w2f-blog-details__text h1,
.w2f-blog-details__text h2,
.w2f-blog-details__text h3,
.w2f-blog-details__text h4,
.w2f-blog-details__text h5,
.w2f-blog-details__text h6 {
  color: #111;
  font-weight: 700;
  line-height: 1.35;
  margin: 1.25rem 0 0.75rem;
}

.w2f-blog-details__text h1 {
  font-size: 24px;
}

.w2f-blog-details__text h2 {
  font-size: 20px;
}

.w2f-blog-details__text h3 {
  font-size: 18px;
}

.w2f-blog-details__text h4 {
  font-size: 16px;
}

.w2f-blog-details__text p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.75;
  color: #555;
}

.w2f-blog-details__tax {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 34px;
  font-size: 15px;
  color: #333;
}

.w2f-blog-details__tax strong {
  margin-right: 8px;
  color: #111;
}

.w2f-blog-details__tax a {
  color: #555 !important;
  text-decoration: none !important;
  margin-right: 8px;
}

.w2f-blog-details__tax a:hover {
  color: #000 !important;
}

.w2f-blog-comments__title,
.w2f-blog-form__title {
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: 700;
  color: #111;
}

.w2f-blog-comments__item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.w2f-blog-comments__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffd200;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.w2f-blog-comments__body h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #111;
}

.w2f-blog-comments__body p {
  margin: 0 0 8px;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.w2f-blog-comments__body span {
  font-size: 13px;
  color: #888;
}

.w2f-blog-form {
  margin-top: 10px;
}

.w2f-blog-form input,
.w2f-blog-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 14px 16px;
  background: #f7f7f7;
  color: #111;
  outline: none;
  transition: border-color 250ms ease, background 250ms ease;
}

.w2f-blog-form input:focus,
.w2f-blog-form textarea:focus {
  border-color: #ffd200;
  background: #fff;
}

@media (max-width: 991px) {
  .w2f-blog-details {
    padding: 50px 0 70px;
  }
  .w2f-blog-details__title {
    font-size: 22px;
  }
  .w2f-blog-details__thumb img {
    height: 280px;
  }
}

@media (max-width: 575px) {
  .w2f-blog-details__thumb img {
    height: 220px;
  }
  .w2f-blog-details__title {
    font-size: 20px;
  }
}

/* Site search results */
.w2f-search-page__form {
  display: flex;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.w2f-search-page__form input {
  flex: 1;
  min-width: 0;
  height: 52px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 1rem;
  outline: none;
}
.w2f-search-page__form input:focus {
  border-color: #ffd200;
  box-shadow: 0 0 0 3px rgba(255, 210, 0, .25);
}
.w2f-search-page__form button {
  height: 52px;
  border: 0;
  border-radius: 12px;
  padding: 0 24px;
  background: #ffd200;
  color: #111;
  font-weight: 700;
  cursor: pointer;
}
.w2f-search-page__count {
  color: #64748b;
  text-align: center;
}
.w2f-search-card {
  display: block;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.w2f-search-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}
.w2f-search-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f1f5f9;
}
.w2f-search-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.w2f-search-card__body {
  padding: 18px 18px 20px;
}
.w2f-search-card__type {
  display: inline-block;
  margin-bottom: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #667eea;
}
.w2f-search-card__title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.3;
  color: #111;
}
.w2f-search-card__excerpt {
  margin: 0;
  color: #64748b;
  font-size: .92rem;
  line-height: 1.5;
}

/* Site search results */
.w2f-search-page__form {
  display: flex;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.w2f-search-page__form input {
  flex: 1;
  min-width: 0;
  height: 52px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 1rem;
  outline: none;
}
.w2f-search-page__form input:focus {
  border-color: #ffd200;
  box-shadow: 0 0 0 3px rgba(255, 210, 0, .25);
}
.w2f-search-page__form button {
  height: 52px;
  border: 0;
  border-radius: 12px;
  padding: 0 24px;
  background: #ffd200;
  color: #111;
  font-weight: 700;
  cursor: pointer;
}
.w2f-search-page__count {
  color: #64748b;
  text-align: center;
}
.w2f-search-card {
  display: block;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.w2f-search-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}
.w2f-search-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f1f5f9;
}
.w2f-search-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.w2f-search-card__body {
  padding: 18px 18px 20px;
}
.w2f-search-card__type {
  display: inline-block;
  margin-bottom: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #667eea;
}
.w2f-search-card__title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.3;
  color: #111;
}
.w2f-search-card__excerpt {
  margin: 0;
  color: #64748b;
  font-size: .92rem;
  line-height: 1.5;
}

/* Frontend pagination (gallery / tours / blogs) */
.w2f-pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
  margin: 48px 0 24px !important;
  padding: 0 !important;
}

.w2f-pagination nav,
.w2f-pagination .d-flex,
.w2f-pagination .flex-sm-fill,
.w2f-pagination .justify-content-sm-between {
  display: flex !important;
  width: 100%;
  justify-content: center !important;
  align-items: center !important;
}

/* Hide Laravel default "Showing X to Y of Z results" */
.w2f-pagination .small.text-muted,
.w2f-pagination p.small {
  display: none !important;
}

.w2f-pagination .pagination,
.w2f-pagination__list {
  display: inline-flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.w2f-pagination .page-item {
  margin: 0 !important;
}

.w2f-pagination .page-link,
.w2f-pagination .page-item .page-link,
.w2f-pagination .page-item span.page-link {
  min-width: 44px !important;
  height: 44px !important;
  padding: 0 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #d1d5db !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: #111827 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.w2f-pagination .page-item.active .page-link,
.w2f-pagination .page-item.active span.page-link {
  background: #ffd200 !important;
  border-color: #ffd200 !important;
  color: #111827 !important;
}

.w2f-pagination .page-item:not(.disabled):not(.active) .page-link:hover {
  background: #fff8cc !important;
  border-color: #ffd200 !important;
  color: #111827 !important;
}

.w2f-pagination .page-item.disabled .page-link {
  opacity: 0.45 !important;
  background: #f8fafc !important;
  color: #6b7280 !important;
}

.gallery__area .w2f-pagination,
.tours-one .w2f-pagination,
.news-section .w2f-pagination {
  margin-bottom: 20px !important;
}
