@charset "UTF-8";
/*------------------------------------------------------------------------------
	Template Name: Starter Project Template.
-------------------------------------------------------------------------------*/
/* Default Css */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,600,700|Work+Sans:400,500,600,700,800&display=swap");
img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.section-padding {
  padding: 120px 0;
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
html::-webkit-scrollbar-thumb:active, body::-webkit-scrollbar-thumb:active {
  background: #1E4DFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #111;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
a:active, a:hover {
  text-decoration: none;
}

button,
.btn {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
button:active, button:hover, button:focus,
.btn:active,
.btn:hover,
.btn:focus {
  outline: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  color: #333333;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  color: #333333;
  font-weight: 700;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
  line-height: 1.3;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}

hr {
  margin: 20px 0;
  border-color: #352323;
}

ol {
  list-style: decimal;
}

p:last-child {
  margin-bottom: 0;
}

/* Form */
label {
  color: #F5F7FB;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

*::-moz-selection {
  background: #1E4DFF;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #1E4DFF;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #1E4DFF;
  color: #fff;
  text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
  color: #111;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #111;
  font-size: 16px;
  opacity: 1;
}

/* Button */
.btn-theme {
  color: #fff;
  border-color: #1E4DFF;
  background: #1E4DFF;
}
.btn-theme:hover {
  background: #1E4DFF;
  color: #fff;
  border-color: #1E4DFF;
}

.btn-rounded {
  border-radius: 100% !important;
}

.btn-square {
  border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
  background: #F5F7FB;
}

.bg-white {
  background: #fff;
}

.bg-black {
  background: #000;
}

.bg-theme {
  background: #1E4DFF;
}

.bg-dark {
  background-color: #0B1020 !important;
}

.bg-off-white {
  background-color: #f7f7f7;
}

.bg-off-white-2 {
  background-color: #f1f8ff;
}

.bg-blue {
  background-color: #4c87ff !important;
}

.bg-yellow {
  background-color: #fea116 !important;
}

.bg-pink {
  background-color: #fc4557 !important;
}

.bg-egg-blue {
  background-color: #1cb5a3 !important;
}

.bg-purple {
  background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
  background: #F5F7FB;
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.theme-color {
  color: #1E4DFF;
}

/* Others Common Css Here :) */
.table-row {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

.separator {
  border-top: 1px solid #f2f2f2;
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  --bs-gutter-x: 30px;
}

.row {
  --bs-gutter-x: 30px;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.section-padding {
  padding: 120px 0;
}

body {
  overflow-x: clip;
}

/* ===================================
Preloader
=================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: 0.6s ease;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  width: 100%;
  max-width: 500px;
  padding: 20px;
  text-align: center;
}

.preloader-logo {
  width: 320px;
  max-width: 90%;
  margin-bottom: 50px;
}

.loading-bar {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
}

.loading-progress {
  position: relative;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00CFFF, #1E4DFF);
  animation: loading 2.8s ease infinite;
}

.plane {
  position: absolute;
  bottom: -15px;
  right: -5px;
  color: #1E4DFF;
  font-size: 40px;
}

.loading-text {
  display: inline-block;
  margin-top: 22px;
  color: #000;
  letter-spacing: 5px;
  font-size: 14px;
  font-weight: 500;
  animation: blink 1.5s infinite;
}

@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .preloader-logo {
    width: 220px;
    margin-bottom: 40px;
  }
  .loading-text {
    letter-spacing: 3px;
    font-size: 13px;
  }
}
/* ===================================
Navbar
=================================== */
.luxury-navbar {
  padding: 0;
  backdrop-filter: blur(50px);
  background: rgba(255, 255, 255, 0.5);
}
.luxury-navbar .navbar-brand {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}
.luxury-navbar .navbar-brand img {
  width: 100px;
}
.luxury-navbar .nav-link {
  color: #ffffff;
  margin: 0 14px;
  font-weight: 500;
}
@media (min-width: 768px) and (max-width: 991px) {
  .luxury-navbar .nav-link {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .luxury-navbar .nav-link {
    margin: 0;
  }
}
.luxury-navbar .navbar-toggler {
  color: #fff;
  font-size: 24px;
  box-shadow: none !important;
  border: 2px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .luxury-navbar .navbar-collapse {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .luxury-navbar .navbar-collapse {
    padding: 30px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .luxury-navbar .navbar-nav {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .luxury-navbar .navbar-nav {
    margin-bottom: 20px;
  }
}
.luxury-navbar .luxury-btn {
  padding: 10px 20px;
}
.luxury-navbar.sticky-header {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.15);
}
.luxury-navbar.sticky-header .nav-link {
  color: #0B1020;
}
.luxury-navbar.sticky-header .navbar-toggler {
  color: #0B1020;
  border: 2px solid #0B1020;
}

/* ===================================
Buttons
=================================== */
.luxury-btn {
  background: linear-gradient(135deg, #1E4DFF 0%, #00CFFF 100%);
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.4s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.luxury-btn:hover {
  transform: translateY(-4px);
}

.luxury-outline-btn {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.4s;
  backdrop-filter: blur(10px);
}
.luxury-outline-btn:hover {
  transform: translateY(-4px);
  color: #333333;
}

/* ===================================
Hero
=================================== */
.hero-section {
  padding-top: 160px;
  padding-bottom: 60px;
  position: relative;
  min-height: 100vh;
  background: url("../img/thumb/thumb-1.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 11, 25, 0.95), rgba(6, 11, 25, 0.55));
  overflow: hidden;
}

.hero-content {
  position: relative;
  max-width: 620px;
  width: 100%;
  z-index: 2;
}
.hero-content .hero-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.hero-content p {
  color: #C7D2FE;
  font-size: 18px;
  max-width: 650px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.glass-form {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.glass-form h4 {
  color: #fff;
  margin-bottom: 30px;
}
.glass-form label {
  color: #fff;
  margin-bottom: 10px;
}
.glass-form .form-control,
.glass-form .form-select {
  padding: 12px 20px;
  background: white;
  color: #000000;
  line-height: 1.5;
  height: 58px;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 16px;
}
.glass-form .form-control:focus,
.glass-form .form-select:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

.floating-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.blur-1 {
  width: 300px;
  height: 300px;
  background: #00cfff;
  top: -50px;
  left: -100px;
}

.blur-2 {
  width: 350px;
  height: 350px;
  background: #1E4DFF;
  bottom: -100px;
  right: -100px;
}

.footer-widget .footer-logo {
  margin-bottom: 20px;
}
.footer-widget .footer-logo img {
  width: 200px;
}
.footer-widget p {
  max-width: 80%;
}

/* ===================================
Section Heading
=================================== */
.section-heading {
  margin-bottom: 70px;
}
.section-heading span {
  color: #1E4DFF;
  font-weight: 600;
}
.section-heading h2 {
  font-size: 54px;
  font-weight: 700;
  margin-top: 16px;
}

/* ===================================
Packages
=================================== */
.packages-section {
  background: #f7faff;
}

.package-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
}
.package-card:hover {
  transform: translateY(-10px);
}

.package-image {
  height: 280px;
}
.package-image img {
  height: 100%;
  object-fit: cover;
}

.package-content {
  padding: 30px;
}

.package-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  color: #555;
}

.package-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

/* ===================================
Features
=================================== */
.feature-card {
  padding: 50px 40px;
  border-radius: 28px;
  background: #fff;
  text-align: center;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
}
.feature-card:hover {
  transform: translateY(-10px);
}
.feature-card i {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E4DFF 0%, #00CFFF 100%);
  color: #fff;
  font-size: 38px;
}
.feature-card h4 {
  margin-bottom: 16px;
}

/* ===================================
CTA
=================================== */
.cta-section {
  padding: 120px 0;
  background: #0B1020;
}

.cta-box {
  padding: 100px 50px;
  border-radius: 28px;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.cta-box h2 {
  font-size: 64px;
  color: #fff;
  font-weight: 700;
  margin: 20px 0;
}
.cta-box p {
  color: #E5E7EB;
  margin-bottom: 40px;
}
.cta-box span {
  color: #fff;
  opacity: 0.9;
}

.luxury-light-btn {
  color: #333333 !important;
  padding: 16px 32px;
  border-radius: 50px;
  background: #fff;
  font-weight: 600;
}
.luxury-light-btn:hover {
  background: #fff;
  color: #333333;
  transform: translateY(-4px);
}

/* ===================================
Footer
=================================== */
.footer-section {
  background: #070B17;
  color: #D1D5DB;
  padding-top: 120px;
}
.footer-section h3 > a, .footer-section h5, .footer-section h3 {
  color: #fff;
  margin-bottom: 24px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section li {
  margin-bottom: 12px;
}
.footer-section a {
  color: #CBD5E1;
}

.newsletter-form {
  display: flex;
  overflow: hidden;
  border-radius: 50px;
  background: #111827;
  color: #fff;
}
.newsletter-form > p {
  display: flex;
  margin-bottom: 0;
}
.newsletter-form input {
  width: 100%;
  border: none;
  background: none;
  padding: 16px 20px;
  color: #fff;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3137254902);
}
.newsletter-form .button {
  width: 70px;
  border: none;
  background: linear-gradient(135deg, #1E4DFF 0%, #00CFFF 100%);
  color: #fff;
}

.footer-bottom {
  margin-top: 80px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

/* =========================================
Popup login
========================================= */
.login-modal {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.login-modal .modal-body {
  padding: 2rem;
}

.login-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 2rem 1rem;
  height: 100%;
  transition: all 0.3s ease;
}
.login-card:hover {
  transform: translateY(-6px);
  border-color: var(--bs-primary);
  box-shadow: 0 15px 35px rgba(13, 110, 253, 0.12);
}
.login-card:hover .login-card__icon {
  background: var(--bs-primary);
  color: #fff;
  transform: scale(1.08);
}
.login-card__icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  transition: 0.3s;
}
.login-card__icon i {
  font-size: 34px;
}
.login-card h6 {
  margin: 0;
  color: #212529;
  font-weight: 700;
  font-size: 1rem;
}
.login-card span {
  color: #6c757d;
  font-size: 0.9rem;
}

@media (max-width: 576px) {
  .login-modal .modal-body {
    padding: 1.5rem;
  }
  .login-card {
    padding: 1.5rem 0.75rem;
  }
  .login-card__icon {
    width: 60px;
    height: 60px;
  }
  .login-card__icon i {
    font-size: 28px;
  }
  .login-card h6 {
    font-size: 0.95rem;
  }
}
/* =========================================
HAPPY TRAVELERS
========================================= */
.fp-happy-travelers-section {
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}

.fp-travelers-slider-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
}

.fp-travelers-track {
  display: flex;
  width: max-content;
  animation: fpTravelSlide 25s linear infinite;
}

.fp-traveler-card {
  width: 360px;
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  margin-right: 30px;
}
.fp-traveler-card:hover {
  transform: translateY(-10px);
}
.fp-traveler-card p {
  color: #6b7280;
  line-height: 1.7;
}

.fp-traveler-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.fp-traveler-top img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}
.fp-traveler-top h5 {
  margin-bottom: 4px;
  font-weight: 700;
}
.fp-traveler-top span {
  color: #1E4DFF;
  font-size: 14px;
}

.fp-traveler-rating {
  display: flex;
  gap: 6px;
  color: #ffc107;
  margin-bottom: 18px;
}

@keyframes fpTravelSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* =========================================
SEAMLESS ADVENTURE
========================================= */
.fp-seamless-adventure-section {
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}

.fp-seamless-images {
  position: relative;
  padding-right: 80px;
}

.fp-main-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}
.fp-main-image img {
  height: 650px;
  object-fit: cover;
}

.fp-floating-image {
  position: absolute;
  right: 0;
  bottom: 50px;
  width: 260px;
  border-radius: 28px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}
.fp-floating-image img {
  height: 320px;
  object-fit: cover;
}

.fp-seamless-content span {
  color: #1E4DFF;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}
.fp-seamless-content h2 {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 28px;
}
.fp-seamless-content p {
  color: #6b7280;
  line-height: 1.9;
  margin-bottom: 40px;
}

.fp-seamless-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.fp-seamless-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.fp-seamless-feature i {
  width: 65px;
  height: 65px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.fp-seamless-feature h5 {
  font-weight: 700;
  margin-bottom: 8px;
}
.fp-seamless-feature p {
  margin: 0;
}

/* =========================================
BETTER TRAVEL
========================================= */
.fp-better-travel-section {
  padding: 120px 0;
  background: #f7faff;
}

.fp-better-card {
  background: #fff;
  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
  transition: 0.4s;
  height: 100%;
}
.fp-better-card:hover {
  transform: translateY(-10px);
}
.fp-better-card h4 {
  font-weight: 700;
  margin-bottom: 18px;
}
.fp-better-card p {
  color: #6b7280;
  line-height: 1.8;
}

.fp-better-icon {
  width: 90px;
  height: 90px;
  border-radius: 28px;
  margin: auto;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-better-icon i {
  color: #fff;
  font-size: 38px;
}

/* =========================================
POPULAR DESTINATION
========================================= */
.fp-popular-destination-section {
  padding: 120px 0;
  background: #f7faff;
}

.fp-destination-card {
  position: relative;
  border-radius: 30px;
  z-index: 2;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
}
.fp-destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s;
}
.fp-destination-card::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
}
.fp-destination-card:hover img {
  transform: scale(1.1);
}

.fp-destination-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 2;
  color: #fff;
}
.fp-destination-overlay span {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  margin-bottom: 18px;
  font-size: 14px;
}
.fp-destination-overlay h4 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.fp-destination-overlay h4 a {
  color: #fff;
}

.fp-destination-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fp-destination-bottom h5 {
  font-size: 28px;
  color: #00CFFF;
  margin: 0;
}

/* ===================================
Responsive
=================================== */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 52px;
  }
  .section-heading {
    margin-bottom: 50px;
  }
  .section-heading h2 {
    font-size: 42px;
  }
  .glass-form {
    margin-top: 60px;
  }
  .fp-seamless-content h2 {
    font-size: 36px;
  }
  .fp-main-image img {
    height: 500px;
  }
  .fp-destination-card {
    height: 420px;
  }
  .fp-happy-travelers-section,
  .fp-seamless-adventure-section,
  .fp-better-travel-section,
  .fp-popular-destination-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 80px 0;
  }
  .hero-content h1 {
    font-size: 42px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .section-heading h2 {
    font-size: 34px;
  }
  .cta-box {
    padding: 70px 30px;
  }
  .cta-box h2 {
    font-size: 42px;
  }
  .fp-happy-travelers-section,
  .fp-seamless-adventure-section,
  .fp-better-travel-section,
  .fp-popular-destination-section {
    padding: 40px 0;
  }
  .fp-seamless-content h2 {
    font-size: 24px;
  }
  .fp-traveler-card {
    width: 300px;
  }
  .fp-main-image img {
    height: 420px;
  }
  .fp-floating-image {
    width: 180px;
    height: 220px;
    object-fit: cover;
    bottom: 20px;
  }
  .fp-destination-card {
    height: 380px;
  }
  .fp-destination-overlay h4 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 36px;
  }
  .glass-form {
    padding: 28px;
  }
}
.title-slide .word {
  white-space: nowrap;
}

[class*=slide-],
[class*=grow-],
[class*=fade-],
.title-slide {
  opacity: 0;
}

.title-slide {
  opacity: 1;
  visibility: visible;
}

.char {
  display: inline-block;
}

.tour-details-banner {
  padding-top: 300px;
  padding-bottom: 200px;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .tour-details-banner {
    padding-top: 200px;
    padding-bottom: 60px;
  }
}
.tour-details-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.tour-banner-content h1 {
  font-size: 55px;
  font-weight: 600;
  text-transform: none;
  line-height: 1.3em;
  letter-spacing: -1.7px;
  color: #FFFFFF;
}
@media (min-width: 768px) and (max-width: 991px) {
  .tour-banner-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .tour-banner-content h1 {
    font-size: 32px;
  }
}

.tour-breadcrumb {
  font-size: 16px;
  color: #fff;
}
.tour-breadcrumb a {
  color: #fff;
}
.tour-breadcrumb .current {
  color: rgba(255, 255, 255, 0.7);
}

.tour-details-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .tour-details-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.tour-content {
  color: #4b5563;
  line-height: 1.8;
}
.tour-content h1,
.tour-content h2,
.tour-content h3,
.tour-content h4,
.tour-content h5,
.tour-content h6 {
  color: #111827;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.tour-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.tour-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.tour-content h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}
.tour-content h4 {
  font-size: 1.5rem;
}
.tour-content h5 {
  font-size: 1.25rem;
}
.tour-content h6 {
  font-size: 1.125rem;
}
.tour-content p {
  margin-bottom: 1.5rem;
}
.tour-content a {
  color: #1E4DFF;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}
.tour-content a:hover {
  color: #fff;
}
.tour-content ul,
.tour-content ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}
.tour-content ul li,
.tour-content ol li {
  margin-bottom: 0.75rem;
}
.tour-content ul li::marker,
.tour-content ol li::marker {
  color: #1E4DFF;
}
.tour-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 5px solid #1E4DFF;
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.05), rgba(0, 207, 255, 0.05));
  border-radius: 12px;
}
.tour-content blockquote p {
  margin-bottom: 0;
  font-size: 1.1rem;
  font-style: italic;
}
.tour-content blockquote cite {
  display: block;
  margin-top: 1rem;
  color: #1E4DFF;
  font-weight: 600;
}
.tour-content img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 2rem 0;
}
.tour-content figure {
  margin: 2rem 0;
}
.tour-content figure figcaption {
  margin-top: 0.75rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
}
.tour-content table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
}
.tour-content table th {
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  color: white;
  font-weight: 600;
}
.tour-content table th,
.tour-content table td {
  padding: 14px 18px;
  border: 1px solid #e5e7eb;
}
.tour-content table tr:nth-child(even) {
  background: #f8fafc;
}
.tour-content hr {
  margin: 3rem 0;
  border: 0;
  height: 2px;
  background: linear-gradient(90deg, #1E4DFF, #00CFFF);
}
.tour-content pre {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 16px;
  overflow-x: auto;
  background: #0f172a;
  color: #fff;
}
.tour-content code {
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(30, 77, 255, 0.08);
  color: #fff;
}
.tour-content .wp-block-button__link,
.tour-content button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  transition: 0.3s;
}
.tour-content .wp-block-button__link:hover,
.tour-content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(30, 77, 255, 0.25);
}
.tour-content iframe,
.tour-content video {
  width: 100%;
  border: 0;
  border-radius: 16px;
  margin: 2rem 0;
}
.tour-content strong {
  color: #111827;
}
.tour-content mark {
  background: rgba(0, 207, 255, 0.2);
  color: #111827;
  padding: 2px 6px;
  border-radius: 4px;
}

.tour-included {
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.06), rgba(0, 207, 255, 0.06));
  border: 1px solid rgba(30, 77, 255, 0.12);
}
.tour-included h3 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}
.tour-included ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tour-included ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin-bottom: 0;
  background: #fff;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  color: #374151;
  font-weight: 500;
  transition: all 0.3s ease;
}
.tour-included ul li:last-child {
  margin-bottom: 0;
}
.tour-included ul li:hover {
  transform: translateX(5px);
  border-color: rgba(30, 77, 255, 0.3);
  box-shadow: 0 10px 30px rgba(30, 77, 255, 0.08);
}
.tour-included ul li i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
}

.tour-excluded {
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(248, 113, 113, 0.08));
  border: 1px solid rgba(239, 68, 68, 0.12);
}
.tour-excluded h3 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}
.tour-excluded ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tour-excluded ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin-bottom: 0;
  background: #fff;
  border: 1px solid #fee2e2;
  border-radius: 12px;
  color: #374151;
  font-weight: 500;
  transition: all 0.3s ease;
}
.tour-excluded ul li:last-child {
  margin-bottom: 0;
}
.tour-excluded ul li:hover {
  transform: translateX(5px);
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.08);
}
.tour-excluded ul li i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.tour-sidebar {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tour-booking-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.08);
}
.tour-booking-card .card-body {
  padding: 24px;
}
.tour-booking-card .tour-price {
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid #edf2f7;
}
.tour-booking-card .tour-price small {
  display: block;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.tour-booking-card .tour-price h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tour-booking-card .tour-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #edf2f7;
}
.tour-booking-card .tour-meta:last-of-type {
  margin-bottom: 24px;
}
.tour-booking-card .tour-meta span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-weight: 500;
}
.tour-booking-card .tour-meta span i {
  color: #1E4DFF;
  font-size: 20px;
}
.tour-booking-card .tour-meta strong {
  color: #111827;
  font-weight: 700;
}
.tour-booking-card .luxury-btn {
  height: 58px;
  border: 0;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  transition: all 0.3s ease;
}
.tour-booking-card .luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(30, 77, 255, 0.25);
}

.tour-special-note {
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(251, 191, 36, 0.15));
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.tour-special-note__content {
  flex: 1;
}
.tour-special-note__content h4 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 22px;
  font-weight: 700;
}
.tour-special-note__content p {
  margin: 0 0 12px;
  color: #4b5563;
  line-height: 1.8;
}
.tour-special-note__content p:last-child {
  margin-bottom: 0;
}
.tour-special-note__content ul,
.tour-special-note__content ol {
  margin: 15px 0;
  padding-left: 20px;
}
.tour-special-note__content ul li,
.tour-special-note__content ol li {
  margin-bottom: 8px;
}

.tour-details-title h2 {
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 700;
  color: #111827;
}

.tour-timeline {
  position: relative;
}
.tour-timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #1E4DFF, #00CFFF);
  border-radius: 50px;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 30px;
  padding-bottom: 40px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  box-shadow: 0 10px 25px rgba(30, 77, 255, 0.25);
}

.timeline-content {
  flex: 1;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #edf2f7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.timeline-content h4 {
  margin-bottom: 12px;
  color: #111827;
  font-size: 22px;
  font-weight: 700;
}
.timeline-content p:last-child {
  margin-bottom: 0;
}
.timeline-content .description {
  color: #64748b;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .tour-timeline::before {
    left: 20px;
  }
  .timeline-item {
    gap: 20px;
  }
  .timeline-marker {
    width: 42px;
    height: 42px;
    font-size: 11px;
  }
  .timeline-content {
    padding: 20px;
  }
}
.tour-gallery-slider {
  position: relative;
}
.tour-gallery-slider .swiper-slide {
  overflow: hidden;
  border-radius: 16px;
  opacity: 1;
  height: 500px;
}
@media (max-width: 767px) {
  .tour-gallery-slider .swiper-slide {
    height: 350px;
  }
}
.tour-gallery-slider img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.tour-gallery-slider .swiper-slide:hover img {
  transform: scale(1.05);
}
.tour-gallery-slider .swiper-button-prev,
.tour-gallery-slider .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
@media (max-width: 767px) {
  .tour-gallery-slider .swiper-button-prev,
  .tour-gallery-slider .swiper-button-next {
    top: 45%;
    width: 40px;
    height: 40px;
  }
}
.tour-gallery-slider .swiper-button-prev::after,
.tour-gallery-slider .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
  color: #1E4DFF;
}
@media (max-width: 767px) {
  .tour-gallery-slider .swiper-button-prev::after,
  .tour-gallery-slider .swiper-button-next::after {
    font-size: 16px;
  }
}
.tour-gallery-slider .swiper-pagination {
  position: relative;
  margin-top: 30px;
}
.tour-gallery-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #d1d5db;
}
.tour-gallery-slider .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 50px;
  background: linear-gradient(90deg, #1E4DFF, #00CFFF);
}

#tourBookingModal .modal-dialog {
  max-width: 700px;
}
#tourBookingModal .modal-content {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}
#tourBookingModal .modal-header {
  padding: 24px;
  border-bottom: 1px solid #edf2f7;
  align-items: flex-start;
}
#tourBookingModal .modal-header h3 {
  margin: 0 0 10px;
  font-size: 38px;
  font-weight: 800;
  color: #111827;
}
#tourBookingModal .modal-header p {
  margin-bottom: 6px;
  color: #4b5563;
}
#tourBookingModal .modal-header p strong {
  color: #111827;
}
#tourBookingModal .modal-header .btn-close {
  margin: 0;
  opacity: 1;
}
#tourBookingModal .modal-body {
  padding: 24px;
}
#tourBookingModal .wpcf7 form p {
  margin-bottom: 20px;
}
#tourBookingModal .wpcf7 input:not([type=submit]),
#tourBookingModal .wpcf7 input:not([type=checkbox]),
#tourBookingModal .wpcf7 input:not([type=radio]),
#tourBookingModal .wpcf7 textarea,
#tourBookingModal .wpcf7 select {
  width: 100%;
  height: 58px;
  padding: 0 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
  transition: 0.3s;
}
#tourBookingModal .wpcf7 input:not([type=submit]):focus,
#tourBookingModal .wpcf7 input:not([type=checkbox]):focus,
#tourBookingModal .wpcf7 input:not([type=radio]):focus,
#tourBookingModal .wpcf7 textarea:focus,
#tourBookingModal .wpcf7 select:focus {
  outline: none;
  border-color: #1E4DFF;
  box-shadow: 0 0 0 4px rgba(30, 77, 255, 0.08);
}
#tourBookingModal .wpcf7 textarea {
  height: 160px;
  padding: 18px 20px;
  resize: vertical;
}
#tourBookingModal .wpcf7 input[type=submit] {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  transition: 0.3s;
}
#tourBookingModal .wpcf7 input[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(30, 77, 255, 0.25);
}
#tourBookingModal .wpcf7 .wpcf7-spinner {
  position: absolute;
}
#tourBookingModal .wpcf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 13px;
}

.modal-backdrop.show {
  opacity: 0.75;
  backdrop-filter: blur(6px);
}

.navigation.pagination {
  margin-top: 50px;
}
.navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.navigation.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.navigation.pagination .page-numbers:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 77, 255, 0.2);
}
.navigation.pagination .page-numbers.current {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  box-shadow: 0 10px 25px rgba(30, 77, 255, 0.2);
}
.navigation.pagination .prev,
.navigation.pagination .next {
  font-size: 20px;
  font-weight: 700;
}

.blog-archive-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .blog-archive-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.blog-post {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}
.blog-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.blog-post:hover .thumb img {
  transform: scale(1.08);
}
.blog-post .thumb {
  overflow: hidden;
}
.blog-post .thumb a {
  display: block;
}
.blog-post .thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.6s ease;
}
.blog-post .title {
  padding: 24px 24px 12px;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}
.blog-post .title a {
  color: #111827;
  text-decoration: none;
  transition: 0.3s;
}
.blog-post .title a:hover {
  color: #1E4DFF;
}
.blog-post .content {
  flex: 1;
  padding: 0 24px;
}
.blog-post .content p {
  margin: 0;
  color: #64748b;
  line-height: 1.8;
}
.blog-post .blog-btn {
  margin: 24px;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  transition: 0.3s;
}
.blog-post .blog-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(30, 77, 255, 0.25);
}

.blog-post-details {
  color: #4b5563;
  line-height: 1.8;
}
.blog-post-details h1,
.blog-post-details h2,
.blog-post-details h3,
.blog-post-details h4,
.blog-post-details h5,
.blog-post-details h6 {
  color: #111827;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.blog-post-details h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.blog-post-details h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.blog-post-details h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}
.blog-post-details h4 {
  font-size: 1.5rem;
}
.blog-post-details h5 {
  font-size: 1.25rem;
}
.blog-post-details h6 {
  font-size: 1.125rem;
}
.blog-post-details p {
  margin-bottom: 1.5rem;
}
.blog-post-details a {
  color: #1E4DFF;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}
.blog-post-details a:hover {
  color: #fff;
}
.blog-post-details ul,
.blog-post-details ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}
.blog-post-details ul li,
.blog-post-details ol li {
  margin-bottom: 0.75rem;
}
.blog-post-details ul li::marker,
.blog-post-details ol li::marker {
  color: #1E4DFF;
}
.blog-post-details blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 5px solid #1E4DFF;
  background: linear-gradient(135deg, rgba(30, 77, 255, 0.05), rgba(0, 207, 255, 0.05));
  border-radius: 12px;
}
.blog-post-details blockquote p {
  margin-bottom: 0;
  font-size: 1.1rem;
  font-style: italic;
}
.blog-post-details blockquote cite {
  display: block;
  margin-top: 1rem;
  color: #1E4DFF;
  font-weight: 600;
}
.blog-post-details img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 2rem 0;
}
.blog-post-details figure {
  margin: 2rem 0;
}
.blog-post-details figure figcaption {
  margin-top: 0.75rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
}
.blog-post-details table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
}
.blog-post-details table th {
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  color: white;
  font-weight: 600;
}
.blog-post-details table th,
.blog-post-details table td {
  padding: 14px 18px;
  border: 1px solid #e5e7eb;
}
.blog-post-details table tr:nth-child(even) {
  background: #f8fafc;
}
.blog-post-details hr {
  margin: 3rem 0;
  border: 0;
  height: 2px;
  background: linear-gradient(90deg, #1E4DFF, #00CFFF);
}
.blog-post-details pre {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 16px;
  overflow-x: auto;
  background: #0f172a;
  color: #fff;
}
.blog-post-details code {
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(30, 77, 255, 0.08);
  color: #fff;
}
.blog-post-details .wp-block-button__link,
.blog-post-details button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  transition: 0.3s;
}
.blog-post-details .wp-block-button__link:hover,
.blog-post-details button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(30, 77, 255, 0.25);
}
.blog-post-details iframe,
.blog-post-details video {
  width: 100%;
  border: 0;
  border-radius: 16px;
  margin: 2rem 0;
}
.blog-post-details strong {
  color: #111827;
}
.blog-post-details mark {
  background: rgba(0, 207, 255, 0.2);
  color: #111827;
  padding: 2px 6px;
  border-radius: 4px;
}

.comment-respond {
  margin-top: 60px;
  padding: 40px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(30, 77, 255, 0.08);
  box-shadow: 0 20px 50px rgba(30, 77, 255, 0.08);
}
.comment-respond .comment-reply-title {
  margin-bottom: 25px;
  font-size: 32px;
  font-weight: 700;
  color: #111827;
}
.comment-respond .comment-form label {
  color: #111827;
  font-weight: 600;
}
.comment-respond .comment-form input[type=text],
.comment-respond .comment-form input[type=email],
.comment-respond .comment-form input[type=url],
.comment-respond .comment-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  transition: 0.3s;
}
.comment-respond .comment-form input[type=text]:focus,
.comment-respond .comment-form input[type=email]:focus,
.comment-respond .comment-form input[type=url]:focus,
.comment-respond .comment-form textarea:focus {
  outline: none;
  border-color: #1E4DFF;
  box-shadow: 0 0 0 4px rgba(30, 77, 255, 0.08);
}
.comment-respond .comment-form textarea {
  min-height: 180px;
}
.comment-respond .comment-form .submit {
  border: 0;
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  transition: 0.3s;
}
.comment-respond .comment-form .submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(30, 77, 255, 0.25);
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 50px;
}
.comment-list li.comment {
  margin-bottom: 24px;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(30, 77, 255, 0.08);
  box-shadow: 0 10px 30px rgba(30, 77, 255, 0.05);
}
.comment-list li.comment .comment-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.comment-list li.comment .comment-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid rgba(30, 77, 255, 0.1);
}
.comment-list li.comment .comment-author .fn {
  color: #111827;
  font-weight: 700;
  font-style: normal;
}
.comment-list li.comment .comment-metadata {
  margin-top: 6px;
}
.comment-list li.comment .comment-metadata a {
  color: #64748b;
  text-decoration: none;
}
.comment-list li.comment .comment-metadata a:hover {
  color: #1E4DFF;
}
.comment-list li.comment .comment-content {
  margin-top: 18px;
  color: #4b5563;
  line-height: 1.8;
}
.comment-list li.comment .reply {
  margin-top: 20px;
}
.comment-list li.comment .reply a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1E4DFF;
  font-weight: 600;
  text-decoration: none;
}
.comment-list li.comment .reply a:hover {
  color: #00CFFF;
}
.comment-list li.comment .children {
  margin-top: 25px;
  margin-left: 40px;
  padding-left: 25px;
  border-left: 3px solid rgba(30, 77, 255, 0.15);
}

.commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.commentlist .comment {
  margin-bottom: 24px;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(30, 77, 255, 0.08);
  box-shadow: 0 10px 30px rgba(30, 77, 255, 0.05);
}
.commentlist .comment-body {
  position: relative;
}
.commentlist .comment-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.commentlist .comment-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(30, 77, 255, 0.1);
}
.commentlist .comment-author .fn {
  color: #111827;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
}
.commentlist .comment-author .says {
  display: none;
}
.commentlist .comment-meta {
  margin-bottom: 15px;
}
.commentlist .comment-meta a {
  color: #64748b;
  font-size: 14px;
  text-decoration: none;
}
.commentlist .comment-meta a:hover {
  color: #1E4DFF;
}
.commentlist .comment-content {
  color: #4b5563;
  line-height: 1.8;
}
.commentlist .comment-content p:last-child {
  margin-bottom: 0;
}
.commentlist .reply {
  margin-top: 20px;
}
.commentlist .reply .comment-reply-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 8px;
  color: #1E4DFF;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(30, 77, 255, 0.08);
  transition: 0.3s;
}
.commentlist .reply .comment-reply-link:hover {
  color: #fff;
  background: #1E4DFF;
}
.commentlist .children {
  list-style: none;
  margin-top: 25px;
  margin-left: 40px;
  padding-left: 25px;
  border-left: 3px solid rgba(30, 77, 255, 0.12);
}

@media (max-width: 767px) {
  .commentlist .comment {
    padding: 20px;
  }
  .commentlist .children {
    margin-left: 15px;
    padding-left: 15px;
  }
  .commentlist .comment-author img {
    width: 50px;
    height: 50px;
  }
}
.post-navigation {
  margin: 60px 0;
}
.post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  display: flex;
  flex-direction: column;
  padding: 24px;
  height: 100%;
  text-decoration: none;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(30, 77, 255, 0.08);
  box-shadow: 0 10px 30px rgba(30, 77, 255, 0.05);
  transition: 0.3s ease;
}
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(30, 77, 255, 0.12);
  border-color: rgba(30, 77, 255, 0.2);
}
.post-navigation .nav-previous a {
  align-items: flex-start;
}
.post-navigation .nav-previous a::before {
  content: "← Previous Post";
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1E4DFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.post-navigation .nav-next a {
  align-items: flex-end;
  text-align: right;
}
.post-navigation .nav-next a::before {
  content: "Next Post →";
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1E4DFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.post-navigation .post-title,
.post-navigation .nav-title {
  color: #111827;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }
  .post-navigation .nav-next a {
    align-items: flex-start;
    text-align: left;
  }
  .post-navigation .nav-next a::before {
    content: "Next Post";
  }
}
.travel-search-box {
  position: relative;
  z-index: 5;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 26px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .travel-search-box {
    margin-top: 0;
  }
}
.travel-search-box .tab-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
}

/* Tabs */
.search-tabs {
  gap: 8px;
  margin-bottom: -20px;
  position: relative;
  z-index: 3;
}
.search-tabs .nav-link {
  border: none;
  background: #F1F5F9;
  color: #1E293B;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.search-tabs .nav-link i {
  font-size: 14px;
}
.search-tabs .nav-link:hover {
  background: #E2E8F0;
}
.search-tabs .nav-link.active {
  background: linear-gradient(135deg, #1E4DFF 0%, #00CFFF 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 12px 30px rgba(30, 77, 255, 0.25);
}

/* Search Form */
.search-input-wrap {
  display: flex;
  align-items: center;
  max-width: 820px;
  margin: auto;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
}
.search-input-wrap .search-icon {
  width: 54px;
  text-align: center;
  color: #CBD5E1;
  flex-shrink: 0;
}
.search-input-wrap .form-control {
  border: none;
  box-shadow: none;
  background: transparent;
  height: 64px;
  padding: 0;
  font-size: 18px;
}
.search-input-wrap .form-control:focus {
  box-shadow: none;
  border: none;
}

.search-btn {
  width: 64px;
  height: 64px;
  border: none;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1E4DFF 0%, #00CFFF 100%);
  color: #fff;
  border-radius: 12px;
}

.coming-soon {
  text-align: center;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 991px) {
  .travel-search-box {
    border-radius: 16px;
    padding: 14px;
  }
  .travel-search-box .tab-content {
    min-height: 100px;
    border-radius: 12px;
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .search-input-wrap .search-icon {
    width: 44px;
  }
  .search-input-wrap .form-control {
    font-size: 14px;
    height: 48px;
  }
  .search-btn {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 575px) {
  .search-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start !important;
    overflow-x: auto;
    padding-bottom: 10px;
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #1E4DFF #e5e7eb;
  }
  .search-tabs::-webkit-scrollbar {
    height: 6px;
  }
  .search-tabs::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 50px;
  }
  .search-tabs::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1E4DFF 0%, #00CFFF 100%);
    border-radius: 50px;
  }
}
.contact-form-wrapper {
  padding: 40px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(30, 77, 255, 0.08);
  box-shadow: 0 20px 60px rgba(30, 77, 255, 0.08);
}
.contact-form-wrapper .wpcf7 p {
  margin-bottom: 0;
}
.contact-form-wrapper .wpcf7 label {
  display: block;
  margin-bottom: 10px;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
}
.contact-form-wrapper .wpcf7 label span {
  color: #ef4444;
}
.contact-form-wrapper .wpcf7 .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}
.contact-form-wrapper .wpcf7 input:not([type=submit]),
.contact-form-wrapper .wpcf7 select,
.contact-form-wrapper .wpcf7 textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  color: #111827;
  transition: all 0.3s ease;
}
.contact-form-wrapper .wpcf7 input:not([type=submit]):focus,
.contact-form-wrapper .wpcf7 select:focus,
.contact-form-wrapper .wpcf7 textarea:focus {
  outline: none;
  border-color: #1E4DFF;
  box-shadow: 0 0 0 4px rgba(30, 77, 255, 0.08);
}
.contact-form-wrapper .wpcf7 input:not([type=submit]),
.contact-form-wrapper .wpcf7 select {
  height: 62px;
  padding: 0 20px;
}
.contact-form-wrapper .wpcf7 textarea {
  min-height: 180px;
  padding: 20px;
  resize: vertical;
}
.contact-form-wrapper .wpcf7 select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%2364748b' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 18px;
}
.contact-form-wrapper .wpcf7 input::placeholder,
.contact-form-wrapper .wpcf7 textarea::placeholder {
  color: #94a3b8;
}
.contact-form-wrapper .wpcf7 .wpcf7-submit {
  width: 100%;
  height: 62px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  transition: 0.3s ease;
}
.contact-form-wrapper .wpcf7 .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(30, 77, 255, 0.25);
}
.contact-form-wrapper .wpcf7 .wpcf7-spinner {
  position: absolute;
  margin-top: 18px;
}
.contact-form-wrapper .wpcf7 .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 13px;
  color: #ef4444;
}
.contact-form-wrapper .wpcf7 .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 14px;
}
.contact-form-wrapper .wpcf7 .wpcf7-mail-sent-ok {
  color: #166534;
  background: #dcfce7;
}

@media (max-width: 767px) {
  .contact-form-wrapper {
    padding: 24px;
  }
}
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.error-404 .container {
  max-width: 700px;
}
.error-404 h1 {
  margin: 0;
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.error-404 h2 {
  margin: 20px 0 15px;
  color: #111827;
  font-size: 42px;
  font-weight: 800;
}
.error-404 p {
  max-width: 550px;
  margin: 0 auto 35px;
  color: #64748b;
  font-size: 18px;
  line-height: 1.8;
}
.error-404 form {
  max-width: 550px;
  margin: 0 auto 25px;
  display: flex;
  gap: 12px;
}
.error-404 form input[type=search] {
  flex: 1;
  height: 60px;
  padding: 0 20px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
}
.error-404 form input[type=search]:focus {
  outline: none;
  border-color: #1E4DFF;
  box-shadow: 0 0 0 4px rgba(30, 77, 255, 0.08);
}
.error-404 form button {
  height: 60px;
  padding: 0 28px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  transition: 0.3s;
}
.error-404 form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(30, 77, 255, 0.25);
}
.error-404 .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 32px;
  border: 0;
  border-radius: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  transition: 0.3s;
}
.error-404 .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(30, 77, 255, 0.25);
}

@media (max-width: 767px) {
  .error-404 h2 {
    font-size: 30px;
  }
  .error-404 p {
    font-size: 16px;
  }
  .error-404 form {
    flex-direction: column;
  }
  .error-404 form button,
  .error-404 form input {
    width: 100%;
  }
}
.search-error h2 {
  margin: 20px 0 15px;
  color: #111827;
  font-size: 42px;
  font-weight: 800;
  text-align: center;
}
.search-error form {
  max-width: 550px;
  margin: 0 auto 25px;
  display: flex;
  gap: 12px;
}
.search-error form input[type=search] {
  flex: 1;
  height: 60px;
  padding: 0 20px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
}
.search-error form input[type=search]:focus {
  outline: none;
  border-color: #1E4DFF;
  box-shadow: 0 0 0 4px rgba(30, 77, 255, 0.08);
}
.search-error form button {
  height: 60px;
  padding: 0 28px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  transition: 0.3s;
}
.search-error form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(30, 77, 255, 0.25);
}
.search-error .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 32px;
  border: 0;
  border-radius: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  transition: 0.3s;
}
.search-error .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(30, 77, 255, 0.25);
}

.search-input-wrap {
  position: relative;
}
.search-input-wrap .tour-search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  z-index: 999;
  display: none;
  max-height: 400px;
  overflow-y: auto;
}
.search-input-wrap .tour-search-results.active {
  display: block;
}
.search-input-wrap .tour-search-results .tour-search-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.search-input-wrap .tour-search-results .tour-search-item:hover {
  background: #f8f8f8;
}
.search-input-wrap .tour-search-results .tour-search-item img {
  width: 70px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .search-input-wrap .tour-search-results .tour-search-item img {
    width: 50px;
    height: 40px;
  }
}
.search-input-wrap .tour-search-results .tour-search-item h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .search-input-wrap .tour-search-results .tour-search-item h6 {
    font-size: 14px;
  }
}
.search-input-wrap .tour-search-results .tour-search-item p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #666;
}

.tour-comments {
  margin-top: 60px;
}
.tour-comments .review-list {
  display: grid;
  gap: 24px;
}
.tour-comments .review-item {
  position: relative;
  padding: 30px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(30, 77, 255, 0.08);
  box-shadow: 0 10px 30px rgba(30, 77, 255, 0.05);
  transition: 0.3s ease;
}
.tour-comments .review-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(30, 77, 255, 0.1);
}
.tour-comments .review-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 4px solid rgba(30, 77, 255, 0.1);
}
.tour-comments .review-item h5 {
  margin-bottom: 8px;
  color: #111827;
  font-size: 20px;
  font-weight: 700;
}
.tour-comments .review-item .rating {
  margin-bottom: 15px;
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}
.tour-comments .review-item p {
  margin: 0;
  color: #64748b;
  line-height: 1.8;
}
.tour-comments .alert {
  margin-top: 30px;
  padding: 18px 22px;
  border: 0;
  border-radius: 16px;
  font-weight: 500;
}
.tour-comments .alert-success {
  color: #166534;
  background: #dcfce7;
  border-left: 4px solid #22c55e;
}
.tour-comments .alert-warning {
  color: #92400e;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.15));
  border-left: 5px solid #f59e0b;
}
.tour-comments .alert-warning a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 22px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  transition: 0.3s ease;
  margin-left: 10px;
}
.tour-comments .alert-warning a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(30, 77, 255, 0.2);
}

.tour-review-form {
  padding: 35px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(30, 77, 255, 0.08);
  box-shadow: 0 15px 40px rgba(30, 77, 255, 0.06);
}
.tour-review-form .mb-3 {
  margin-bottom: 24px !important;
}
.tour-review-form label {
  display: block;
  margin-bottom: 10px;
  color: #111827;
  font-size: 15px;
  font-weight: 600;
}
.tour-review-form select,
.tour-review-form textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  color: #111827;
  transition: all 0.3s ease;
}
.tour-review-form select:focus,
.tour-review-form textarea:focus {
  outline: none;
  border-color: #1E4DFF;
  box-shadow: 0 0 0 4px rgba(30, 77, 255, 0.08);
}
.tour-review-form select {
  height: 60px;
  padding: 0 20px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%2364748b' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 18px;
}
.tour-review-form textarea {
  min-height: 180px;
  padding: 20px;
  resize: vertical;
}
.tour-review-form .btn-primary {
  height: 58px;
  padding: 0 32px;
  border: 0;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  transition: all 0.3s ease;
}
.tour-review-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(30, 77, 255, 0.25);
}

.review-form-title {
  margin-bottom: 25px;
  color: #111827;
  font-size: 28px;
  font-weight: 700;
}

#review-message p {
  margin-top: 30px;
  padding: 18px 22px;
  border: 0;
  border-radius: 16px;
  font-weight: 500;
  color: #166534;
  background: #dcfce7;
  border-left: 4px solid #22c55e;
}

button.delete-review-btn.luxury-btn {
  padding: 8px 16px;
  background: linear-gradient(135deg, #dc3545 0%, #78373d 100%);
  font-size: 12px;
  margin-top: 20px;
}

.tour-sidebar-widget {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.15);
}
.tour-sidebar-widget h3 {
  background: #2563eb;
  color: #fff;
  margin: 0;
  padding: 20px;
  font-size: 28px;
  font-weight: 600;
}
.tour-sidebar-widget .tour-country-list {
  list-style: none;
  margin: 0;
  padding: 15px 20px;
}
.tour-sidebar-widget .tour-country-list li {
  border-bottom: 1px solid #ddd;
}
.tour-sidebar-widget .tour-country-list li:last-child {
  border-bottom: 0;
}
.tour-sidebar-widget .tour-country-list li.active a {
  color: #2563eb;
  font-weight: 600;
}
.tour-sidebar-widget .tour-country-list li.active strong {
  background: #2563eb;
}
.tour-sidebar-widget .tour-country-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: #232323;
  text-decoration: none;
  transition: 0.3s;
}
.tour-sidebar-widget .tour-country-list li a:hover {
  color: #2563eb;
}
.tour-sidebar-widget .tour-country-list li strong {
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.visa-filter-form .form-select,
.tour-filter-form .form-select {
  height: 56px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  padding: 0 20px;
  font-size: 16px;
  box-shadow: none;
}
.visa-filter-form .form-select:focus,
.tour-filter-form .form-select:focus {
  box-shadow: none;
}
.visa-filter-form .btn,
.tour-filter-form .btn {
  height: 56px;
  border-radius: 10px;
  font-weight: 600;
}

.help-card {
  height: 100%;
  padding: 50px 35px;
  text-align: center;
  background: #f8fbff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.35s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.help-card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.help-card:hover .help-icon {
  color: #1E4DFF;
  transform: scale(1.08);
}
.help-card .help-icon {
  font-size: 60px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}
.help-card h4 {
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 700;
  color: #111827;
}
.help-card p {
  margin-bottom: 30px;
  color: #64748b;
  line-height: 1.8;
}
.help-card .help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  height: 56px;
  padding: 0 28px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
  transition: 0.3s;
}
.help-card .help-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(30, 77, 255, 0.25);
}

@media (max-width: 991px) {
  .help-card {
    padding: 40px 25px;
  }
}
@media (max-width: 767px) {
  .help-card .help-icon {
    width: 75px;
    height: 75px;
  }
  .help-card h4 {
    font-size: 24px;
  }
  .help-card .help-btn {
    min-width: 100%;
  }
}
.page-entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}
.page-entry-content p {
  margin-bottom: 20px;
  color: var(--text-color);
  line-height: 1.8;
}
.page-entry-content h1,
.page-entry-content h2,
.page-entry-content h3,
.page-entry-content h4,
.page-entry-content h5,
.page-entry-content h6 {
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
.page-entry-content h2 {
  font-size: 42px;
}
@media (max-width: 991px) {
  .page-entry-content h2 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .page-entry-content h2 {
    font-size: 28px;
  }
}
.page-entry-content .subtitle {
  display: inline-block;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
}
.page-entry-content .wp-block-columns {
  margin-bottom: 80px;
  align-items: center;
  gap: 50px;
}
@media (max-width: 991px) {
  .page-entry-content .wp-block-columns {
    gap: 30px;
    margin-bottom: 60px;
  }
}
.page-entry-content .wp-block-column figure {
  margin: 0;
}
.page-entry-content .wp-block-column figure img {
  width: 100%;
  border-radius: 20px;
  display: block;
}
.page-entry-content .wp-block-image {
  margin-bottom: 0;
}
.page-entry-content .wp-block-group.feature-card {
  height: 100%;
  padding: 35px 25px;
  background: #fff;
  border-radius: 18px;
  text-align: center;
  border: 1px solid #ececec;
  transition: 0.35s;
}
.page-entry-content .wp-block-group.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}
.page-entry-content .wp-block-group.feature-card .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-entry-content .wp-block-group.feature-card .icon i {
  font-size: 34px;
  color: var(--primary-color);
}
.page-entry-content .wp-block-group.feature-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
}
.page-entry-content .wp-block-group.feature-card p {
  margin: 0;
  font-size: 15px;
}
.page-entry-content ul,
.page-entry-content ol {
  margin-bottom: 25px;
  padding-left: 20px;
}
.page-entry-content ul li,
.page-entry-content ol li {
  margin-bottom: 10px;
}
.page-entry-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 20px 30px;
  background: #f8f9fa;
  border-radius: 10px;
  margin: 40px 0;
}
.page-entry-content blockquote p:last-child {
  margin-bottom: 0;
}
.page-entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}
.page-entry-content table th,
.page-entry-content table td {
  border: 1px solid #e5e5e5;
  padding: 14px;
}
.page-entry-content table th {
  background: #f8f8f8;
}
.page-entry-content a {
  color: var(--primary-color);
  text-decoration: none;
}
.page-entry-content a:hover {
  text-decoration: underline;
}

/* ==========================================
   Gutenberg Default Blocks
========================================== */
.page-entry-content {
  /* Common Block Spacing */
}
.page-entry-content .wp-block-group,
.page-entry-content .wp-block-columns,
.page-entry-content .wp-block-image,
.page-entry-content .wp-block-gallery,
.page-entry-content .wp-block-cover,
.page-entry-content .wp-block-media-text,
.page-entry-content .wp-block-table,
.page-entry-content .wp-block-quote,
.page-entry-content .wp-block-list,
.page-entry-content .wp-block-buttons,
.page-entry-content .wp-block-code,
.page-entry-content .wp-block-preformatted,
.page-entry-content .wp-block-pullquote,
.page-entry-content .wp-block-separator,
.page-entry-content .wp-block-video,
.page-entry-content .wp-block-audio,
.page-entry-content .wp-block-embed {
  margin-bottom: 40px;
}
.page-entry-content {
  /* Group */
}
.page-entry-content .wp-block-group__inner-container {
  width: 100%;
}
.page-entry-content .wp-block-group.is-layout-constrained {
  max-width: 100%;
}
.page-entry-content {
  /* Columns */
}
.page-entry-content .wp-block-columns {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.page-entry-content .wp-block-columns.are-vertically-aligned-center {
  align-items: center;
}
@media (max-width: 991px) {
  .page-entry-content .wp-block-columns {
    flex-direction: column;
    gap: 30px;
  }
}
.page-entry-content {
  /* Column */
}
.page-entry-content .wp-block-column {
  flex: 1;
  min-width: 0;
}
.page-entry-content {
  /* Image */
}
.page-entry-content .wp-block-image {
  margin: 0;
}
.page-entry-content .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.page-entry-content .wp-block-image figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  color: #777;
}
.page-entry-content {
  /* Gallery */
}
.page-entry-content .wp-block-gallery {
  gap: 20px;
}
.page-entry-content .wp-block-gallery img {
  border-radius: 12px;
}
.page-entry-content {
  /* Cover */
}
.page-entry-content .wp-block-cover {
  border-radius: 20px;
  overflow: hidden;
}
.page-entry-content {
  /* Media Text */
}
.page-entry-content .wp-block-media-text {
  gap: 40px;
  align-items: center;
}
.page-entry-content .wp-block-media-text img {
  border-radius: 16px;
}
.page-entry-content {
  /* Heading */
}
.page-entry-content .wp-block-heading {
  margin-bottom: 20px;
  line-height: 1.3;
}
.page-entry-content {
  /* Paragraph */
}
.page-entry-content .wp-block-paragraph {
  margin-bottom: 20px;
  line-height: 1.8;
}
.page-entry-content {
  /* Lists */
}
.page-entry-content .wp-block-list {
  padding-left: 20px;
}
.page-entry-content .wp-block-list li {
  margin-bottom: 10px;
}
.page-entry-content {
  /* Quote */
}
.page-entry-content .wp-block-quote {
  padding: 30px;
  border-left: 4px solid var(--primary-color);
  background: #f8f8f8;
  border-radius: 12px;
}
.page-entry-content .wp-block-quote p:last-child {
  margin-bottom: 0;
}
.page-entry-content .wp-block-quote cite {
  display: block;
  margin-top: 15px;
  font-style: normal;
  opacity: 0.7;
}
.page-entry-content {
  /* Pullquote */
}
.page-entry-content .wp-block-pullquote {
  border: 0;
  padding: 40px;
  background: #fafafa;
  border-radius: 16px;
  text-align: center;
}
.page-entry-content {
  /* Buttons */
}
.page-entry-content .wp-block-buttons {
  gap: 15px;
}
.page-entry-content {
  /* Table */
}
.page-entry-content .wp-block-table {
  overflow-x: auto;
}
.page-entry-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.page-entry-content .wp-block-table table th,
.page-entry-content .wp-block-table table td {
  border: 1px solid #e5e5e5;
  padding: 14px;
}
.page-entry-content .wp-block-table table th {
  background: #f7f7f7;
}
.page-entry-content {
  /* Code */
}
.page-entry-content .wp-block-code,
.page-entry-content .wp-block-preformatted {
  background: #222;
  color: #fff;
  padding: 25px;
  border-radius: 12px;
  overflow-x: auto;
}
.page-entry-content {
  /* Separator */
}
.page-entry-content .wp-block-separator {
  margin: 50px auto;
  border-color: #ddd;
}
.page-entry-content {
  /* Embed */
}
.page-entry-content .wp-block-embed iframe {
  width: 100%;
  min-height: 450px;
  border-radius: 16px;
}
.page-entry-content {
  /* Video */
}
.page-entry-content .wp-block-video video {
  width: 100%;
  border-radius: 16px;
}
.page-entry-content {
  /* Audio */
}
.page-entry-content .wp-block-audio audio {
  width: 100%;
}
.page-entry-content {
  /* File */
}
.page-entry-content .wp-block-file {
  margin: 30px 0;
}
.page-entry-content {
  /* Responsive */
}
@media (max-width: 767px) {
  .page-entry-content .wp-block-columns {
    gap: 25px;
  }
  .page-entry-content .wp-block-media-text {
    display: block;
  }
  .page-entry-content .wp-block-embed iframe {
    min-height: 250px;
  }
}

.wp-block-group.is-layout-constrained {
  width: 100%;
}
.wp-block-group .wp-block-group__inner-container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 15px;
}
.wp-block-group.alignwide > .wp-block-group__inner-container {
  max-width: 1440px;
}
.wp-block-group.alignfull > .wp-block-group__inner-container {
  max-width: 100%;
  padding-inline: 0;
}

.about-features .feature-card {
  height: 100%;
  padding: 35px 25px;
  text-align: center;
  background: #f8fbff;
  border-radius: 20px;
  transition: 0.35s;
}
.about-features .feature-card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 20px 50px rgba(30, 77, 255, 0.08);
}
.about-features .feature-card:hover .icon {
  background: linear-gradient(135deg, #1E4DFF, #00CFFF);
}
.about-features .feature-card:hover .icon i {
  color: #fff;
  transform: rotateY(180deg);
}
.about-features .feature-card .icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(30, 77, 255, 0.08);
  transition: 0.35s;
}
.about-features .feature-card .icon i {
  font-size: 40px;
  color: #1E4DFF;
  transition: 0.35s;
}
.about-features .feature-card h5 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}
.about-features .feature-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.8;
}
.about-features .about-image {
  overflow: hidden;
  border-radius: 24px;
}
.about-features .about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: 0.5s;
}
.about-features .about-image:hover img {
  transform: scale(1.05);
}
.about-features .about-content .subtitle {
  display: inline-block;
  margin-bottom: 18px;
  color: #1E4DFF;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.about-features .about-content .subtitle::after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  margin-top: 8px;
  border-radius: 10px;
  background: linear-gradient(90deg, #1E4DFF, #00CFFF);
}
.about-features .about-content h2 {
  margin-bottom: 25px;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
}
.about-features .about-content p {
  color: #64748b;
  line-height: 2;
  font-size: 17px;
}

@media (max-width: 991px) {
  .about-features .about-image img {
    height: 420px;
  }
  .about-features .about-content h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .about-features .feature-card {
    padding: 30px 20px;
  }
  .about-features .feature-card .icon {
    width: 70px;
    height: 70px;
  }
  .about-features .feature-card .icon i {
    font-size: 34px;
  }
  .about-features .feature-card h5 {
    font-size: 20px;
  }
  .about-features .about-image img {
    height: 300px;
  }
  .about-features .about-content .subtitle {
    font-size: 14px;
  }
  .about-features .about-content h2 {
    font-size: 32px;
  }
  .about-features .about-content p {
    font-size: 16px;
  }
}
/*=========================================
TEAM SECTION
=========================================*/
.fp-team-section {
  padding: 120px 0;
  background: #f7faff;
}

.fp-team-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
}
.fp-team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s;
}
.fp-team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.05));
}
.fp-team-card:hover img {
  transform: scale(1.08);
}
.fp-team-card:hover .team-arrow {
  background: var(--bs-primary);
  color: #fff;
  transform: rotate(45deg);
}
.fp-team-card:hover .team-contact a {
  background: rgba(255, 255, 255, 0.25);
}

.fp-team-overlay {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  color: #fff;
}
.fp-team-overlay span {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
}
.fp-team-overlay h4 {
  margin-bottom: 22px;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.fp-team-overlay .fp-team-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fp-team-overlay .team-contact {
  display: flex;
  gap: 12px;
}
.fp-team-overlay .team-contact a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: 0.35s;
}
.fp-team-overlay .team-contact a i {
  font-size: 20px;
}
.fp-team-overlay .team-contact a:hover {
  background: var(--bs-primary);
}

/*=========================================
GALLERY
=========================================*/
.fp-gallery-section {
  padding: 120px 0;
  background: #f7faff;
}

.fp-gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  height: 320px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
}
.fp-gallery-card.large {
  height: 460px;
}
.fp-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}
.fp-gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  transition: 0.35s;
  z-index: 1;
}
.fp-gallery-card:hover img {
  transform: scale(1.1);
}
.fp-gallery-card:hover::before {
  background: rgba(0, 0, 0, 0.45);
}
.fp-gallery-card:hover .fp-gallery-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.fp-gallery-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 2;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.35s;
}
.fp-gallery-overlay i {
  color: #fff;
  font-size: 34px;
}

@media (max-width: 991px) {
  .fp-gallery-card,
  .fp-gallery-card.large {
    height: 300px;
  }
}

/*# sourceMappingURL=main.css.map */
