/* =============================================================
   Water Element Holidays — Premium Luxury Design System
   Design: Luxury Ocean + Gold Palette
   Fonts: Cormorant Garamond (display) + DM Sans (body)
============================================================= */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --primary: #0b2d3e;
  /* Deep ocean midnight */
  --primary-80: rgba(11, 45, 62, .80);
  --primary-light: #164d66;
  --blue: #035088;
  /* Warm Andaman gold */
  --blue-light: #2c91da;
  --blue-pale: #f7eed8;
  --coral: #d4654a;
  --sand: #afdaebda;
  --sand-dark: #ede8db;
  --ink: #1c2b35;
  --ink-mid: #ffffff;
  --ink-light: #8a9fad;
  --white: #ffffff;
  --rating: #FDCC0D;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow-sm: 0 4px 18px rgba(11, 45, 62, .07);
  --shadow-md: 0 10px 40px rgba(11, 45, 62, .12);
  --shadow-lg: 0 20px 60px rgba(11, 45, 62, .18);
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body,
html {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1.15;
}

em {
  font-style: italic;
  color: var(--blue);
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}


/* ─── Section Shared ────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.section-label.light {
  color: var(--blue-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--ink);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 48px;
}

/* ─── HEADER ────────────────────────────────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 45, 62, .08);
  transition: var(--transition);
}

#header.scrolled {
  box-shadow: 0 4px 30px rgba(11, 45, 62, .12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  width: 130px;
  height: 100px;
  overflow: hidden;
  gap: 10px;
  flex-shrink: 0;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .5px;
}

.logo-sub {
  font-size: .7rem;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Desktop Nav */
.navmenu {
  display: flex;
  align-items: center;
}

.navmenu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.navmenu a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--white);
  border-radius: var(--radius-sm);
  position: relative;
  white-space: nowrap;
  transition: var(--transition);
}

.navmenu a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1.5px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.navmenu a:hover {
  color: var(--ink-light);
}

.navmenu a:hover::after,
.navmenu a.active::after {
  transform: scaleX(1);
}

.navmenu a.active {
  color: var(--white);
}

.navmenu a .bi-chevron-down {
  font-size: .7rem;
  transition: transform .25s;
}

/* Dropdown */
.navmenu .dropdown {
  position: relative;
}

.navmenu .dropdown ul {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 45, 62, .08);
  padding: 8px;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}

.navmenu .dropdown:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navmenu .dropdown ul a {
  padding: 10px 14px;
  font-size: .875rem;
  border-radius: var(--radius-sm);
  color: var(--ink) !important;
}

.navmenu .dropdown ul a::after {
  display: none;
}

.navmenu .dropdown ul a:hover {
  background: var(--sand);
  color: var(--primary);
}

.navmenu .dropdown:hover .bi-chevron-down {
  transform: rotate(180deg);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: #25d366;
  border: 1.5px solid rgba(37, 211, 102, .3);
  padding: 7px 14px;
  border-radius: 999px;
  transition: var(--transition);
}

.header-wa:hover {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-book-now {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-book-now::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, #e8a840 100%);
  opacity: 0;
  transition: opacity .3s ease;
}

.btn-book-now span,
.btn-book-now i {
  position: relative;
  z-index: 1;
}

.btn-book-now:hover {
  box-shadow: 0 8px 28px rgba(197, 151, 58, .35);
  color: #ffffff !important;
}

/* Hamburger */
.hamburger {
  color: var(--white);
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--blue-light);
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger span {
  color: var(--white);
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-mid);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE NAV OVERLAY ────────────────────────────────── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(11, 45, 62, .96);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-inner {
  width: 100%;
  max-width: 380px;
  padding: 40px 32px;
  text-align: center;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, .2);
}

.mobile-nav-overlay .logo-main {
  color: var(--white);
}

.mobile-nav-overlay .logo-icon {
  background: rgba(255, 255, 255, .1);
}

.mobile-nav-links {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links a {
  display: block;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.mobile-nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .07);
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-carousel {
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.carousel-item.active .hero-slide {
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg,
      rgba(11, 45, 62, .78) 0%,
      rgba(11, 45, 62, .45) 55%,
      rgba(11, 45, 62, .25) 100%);
}

/* Hero inner carousel */
.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  height: 100%;
}

.hero .carousel-item {
  position: absolute !important;
  inset: 0 !important;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--blue-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 680px;
}

.hero-title em {
  font-style: italic;
  color: var(--blue-light);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.7;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: auto;
  opacity: 1;
  z-index: 20;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.carousel-btn:hover {
  background: rgba(197, 151, 58, .7);
  border-color: transparent;
}

.hero-indicators {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--blue);
  transform: scale(1.3);
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .5);
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .5;
  }

  50% {
    opacity: 1;
  }
}

/* ─── SEARCH WIDGET ─────────────────────────────────────── */
.search-widget {
  background: rgba(255, 255, 255, .97);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 860px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .9);
}

.search-tabs {
  display: flex;
  gap: 0;
  background: var(--sand);
  padding: 6px 8px;
  border-bottom: 1px solid rgba(11, 45, 62, .06);
}

.search-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-mid);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.search-tab .bi {
  font-size: 1rem;
}

.search-tab:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, .8);
}

.search-tab.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(11, 45, 62, .08);
}

.search-form {
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 20px;
  gap: 0;
}

.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 6px 12px;
  min-width: 0;
}

.search-field label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-field label .bi {
  font-size: .85rem;
  color: var(--blue);
}

.search-field select,
.search-field input {
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink);
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 100%;
  appearance: none;
}

.search-field input::placeholder {
  color: var(--ink-mid);
}

.search-divider {
  width: 1px;
  height: 40px;
  background: rgba(11, 45, 62, .1);
  flex-shrink: 0;
}

.btn-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 8px;
  position: relative;
  overflow: hidden;
}

.btn-search::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue), #e8a840);
  opacity: 0;
  transition: opacity .3s;
}

.btn-search .bi,
.btn-search span {
  position: relative;
  z-index: 1;
}

.btn-search:hover::before {
  opacity: 1;
}

.btn-search:hover {
  box-shadow: 0 8px 24px rgba(197, 151, 58, .4);
}

/* ─── STATS RIBBON ──────────────────────────────────────── */
.stats-ribbon {
  background: var(--primary);
  padding: 28px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 12px 48px;
  flex: 1;
  min-width: 140px;
}

.stat-item strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  display: inline;
  line-height: 1;
}

.stat-item span {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
}

/* ─── SERVICES ──────────────────────────────────────────── */
.section-services {
  padding: 90px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(11, 45, 62, .08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}


.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(11, 45, 62, .06), rgba(197, 151, 58, .1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
  border: 1px solid rgba(197, 151, 58, .2);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
}

.service-icon-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: none;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap img {
  filter: brightness(0) invert(1);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: .3px;
  transition: var(--transition);
}

.service-link .bi {
  font-size: .8rem;
  transition: transform .25s;
}

.service-link:hover {
  color: var(--primary);
}

.service-link:hover .bi {
  transform: translateX(4px);
}

/* ─── DESTINATIONS ──────────────────────────────────────── */
.section-destinations {
  padding: 90px 0;
  background: var(--sand);
}

.swiper-nav-custom {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.swiper-btn-prev,
.swiper-btn-next {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid rgba(11, 45, 62, .12);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
  background: var(--primary);
  color: var(--white);
  border-color: transparent;
}

.dest-swiper {
  padding-bottom: 52px !important;
}

.dest-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.dest-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.dest-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.dest-card:hover .dest-img img {
  transform: scale(1.08);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 45, 62, .6) 0%, transparent 50%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
}

.dest-tag {
  background: rgba(197, 151, 58, .9);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.dest-info {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dest-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.dest-info p {
  font-size: .82rem;
  color: var(--ink-mid);
}

.dest-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.dest-cta .bi {
  font-size: .75rem;
}

.dest-cta:hover {
  color: var(--primary);
}

/* ─── ABOUT ─────────────────────────────────────────────── */
.section-about {
  padding: 100px 0;
  background: var(--white);
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: 20px;
  right: 10px;
  background: linear-gradient(135deg, var(--blue), #e8a840);
  color: var(--white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(197, 151, 58, .4);
}

.about-img-badge strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.about-img-badge span {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  line-height: 1.3;
}

.about-img-ribbon {
  position: absolute;
  bottom: 177px;
  left: -8px;
  background: var(--primary);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px 8px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
}

.about-img-ribbon::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  border-top: 8px solid #06151e;
  border-left: 8px solid transparent;
}

.about-desc {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 36px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: var(--primary);
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 45, 62, .06);
  transition: var(--transition);
}

.about-feature:hover {
  box-shadow: var(--shadow-sm);
}

.af-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--white), var(--white));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feature h4 {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: .85rem;
  color: var(--ink-mid);
  line-height: 1.6;
  margin: 0;
}

/* CTA Buttons */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue), #e8a840);
  opacity: 0;
  transition: opacity .3s;
}

.btn-primary-cta span,
.btn-primary-cta i {
  position: relative;
  z-index: 1;
}

.btn-primary-cta:hover::before {
  opacity: 1;
}

.btn-primary-cta:hover {
  color: var(--white) !important;
  box-shadow: 0 10px 30px rgba(197, 151, 58, .35);
}

.btn-outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid var(--primary);
  transition: var(--transition);
}

.btn-outline-cta:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* ─── TOUR PACKAGES ─────────────────────────────────────── */
.section-packages {
  padding: 90px 0;
  background: var(--sand);
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(197, 151, 58, .2);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  box-shadow: 0 12px 40px rgba(197, 151, 58, .2);
}

.pkg-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.package-card:hover .pkg-img img {
  transform: scale(1.06);
}

.pkg-duration-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.pkg-label {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, .9);
  color: var(--primary);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.pkg-label.featured-label {
  background: var(--blue);
  color: var(--white);
}

.pkg-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 12px;
}

.pkg-rating .bi-star-fill {
  color: var(--blue);
  font-size: .8rem;
}

.pkg-rating span {
  font-size: .78rem;
  color: var(--ink-mid);
  margin-left: 6px;
}

.pkg-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.pkg-route {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding-bottom: 16px;
}

.pkg-route span {
  font-size: .78rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 4px;
}

.pkg-route .bi-geo-alt {
  color: var(--blue);
}

.pkg-route .bi-arrow-right {
  font-size: .65rem;
  color: var(--ink-light);
}

.pkg-highlights {
  list-style: none;
  margin-bottom: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pkg-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--ink-mid);
}

.pkg-highlights .bi-check2 {
  color: #22c55e;
  font-size: .9rem;
  flex-shrink: 0;
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 45, 62, .07);
}

.pkg-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-light);
}

.price-value {
  font-size: .9rem;
  font-weight: 700;
  color: var(--primary);
}

.btn-pkg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-pkg:hover {
  background: var(--blue);
  color: var(--white);
}

/* ─── ACTIVITIES ────────────────────────────────────────── */
.section-activities {
  padding: 90px 0;
  background: var(--white);
}

.section-activities .container-xl {
  margin-bottom: 36px;
}

.act-swiper {
  padding: 0 24px 52px !important;
}

.act-swiper .swiper-slide {
  width: 340px;
}

.activity-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 420px;
  cursor: pointer;
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.activity-card:hover img {
  transform: scale(1.08);
}

.act-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 45, 62, .88) 0%, rgba(11, 45, 62, .2) 50%, transparent 80%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}

.act-difficulty {
  display: inline-block;
  background: rgba(197, 151, 58, .85);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.act-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.act-overlay p {
  font-size: .84rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
  margin-bottom: 16px;
}

.act-book-btn {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 999px;
  align-self: flex-start;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(10px);
}

.activity-card:hover .act-book-btn {
  opacity: 1;
  transform: translateY(0);
}

.act-book-btn:hover {
  background: var(--white);
  color: var(--primary);
}

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.section-testimonials {
  padding: 90px 0;
  background: var(--sand);
}

.testi-swiper {
  padding-bottom: 52px !important;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 45, 62, .06);
  height: 100%;
  transition: var(--transition);
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testi-quote {
  font-size: 2.5rem;
  color: var(--blue);
  opacity: .4;
  line-height: 1;
  margin-bottom: 16px;
}

.testi-text {
  font-size: .93rem;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  height: 160px;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.testi-text::-webkit-scrollbar {
  width: 6px;
}

.testi-text::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.testi-text::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue), var(--blue-light));
  border-radius: 10px;
  transition: 0.3s;
}

.testi-text::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--blue-light), var(--blue));
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--rating);
  font-size: .85rem;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 45, 62, .07);
}

.testi-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-pale);
}

.thumb-text {
  background-color: var(--primary);
  color: var(--white);
  font-size: 28px;
  width: 65px;
  height: 65px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-author strong {
  display: block;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  color: var(--primary);
}

.testi-author span {
  font-size: .78rem;
  color: var(--ink-light);
}

/* ─── GALLERY ───────────────────────────────────────────── */
.section-gallery {
  padding: 90px 0;
  background: var(--white);
}

.gallery-swiper {
  padding-bottom: 52px !important;
}

.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(11, 45, 62, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  color: var(--white);
  font-size: 1.8rem;
}

.gallery-card:hover .gallery-hover {
  opacity: 1;
}

/* ─── CTA SECTION ───────────────────────────────────────── */
.section-cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: #55bff0;
}

.cta-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(197, 151, 58, .15) 0%, transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(46, 165, 193, .12) 0%, transparent 50%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-title em {
  color: var(--blue-light);
}

.section-cta p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 999px;
  transition: var(--transition);
}

.btn-wa-cta:hover {
  background: #1fba59;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
}

.btn-call-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-call-cta:hover {
  background: rgba(255, 255, 255, .2);
  color: var(--white);
  border-color: rgba(255, 255, 255, .5);
}

.cta-note {
  font-size: .78rem !important;
  color: rgba(255, 255, 255, .45) !important;
  margin-top: 16px !important;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--primary);
  border-top: 1px solid rgba(11, 45, 62, .08);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-logo {
  width: 130px;
  height: 100px;
  overflow: hidden;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-tagline {
  font-size: .88rem;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--white);
  border: 1px solid rgba(11, 45, 62, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: transparent;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: .88rem;
  color: var(--ink-mid);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--blue);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .88rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

.footer-contact-list .bi {
  color: var(--ink-mid);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: var(--ink-mid);
}

.footer-contact-list a:hover {
  color: var(--blue-light);
}

.footer-bottom {
  border-top: 1px solid rgba(11, 45, 62, .08);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: .8rem;
  color: var(--ink-light);
  margin: 0;
}

.footer-bottom a {
  color: var(--blue);
}

/* ─── SCROLL TOP ────────────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition: var(--transition);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--blue);
  color: var(--white);
}

/* ─── WHATSAPP FLOAT ────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 78px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: var(--white);
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  transition: var(--transition);
}

.wa-float:hover {
  background: #1fba59;
  color: var(--white);
  transform: scale(1.08);
}

.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, .4);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ─── SWIPER CUSTOM PAGINATION ──────────────────────────── */
.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: rgba(11, 45, 62, .2) !important;
  opacity: 1 !important;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--blue) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1199px) {
  .navmenu {
    display: none !important;
  }

  .header-wa {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .search-widget {
    max-width: 100%;
  }

  .search-form {
    flex-wrap: wrap;
    padding: 12px;
    gap: 8px;
  }

  .search-field {
    flex: 1 1 calc(50% - 8px);
    border-bottom: 1px solid rgba(11, 45, 62, .06);
    padding-bottom: 8px;
  }

  .search-divider {
    display: none;
  }

  .btn-search {
    width: 100%;
    justify-content: center;
    margin: 4px 0 0;
  }

  .search-tabs {
    overflow-x: auto;
  }

  .search-tab {
    padding: 9px 14px;
  }

  .about-img-badge {
    width: 90px;
    height: 90px;
    bottom: -12px;
    right: -12px;
  }

  .about-img-badge strong {
    font-size: 1.8rem;
  }

  .stat-item {
    padding: 12px 24px;
  }

  .section-services,
  .section-destinations,
  .section-about,
  .section-packages,
  .section-activities,
  .section-testimonials,
  .section-gallery,
  .section-cta {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-grid {
    gap: 0;
  }

  .stat-sep {
    display: none;
  }

  .stat-item {
    flex: 1 1 50%;
    padding: 16px;
  }

  .section-header.d-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px;
  }

  .hero-content {
    padding-top: 70px;
  }

  .hero-title {
    font-size: 2.2rem;
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: .95rem;
  }

  .hero-scroll-hint {
    display: none;
  }

  .hero-indicators {
    bottom: 160px;
  }

  .carousel-control-prev {
    left: 8px;
  }

  .carousel-control-next {
    right: 8px;
  }

  .search-widget {
    border-radius: var(--radius-md);
  }

  .search-tabs {
    padding: 4px 6px;
    gap: 0;
  }

  .search-tab {
    font-size: .75rem;
    padding: 8px 10px;
  }

  .search-tab span {
    display: none;
  }

  .about-img-main {
    height: 320px;
  }

  .about-img-badge {
    bottom: -8px;
    right: 12px;
  }

  .dest-card .dest-img {
    height: 230px;
  }

  .act-swiper .swiper-slide {
    width: 280px;
  }

  .activity-card {
    height: 360px;
  }

  .act-book-btn {
    opacity: 1;
    transform: translateY(0);
  }

  .testi-card {
    padding: 24px 20px;
  }

  .gallery-card {
    height: 200px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-wa-cta,
  .btn-call-cta {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .wa-float {
    right: 80px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .scroll-top-btn {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .stat-item {
    flex: 1 1 100%;
  }

  .stat-sep {
    display: none;
  }

  .pkg-footer {
    flex-wrap: wrap;
  }

  .btn-pkg {
    width: 100%;
    justify-content: center;
  }

  .mobile-nav-links a {
    font-size: 1.3rem;
  }
}

/* ─── AOS custom adjustments ────────────────────────────── */
[data-aos] {
  will-change: transform, opacity;
}

/* ─── Reduced Motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .hero-slide {
    transition: none !important;
  }

  .wa-pulse {
    animation: none !important;
  }

  .scroll-line {
    animation: none !important;
  }
}


/* --------------------------------------------------------------
# Featured Items
-------------------------------------------------------------- */
section.featured-items {
  position: relative;
  margin-top: -120px;
  z-index: 20;
  padding-bottom: 100px;
  overflow: hidden;
}

.featured-items .container {
  position: relative;
}

.featured-items .swiper-nav-custom {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  justify-content: space-between;
  gap: 0;
  z-index: 30;
  padding: 0 8px;
}

.featured-items .item .thumb {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-position: center center;
}

.featured-items .item .thumb video {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-items .item .thumb:hover .hover-effect {
  top: 0;
  opacity: 1;
}

.featured-items .item .thumb .hover-effect {
  background-color: rgba(15, 15, 15, 0.2);
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  opacity: 0;
  transition: all .3s;
}

.featured-items .item .thumb .hover-effect .content {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  padding: 0px 15px;
}

.featured-items .item .thumb .hover-effect .content h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 22px;
}

.featured-items .item .thumb .hover-effect .content h4 i {
  font-size: 14px;
  margin-left: 5px;
  font-weight: 600;
}

.featured-items .item .thumb .hover-effect .content h4 span {
  font-size: 14px;
  font-weight: 500;
  color: #afafaf;
}

.featured-items .item .thumb .hover-effect .content ul li {
  font-size: 15px;
  font-weight: 400;
  color: #afafaf;
  margin-bottom: 7px;
}

.featured-items .item .thumb .hover-effect .content ul li:last-child {
  margin-bottom: 0px;
}

.featured-items .item .thumb .hover-effect .content ul li span {
  color: #2a2a2a;
  font-weight: 500;
}

.featured-items .owl-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-35px);
  display: block !important;
}

.featured-items .owl-nav .owl-prev {
  position: absolute;
  left: -70px;
}

.featured-items .owl-nav .owl-next {
  position: absolute;
  right: -70px;
}

.featured-items .owl-nav .owl-prev span,
.featured-items .owl-nav .owl-next span {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: #0099AC;
  border-radius: 50%;
  opacity: 0.75;
  transition: all .3s;
}

.featured-items .owl-nav .owl-prev span:hover,
.featured-items .owl-nav .owl-next span:hover {
  opacity: 1;
}


/* --------------------------------------------------------------
# Global Page Titles & Breadcrumbs
-------------------------------------------------------------- */
.page-title {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  background: url("../img/hero_1.webp") center center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.page-title>* {
  position: relative;
  z-index: 2;
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumb {
  justify-content: center;
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.page-title .breadcrumb-item {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.page-title .breadcrumb-item.active {
  color: var(--primary);
}

.page-title .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumb-item a:hover {
  color: var(--primary);
}

.page-title .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.page-title .title-wrapper {
  max-width: 850px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease-out;
}

.page-title .title-wrapper h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: #fff;
}

.page-title .title-wrapper p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .page-title {
    padding: 60px 15px;
  }

  .page-title .title-wrapper h1 {
    font-size: 2.2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.9rem;
  }
}


/* --------------------------------------------------------------
# Contact Page CTA Section
-------------------------------------------------------------- */
.cta-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(3, 80, 136, .15) 0%, transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(44, 145, 218, .12) 0%, transparent 40%);
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-kicker {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-light);
  display: block;
  margin-bottom: 16px;
}

.cta-left {
  background-color: var(--ink-mid);
  padding: 20px;
  border-radius: var(--radius-xl);
}

.cta-left h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-left h2 em {
  color: var(--blue-light);
  font-style: italic;
}

.cta-left>p {
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 30px;
}

.cta-trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.904);
  border: 1px solid rgba(124, 124, 124, 0.952);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

.cta-trust-badges .bi {
  color: var(--blue-light);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .05);
}

.contact-form-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(11, 45, 62, .08);
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cf-field label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-light);
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--ink);
  background: var(--sand);
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  padding: 11px 14px;
  outline: none;
  transition: var(--transition);
  width: 100%;
  resize: none;
  appearance: none;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(3, 80, 136, .1);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  padding: 15px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(3, 80, 136, .4);
}

@media (max-width: 991px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-section {
    padding: 70px 0;
  }
}

@media (max-width: 576px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px 18px;
  }
}

.contact-info-list {
  list-style: none;
  padding-left: 5px;
  padding-top: 20px;
  padding-bottom: 10px;
}

.contact-info-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .88rem;
  color: var(--ink);
  line-height: 1.6;
}

.contact-info-list .bi {
  color: var(--blue-light);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-list a {
  color: var(--ink);
}

.contact-info-list a:hover {
  color: var(--blue-light);
}


/* --------------------------------------------------------------
# Details Pages (Destination / Service / Tour)
-------------------------------------------------------------- */
.details-page-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f7fbfd 0%, #ffffff 45%);
}

.details-main-card {
  background: var(--ink-mid);
  border: 1px solid color-mix(in srgb, var(--primary), transparent 88%);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.details-main-media {
  width: 100%;
  height: 410px;
  overflow: hidden;
}

.details-main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-main-content {
  padding: 28px;
}

.details-main-content h2,
.details-main-content h3 {
  margin-bottom: 14px;
}

.details-main-content p {
  margin-bottom: 0;
  line-height: 1.8;
  color: color-mix(in srgb, var(--ink), transparent 18%);
}

.details-main-content p img {
  border-radius: 14px;
}

.details-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.details-tags span {
  background: color-mix(in srgb, var(--primary), white 90%);
  color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--primary), transparent 70%);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}

.details-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.details-meta-item {
  border: 1px solid color-mix(in srgb, var(--primary), transparent 84%);
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
}

.details-meta-item h6 {
  margin: 0 0 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--ink), transparent 32%);
  font-family: var(--font-body);
}

.details-meta-item p {
  margin: 0;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.35;
}

.details-sidebar-card {
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--primary), transparent 85%);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 22px;
}

.details-sidebar-card .widget_title {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--ink), transparent 88%);
  font-size: 22px;
}

.details-sidebar-card .form-group {
  margin-bottom: 14px;
}

.details-sidebar-card .form-control {
  border-radius: 10px;
  border-color: color-mix(in srgb, var(--sand), transparent 80%);
  min-height: 44px;
}

.details-sidebar-card textarea.form-control {
  min-height: 96px;
}

.details-sidebar-card .btn-premium {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid color-mix(in srgb, var(--primary), transparent 50%);
  background: linear-gradient(135deg, var(--primary) 0%, color-mix(in srgb, var(--primary), var(--primary) 40%) 100%);
  color: #ffffff;
  box-shadow: 0 14px 26px color-mix(in srgb, var(--primary), transparent 75%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.details-sidebar-card .btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px color-mix(in srgb, var(--primary), transparent 65%);
  filter: brightness(1.03);
}

.details-sidebar-card .btn-premium:focus,
.details-sidebar-card .btn-premium:active {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary), transparent 70%), 0 18px 34px color-mix(in srgb, var(--primary), transparent 65%);
}

.details-sidebar-card .btn-premium:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.recent-posts {
  height: 300px;
  overflow: auto;
  scroll-behavior: smooth;
}

.recent-posts {
  height: 300px;
  overflow: auto;
  scroll-behavior: smooth;
  padding-right: 8px;
}

/* Scrollbar width */
.recent-posts::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.recent-posts::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Thumb */
.recent-posts::-webkit-scrollbar-thumb {
  background: var(--sand);
  border-radius: 10px;
  transition: 0.3s;
}

/* Hover effect */
.recent-posts::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.details-list-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed color-mix(in srgb, var(--sand), transparent 84%);
}

.details-list-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.details-list-item img {
  border-radius: 10px;
  object-fit: cover;
}

.details-tour-plan .card {
  border: 1px solid color-mix(in srgb, var(--primary), transparent 82%);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
}

.details-tour-plan .card-header {
  background: color-mix(in srgb, var(--primary), white 92%);
  border-bottom: 0;
}

.details-tour-plan .btn-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.details-tour-plan .btn-link:hover {
  text-decoration: none;
}

.details-list-item .media-body h3 {
  font-size: 22px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .details-page-section {
    padding: 56px 0;
  }

  .details-main-card {
    border-radius: 16px;
  }

  .details-main-media {
    height: 320px;
  }

  .details-main-content {
    padding: 22px;
  }

  .details-meta-grid {
    grid-template-columns: 1fr;
  }

  .details-sidebar-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .details-page-section {
    padding: 42px 0;
  }

  .details-main-media {
    height: 240px;
  }

  .details-main-content {
    padding: 18px;
  }

  .details-main-content h2,
  .details-main-content h3 {
    font-size: 24px;
    line-height: 1.3;
  }

  .details-main-content p {
    line-height: 1.7;
  }

  .details-tags {
    gap: 8px;
    margin-bottom: 14px;
  }

  .details-tags span {
    font-size: 12px;
    padding: 5px 10px;
  }

  .details-meta-item {
    padding: 10px 12px;
  }

  .details-meta-item h6 {
    font-size: 11px;
  }

  .details-meta-item p {
    font-size: 14px;
  }

  .details-sidebar-card {
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .details-sidebar-card .widget_title {
    margin-bottom: 14px;
    padding-bottom: 10px;
    font-size: 20px;
  }

  .details-sidebar-card .form-control {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .details-sidebar-card textarea.form-control {
    min-height: 88px;
  }

  .details-sidebar-card .row {
    margin-left: -6px;
    margin-right: -6px;
  }

  .details-sidebar-card .row>[class*="col-"] {
    padding-left: 6px;
    padding-right: 6px;
  }

  .details-list-item {
    gap: 10px;
    padding: 9px 0;
  }

  .details-list-item img {
    width: 72px;
    height: 72px;
  }

  .details-tour-plan .card {
    border-radius: 12px;
  }

  .details-tour-plan .btn-link {
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
    white-space: normal;
    gap: 8px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 575px) {
  .details-page-section .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .details-main-card {
    border-radius: 14px;
  }

  .details-main-media {
    height: 210px;
  }

  .details-main-content h2,
  .details-main-content h3 {
    font-size: 22px;
  }

  .details-sidebar-card .widget_title {
    font-size: 18px;
  }

  .details-list-item .media-body h3 {
    font-size: 15px !important;
    line-height: 1.4;
  }
}

.star-rating i {
  color: var(--rating-color);
}

/* --------------------------------------------------------------
# Tour Details Page
-------------------------------------------------------------- */
.tour-details-hero .overlay {
  background: linear-gradient(120deg, rgba(15, 91, 114, 0.82) 0%, rgba(6, 6, 6, 0.55) 55%, rgba(6, 6, 6, 0.35) 100%);
}

.tour-hero-kicker {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.tour-details-page .breadcrumb-nav {
  flex-wrap: wrap;
  row-gap: 4px;
}

.tour-showcase {
  position: relative;
}

.tour-showcase-media {
  position: relative;
}

.tour-showcase-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 91, 114, 0.25) 70%, rgba(6, 6, 6, 0.55) 100%);
}

.tour-showcase-badges {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 2;
}

.tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.tour-badge-price {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
}

.tour-badge-cat {
  background: color-mix(in srgb, var(--primary), transparent 12%);
  color: #fff;
}

.tour-intro-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.tour-star-rating {
  font-size: 1rem;
  letter-spacing: 2px;
}

/* =============================================================
   TOUR DETAILS PAGE — Premium Design System
   ============================================================= */

/* ─── Page Section ──────────────────────────────────────── */
.tour-details-page {
  padding: 50px 0 70px;
  background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 40%, #f8fbfd 100%);
  position: relative;
}

.tour-details-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 320px;
  background: linear-gradient(135deg, rgba(11, 45, 62, .03) 0%, rgba(3, 80, 136, .04) 100%);
  pointer-events: none;
}

/* ─── Tour Showcase (Hero Card) ─────────────────────────── */
.tour-showcase {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 48px rgba(11, 45, 62, .1), 0 2px 8px rgba(11, 45, 62, .06);
  border: 1px solid rgba(11, 45, 62, .06);
  transition: box-shadow .4s ease;
}

.tour-showcase:hover {
  box-shadow: 0 18px 56px rgba(11, 45, 62, .14), 0 4px 12px rgba(11, 45, 62, .08);
}

.tour-showcase-media {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.tour-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(.25, .46, .45, .94);
}

.tour-showcase:hover .tour-showcase-media img {
  transform: scale(1.05);
}

.tour-showcase-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
      rgba(11, 45, 62, .65) 0%,
      rgba(11, 45, 62, .15) 40%,
      transparent 70%);
  pointer-events: none;
}

/* Badges on image */
.tour-showcase-badges {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  z-index: 2;
  flex-wrap: wrap;
}

.tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.tour-badge:hover {
  transform: translateY(-2px);
}

.tour-badge-price {
  background: linear-gradient(135deg, rgba(3, 80, 136, .88), rgba(11, 45, 62, .85));
  color: #fff;
  box-shadow: 0 6px 20px rgba(3, 80, 136, .35);
  letter-spacing: .3px;
}

.tour-badge-price i {
  font-size: 0.9rem;
}

.tour-badge-cat {
  background: rgba(255, 255, 255, .92);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(11, 45, 62, .12);
}

/* ─── Tour Intro Content ───────────────────────────────── */
.tour-intro {
  padding: 28px 28px 32px;
}

.tour-intro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

/* Star Ratings */
.tour-star-rating {
  display: flex;
  gap: 3px;
}

.tour-star-rating i {
  font-size: 0.95rem;
  transition: transform .2s ease;
}

.tour-star-rating .bi-star-fill {
  color: var(--rating);
  filter: drop-shadow(0 1px 3px rgba(253, 204, 13, .4));
}

.tour-star-rating .bi-star {
  color: #d1d9de;
}

.tour-star-rating:hover i {
  animation: starPulse .4s ease forwards;
}

@keyframes starPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* Theme Pill */
.tour-theme-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(11, 45, 62, .06), rgba(3, 80, 136, .08));
  color: var(--primary);
  border: 1px solid rgba(11, 45, 62, .1);
  transition: var(--transition);
}

.tour-theme-pill:hover {
  background: linear-gradient(135deg, rgba(11, 45, 62, .1), rgba(3, 80, 136, .12));
}

.tour-theme-pill i {
  color: var(--blue);
  font-size: 0.85rem;
}

/* Page Title */
.tour-page-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -.02em;
}

/* ─── Meta Highlight Grid ──────────────────────────────── */
.tour-meta-highlight {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #f6f9fc, #f0f5f9);
}

.tour-meta-highlight .details-meta-item {
  padding: 18px 16px;
  text-align: center;
  position: relative;
  transition: background .25s ease;
}

.tour-meta-highlight .details-meta-item::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  bottom: 20%;
  width: 1px;
  background: rgba(11, 45, 62, .08);
}

.tour-meta-highlight .details-meta-item:last-child::after {
  display: none;
}

.tour-meta-highlight .details-meta-item:hover {
  background: rgba(3, 80, 136, .04);
}

.tour-meta-highlight .details-meta-item h6 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.tour-meta-highlight .details-meta-item h6 i {
  font-size: 0.82rem;
}

.tour-meta-highlight .details-meta-item p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
}

/* ─── Tour Body & Sections ─────────────────────────────── */
.tour-body {
  margin-top: 36px;
}

.tour-section-block {
  margin-bottom: 48px;
}

.tour-section-head {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(11, 45, 62, .06);
  position: relative;
}

.tour-section-head::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--primary-light));
  border-radius: 2px;
}

.tour-section-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
}

.tour-section-kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.tour-section-title {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  margin: 0 0 10px;
  color: var(--primary);
  letter-spacing: -.01em;
}

.tour-section-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #5a7282;
}

/* ─── Overview Block ───────────────────────────────────── */
.tour-overview-block {
  background: #fff;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid rgba(11, 45, 62, .06);
  box-shadow: 0 4px 24px rgba(11, 45, 62, .05);
}

.tour-overview-content {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #3a5060;
}

.tour-overview-content p:last-child {
  margin-bottom: 0;
}

.tour-overview-content p+p {
  margin-top: 14px;
}

/* ─── Itinerary Accordion ──────────────────────────────── */
.tour-details-page .details-tour-plan {
  position: relative;
  padding-left: 0;
}

.tour-details-page .details-tour-plan .card {
  border: 1px solid rgba(11, 45, 62, .08);
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11, 45, 62, .05);
  transition: transform .3s ease, box-shadow .3s ease;
  margin-bottom: 12px;
  background: #fff;
}

.tour-details-page .details-tour-plan .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(11, 45, 62, .1);
}

.tour-details-page .details-tour-plan .card-header {
  padding: 0;
  background: #fff;
  border-bottom: none;
}

.tour-details-page .details-tour-plan .card-header h5 {
  width: 100%;
  margin: 0;
}

.tour-details-page .details-tour-plan .btn-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none !important;
  transition: background .2s ease;
}

.tour-details-page .details-tour-plan .btn-link:hover {
  background: rgba(3, 80, 136, .02);
}

.tour-day-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 32px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  border-radius: 8px;
  font-family: var(--font-body);
  box-shadow: 0 3px 10px rgba(3, 80, 136, .25);
}

.tour-day-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  font-family: var(--font-body);
}

.tour-details-page .details-tour-plan .rotate-icon {
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  font-size: 1rem;
  color: var(--blue);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(3, 80, 136, .06);
}

.tour-details-page .details-tour-plan .btn-link:not(.collapsed) .rotate-icon,
.tour-details-page .details-tour-plan .btn-link[aria-expanded="true"] .rotate-icon {
  transform: rotate(180deg);
  background: rgba(3, 80, 136, .12);
}

.tour-details-page .details-tour-plan .card-body {
  padding: 20px 24px 26px;
  font-size: 0.93rem;
  line-height: 1.8;
  color: #3a5060;
  border-top: 1px solid rgba(11, 45, 62, .06);
  background: linear-gradient(180deg, #f8fbfd, #fff);
}

.tour-details-page .details-tour-plan .card-body ul {
  padding-left: 1.2rem;
  margin-bottom: 0.75rem;
}

.tour-details-page .details-tour-plan .card-body li+li {
  margin-top: 4px;
}

/* ─── Inclusions & Exclusions ──────────────────────────── */
.tour-inc-exc-section .tour-inc-exc-row {
  align-items: stretch;
}

.tour-inc-exc-card {
  height: 100%;
  padding: 26px 24px 28px;
  border-radius: 16px;
  border: 1px solid rgba(11, 45, 62, .08);
  background: #fff;
  box-shadow: 0 6px 24px rgba(11, 45, 62, .05);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}

.tour-inc-exc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.tour-inc-exc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(11, 45, 62, .1);
}

.tour-inc-exc-card--inclusions::before {
  background: linear-gradient(90deg, #059652, #0abf64);
}

.tour-inc-exc-card--exclusions::before {
  background: linear-gradient(90deg, #c0392b, #e74c3c);
}

.tour-inc-exc-card--inclusions {
  border-top: none;
}

.tour-inc-exc-card--exclusions {
  border-top: none;
}

.tour-inc-exc-title {
  font-size: 1.05rem;
  font-family: var(--font-display);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  color: var(--primary);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(11, 45, 62, .06);
}

.tour-inc-exc-card--inclusions .tour-inc-exc-title i {
  color: #059652;
  font-size: 1.15rem;
}

.tour-inc-exc-card--exclusions .tour-inc-exc-title i {
  color: #c0392b;
  font-size: 1.15rem;
}

.tour-inc-exc-body {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #3a5060;
}

.tour-inc-exc-body ul {
  margin-bottom: 0;
  padding-left: 1.15rem;
  list-style: none;
}

.tour-inc-exc-card--inclusions .tour-inc-exc-body li {
  position: relative;
  padding-left: 24px;
}

.tour-inc-exc-card--inclusions .tour-inc-exc-body li::before {
  content: '\F26A';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 2px;
  color: #059652;
  font-size: 0.8rem;
}

.tour-inc-exc-card--exclusions .tour-inc-exc-body li {
  position: relative;
  padding-left: 24px;
}

.tour-inc-exc-card--exclusions .tour-inc-exc-body li::before {
  content: '\F62A';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 2px;
  color: #c0392b;
  font-size: 0.8rem;
}

.tour-inc-exc-body li+li {
  margin-top: 8px;
}

/* ─── Policies & Terms ─────────────────────────────────── */
.tour-policy-section {
  margin-top: 12px;
}

.tour-policy-grid {
  display: grid;
  gap: 16px;
}

.tour-policy-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(11, 45, 62, .07);
  box-shadow: 0 4px 18px rgba(11, 45, 62, .04);
  transition: transform .3s ease, box-shadow .3s ease;
}

.tour-policy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(11, 45, 62, .09);
}

.tour-policy-card .policy-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--primary);
  font-family: var(--font-display);
}

.tour-policy-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tour-policy-icon--1 {
  background: linear-gradient(135deg, rgba(5, 150, 82, .1), rgba(5, 150, 82, .18));
  color: #059652;
}

.tour-policy-icon--2 {
  background: linear-gradient(135deg, rgba(3, 80, 136, .1), rgba(3, 80, 136, .18));
  color: var(--blue);
}

.tour-policy-icon--3 {
  background: linear-gradient(135deg, rgba(212, 101, 74, .1), rgba(212, 101, 74, .18));
  color: var(--coral);
}

.premium-policy-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #5a7282;
  padding-left: 56px;
}

/* ─── Sidebar Sticky ───────────────────────────────────── */
.premium-sidebar-sticky {
  position: sticky !important;
  top: 140px;
}

/* ─── Contact / Enquiry Form Card ──────────────────────── */
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: 0 12px 48px rgba(11, 45, 62, .1), 0 2px 8px rgba(11, 45, 62, .06);
  border: 1px solid rgba(11, 45, 62, .06);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--blue), var(--primary-light));
}

.contact-form-card h4 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 700;
  text-align: center;
}

.contact-form-card .cta-form {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-card .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-card .cf-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-form-card .cf-field label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  font-family: var(--font-body);
}

.contact-form-card .cf-field input,
.contact-form-card .cf-field select,
.contact-form-card .cf-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--ink);
  background: #f6f9fc;
  border: 1.5px solid rgba(11, 45, 62, .1);
  border-radius: 10px;
  outline: none;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.contact-form-card .cf-field input:focus,
.contact-form-card .cf-field select:focus,
.contact-form-card .cf-field textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(3, 80, 136, .1);
}

.contact-form-card .cf-field input::placeholder,
.contact-form-card .cf-field textarea::placeholder {
  color: #9bb0be;
}

.contact-form-card .cf-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b2d3e'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
}

.contact-form-card .cf-field textarea {
  resize: vertical;
  min-height: 70px;
}

.contact-form-card .btn-submit {
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  box-shadow: 0 6px 22px rgba(3, 80, 136, .3);
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}

.contact-form-card .btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue), var(--primary-light));
  opacity: 0;
  transition: opacity .3s ease;
}


.contact-form-card .btn-submit i,
.contact-form-card .btn-submit span {
  position: relative;
  z-index: 1;
}

.contact-form-card .btn-submit:hover {
  color: var(--sand) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(3, 80, 136, .35);
}

.contact-form-card .btn-submit:active {
  transform: translateY(0);
}

/* ─── Sidebar Tour List ────────────────────────────────── */
.details-sidebar-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 8px 36px rgba(11, 45, 62, .07);
  border: 1px solid rgba(11, 45, 62, .06);
}

.details-sidebar-card .widget_title {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(11, 45, 62, .06);
  position: relative;
  font-family: var(--font-display);
}

.details-sidebar-card .widget_title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--primary-light));
  border-radius: 2px;
}

.details-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 45, 62, .05);
  transition: var(--transition);
}

.details-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.details-list-item:first-child {
  padding-top: 0;
}

.details-list-item:hover {
  padding-left: 6px;
}

.details-list-item img {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(11, 45, 62, .1);
  transition: transform .3s ease;
}

.details-list-item:hover img {
  transform: scale(1.05);
}

.details-list-item .media-body h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 4px;
  font-family: var(--font-body);
  transition: color .2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.details-list-item:hover .media-body h3 {
  color: var(--blue);
}

.tour-side-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}

.tour-side-price i {
  font-size: 0.78rem;
}

/* ─── Responsive — Tour Details ────────────────────────── */
@media (max-width: 1199.98px) {
  .tour-meta-highlight {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-meta-highlight .details-meta-item:nth-child(2)::after {
    display: none;
  }

  .tour-meta-highlight .details-meta-item:nth-child(1),
  .tour-meta-highlight .details-meta-item:nth-child(2) {
    border-bottom: 1px solid rgba(11, 45, 62, .06);
  }
}

@media (max-width: 991.98px) {
  .tour-details-page {
    padding: 36px 0 50px;
  }

  .premium-sidebar-sticky {
    position: static;
  }

  .tour-showcase-media {
    height: 300px;
  }

  .tour-intro {
    padding: 22px 22px 26px;
  }

  .tour-overview-block {
    padding: 24px;
  }

  .premium-policy-desc {
    padding-left: 0;
    margin-top: 6px;
  }
}

@media (max-width: 767.98px) {
  .tour-showcase-media {
    height: 240px;
  }

  .tour-meta-highlight {
    grid-template-columns: 1fr 1fr;
  }

  .tour-meta-highlight .details-meta-item {
    padding: 14px 12px;
  }

  .tour-meta-highlight .details-meta-item::after {
    display: none;
  }

  .tour-meta-highlight .details-meta-item:nth-child(odd) {
    border-right: 1px solid rgba(11, 45, 62, .06);
  }

  .tour-meta-highlight .details-meta-item:nth-child(1),
  .tour-meta-highlight .details-meta-item:nth-child(2) {
    border-bottom: 1px solid rgba(11, 45, 62, .06);
  }

  .contact-form-card .form-row-2 {
    grid-template-columns: 1fr;
  }

  .tour-intro {
    padding: 18px 16px 22px;
  }

  .tour-page-title {
    font-size: 1.35rem;
  }

  .tour-badge {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .tour-showcase-badges {
    bottom: 14px;
    left: 14px;
  }

  .details-list-item img {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .tour-overview-block {
    padding: 20px 16px;
  }
}

@media (max-width: 575.98px) {
  .tour-showcase-media {
    height: 200px;
  }

  .tour-intro-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .contact-form-card {
    padding: 24px 18px 22px;
  }

  .details-sidebar-card {
    padding: 22px 18px;
  }
}


/* ============================================================
   FLOATING ACTION ICONS
   ============================================================ */

.floating-icons {
  position: fixed;
  right: 16px;
  bottom: 90px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-icons .float {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-icons .float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.floating-icons .facebook {
  background: #1877f2;
}

.floating-icons .insta {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.floating-icons .whatsapp {
  background: #25d366;
}

.floating-icons .call {
  background: #0d1b2a;
}

/*** Team Start ***/

.team-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

/* Card */
.tc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(11, 45, 62, .07);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.tc-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

/* Gradient top accent bar */
.tc-topbar {
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--blue-light));
  flex-shrink: 0;
}

/* Image zone */
.tc-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.tc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.tc-card:hover .tc-img-wrap img {
  transform: scale(1.07);
}

/* Initials shown when no real photo */
.tc-initials {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(175, 218, 235, .3);
  pointer-events: none;
  user-select: none;
  transition: opacity .3s;
}

.tc-card:hover .tc-initials {
  opacity: 0;
}

/* Dark gradient overlay */
.tc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(11, 45, 62, .72) 0%, transparent 55%);
  transition: background var(--transition);
}

.tc-card:hover .tc-img-overlay {
  background: linear-gradient(to top,
      rgba(11, 45, 62, .86) 0%,
      rgba(11, 45, 62, .18) 60%, transparent 100%);
}

/* Social icons — slide up on hover */
.tc-socials {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  transform: translateY(14px);
  opacity: 0;
  transition: transform .35s ease .05s, opacity .35s ease .05s;
  z-index: 5;
}

.tc-card:hover .tc-socials {
  transform: translateY(0);
  opacity: 1;
}

.tc-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: var(--transition), transform .2s;
}

.tc-social-btn:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  color: var(--white);
  transform: scale(1.12);
}

/* Card body */
.tc-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(11, 45, 62, .06);
}

.tc-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  line-height: 1.2;
}

.tc-role {
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--dark);
  margin: 0;
  padding: 7px;
  height: 198px;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

/* Scrollbar track */
.tc-role::-webkit-scrollbar {
  width: 5px;
}

.tc-role::-webkit-scrollbar-track {
  background: rgba(11, 45, 62, .06);
  border-radius: 999px;
}

/* Scrollbar thumb */
.tc-role::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--blue-light));
  border-radius: 999px;
  transition: background .3s;
}

.tc-role::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--blue-light), var(--primary));
}

.tc-role {
  scrollbar-width: thin;
  scrollbar-color: var(--blue) rgba(11, 45, 62, .06);
}

/* Animated accent line */
.tc-divider {
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
  margin: 4px 0;
  transition: width var(--transition);
}

.tc-card:hover .tc-divider {
  width: 52px;
}

.tc-email {
  font-size: .78rem;
  color: var(--ink-light);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive */
@media (max-width: 576px) {
  .team-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .tc-img-wrap {
    height: 160px;
  }

  .tc-name {
    font-size: 1.05rem;
  }
}

/*** Team End ***/