

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff6f6;
  min-height: 100vh;
  position: relative;
}

a:active,
a:hover {
  outline: 0;
}

a {
  color: #898989;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover {
  color: #e44848;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

input:focus-visible {
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  list-style: none;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1c1c1c;
  line-height: normal;
  font-weight: 600;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 26px;
}

h6 {
  font-size: 24px;
}

p {
  font-size: 16px;
  color: #898989;
  line-height: normal;
}


:root {
  --primary-color: #0B3C5D;
  --secondary-color: #f4fbfb;
  --bg-color: #FFFFFF;
  --text-color: #426463;
  --accent-color: #00A8A8;
  --white-color: #FFFFFF;
  --divider-color: #133D3C1A;
  --dark-divider-color: #FFFFFF1A;
  --error-color: rgb(230, 87, 87);
  --default-font: "Outfit", sans-serif;
}


.navbar .main-logo {
  width: 200px;
}

.btn-default {
  position: relative;
  display: inline-block;
  background: var(--accent-color);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--white-color);
  padding: 15px 30px 15px 30px;
  border: none;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 0;
  text-align: center;
}

/*.btn-default::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  right: 20px;*/
/*  width: 20px;*/
/*  height: 20px;*/
/*  background: url('../images/arrow-white.svg') no-repeat;*/
/*  background-position: center center;*/
/*  background-size: cover;*/
/*  transform: translateY(-50%);*/
/*  transition: all 0.4s ease-in-out;*/
/*  z-index: 1;*/
/*}*/

.btn-default::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  border-radius: 0;
  transition: 0.4s ease-in-out;
  z-index: -1;
}

.btn-default:hover {
  color: var(--white-color);
}

.btn-default:hover:before {
  filter: brightness(0) invert(1);
}

.btn-default:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.page-footer {
  background: var(--primary-color);
  padding: 10px 0;
  text-align: center;
}




/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
  position: relative;
  /*background: var(--secondary-color);*/
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  z-index: 100;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background: var(--secondary-color);
  border-bottom: 1px solid var(--divider-color);
}

.navbar {
  padding: 15px 0;
  align-items: center;
}

.navbar img {
  width: 160px !important;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0 5px;
  position: relative;
}

.main-menu ul li a {
  font-size: 17px;
  font-weight: 500;
  line-height: 1em;
  padding: 17px 15px !important;
  color: var(--text-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--accent-color);
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 235px;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--secondary-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.main-menu ul li.submenu:first-child ul {
  width: 235px;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
  content: '\f105';
  float: right;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--text-color);
  padding: 8px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: var(--primary-color);
  background-color: transparent;
  padding: 8px 20px 8px 23px !important;
}

.header-contact-btn {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-menu ul li.highlighted-menu {
  display: none;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  top: 0;
  position: relative;
}

.slicknav_btn {
  background: var(--accent-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin: 0;
  border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 2px;
  width: 20px;
  background-color: #ffffff;
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
  background-color: var(--secondary-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
  background-color: var(--secondary-color);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--secondary-color);
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 8px 20px;
  color: var(--primary-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.slicknav_menu ul ul li a {
  padding: 8px 20px 8px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--primary-color);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
  transform: translateY(-50%) rotate(-180deg);
  color: var(--accent-color);
}



@media only screen and (max-width: 991px) {

  .readmore-btn {
    font-size: 16px;
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar img {
    width: 140px !important;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }
}



.route-pages-section {
  padding: 70px 0;
}

.route-pages-item {
  position: relative;
  overflow: hidden;
  text-align: center;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.route-pages-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(180deg, transparent 52.34%, var(--primary-color) 100%);
  border-radius: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}

.route-pages-image {
  overflow: hidden;
  border-radius: 40px;
}

.route-pages-image img {
  border-radius: 40px;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  transition: all 0.5s ease-out;
  width: 100%;
}

.route-pages-item:hover .route-pages-image img {
  transform: scale(1.1);
}

.route-pages-content {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.5s ease-in-out;
  width: 100%;
}

.route-pages-content h3 {
  font-size: 22px;
  color: var(--white-color);
  text-transform: capitalize;
  margin-bottom: 20px;
}

.route-pages-content .route-pages-readmore-btn {
  height: 0;
  overflow: hidden;
  transition: all 0.4s ease-out;
}

.route-pages-item:hover .route-pages-content .route-pages-readmore-btn {
  height: 50px;
}

.section-title h3 {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--primary-color);
  padding-left: 16px;
  margin-bottom: 10px;
}

.section-row .section-title.section-title-center {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 0;
    cursor: auto;
}

.section-title h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}



.page-header {
  background: url(../images/section-bg-shape.svg), var(--primary-color);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto;
  padding: 100px 0;
}

.page-header-box {
  text-align: center;
}

.page-header-box h1 {
  display: inline-block;
  font-size: 56px;
  font-weight: 700;
  text-align: center;
  color: var(--white-color);
  margin-bottom: 10px;
  cursor: none;
}

.page-header-box ol {
  margin: 0;
  display: inline-flex;
  justify-content: center;
}

.page-header-box ol {
  margin: 0;
  padding: 0;
  justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
  font-size: 16px;
  font-weight: 400;
  color: var(--white-color);
  text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
  color: var(--white-color);
}

.agent-list-section {
  padding: 20px 0;
}

.agent-list-section .agent-box {
  background: var(--bg-color);
  border: 1px solid var(--divider-color);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.agent-list-section .col-md-12>.row:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Image */
.agent-list-image img {
  border-radius: 10px;
  object-fit: cover;
  height: 120px;
}

/* Content */
.agent-list-content {
  padding: 5px 10px;
}

.agent-name {
  font-family: var(--default-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.agent-location {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 8px;
}

/* Stars */
.agent-stars {
  font-size: 14px;
  color: #f59e0b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-count {
  color: var(--text-color);
  font-size: 13px;
}

/* Badges */
.agent-badges {
  margin-top: 10px;
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
  margin-right: 5px;
  font-weight: 500;
}

.badge-verified {
  background: rgba(0, 168, 168, 0.1);
  color: var(--accent-color);
}

.badge-top {
  background: rgba(255, 165, 0, 0.15);
  color: #ff9800;
}

.badge-years {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Pricing */
.agent-pricing {
  text-align: right;
}

.price-from {
  font-size: 13px;
  color: var(--text-color);
}

.price-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 5px 0;
}

.price-per {
  font-size: 12px;
  color: var(--text-color);
}

/* Buttons */
.agent-actions {
  margin-top: 10px;
}

/*.btn-call,*/
/*.btn-enquire {*/
/*  display: inline-block;*/
/*  width: 100%;*/
/*  padding: 8px;*/
/*  border-radius: 6px;*/
/*  border: none;*/
/*  font-size: 14px;*/
/*  font-weight: 500;*/
/*  margin-bottom: 8px;*/
/*  cursor: pointer;*/
/*  transition: 0.3s;*/
/*}*/

/*.btn-call {*/
/*  background: var(--secondary-color);*/
/*  color: var(--primary-color);*/
/*}*/

/*.btn-call:hover {*/
/*  background: var(--primary-color);*/
/*  color: var(--white-color);*/
/*}*/

/*.btn-enquire {*/
/*  background: var(--accent-color);*/
/*  color: var(--white-color);*/
/*}*/

/*.btn-enquire:hover {*/
/*  opacity: 0.9;*/
/*}*/


.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.seo-page-featured-image {
  margin-bottom: 30px;
}

.seo-page-featured-image img {
  border-radius: 40px;
}

.seo-page-featured-content h2 {
  font-size: 50px;
  margin-bottom: 30px;
}


.header .menu-list-col ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
}


#enquiryModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.enquiry-box {
  background: #fff;
  width: 350px;
  padding: 20px;
  margin: 100px auto;
  border-radius: 10px;
  position: relative;
}

.enquiry-box input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
}

.close-btn {
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 20px;
  cursor: pointer;
}

.success-popup {
  position: fixed;
  top: 50%;
  right: 50%;
  background: #28a745;
  color: #fff;
  padding: 15px 25px;
  border-radius: 5px;
  z-index: 9999;
  transform: translate(50%);
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: anchor-center;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, #0b2c3d, #0f6d6a);
  color: #fff;
  padding: 90px 0 110px;
  /* more height like design */
  position: relative;
}

/* CONTAINER WIDTH FIX */
.hero-section .container {
  /*max-width: 1200px; */
  margin: auto;
  padding: 0 20px;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* TITLE */
.hero-section h1 {
  font-size: 48px;
  /* bigger like UI */
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

/* SUB TEXT */
.sub-text {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* DESCRIPTION */
.hero-section p {
  font-size: 16px;
  max-width: 650px;
  line-height: 1.7;
  opacity: 0.9;
}

/* TAGS */
.hero-tags {
  margin-top: 25px;
  font-size: 15px;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  /*max-width: 1200px;*/
  /*margin: -60px auto 40px; */
  background: #fff;
  padding: 18px 25px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* LEFT BUTTONS */
.filter-left {
  display: flex;
  gap: 15px;
}

/* BUTTON STYLE */
.filter-btn {
  border: 1px solid #e0e0e0;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn:hover {
  background: #f5f5f5;
}

/* RIGHT TEXT */
.filter-right {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

@media (max-width: 768px) {

  .hero-section {
    padding: 60px 0 90px;
  }

  .hero-section h1 {
    font-size: 30px;
  }

  .filter-bar {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin-top: -50px;
  }
}

/* DROPDOWN WRAPPER */
.dropdown {
  position: relative;
}

/* MENU */
.dropdown-menu {
  position: absolute;
  top: 45px;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  min-width: 200px;
  display: none;
  z-index: 99;
}

/* ITEMS */
.dropdown-menu div {
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.dropdown-menu div:hover {
  background: #f5f5f5;
}

/* CHECKBOX ALIGN */
.dropdown-menu input {
  margin-right: 8px;
}




/* ===== HERO SECTION (FINAL FIXED) ===== */
.hero-section {
  background: linear-gradient(135deg, #0b2c3d, #0f6d6a);
  color: #fff;
  padding: 70px 0;
}

/* FULL WIDTH CONTROL */
.hero-section .container {
  /*max-width: 100%;*/
  padding-left: 30px;
  padding-right: 30px;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 15px;
  color: #ffffff;
}

/* TITLE */
.hero-section h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff !important;
}

/* DESCRIPTION */
.hero-section p {
  font-size: 16px;
  max-width: 650px;
  line-height: 1.6;
  opacity: 0.9;
  color: #ffffff;
}

/* TRUST TAGS */
.hero-tags {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.9;
  color: #ffffff;
}

/* ===== CITY SECTION ===== */
.city-section {
  padding: 70px 20px 50px 20px;
}

/* CARD */
.city-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.city-image {
  position: relative;
  height: 200px;
}

.city-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

/* TITLE ON IMAGE */
.city-title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0;
  }

  .hero-section h1 {
    font-size: 28px;
  }

  .hero-section p {
    font-size: 14px;
  }

  .city-image {
    height: 130px;
  }
}





/* ===== HERO ===== */
.landing-page-hero-section {
  padding: 100px 0 80px;
  background: linear-gradient(140deg, #EFF6FF 0%, #F0FDF4 55%, #EFF6FF 100%);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}

.landing-page-hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  z-index: 0;
}

.landing-page-hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-color);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: var(--default-font);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: blink 1.8s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}



.landing-page-hero-section h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.landing-page-hero-section h1 .text-gradient {
  background: linear-gradient(135deg, var(--accent-color), #007c7c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-page-hero-section p.lead {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 36px;
}

.hero-stat-num {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-color);
  margin-top: 3px;
}

/* Hero Card */
.hero-visual {
  position: relative;
}

.hero-card {
  background: white;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.11);
  animation: floatUp 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), #007c7c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.hero-card-header h5 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--primary-color);
}

.hero-card-header p {
  font-size: 12px;
  margin: 0;
}

.trip-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 11px 14px;
  margin-bottom: 10px;
  transition: 0.2s;
}

.trip-item:hover {
  background: #DBEAFE;
}

.trip-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trip-item-icon {
  font-size: 1.3rem;
}

.trip-item-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--primary-color);
}

.trip-item-agents {
  font-size: 11px;
  color: var(--text-color);
}

.trip-item-price {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 14px;
  color: var(--accent-color);
}

.hero-card-cta {
  width: 100%;
  margin-top: 16px;
  padding: 13px;
  background: linear-gradient(135deg, var(--accent-color), #007c7c);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.hero-card-cta:hover {
  opacity: 0.9;
}

.float-badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  z-index: 3;
  font-family: var(--heading-font);
}

.float-badge .badge-icon {
  font-size: 1.1rem;
}

.float-badge-1 {
  top: -14px;
  right: -18px;
  animation: floatBadge 3s ease-in-out infinite;
}

.float-badge-2 {
  bottom: 40px;
  left: -28px;
  animation: floatBadge 3.5s ease-in-out infinite 0.8s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.btn-outline-default {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-color);
  padding: 14px 28px;
  transition: all 0.3s ease;
  font-family: var(--heading-font);
}

.btn-outline-default:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.landing-page-hero-content {
  position: relative;
  z-index: 1;
}


/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--accent-color), #008585);
}

.how-section h2,
.how-section h3 {
  color: white;
}

.how-section p {
  color: #e0e0e0;
}

.how-section .section-title h3::before {
  background: #ffffff;
}

.section-title {
  margin-bottom: 30px;
      position: relative;
    z-index: 1;
}

.how-card {
  background: white;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.12);
}

.how-num {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), #008585);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgb(0 160 160 / 30%);
}



.how-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.how-card p {
  font-size: 14px;
  margin: 0;
  text-align: center;
  color: #898989;
}

.how-connector {
  position: absolute;
  top: 100px;
  right: -30px;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  z-index: 0;
}

/* ===== SOLUTIONS ===== */
.solutions-section {
  padding: 90px 0;
}

.sol-card {
  border-radius: 20px;
  padding: 34px 28px;
  transition: all 0.3s ease;
  height: 100%;
}

.sol-card-blue {
  background: #EFF6FF;
}

.sol-card-green {
  background: #F0FDF4;
}

.sol-card-orange {
  background: #FFF7ED;
}

.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
}

.sol-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.sol-icon-blue {
  background: rgba(37, 99, 235, 0.12);
}

.sol-icon-green {
  background: rgba(16, 185, 129, 0.12);
}

.sol-icon-orange {
  background: rgba(245, 158, 11, 0.12);
}

.sol-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sol-card p {
  font-size: 14px;
  margin-bottom: 20px;
}

.sol-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 13px;
  transition: gap 0.2s;
}

.sol-link:hover {
  gap: 10px;
  color: var(--accent-color);
}

/* ===== SPLIT SECTIONS ===== */
.split-section {
  padding: 90px 0;
}

.split-section.bg-light-section {
  background: #F9FAFB;
}

.metrics-box {
  background: linear-gradient(135deg, #EFF6FF, #E0F2FE);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.metrics-box.green {
  background: linear-gradient(135deg, #F0FDF4, #D1FAE5);
}

.metrics-box-big-icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 8rem;
  opacity: 0.1;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.metric-card {
  background: white;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.metric-num {
  font-family: var(--heading-font);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.metric-num.green {
  color: var(--primary-color);
}

.metric-label {
  font-size: 12px;
  color: var(--text-color);
  margin-top: 4px;
}

.feature-list {
  list-style: none;
  margin: 22px 0 30px;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.feature-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #fefefe, #f0f0f0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00A8A8;
  font-size: 10px;
  margin-top: 1px;
}

.feature-check.green {
  background: linear-gradient(135deg, var(--primary-color), #059669);
}


/* ===== SPLIT SECTIONS ===== */
.split-section {
  padding: 90px 0;
}

.split-section.bg-light-section {
  background: #F9FAFB;
}

.split-section.bg-dark-section {
  background: linear-gradient(135deg, var(--accent-color), #008585);
}

.split-section.bg-dark-section .section-title h3 {
  color: #ffffff;
}

.split-section.bg-dark-section .section-title h3::before {
  background: #ffffff;
}

.split-section.bg-dark-section .section-title h2 {
  color: #ffffff;
}

.split-section.bg-dark-section p {
  color: #e0e0e0;
}

.split-section.bg-dark-section .feature-list li {
  color: #ffffff;
}

.split-section.bg-dark-section .btn-outline-default {
  display: inline-block;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  padding: 14px 28px;
  transition: all 0.3s ease;
  font-family: var(--heading-font);
}


.metrics-box {
  background: linear-gradient(135deg, #EFF6FF, #E0F2FE);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.metrics-box.green {
  background: linear-gradient(135deg, #F0FDF4, #D1FAE5);
}

.metrics-box-big-icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 8rem;
  opacity: 0.1;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.metric-card {
  background: white;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.metric-num {
  font-family: var(--heading-font);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.metric-num.green {
  color: var(--primary-color);
}

.metric-label {
  font-size: 12px;
  color: var(--text-color);
  margin-top: 4px;
}

.feature-list {
  list-style: none;
  margin: 22px 0 30px;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #1c1c1c;
}

.feature-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent-color), #007c7c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  margin-top: 1px;
}

.feature-check.green {
  background: linear-gradient(135deg, var(--primary-color), #059669);
}

/* ===== WHY MAPPYO ===== */
.why-section {
  padding: 90px 0;
  background: #F9FAFB;
}

.why-card {
  background: white;
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 38px rgba(37, 99, 235, 0.1);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.why-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  margin: 0;
}

/* ===== PRICING ===== */



.pricing-section.bg-dark-section {
  background: linear-gradient(135deg, var(--accent-color), #008585);
  padding: 90px 0;
}

.pricing-section .section-title h3 {
  color: #ffffff;
}

.pricing-section .section-title h3::before {
  background: #ffffff;
}

.pricing-section .section-title h2 {
  color: white;
}

.pricing-section .section-title p {
  color: #ededed;
}

.price-card {
  background: #006c6c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
  height: 100%;
}

.price-card.popular {
  background: linear-gradient(135deg, #0B3C5D, #0B3C5D);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.45);
  transform: translateY(-10px);
}

.price-card:hover {
  transform: translateY(-8px);
}

.price-card.popular:hover {
  transform: translateY(-16px);
}

.popular-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--heading-font);
  white-space: nowrap;
}

.plan-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d2ffff;
  margin-bottom: 10px;
  font-family: var(--default-font);
}

.price-card.popular .plan-label {
  color: rgba(255, 255, 255, 0.7);
}

.plan-price {
  font-family: var(--heading-font);
  font-size: 2.6rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.plan-desc {
  font-size: 12px;
  color: #94A3B8;
  margin: 6px 0 24px;
}

.price-card.popular .plan-desc {
  color: rgba(255, 255, 255, 0.65);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #D1D5DB;
  margin-bottom: 10px;
}

.price-card.popular .plan-features li {
  color: rgba(255, 255, 255, 0.85);
}

.plan-check {
  color: var(--accent-color);
  font-weight: 700;
}

.btn-plan {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-plan-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-plan-outline:hover {
  border-color: white;
}

.btn-plan-solid {
  background: white;
  color: var(--accent-color);
}

.btn-plan-solid:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}



/* ===== FAQ ===== */
.faq-section {
  padding: 90px 0;
}

.faq-item {
  border: 1px solid var(--divider-color);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--accent-color);
}

.faq-question {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-color);
  background: white;
  transition: background 0.2s;
  user-select: none;
  font-family: var(--heading-font);
}

.faq-question:hover {
  background: #EFF6FF;
}

.faq-arrow {
  color: var(--accent-color);
  font-size: 13px;
  transition: transform 0.25s;
}

.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 22px 18px;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-item.open .faq-question {
  color: var(--accent-color);
}


/* ===== TESTIMONIALS - OWL ===== */
.testimonials-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #EFF6FF, #F0FDF4);
}

.testi-card {
  background: white;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin: 10px;
}

.testi-stars {
  color: #F59E0B;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 14px;
  line-height: 1.7;
  color: #4B5563;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #008585);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 700;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-color);
}

.testi-role {
  font-size: 12px;
  color: var(--text-color);
}

.owl-theme .owl-dots .owl-dot span {
  background: #CBD5E1;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--accent-color);
}

.seo-page-featured-content {
  font-family: var(--default-font);
  color: var(--text-color);
  background-color: var(--bg-color);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  line-height: 1.75;
}

.seo-page-featured-content h2 {
  font-family: var(--default-font);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 1.25rem;
  line-height: 1.3;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.6rem;
}

.seo-page-featured-content h3 {
  font-family: var(--default-font);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 2rem 0 0.6rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--accent-color);
}

.seo-page-featured-content p {
  font-size: 0.97rem;
  color: var(--text-color);
  margin: 0 0 1rem;
  line-height: 1.8;
}

.seo-page-featured-content ul,
.seo-page-featured-content ol {
  padding-left: 1.4rem;
  margin: 0 0 1.2rem;
}

.seo-page-featured-content ul li,
.seo-page-featured-content ol li {
  font-size: 0.96rem;
  color: var(--text-color);
  margin-bottom: 0.45rem;
  line-height: 1.7;
}

.seo-page-featured-content ul li strong,
.seo-page-featured-content ol li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.seo-page-featured-content ul li::marker {
  color: var(--accent-color);
}

.seo-page-featured-content hr {
  border: none;
  border-top: 1px solid var(--divider-color);
  margin: 2rem 0;
}

.seo-page-featured-content p:has(br) {
  /* FAQ block container */
  background-color: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.guides-section {
  background-color: var(--secondary-color);
  /* #F6EFE7 */
  border-top: 1px solid var(--divider-color);
  border-bottom: 1px solid var(--divider-color);
}

.guides-section .guide-item {
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  padding: 15px 30px 15px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  min-height: 60px;
  position: relative;
}

.guides-section .guide-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 2px 12px rgba(0, 168, 168, 0.12);
}

.guides-section .guide-item .guide-title {
  font-family: var(--default-font);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  line-height: 1.4;
  display: block;
  width: 100%;
}

.guides-section .guide-item .guide-title::after {
  content: '→ ';
  color: var(--accent-color);
  font-size: 0.8rem;
  transition: transform 0.2s ease;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.guides-section .guide-item:hover .guide-title {
  color: var(--accent-color);
}

/*.guides-section .guide-item:hover .guide-title::after {*/
/*  transform: translateX(3px);*/
/*}*/

.guides-section .col-12 p {
  color: var(--text-color);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem 0;
  opacity: 0.6;
}



.desktop-badge {
  display: block;
}

.mobile-badge {
  display: none;
}



/* Responsive */
@media (max-width: 768px) {
  .agent-pricing {
    text-align: left;
    margin-top: 15px;
  }

  .agent-list-image img {
    height: 100px;
  }

  .hero-section .sub-text,
  .hero-section .hero-tags {
    display: none;
  }

  .hero-section {
    padding: 20px 0 10px 0;
  }

  .agent-list-content {
    padding: 0 0 10px 0;
  }

  .agent-list-image img {
    border-radius: 10px;
    object-fit: cover;
    height: 100px;
  }

  .btn-default {
    padding: 10px 15px 10px 15px;
    font-size: 14px;
  }

  .btn-default::before {
    right: 10px;
  }

  .seo-page-featured-content {
    padding: 0;
  }

  .desktop-badge {
    display: none;
  }

  .mobile-badge {
    display: block;
    margin-top: 0;
  }

  .agent-actions {
    margin-top: 0;
  }
}

@media (max-width: 479px) {
  .btn-default {
    padding: 10px 15px 10px 15px;
    font-size: 12px;
  }
  
  .badge{
      font-size: 11px;
  }
}



.blog-section{
    padding: 80px 0;
}


.card-wrapper-section .cards {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #f4fbfb;
    border-radius: 16px;
    overflow: hidden;
    padding: 24px 28px 24px 0;
    gap: 24px;
    box-shadow: 0 4px 24px rgba(180, 23, 40, 0.07);
    border: 1px solid rgba(180, 23, 40, 0.08);
    min-height: 220px;
    position: relative;
}

/* Sparkle star background effect */
.card-wrapper-section .cards::ybefore {
    content: '✦';
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 1rem;
    color: rgba(180, 23, 40, 0.15);
    pointer-events: none;
}

.card-wrapper-section .cards::after {
    content: '✦';
    position: absolute;
    bottom: 18px;
    left: 22px;
    font-size: 0.6rem;
    color: rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

/* --- Image Section --- */
.card-wrapper-section .card-image-section {
    flex-shrink: 0;
    width: 150px;
    min-width: 150px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-left: 20px;
    opacity: 1 !important;
    /* override inline style="opacity:0" */
}

.card-wrapper-section .card-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* --- Body Section --- */
.card-wrapper-section .card-body-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    padding-right: 8px;
}

/* --- Content --- */
.card-wrapper-section .card-content-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-wrapper-section .card-content-section .title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.4;
    margin: 0;
}

.card-wrapper-section .card-content-section .card-text {
    font-size: 0.92rem;
    color: #444444;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* --- Responsive --- */
@media (max-width: 768px) {
    .card-wrapper-section .cards {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .card-wrapper-section .card-image-section {
        width: 100%;
        min-width: unset;
        height: 200px;
        margin-left: 0;
    }

    .card-wrapper-section .card-content-section .title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .card-wrapper-section .card-image-section {
        height: 170px;
    }

    .card-wrapper-section .card-content-section .title {
        font-size: 1rem;
    }

    .card-wrapper-section .card-content-section .card-text {
        font-size: 0.85rem;
    }
}


.domestic-trip-carousel {
    position: relative;
}

.hot-deals-section .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.hot-deals-section .owl-nav button {
    pointer-events: all;
    border: none;
    background: transparent;
}

.custom-prev,
.custom-next {
    background: #fff;
    color: #333;
    font-size: 28px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.custom-prev:hover,
.custom-next:hover {
    background: #007bff;
    color: #fff;
}

/* Left & Right spacing */
.hot-deals-section .owl-nav .owl-prev {
    margin-left: -20px;
}

.hot-deals-section .owl-nav .owl-next {
    margin-right: -20px;
}

.hot-deals-section .card {
    border: none;
    /*border-radius: 15px;*/
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    background: #fff;
}

/* Hover effect */
.hot-deals-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Image */
.hot-deals-section .card-img-top {
    /*height: 150px;*/
    object-fit: cover;
    transition: 0.3s;
            /*aspect-ratio: 1 / 1.5;*/
}

.hot-deals-section .card:hover .card-img-top {
    transform: scale(1.05);
}

/* Card body */
.hot-deals-section .card-body {
    padding: 10px 15px;
    background: var(--primary-color);
}

.hot-deals-section .card-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.hot-deals-section .card-text {
    font-size: 12px;
    color: #ededed;
    line-height: 1.5;
}

/* Footer */
.hot-deals-section .card-footer {
    background: transparent;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #999;
    padding: 0;
}

.hot-deals-section {
    padding: 0 0 80px 0;
}

.hot-deals-section .card .btn-default{
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 20px 12px 20px;
}

/* Dots container */
.hot-deals-section .owl-dots {
    text-align: center;
    margin-top: 20px;
}

img#modalHotdealImage {
    width: 280px;
    text-align: center;
    margin: auto;
}


/* Each dot */
.hot-deals-section .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

/* Dot shape */
.hot-deals-section .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Active dot */
.hot-deals-section .owl-dot.active span {
    width: 25px;
    background: #007bff;
    border-radius: 20px;
}

/* Hover effect */
.hot-deals-section .owl-dot:hover span {
    background: #007bff;
}


/* Wrapper */
.city-bar {
    background: linear-gradient(135deg, #0b2c3d, #0f6d6a);
    padding: 15px 15px;
}

/* Inner container */
.city-bar-container {
    max-width: 500px;
    margin: auto;
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Title */
.hot-deal-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Dropdown */
.city-select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px solid #f7a614;
    font-size: 14px;
    font-weight: 600;
    color: #0b2545;
    background: #fff;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover & focus */
.city-select:hover,
.city-select:focus {
    border-color: #ffb733;
    box-shadow: 0 0 0 3px rgba(247,166,20,0.2);
}

/* Selected city text */
.city-selected {
    margin-top: 12px;
    font-size: 13px;
    color: #ddd;
}

.city-selected span {
    color: #f7a614;
    font-weight: 700;
}


/* Section Background */
.hot-deal-cta-title-section {
    background: linear-gradient(90deg, #f4fbfb, #083c5e, #f4fbfb);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* Optional overlay pattern */
.hot-deal-cta-title-section::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: -50%;
    background: rgba(255,255,255,0.05);
    transform: rotate(-1deg);
}

/* Title Wrapper */
.hot-deal-cta-title {
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 20px;
    justify-content: center;
}

/* Main Heading */
.hot-deal-cta-title h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

/* Sub text */
.hot-deal-cta-title span {
    font-size: 14px;
    color: #fff;
    opacity: 0.9;
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
}

.hot-deals-section-box {
    background: var(--secondary-color);
    padding: 30px;
        border: 1px solid #00a8a8;
    border-radius: 20px;
}

.hot-deals-section h5{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}


.carousel-caption {
    bottom: 20%;
    text-align: left;
}

.carousel-caption h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.carousel-caption p {
    font-size: 20px;
    margin: 10px 0 20px;
    color: #eee;
    margin-bottom: 40px;
}

.carousel-caption .btn-warning {
    background: #f7a614;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
}

.carousel-caption .btn-warning:hover {
    background: #ffb733;
}

/* Dark overlay for readability */
.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}


.carousel {
        position: relative;
        z-index: 0;
    }

.carousel .carousel-caption {
    left: 5%;
    top: 50%;
    right: unset;
    bottom: unset;
    transform: translateY(-50%);
    text-align: left;
}

.carousel .carousel-caption h2 {
    font-size: 70px;
    font-weight: 700;
    color: #ffffff;
    line-height: 85px;
    margin-bottom: 20px;
    /*text-transform: uppercase;*/
}

.carousel .carousel-caption .carousel-city {
    font-size: 32px;
    color: #a5cd39;
    font-weight: 500;
    margin-bottom: 30px;
}

.carousel .carousel-caption .carousel-btn {
    padding: 10px 25px;
    background: rgb(41, 179, 84);
    background: linear-gradient(90deg, rgba(41, 179, 84, 1) 0%, rgba(41, 179, 84, 1) 60%, rgba(113, 74, 148, 1) 70%, rgba(113, 74, 148, 1) 100%);
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    border: none;
}

.carousel-control-next, .carousel-control-prev{
    width: auto;
}




@media (max-width: 768px) {
    .custom-prev,
    .custom-next {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .hot-deals-section .card-img-top {
        /*height: 75px;*/
        object-fit: cover;
        transition: 0.3s;
    }
    .mb-5{
        margin-bottom: 1.5rem !important;
    }
    
    .hot-deals-section-box {
        padding: 10px 5px;
    }
    
    .hot-deals-section .container{
        padding: 0 5px;
    }
    
    .hot-deal-cta-title h3 {
        font-size: 15px;
    }
    
    .hot-deals-section .card-body {
        padding: 5px 10px;
    }
    
    .hot-deals-section .card .btn-default {
        padding: 10px 15px 10px 15px;
    }
}

@media (max-width: 576px) {
    .hot-deals-section .card-img-top{
        /*height: 150px;*/
        object-fit: cover;
        transition: 0.3s;
    }
    
    .hot-deals-section .card-text{
        font-size: 11px;
    }
    
    .hot-deals-section .card .btn-default {
        padding: 8px 15px 8px 15px;
        font-size: 11px;
        font-weight: 500;
    }
    
    .hot-deals-section .card .btn-default::before{
        width: 15px;
        height: 15px;
    }
}

.hot-deals-section{
    padding: 50px 0;    
}
.tripbycity-section{
    padding: 50px 0;
}


.bg-section {    
    background-color: var(--secondary-color);
}


.cta-box-section{
	padding: 50px 0;
	overflow: hidden;
}

.cta-box-content{
	/*max-width: 860px;*/
	text-align: center;
	margin: 0 auto;
}

.cta-box-content .section-title p{
	/*max-width: 635px;*/
	margin-left: auto;
	margin-right: auto;
	    color: #e6e6e6;
}

.cta-box-body{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}


.cta-box-section{
    background: url(../images/banner-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.cta-box-section::before{
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
         background: linear-gradient(rgb(0 0 0 / 50%));
      z-index: 0;
}

.cta-box-content .section-title h3, .cta-box-content .section-title h2{
    color: #ffffff;
}


.destination-section{
    padding: 50px 0;
}



@media only screen and (min-width: 769px){
     .mobile-fixed-menu-btn {
        display: none;
     }
}



@media only screen and (max-width: 768px){
    .mobile-fixed-menu-btn {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 10;
        height: 50px;
        text-align: center;
    }
    
    .mobile-fixed-menu-btn button{
        width: 100%;
        height: 100%;
        padding: 15px 35px 15px 15px;
        border-radius: 0;
        font-size: 20px;
    }
}



@media only screen and (max-width: 479px) {

   .carousel .carousel-caption h2 {
        font-size: 20px;
        font-weight: 700;
        margin-top: 0px;
        line-height: 25px;
        margin-bottom: 10px;
    }

    .carousel .carousel-caption .carousel-city {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .carousel .carousel-caption .carousel-btn {
        padding: 5px 15px;
        font-size: 10px;
        margin-bottom: 20px;
    }

    .carousel-control-next,
    .carousel-control-prev {
        display: none;
    }
    
    .carousel-caption p {
        font-size: 14px;
        margin: 0px 0 10px;
        color: #eee;
        margin-bottom: 10px;
    }
    
    .carousel .carousel-caption {
        left: 0;
        width: 100%;
    }
    
    .carousel-item img{
        height: 200px;
    }
    
    .hot-deals-section {
        padding: 30px 0;
    }
    
    .section-title h2 {
        font-size: 25px;
        font-weight: 600;
        line-height: 1.2em;
        margin-bottom: 0;
        cursor: auto;
    }
    
    .tripbycity-section {
        padding: 30px 0;
    }
    
    .cta-box-section{
            margin-bottom: 10px;
    }
    
    .cta-box-section {
        padding: 30px 0;
    }
    
    .destination-section {
        padding: 30px 0;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .carousel .carousel-caption h2 {
        font-size: 30px;
        font-weight: 800;
        line-height: 40px;
    }

    .carousel .carousel-caption .carousel-city {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .carousel .carousel-caption .carousel-btn {
        padding: 10px 25px;
        font-size: 12px;
        margin-bottom: 20px;
    }

    .carousel-control-next,
    .carousel-control-prev {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carousel .carousel-caption h2 {
        font-size: 35px;
        font-weight: 800;
        line-height: 45px;
    }

    .carousel .carousel-caption .carousel-city {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .carousel .carousel-caption .carousel-btn {
        padding: 10px 25px;
        font-size: 13px;
        margin-bottom: 20px;
    }

    .carousel-control-next,
    .carousel-control-prev {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .carousel .carousel-caption h2 {
        font-size: 45px;
        font-weight: 900;
        margin-bottom: 30px;
        line-height: 55px;
    }

    .carousel .carousel-caption .carousel-city {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .carousel .carousel-caption .carousel-btn {
        padding: 10px 25px;
        font-size: 13px;
        margin-bottom: 20px;
    }
}


.demo-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #0b2c3d, #0f6d6a);
  display: flex;
  align-items: center;
  justify-content: center;
}
 
/*.btn-open-modal {*/
/*  background: rgba(255, 255, 255, 0.12);*/
/*  border: 1.5px solid rgba(255, 255, 255, 0.35);*/
/*  color: #fff;*/
/*  border-radius: 10px;*/
/*  padding: 14px 30px;*/
/*  font-size: 16px;*/
/*  font-weight: 600;*/
/*  font-family: var(--default-font);*/
/*  cursor: pointer;*/
/*  transition: background 0.2s ease;*/
/*}*/
 
/*.btn-open-modal:hover {*/
/*  background: rgba(255, 255, 255, 0.22);*/
/*}*/
 
/* ==============================
   MODAL CONTENT
   ============================== */
.enquiry-modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}
 
/* ==============================
   MODAL HEADER
   ============================== */
.enquiry-modal-header {
  background: linear-gradient(135deg, var(--primary-color), #0f6d6a);
  border: none;
  padding: 24px 28px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 
.header-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
}
 
.header-icon svg {
  width: 22px;
  height: 22px;
}
 
.modal-title {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
 
.modal-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin: 4px 0 0;
  font-weight: 400;
}
 
.btn-close-custom {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  padding: 0;
  transition: background 0.2s ease;
}
 
.btn-close-custom:hover {
  background: rgba(255, 255, 255, 0.28);
}
 
/* ==============================
   MODAL BODY
   ============================== */
.enquiry-modal-body {
  background: var(--bg-color);
  padding: 28px 28px 10px;
}
 
/* ==============================
   FORM LABEL
   ============================== */
.form-label-custom {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.1px;
}
 
.required-star {
  color: var(--accent-color);
}
 
/* ==============================
   INPUT ICON WRAPPER
   ============================== */
.input-icon-wrap {
  position: relative;
}
 
.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
}
 
/* ==============================
   FORM INPUT
   ============================== */
.enquiry-input {
  width: 100%;
  border: 1.5px solid #d0e4e4;
  border-radius: 10px;
  padding: 12px 16px 12px 40px;
  font-size: 14px;
  font-family: var(--default-font);
  color: var(--text-color);
  background: var(--secondary-color);
  box-shadow: none;
  transition: all 0.25s ease;
}
 
.enquiry-input::placeholder {
  color: #a0b8b8;
  font-size: 13px;
}
 
.enquiry-input:focus {
  border-color: var(--accent-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 168, 168, 0.12);
  outline: none;
}
 
/* Error State */
.enquiry-input.is-invalid {
  border-color: #e65757 !important;
  box-shadow: 0 0 0 3px rgba(230, 87, 87, 0.12) !important;
}
 
/* ==============================
   ERROR MESSAGE
   ============================== */
.error-msg {
  display: none;
  font-size: 12px;
  color: #e65757;
  margin-top: 5px;
  font-weight: 500;
}
 
.error-msg.show {
  display: block;
}
 
/* ==============================
   PRIVACY NOTE
   ============================== */
.privacy-note {
  font-size: 11px;
  color: var(--text-color);
  opacity: 0.6;
  text-align: center;
  margin: 10px 0 4px;
}
 
/* ==============================
   MODAL FOOTER
   ============================== */
.enquiry-modal-footer {
  background: var(--bg-color);
  border-top: 1px solid var(--divider-color);
  padding: 14px 28px 24px;
  display: flex;
  gap: 10px;
}
 
/* ==============================
   CANCEL BUTTON
   ============================== */
.btn-cancel {
  background: transparent;
  border: 1.5px solid #d0e4e4;
  color: var(--text-color);
  border-radius: 10px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--default-font);
  cursor: pointer;
  transition: all 0.2s ease;
}
 
.btn-cancel:hover {
  border-color: var(--accent-color);
  background: var(--secondary-color);
}
 
/* ==============================
   SUBMIT BUTTON
   ============================== */
.btn-submit {
  background: var(--accent-color);
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--default-font);
  flex: 1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
 
.btn-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transition: 0.35s ease-in-out;
  z-index: 0;
}
 
.btn-submit:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
 
.btn-submit span {
  position: relative;
  z-index: 1;
}
 
/* ==============================
   SUCCESS TOAST
   ============================== */
.success-toast {
  display: none;
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: #fff;
  padding: 14px 30px;
  border-radius: 12px;
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 600;
  z-index: 99999;
  box-shadow: 0 8px 24px rgba(0, 168, 168, 0.35);
  white-space: nowrap;
  animation: slideDown 0.3s ease;
}
 
@keyframes slideDown {
  from {
    opacity: 0;
    top: 0;
  }
  to {
    opacity: 1;
    top: 24px;
  }
}
 
/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 576px) {
  .enquiry-modal-header {
    padding: 18px 20px 16px;
  }
 
  .enquiry-modal-body {
    padding: 20px 20px 10px;
  }
 
  .enquiry-modal-footer {
    padding: 12px 20px 20px;
    flex-direction: column;
  }
 
  .btn-cancel {
    width: 100%;
    text-align: center;
  }
 
  .btn-submit {
    width: 100%;
    padding: 12px;
  }
 
  .modal-title {
    font-size: 17px;
  }
}


.breadcrumb a{
    color: #ededed;
}

.destination-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(0 0 0 / 50%));
    z-index: 0;
}

.breadcrumb-content{
    position: relative;
    z-index: 1;
}

.destination-menu {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #ffffff;
    border-bottom: 1px solid rgba(128, 128, 128, 0.12);
    padding: 10px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.destination-menu-inner {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.destination-menu-inner::-webkit-scrollbar {
    display: none;
}

.destination-menu .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 25px;
    border-radius: 20px;
    background: #f4fbfb;
    border: 1px solid rgb(0 168 168 / 50%);
    font-size: 15px;
    font-weight: 600;
    color: #00A8A8;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s;
    flex-shrink: 0;
}

.destination-menu .nav-link:hover,
.destination-menu .nav-link.active {
    background: #00A8A8;
    color: #ffffff;
    border-color: #00A8A8;
}

.destination-content-section{
    padding: 50px 0;
}

.destination-content-section .destination-content-box{
    padding-bottom: 30px;
        position: relative;
    z-index: 0;
}

.destination-content-title h3 {
    font-size: 28px;
    margin-bottom: 30px;
}
    

.destination-things-to-do .destination-content-list-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px 10px;
    box-shadow: 0 5px 20px rgba(26, 107, 74, 0.10);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: #083c5e;
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 3px solid #00a8a8;
}

.destination-things-to-do .destination-content-list-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 107, 74, 0.13);
}

.destination-things-to-do .destination-content-list-item .destination-content-list-icon {
  font-size: 20px;
}

.destination-content-title {
    position: sticky;
    top: 60px; /* adjust based on header height */
    z-index: 5;
    background: #f4fbfb;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.destination-content-title h3 {
    margin: 0;
    font-size: 24px;
}




/* Hotel card */
.hotel-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(26, 107, 74, 0.10);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: var(--text);
  display: block;
  border: 1px solid #ededed;
}

.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 107, 74, 0.16);
      border: 1px solid #00a8a8;
}

.hotel-card-img {
  height: 140px;
  background: linear-gradient(135deg, #c8e6d7 0%, #a8d5bc 100%);
  position: relative;
  overflow: hidden;
}

.hotel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-card-img .rating-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #1c1c1c;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.hotel-card-body {
  padding: 12px 14px 14px;
}

.hotel-card-body h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}

.hotel-card-body .loc {
  font-size: 12px;
  color: #898989;
  margin-bottom: 8px;
}

.hotel-card-body .price {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-color);
}

.hotel-card-body .price span {
  font-size: 11px;
  font-weight: 400;
  color: #898989;
}

    
    

/* Place card */
.place-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(26, 107, 74, 0.10);
  transition: transform 0.25s;
  text-decoration: none;
  display: block;
  border: 1px solid #ededed;
}

.place-card:hover {
  transform: translateY(-4px);
      border: 1px solid #00a8a8;
}

.place-card-img {
  height: 120px;
  background: linear-gradient(135deg, #d4eaff 0%, #b3d4f5 100%);
  overflow: hidden;
}

.place-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-card-body {
  padding: 10px 12px 12px;
}

.place-card-body h4 {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 3px;
}

.place-card-body .tag {
  display: inline-block;
  font-size: 11px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 1px solid var(--accent-color);
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 500;
}



/* Cab card */
.cab-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 5px 20px rgba(26, 107, 74, 0.10);
  transition: transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
      border: 1px solid #ededed;
}

.cab-card:hover {
  transform: translateY(-4px);
      border: 1px solid #00a8a8;
}

.cab-icon {
  font-size: 28px;
}

.cab-card h4 {
  font-size: 14px;
  font-weight: 600;
}

.cab-card .cab-meta {
  font-size: 12px;
  color: var(--muted);
}

.cab-card .cab-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
}



/* Guide card */
.guide-card {
  flex: 0 0 160px;
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 12px;
  box-shadow: 0 5px 20px rgba(26, 107, 74, 0.10);
  text-align: center;
  transition: transform 0.25s;
  text-decoration: none;
  display: block;
      border: 1px solid #ededed;
}

.guide-card:hover {
  transform: translateY(-4px);
      border: 1px solid #00a8a8;
}

.guide-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4f1e4, #a8d5bc);
  margin: 0 auto 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.guide-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
}

.guide-card .guide-lang {
  font-size: 11px;
  color: #898989;
}

.guide-card .guide-rate {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 6px;
}





/* Package card */
.pkg-card {
  flex: 0 0 240px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(26, 107, 74, 0.10);
  transition: transform 0.25s;
  text-decoration: none;
  color: var(--text);
  display: block;
      border: 1px solid #ededed;
}

.pkg-card:hover {
  transform: translateY(-4px);
  border: 1px solid #00a8a8;
}

.pkg-card-img {
  /*height: 130px;*/
  background: linear-gradient(135deg, #fde8c2 0%, #f9c97c 100%);
  overflow: hidden;
}

.pkg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
      aspect-ratio: 1 / 1;
}

.pkg-card-body {
  padding: 12px 14px 14px;
}

.pkg-card-body .pkg-badge {
  font-size: 11px;
  font-weight: 700;
  background: var(--secondary-color);
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 2px 9px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 6px;
}

.pkg-card-body h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.pkg-card-body .pkg-info {
  font-size: 12px;
  color: #898989;
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.pkg-card-body .pkg-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
}

.pkg-card-body .pkg-price span {
  font-size: 11px;
  font-weight: 400;
  color: #898989;
}




/* Eatery card */
.eatery-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(26, 107, 74, 0.10);
  transition: transform 0.25s;
  text-decoration: none;
  display: block;
  border: 1px solid #ededed;
}

.eatery-card:hover {
  transform: translateY(-4px);
  border: 1px solid #00a8a8;
}

.eatery-card-img {
  height: 110px;
  background: linear-gradient(135deg, #ffe4e1, #ffb3ab);
  overflow: hidden;
}

.eatery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eatery-card-body {
  padding: 10px 12px 12px;
}

.eatery-card-body h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
}

.eatery-card-body .e-type {
  font-size: 11px;
  color: #898989;
}




.destination-content-right {
    position: sticky;
    top: 70px;
}


/* ── SIDEBAR ── */
.sidebar-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(26, 107, 74, 0.10);
  padding: 20px;
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--secondary-color);
}

.sidebar-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13.5px;
}

.sidebar-info-row .si-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.sidebar-info-row strong {
  display: block;
  font-weight: 600;
  margin-bottom: 1px;
  color: #1c1c1c;
}

.sidebar-info-row span {
  color: #898989;
  font-size: 12.5px;
}

.weather-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a8a60 100%);
  border-radius: 10px;
  padding: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.weather-temp {
  font-size: 2.2rem;
  font-weight: 700;
}

.weather-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.weather-info p {
  font-size: 12px;
  opacity: 0.82;
  color: #ededed;
  margin-bottom: 0;
}

.quick-book-btn {
  display: block;
  width: 100%;
  background: var(--accent-color);
  color: #1c1c1c;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 13px;
  border-radius:10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}

.quick-book-btn:hover {
  background: #e09510;
  transform: translateY(-1px);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  font-size: 12px;
  font-weight: 500;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.tag-pill:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Placeholder img shimmer */
.img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #e8f0eb 25%, #d5e8db 50%, #e8f0eb 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0
  }

  100% {
    background-position: -200% 0
  }
}

/* Divider */
.dest-divider {
  border: none;
  border-top: 1.5px solid var(--primary-light);
  margin: 8px 0 24px;
}

@media (max-width: 900px) {
  .dest-body {
    flex-direction: column;
  }

  .dest-sidebar {
    width: 100%;
  }

  .dest-hero {
    height: 280px;
  }

  .dest-hero-content {
    padding: 24px 20px 20px;
  }
}

@media (max-width: 600px) {
  .dest-tabs {
    padding: 0 12px;
  }

  .dest-tab {
    padding: 12px 14px;
    font-size: 12.5px;
  }

  .dest-body {
    padding: 24px 16px 40px;
  }

  .things-list {
    grid-template-columns: repeat(2, 1fr);
  }
}



.service-item{
	background-color: var(--secondary-color);
	border-radius: 30px;
	height: calc(100% - 30px);
    margin-bottom: 30px;
	padding: 40px;
	border: 1px solid var(--accent-color);
}

.service-content{
	margin-bottom: 30px;
}

.service-content-title{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 20px;
}

.service-content-title h2{
	width: calc(100% - 90px);
	font-size: 22px;
	text-transform: capitalize;
	line-height: 1.4em;
}

.service-content-title h2 a{
	color: inherit;
}

.service-content p{
	margin: 0;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-image a{
	display: block;
	border-radius: 30px;
	cursor: pointer;
	overflow: hidden;
}

.service-image img{
	width: 100%;
	aspect-ratio: 1 / 0.667;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.5s ease-out;
}

.service-item:hover .service-image img{
	transform: scale(1.1)
}


.readmore-btn{
	background: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	background: var(--primary-color);
}

.readmore-btn img{
	max-width: 50px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover img{
	transform: rotate(45deg);
}



@media only screen and (max-width: 768px) {
    .hot-deals-section .card-title {
        font-size: 11px;
        font-weight: 500;
        margin-bottom: 4px;
        color: #ffffff;
    }
}





/* ===== ENQUIRY MODAL CSS ===== */

.modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* HEADER */
.modal-header {
  background: linear-gradient(135deg, var(--primary-color), #0f6d6a);
  border: none;
  padding: 22px 26px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.modal-header-icon svg {
  width: 20px;
  height: 20px;
}

.modal-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  font-family: var(--default-font);
}

.modal-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  margin: 3px 0 0;
  font-family: var(--default-font);
}

.btn-close {
  width: 25px;
  height: 25px;
  font-size: 30px;
  line-height: 15px;
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 8px;
  opacity: 1;
  filter: brightness(0) invert(1);
  transition: background 0.2s;
}

.btn-close:hover {
  background: rgba(255, 255, 255, 0.28) !important;
}

/* BODY */
.modal-body {
  background: var(--bg-color);
  padding: 25px 25px 25px;
}

/* FIELD LABEL */
.field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  display: block;
  margin-bottom: 6px;
  font-family: var(--default-font);
}

/* FIELD ROW */
.field-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-col {
  position: relative;
}

/* ICON INSIDE INPUT */
.field-col .input-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    pointer-events: none;
    margin-top: 13px;
}

/* INPUTS */
.tripbycity-modal-form input[type="text"],
.tripbycity-modal-form input[type="email"],
.tripbycity-modal-form input[type="tel"] {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid #d0e4e4;
  border-radius: 10px;
  padding: 11px 14px 11px 38px;
  font-size: 14px;
  font-family: var(--default-font);
  color: var(--text-color);
  background: var(--secondary-color);
  outline: none;
  transition: all 0.25s ease;
}

.tripbycity-modal-form input::placeholder {
  color: #a0b8b8;
  font-size: 13px;
}

.tripbycity-modal-form input:focus {
  border-color: var(--accent-color);
  background: var(--white-color);
  box-shadow: 0 0 0 3px rgba(0, 168, 168, 0.12);
}

/* PRIVACY NOTE */
.modal-privacy-note {
  font-size: 11px;
  color: var(--text-color);
  opacity: 0.6;
  text-align: center;
  margin: 12px 0 4px;
  font-family: var(--default-font);
}

/* FOOTER */
.modal-footer {
  background: var(--bg-color);
  border-top: 1px solid var(--divider-color);
  padding: 14px 26px 22px;
  display: flex;
  gap: 10px;
}

/* CANCEL BTN */
.btn-cancel {
  background: transparent;
  border: 1.5px solid #d0e4e4;
  color: var(--text-color);
  border-radius: 10px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--default-font);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cancel:hover {
  border-color: var(--accent-color);
  background: var(--secondary-color);
}

/* SUBMIT BTN */
.tripbycity-form-btn .btn-default {
  width: 100%;
  border-radius: 10px;
  padding: 13px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .modal-header {
    padding: 10px 20px 10px;
  }

  .modal-body {
    padding: 20px 20px 0px;
  }
  
  .modal-body .mb-4{
      margin-bottom: 1.7rem;
  }

  .modal-footer {
        padding: 5px 20px 10px;
        flex-direction: column;
  }
}