:root {
  --tc-deep: #274D60;
  --tc-sky: #6BA3BE;
  --tc-teal: #0C969C;
  --tc-teal-dark: #0A7075;
  --tc-forest: #032F30;
  --tc-ink: #031716;
  --tc-white: #FFFFFF;
  --tc-accent: #7CFF8A;

  --tc-header-h: 76px;
  --tc-menu-left: 300px;
  --tc-shadow: 0 24px 60px rgba(3, 23, 22, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--tc-forest);
  background:
    radial-gradient(900px circle at 10% 10%, rgba(107, 163, 190, 0.18), transparent 60%),
    radial-gradient(900px circle at 90% 20%, rgba(12, 150, 156, 0.14), transparent 55%),
    linear-gradient(180deg, #fff, rgba(107, 163, 190, 0.06));
}

img {
  max-width: 100%;
  height: auto;
}

.tc-anchor {
  scroll-margin-top: 92px;
}

/* ==================================================
   HEADER
   ================================================== */

.main-header {
  background: var(--tc-white);
  box-shadow: 0 8px 28px rgba(3, 23, 22, 0.08);
  z-index: 1050;
}

.tc-navbar {
  min-height: var(--tc-header-h);
  padding: 0;
  background: var(--tc-white);
  border-bottom: 1px solid rgba(107, 163, 190, 0.22);
}

.tc-navbar .container {
  position: relative;
}

.navbar-brand {
  padding: 0;
  margin-right: 26px;
}

.tc-logo {
  width: 145px;
  height: auto;
  display: block;
}

/* ==================================================
   MAIN NAVIGATION
   ================================================== */

.main-header .navbar-collapse {
  position: static;
}

.main-header .navbar-nav {
  align-items: center;
  gap: 1px;
}

.main-header .navbar-nav-scroll {
  max-height: none;
  overflow: visible;
}

.main-header .navbar-nav > .nav-item {
  position: relative;
}

.main-header .navbar-nav > .nav-item > .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 1.75rem 0.78rem;
  color: var(--tc-forest);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-header .navbar-nav > .nav-item:hover > .nav-link,
.main-header .navbar-nav > .nav-item > .nav-link:hover,
.main-header .navbar-nav > .nav-item > .nav-link.active {
  color: var(--tc-teal-dark);
}

.main-header .navbar-nav > .nav-item.dropdown  > .nav-link::after {
  content: "\f107";
  font-family: "Font Awesome 7 Free";
  display: inline-block;
  margin-left: 5px;
  font-size: 10px;
  line-height: normal;
  font-weight: 900;
}

.main-header .navbar-nav > .nav-item:hover > .nav-link::after,
.main-header .navbar-nav > .nav-item > .nav-link.active::after {
  transform: scaleX(1);
}

/* Remove Bootstrap default caret */
.dropdown-toggle::after {
  display: none;
}

/* ==================================================
   DROPDOWN BASE
   Important: all dropdowns are hidden by default.
   This prevents the menu appearing when hovering banner.
   ================================================== */

.main-header .dropdown-menu {
  display: block;
  margin: 0;
  border: 1px solid rgba(107, 163, 190, 0.22);
  background: var(--tc-white);
  box-shadow: var(--tc-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

/* ==================================================
   DESKTOP DROPDOWN BEHAVIOUR
   Critical fix:
   Only direct top-level navbar dropdowns open on hover.
   Do not use .dropdown:hover globally.
   ================================================== */

@media (min-width: 992px) {
  .main-header .navbar-nav > .dropdown:hover > .dropdown-menu,
  .main-header .navbar-nav > .dropdown:focus-within > .dropdown-menu,
  .main-header .navbar-nav > .dropdown > .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* ==================================================
   SIMPLE DROPDOWNS
   Example: Company, Tours
   ================================================== */

.main-header .navbar-nav > .dropdown:not(.mega-menu) > .dropdown-menu {
  top: 100%;
  left: 0;
  min-width: 245px;
  padding: 10px;
  border-radius: 0 0 14px 14px;
}

.main-header .dropdown-menu .nav-link {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(3, 47, 48, 0.84);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    padding-left 0.18s ease;
}

.main-header .dropdown-menu .nav-link:hover {
  color: var(--tc-teal-dark);
  background: rgba(107, 163, 190, 0.12);
}

/* Nested flyouts only for non-mega dropdowns */
@media (min-width: 992px) {
  .main-header .navbar-nav > .dropdown:not(.mega-menu) .dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
    min-width: 240px;
    margin-left: 10px;
    padding: 10px;
    border-radius: 14px;
  }

  .main-header .navbar-nav > .dropdown:not(.mega-menu) .dropdown:hover > .dropdown-menu,
  .main-header .navbar-nav > .dropdown:not(.mega-menu) .dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* ==================================================
   DESKTOP MEGA MENU
   Left category list + right panel
   ================================================== */

@media (min-width: 992px) {
  .main-header .navbar-nav > .mega-menu {
    position: static;
  }

  .main-header .navbar-nav > .mega-menu > .dropdown-menu {
    top: 100%;
    left: 50%;
    right: auto;

    width: calc(100vw - 24px);
    max-width: 960px;

    min-height: 350px;
    max-height: calc(100vh - 110px);

    overflow: hidden;
    padding: 0;
    border-radius: 0 0 18px 18px;
    background: var(--tc-white);

    transform: translateX(-50%) translateY(12px);
  }

  .main-header .navbar-nav > .mega-menu:hover > .dropdown-menu,
  .main-header .navbar-nav > .mega-menu:focus-within > .dropdown-menu,
  .main-header .navbar-nav > .mega-menu > .dropdown-menu.show {
    transform: translateX(-50%) translateY(0);
  }

  /* Left column category items */
  .main-header .mega-menu > .dropdown-menu > .nav-item {
    position: static;
    width: var(--tc-menu-left);
    background: var(--tc-white);
  }

  .main-header .mega-menu > .dropdown-menu > .nav-item:first-child {
    padding-top: 14px;
  }

  .main-header .mega-menu > .dropdown-menu > .nav-item:last-child {
    padding-bottom: 14px;
  }

  .main-header .mega-menu > .dropdown-menu > .nav-item > .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    width: var(--tc-menu-left);
    min-height: 45px;
    padding: 13px 22px;
    border-radius: 0;
    border-left: 4px solid transparent;
    color: rgba(3, 47, 48, 0.88);
    background: transparent;
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }

  .main-header .mega-menu > .dropdown-menu > .nav-item:hover > .nav-link,
  .main-header .mega-menu > .dropdown-menu > .nav-item:focus-within > .nav-link {
    color: var(--tc-teal-dark);
    background: rgba(12, 150, 156, 0.1);
    border-left-color: #224849;
    padding-left: 22px;
  }

  .main-header .mega-menu > .dropdown-menu > .nav-item.menu-item-has-children > .nav-link::after {
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    margin-left: auto;
    color: rgba(3, 47, 48, 0.35);
    font-size: 0.78rem;
  }

  /* Right panel: hidden by default */
  .main-header .mega-menu > .dropdown-menu > .nav-item > .dropdown-menu {
    position: absolute;
    top: 0;
    left: var(--tc-menu-left);
    right: 0;
    bottom: 0;
    z-index: 1;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 4px 18px;

    width: auto;
    min-width: 0;
    height: 100%;
    max-height: calc(100vh - 110px);
    overflow-y: auto;

    margin: 0;
    padding: 24px 26px;
    border: 0;
    border-left: 1px solid rgba(107, 163, 190, 0.18);
    border-radius: 0;
    background:
      radial-gradient(700px circle at 90% 0%, rgba(107, 163, 190, 0.12), transparent 55%),
      var(--tc-white);
    box-shadow: none;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition:
      opacity 0.16s ease,
      visibility 0.16s ease;
  }

  /*
    Show first right panel only when the parent mega menu is open.
    This fixes the banner-hover issue.
  */
  .main-header .navbar-nav > .mega-menu:hover > .dropdown-menu > .nav-item.menu-item-has-children:first-child > .dropdown-menu,
  .main-header .navbar-nav > .mega-menu:focus-within > .dropdown-menu > .nav-item.menu-item-has-children:first-child > .dropdown-menu,
  .main-header .navbar-nav > .mega-menu > .dropdown-menu.show > .nav-item.menu-item-has-children:first-child > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Show hovered category panel above the default first panel */
  .main-header .navbar-nav > .mega-menu:hover > .dropdown-menu > .nav-item.menu-item-has-children:hover > .dropdown-menu,
  .main-header .navbar-nav > .mega-menu:focus-within > .dropdown-menu > .nav-item.menu-item-has-children:focus-within > .dropdown-menu {
    z-index: 5;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Links inside right panel */
  .main-header .mega-menu > .dropdown-menu > .nav-item > .dropdown-menu .nav-item {
    position: relative;
  }

  .main-header .mega-menu > .dropdown-menu > .nav-item > .dropdown-menu .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px 10px 18px;
    border-radius: 10px;
    color: rgba(3, 47, 48, 0.84);
    font-size: 0.87rem;
    font-weight: 750;
    line-height: 1.35;
  }


  /* Direct left-column links without children */
  .main-header .mega-menu > .dropdown-menu > .nav-item:not(.menu-item-has-children) > .nav-link::after {
    content: "\f061";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    margin-left: auto;
    color: rgba(3, 47, 48, 0.3);
    font-size: 0.72rem;
  }

  /*
    Extra safety:
    nested dropdowns inside mega menu must not act like
    another top-level mega menu.
  */
  .main-header .mega-menu .dropdown:hover > .dropdown-menu {
    transform: none;
  }
}

/* Bootstrap container width: xl */
@media (min-width: 1200px) {
  .main-header .navbar-nav > .mega-menu > .dropdown-menu {
    max-width: 1140px;
  }
}

/* Bootstrap container width: xxl */
@media (min-width: 1400px) {
  .main-header .navbar-nav > .mega-menu > .dropdown-menu {
    max-width: 1320px;
  }
}
/* ==================================================
   WHATSAPP ACTION
   ================================================== */

.tc-actions {
  display: flex;
  align-items: center;
}

.tc-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgb(13, 112, 117);
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.tc-whatsapp-link:hover {
  color: rgb(13, 112, 117);
  opacity: 0.9;
}

.tc-whatsapp-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
  text-align: right;
}

.tc-whatsapp-text small {
  margin-bottom: 2px;
  color: var(--tc-teal-dark);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tc-whatsapp-text strong {
  color: var(--tc-forest);
  font-size: 0.8rem;
  font-weight: 900;
}

.tc-whatsapp-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: var(--tc-teal-dark);
  color: var(--tc-white);
  font-size: 1.2rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.tc-whatsapp-link:hover i {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(13, 112, 117, 0.24);
}

/* ==================================================
   MOBILE TOGGLER
   ================================================== */

.tc-navbar .navbar-toggler {
  padding: 8px 10px;
  border: 1px solid rgba(107, 163, 190, 0.32);
  border-radius: 10px;
  box-shadow: none;
}

.tc-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(12, 150, 156, 0.15);
}

/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 1199.98px) and (min-width: 992px) {
  :root {
    --tc-menu-left: 270px;
  }

  .tc-logo {
    width: 126px;
  }

  .main-header .navbar-nav > .nav-item > .nav-link {
    padding-left: 0.48rem;
    padding-right: 0.48rem;
    font-size: 0.74rem;
  }

  .main-header .navbar-nav > .nav-item > .nav-link::after {
    left: 0.48rem;
    right: 0.48rem;
  }

  .tc-whatsapp-text {
    display: none;
  }
}
/* ==================================================
   FINAL OFFCANVAS MOBILE CLEANUP
   Add this at the END of your CSS
   ================================================== */

@media (max-width: 991.98px) {
  /* Hide desktop collapse completely on mobile */
  .main-header .navbar-collapse {
    display: none !important;
  }

  .tc-navbar {
    min-height: 72px;
    padding: 10px 0;
  }

  .tc-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .tc-logo {
    width: 120px;
    max-height: 52px;
    object-fit: contain;
  }

  /* Mobile hamburger button */
  .tc-navbar .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
  }

  .tc-navbar .navbar-toggler:focus {
    box-shadow: none;
  }

  .tc-navbar .navbar-toggler-icon {
    width: 24px;
    height: 24px;
  }
}

/* ==================================================
   OFFCANVAS PANEL
   ================================================== */

.tc-mobile-offcanvas {
  width: min(390px, 92vw);
  border-left: 0;
  z-index: 999999;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tc-offcanvas-header {
  min-height: 74px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(107, 163, 190, 0.18);
}

.tc-offcanvas-header .tc-logo {
  width: 125px;
}

.tc-offcanvas-body {
  padding: 0;
  overflow-x: hidden;
}

.tc-offcanvas-nav {
  width: 100%;
  padding: 0;
  margin: 0;
}

.tc-offcanvas-nav .nav-item {
  width: 100%;
  position: relative;
}

/* Main mobile links */
.tc-offcanvas-nav .nav-link {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 20px;
  border-bottom: 1px solid rgba(107, 163, 190, 0.14);
  border-radius: 0;

  color: var(--tc-forest);
  background: #fff;

  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;

  transition: color 0.2s ease, background-color 0.2s ease;
}

.tc-offcanvas-nav .nav-link:hover,
.tc-offcanvas-nav .nav-item.mobile-open > .nav-link {
  color: var(--tc-teal-dark);
  background: rgba(107, 163, 190, 0.1);
}

/* Reset all dropdowns inside offcanvas */
.tc-offcanvas-nav .dropdown-menu {
  position: static !important;
  inset: auto !important;

  display: none !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  max-height: none !important;

  padding: 0;
  margin: 0;
  border: 0 !important;
  border-radius: 0;
  background: #fff;
  box-shadow: none !important;

  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
}

.tc-offcanvas-nav .nav-item.mobile-open > .dropdown-menu {
  display: block !important;
}

/* Plus/minus icon */
.tc-offcanvas-nav .menu-item-has-children > .nav-link::after {
  content: "+";
  flex: 0 0 auto;

  width: 20px;
  height: 20px;
  margin-left: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--tc-teal);
  border-radius: 50%;

  color: var(--tc-teal-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.tc-offcanvas-nav .menu-item-has-children.mobile-open > .nav-link::after {
  content: "−";
}

/* Second level */
.tc-offcanvas-nav > .nav-item > .dropdown-menu > .nav-item > .nav-link {
  padding-left: 34px;
  font-size: 13.5px;
  font-weight: 800;
}

/* Third level */
.tc-offcanvas-nav .dropdown-menu .dropdown-menu .nav-link {
  padding-left: 48px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(3, 47, 48, 0.78);
}

/* Fourth level */
.tc-offcanvas-nav .dropdown-menu .dropdown-menu .dropdown-menu .nav-link {
  padding-left: 62px;
  font-size: 12.5px;
}

/* Hide Bootstrap caret inside offcanvas */
.tc-offcanvas-nav .dropdown-toggle::after {
  display: none !important;
}

/* WhatsApp inside offcanvas */
.tc-offcanvas-actions {
  width: 100%;
  padding: 18px 20px 22px;
}

.tc-offcanvas-actions .tc-whatsapp-link {
  width: 100%;
  justify-content: center;
}

/* Small mobile */
@media (max-width: 575.98px) {
  .tc-mobile-offcanvas {
    width: 92vw;
  }

  .tc-logo {
    width: 116px;
  }

  .tc-offcanvas-header .tc-logo {
    width: 118px;
  }

  .tc-offcanvas-nav .nav-link {
    min-height: 46px;
    padding: 13px 18px;
    font-size: 13.5px;
  }

  .tc-offcanvas-nav > .nav-item > .dropdown-menu > .nav-item > .nav-link {
    padding-left: 30px;
    font-size: 13px;
  }

  .tc-offcanvas-nav .dropdown-menu .dropdown-menu .nav-link {
    padding-left: 42px;
    font-size: 12.5px;
  }

  .tc-offcanvas-nav .dropdown-menu .dropdown-menu .dropdown-menu .nav-link {
    padding-left: 54px;
    font-size: 12px;
  }

  .tc-whatsapp-text strong {
    font-size: 0.76rem;
  }
}
/* ===== HERO ===== */
.tc-hero{
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.tc-hero .main-banner{
  position:absolute;
  inset:0;
  z-index:0;
}
.tc-hero .main-banner img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position:center;
}
.tc-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background: linear-gradient(90deg, rgba(3,23,22,.86), rgba(3,23,22,.20));
}
.tc-hero .container{ position:relative; z-index:2; }

.tc-hero-title{
  letter-spacing:-0.02em;
  text-shadow: 0 14px 34px rgba(0,0,0,.35);
}
/* ==============================
   Buttons
   ============================== */
.btn-tc{
  --bs-btn-bg: var(--tc-teal);
  --bs-btn-border-color: var(--tc-teal);
  --bs-btn-hover-bg: var(--tc-teal-dark);
  --bs-btn-hover-border-color: var(--tc-teal-dark);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  box-shadow: 0 14px 30px rgba(12,150,156,.28);
  border-radius: 0.375rem;
  font-weight: 800;
}
.btn-tc-outline{
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255,255,255,.6);
  --bs-btn-hover-bg: rgba(255,255,255,.12);
  --bs-btn-hover-border-color: rgba(255,255,255,.8);
  border-radius: 0.375rem;
  font-weight: 800;
}
.btn-tc-allPackages {
  color: #fff;
}
.btn-tc-allPackages:hover {
  text-decoration: none;
}
.btn-tc-dark {
  --bs-btn-bg: var(--tc-deep);
  --bs-btn-border-color: var(--tc-deep);
  --bs-btn-hover-bg: var(--tc-forest);
  --bs-btn-hover-border-color: var(--tc-forest);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  border-radius: 0.375rem;
  font-weight: 900;
}
.btn-tc-transpatent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  font-size: 16px;
  background: #0C969C;
  color: #FFFFFF;
}
.btn-tc-transpatent:hover {
  background: #0A7075;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(3, 23, 22, .1);
}
/* ==============================
   Search
   ============================== */
.quick-trip-finder .trip-finder-backgroud{
  background: rgba(3,47,48,.45);
  border: 1px solid rgba(107,163,190,.25);
}
.quick-trip-finder .input-group-text {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.quick-trip-finder .form-control {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.quick-trip-finder .form-control::placeholder {
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
}
.quick-trip-finder .form-control:focus {
    box-shadow: none;
}
/* Section */
.common-class-space {
  padding: 5rem 0;
}
.small-title-head {
  color: #0A7075;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: .5rem;
}
.section-title-head {
  font-size: 2.5rem;
  color: #274D60;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
/* ==============================
   Featured Packages
   ============================== */

/* Card shell */
.tc-pack-card{
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(39,77,96,.10);
  box-shadow: 0 16px 46px rgba(3,47,48,.10);
  transition: transform .22s ease, box-shadow .22s ease;
  height: 100%;
}

.tc-pack-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(3,47,48,.14);
}

/* Image header */
.tc-pack-media{
  position: relative;
  height: 230px;
  background: #f3f6f7;
}

.tc-pack-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

/* subtle fade like screenshot */
.tc-pack-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(3,23,22,.00) 40%, rgba(3,23,22,.10) 100%);
  pointer-events:none;
}

/* Difficulty badge (top right) */
.tc-pack-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: .42rem .78rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  color: #fff;
  background: var(--tc-teal);
  box-shadow: 0 12px 26px rgba(12,150,156,.25);
}

.tc-pack-badge-dark{ background: #1B7EA3; }
.tc-pack-badge-light{ background: #11A7B0; }

/* Body */
.tc-pack-body{
  padding: 1.55rem 1.55rem 1.6rem;
}

.tc-pack-title{
  font-size: 1.35rem;
  font-weight: 900;
  margin: 0 0 .55rem;
  color: #244A5C;
}

.tc-pack-desc{
  margin: 0 0 1.1rem;
  color: rgba(39,77,96,.70);
  font-weight: 600;
  line-height: 1.45;
}

/* Meta row */
.tc-pack-meta{
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.tc-meta-item{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 800;
  color: var(--tc-teal-dark);
}

.tc-meta-ic{
  font-size: .85rem;
}

/* Buttons row */
.tc-pack-actions{
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}

.tc-btn-book{
  background: var(--tc-teal);
  border: 1px solid var(--tc-teal);
  color: #fff;
  font-weight: 900;
  border-radius: 16px;
  padding: .75rem 1.25rem;
  box-shadow: 0 14px 28px rgba(12,150,156,.22);
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}

.tc-btn-book:hover{
  background: var(--tc-teal-dark);
  border-color: var(--tc-teal-dark);
  color: #fff;
  filter: brightness(1.02);
  transform: translateY(-1px);
}

.tc-btn-outline{
  background: #fff;
  border: 2px solid var(--tc-teal);
  color: var(--tc-teal-dark);
  font-weight: 900;
  border-radius: 16px;
  padding: .72rem 1.25rem;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

.tc-btn-outline:hover{
  background: rgba(12,150,156,.10);
  color: var(--tc-teal-dark);
  transform: translateY(-1px);
}

/* Responsive tweaks */
@media (max-width: 575.98px){
  .tc-pack-media{ height: 210px; }
  .tc-pack-body{ padding: 1.25rem 1.25rem 1.35rem; }
  .tc-pack-actions .btn{ width: 100%; }
}
/* ==============================
   WHY CHOOSE US
   ============================== */
.tc-why{
  position: relative;
  background: linear-gradient(180deg, rgba(107,163,190,.14), rgba(12,150,156,.06));
  border-top: 1px solid rgba(39,77,96,.10);
  border-bottom: 1px solid rgba(39,77,96,.10);
}

.tc-why-stats {
  display: grid;
  gap: .75rem;
  width: min(360px, 100%);
}

.tc-stat {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(39,77,96,.12);
  box-shadow: 0 12px 28px rgba(3,47,48,.06);
}

.tc-stat i {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(12,150,156,.14);
  border: 1px solid rgba(12,150,156,.22);
  color: var(--tc-teal-dark);
  font-size: 1.05rem;
}

.tc-stat-title {
  font-weight: 900;
  color: rgba(3,47,48,.88);
  line-height: 1.1;
}

.tc-stat-sub {
  font-weight: 700;
  color: rgba(3,47,48,.55);
  font-size: .9rem;
}

.tc-why-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(420px circle at 0% 0%, rgba(124,255,138,.18), transparent 55%), radial-gradient(420px circle at 100% 20%, rgba(12,150,156,.10), transparent 55%);
  opacity: .55;
  pointer-events: none;
}

.tc-why-card {
  border-radius: 22px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(39,77,96,.12);
  box-shadow: 0 14px 40px rgba(3,47,48,.08);
  padding: 1.6rem 1.6rem 1.45rem;
  transition: transform .22s ease, box-shadow .22s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tc-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  border-color: rgba(47, 125, 78, 0.35);
}

/* Icon + Title One Line */
.tc-why-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.tc-why-ic {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12,150,156,.14);
  border: 1px solid rgba(12,150,156,.22);
  color: var(--tc-teal-dark);
  border-radius: 20px;
  font-size: 22px;
}

.tc-why-title {
  font-weight: 900;
  color: #244A5C;
  font-size: 1.25rem;
  margin: 0 0 .55rem;
  letter-spacing: -0.01em;
}

.tc-why-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #5f6f66;
}
.tc-why-cta {
  margin-top: 1.25rem;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(39,77,96,.12);
  box-shadow: 0 14px 40px rgba(3,47,48,.08);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tc-why-cta-left {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}

.tc-why-cta-left i {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(107,163,190,.16);
  border: 1px solid rgba(107,163,190,.22);
  color: #1B7EA3;
  font-size: 1.05rem;
}

.tc-why-cta-title {
  font-weight: 900;
  color: rgba(3,47,48,.88);
  line-height: 1.15;
}

.tc-why-cta-sub {
  color: rgba(3,47,48,.60);
  font-weight: 500;
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 991px) {
  .common-class-space {
    padding: 60px 0;
  }

  .section-title-head {
    font-size: 34px;
  }

  .tc-why-card {
    padding: 24px;
  }

  .tc-why-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .common-class-space {
    padding: 50px 0;
  }

  .section-title-head {
    font-size: 28px;
  }

  .tc-why-head {
    align-items: flex-start;
  }

  .tc-why-ic {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 19px;
  }

  .tc-why-title {
    font-size: 19px;
  }

  .tc-why-desc {
    font-size: 15px;
  }

  .tc-why-cta {
    padding: 22px;
  }

  .tc-why-cta-left {
    align-items: flex-start;
  }

  .tc-why-cta-title {
    font-size: 18px;
  }

  .btn-tc-dark {
    width: 100%;
    text-align: center;
  }
}

/*====destination=======*/
.tc-destination-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(12, 150, 156, 0.10), transparent 30%),
    radial-gradient(circle at 95% 15%, rgba(107, 163, 190, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
}

.tc-destination-subtitle {
  color: rgba(39, 77, 96, 0.68);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 680px;
}

.tc-destination-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #274d60;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.22s ease, gap 0.22s ease;
}

.tc-destination-view-all:hover {
  color: #0c969c;
  gap: 0.75rem;
}

.tc-destination-card {
  height: 100%;
  position: relative;
}

.tc-destination-link {
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  text-decoration: none;
  color: #ffffff;
  background: #274d60;
  border: 1px solid rgba(39, 77, 96, 0.14);
  box-shadow: 0 18px 46px rgba(3, 47, 48, 0.12);
  isolation: isolate;
}

.tc-destination-image {
  position: relative;
  inset: 0;
  z-index: -2;
}

.tc-destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.tc-destination-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0c969c, #274d60);
  color: rgba(255, 255, 255, 0.85);
  font-size: 3rem;
}

.tc-destination-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3, 23, 22, 0.05) 0%, rgba(3, 23, 22, 0.38) 45%, rgba(3, 23, 22, 0.88) 100%),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.20), transparent 34%);
  transition: background 0.35s ease;
}

.tc-destination-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
}

.tc-destination-badge i {
  color: #7cff8a;
}

.tc-destination-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.35rem;
  z-index: 2;
}

.tc-destination-title {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.tc-destination-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1rem;
  border-radius: 0.375rem;

  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;

  font-size: 0.92rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, gap 0.25s ease, border-color 0.25s ease;
}

.tc-destination-btn i {
  font-size: 0.85rem;
}

.tc-destination-link:hover .tc-destination-image img {
  transform: scale(1.12);
  filter: saturate(1.08) contrast(1.05);
}

.tc-destination-link:hover .tc-destination-btn {
  gap: 0.75rem;
  color: #ffffff;
  border: 1px solid #0C969C;
  background: #0c969c;
  transform: translateY(-2px);
}

.tc-destination-link:focus-visible {
  outline: 4px solid rgba(12, 150, 156, 0.28);
  outline-offset: 4px;
}

@media (max-width: 991.98px) {
  .tc-destination-link {
    min-height: 320px;
  }
}

@media (max-width: 767.98px) {
  .tc-destination-link {
    min-height: 300px;
    border-radius: 22px;
  }

  .tc-destination-content {
    padding: 1.1rem;
  }

  .tc-destination-badge {
    top: 0.85rem;
    left: 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .tc-destination-view-all {
    margin-top: 0.25rem;
  }

  .tc-destination-link {
    min-height: 280px;
  }

  .tc-destination-title {
    font-size: 1.35rem;
  }

  .tc-destination-btn {
    padding: 0.65rem 0.9rem;
    font-size: 0.88rem;
  }
}

/* ==============================
   TESTIMONIALS
   ============================== */

.tc-testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(12, 150, 156, 0.14), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(107, 163, 190, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
}

.tc-testimonial-intro {
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 28px;
  background: #274d60;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 22px 55px rgba(39, 77, 96, 0.18);
  position: relative;
  overflow: hidden;
}

.tc-testimonial-intro::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(124, 255, 138, 0.12);
  top: -90px;
  right: -90px;
}

.tc-testimonial-intro .small-title-head {
  color: #7cff8a;
}

.tc-testimonial-intro .section-title-head {
  color: #ffffff;
  line-height: 1.15;
}

.tc-review-platforms {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.tc-platform {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
  text-decoration: none;
}

.tc-platform img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

/* Hover effect */
.tc-platform:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Optional: subtle click feel */
.tc-platform:active {
  transform: scale(0.97);
}

    
.tc-testimonial-box {
  height: 100%;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at top right, rgba(12, 150, 156, 0.16), transparent 35%);
  border: 1px solid rgba(39, 77, 96, 0.12);
  box-shadow: 0 22px 60px rgba(3, 47, 48, 0.1);
}

.tc-testimonial-card {
  min-height: 340px;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(39, 77, 96, 0.1);
  box-shadow: 0 16px 42px rgba(3, 47, 48, 0.08);
}

.tc-testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.tc-reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tc-reviewer-avatar {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #0c969c, #274d60);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(3, 47, 48, 0.14);
}

.tc-reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tc-reviewer-name {
  margin: 0 0 0.35rem;
  color: #274d60;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.2;
}

.tc-reviewer-location {
  color: rgba(39, 77, 96, 0.66);
  font-size: 0.92rem;
  font-weight: 700;
}

.tc-reviewer-location i {
  color: #0c969c;
  margin-right: 0.35rem;
}

.tc-rating {
  display: flex;
  gap: 0.25rem;
  color: #f6b91a;
  white-space: nowrap;
}

.tc-rating i {
  font-size: 0.95rem;
}

.tc-testimonial-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}

.tc-quote-icon {
  font-size: 2.2rem;
  color: rgba(12, 150, 156, 0.22);
  margin-top: 0.2rem;
}

.tc-review-text {
  color: rgba(3, 47, 48, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  font-weight: 650;
  line-height: 1.8;
}

.tc-review-text p:last-child {
  margin-bottom: 0;
}

.tc-carousel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.15rem;
}

.tc-testimonial-dots {
  position: static;
  margin: 0;
  justify-content: flex-start;
  gap: 0.45rem;
}

.tc-testimonial-dots [data-bs-target] {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(39, 77, 96, 0.24);
  opacity: 1;
  transition: all 0.25s ease;
}

.tc-testimonial-dots .active {
  width: 28px;
  background: #0c969c;
}

.tc-carousel-controls {
  display: flex;
  gap: 0.65rem;
}

.tc-carousel-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #274d60;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(39, 77, 96, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.tc-carousel-btn:hover {
  background: #0c969c;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(12, 150, 156, 0.24);
}

.tc-carousel-btn:focus-visible {
  outline: 3px solid rgba(12, 150, 156, 0.28);
  outline-offset: 3px;
}

@media (max-width: 991.98px) {
  .tc-testimonial-intro {
    min-height: auto;
  }

  .tc-testimonial-card {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .tc-testimonial-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .tc-testimonial-content {
    grid-template-columns: 1fr;
  }

  .tc-quote-icon {
    font-size: 1.8rem;
  }

  .tc-carousel-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .tc-carousel-controls {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 575.98px) {
  .tc-testimonial-box {
    padding: 0.75rem;
    border-radius: 22px;
  }

  .tc-testimonial-card {
    padding: 1.15rem;
    border-radius: 18px;
  }

  .tc-reviewer-avatar {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
    border-radius: 18px;
  }

  .tc-carousel-btn {
    width: 40px;
    height: 40px;
  }
}
/* ==============================
   BLOG SECTION (Premium cards)
   ============================== */

.tc-blog{
  position: relative;
}

/* card wrapper */
.tc-post{
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(39,77,96,.10);
  box-shadow: 0 16px 46px rgba(3,47,48,.10);
  transition: transform .22s ease, box-shadow .22s ease;
  height: 100%;
}

.tc-post:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(3,47,48,.14);
}

/* media */
.tc-post-media{
  position: relative;
  display: block;
  height: 220px;
  background: #f3f6f7;
  overflow: hidden;
}

.tc-post-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform .35s ease;
  display: block;
}

/* overlay gradient for readability */
.tc-post-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(3,23,22,.05) 20%, rgba(3,23,22,.55) 100%);
  opacity: .85;
  pointer-events:none;
}

.tc-post:hover .tc-post-media img{
  transform: scale(1.08);
}

/* category chip */
.tc-post-chip{
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: .42rem .75rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
  color: #fff;
  background: var(--tc-teal);
  box-shadow: 0 12px 26px rgba(12,150,156,.25);
  display: inline-flex;
  align-items: center;
}

.tc-chip-sky{ background: #1B7EA3; }
.tc-chip-deep{ background: var(--tc-deep); }

/* body */
.tc-post-body{
  padding: 1.35rem 1.45rem 1.45rem;
}

.tc-post-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  color: rgba(39,77,96,.65);
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: .7rem;
}

.tc-post-date, .tc-post-read{
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* title */
.tc-post-title{
  margin: 0 0 .6rem;
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.tc-post-title a{
  color: #244A5C;
  text-decoration: none;
}

.tc-post-title a:hover{
  color: var(--tc-teal-dark);
  text-decoration: underline;
  text-underline-offset: .22rem;
}

/* excerpt */
.tc-post-excerpt{
  color: rgba(39,77,96,.72);
  font-weight: 600;
  line-height: 1.55;
  margin: 0 0 1.05rem;
}

/* action button */
.tc-post-actions{
  display: flex;
  justify-content: flex-start;
}

.tc-btn-read{
  background: rgba(12,150,156,.10);
  border: 1px solid rgba(12,150,156,.26);
  color: var(--tc-teal-dark);
  font-weight: 900;
  border-radius: 16px;
  padding: .65rem 1rem;
  transition: transform .15s ease, background .15s ease;
}

.tc-btn-read:hover{
  background: rgba(12,150,156,.16);
  transform: translateY(-1px);
  color: var(--tc-teal-dark);
}

/* responsive */
@media (max-width: 575.98px){
  .tc-post-media{ height: 200px; }
  .tc-post-body{ padding: 1.15rem 1.15rem 1.25rem; }
  .tc-post-meta{ font-size: .88rem; }
}
/* ==============================
   FOOTER
   ============================== */
.tc-footer {
  position: relative;
  background: #032F30;
  color: #ffffff;
  padding: 70px 0 28px;
  overflow: hidden;
}

.tc-footer a {
  transition: all 0.22s ease;
}

/* Top area */
.tc-footer-top {
  background: #0A7075;
  border-radius: 28px;
  padding: 36px;
}

.tc-footer-small-title {
  display: inline-block;
  color: #d8eef4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tc-footer-title {
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.tc-footer-text {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* Newsletter */
.tc-newsletter-form {
  max-width: 560px;
}

.tc-newsletter-box {
  display: flex;
  gap: 8px;
  background: #ffffff;
  border-radius: 999px;
  padding: 7px;
}

.tc-newsletter-box .form-control {
  border: 0;
  box-shadow: none;
  background: transparent;
  color: #031716;
  padding: 12px 16px;
  font-size: 0.95rem;
}

.tc-newsletter-box .form-control:focus {
  box-shadow: none;
}

.tc-newsletter-btn {
  border: 0;
  border-radius: 999px;
  background: #032F30;
  color: #ffffff;
  padding: 12px 24px;
  font-weight: 800;
  white-space: nowrap;
}

.tc-newsletter-btn:hover {
  background: #274D60;
  color: #ffffff;
}

/* Representatives */
.tc-rep-box {
  background: #032F30;
  border-radius: 24px;
  padding: 24px;
}

.tc-rep-box h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 18px;
}

.tc-panel-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tc-panel-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #0C959B, #274D60);
  box-shadow: 0 14px 30px rgba(3, 23, 22, 0.34);
}

.tc-rep-list {
  display: grid;
  gap: 12px;
}

.tc-rep-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #274D60;
  border-radius: 18px;
  padding: 12px;
}

.tc-rep-item img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: cover;
}

.tc-rep-item span {
  display: block;
  color: #bfe5ee;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.tc-rep-item h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  margin: 0 0 4px;
}

.tc-rep-item a {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.tc-rep-item a i {
  margin-right: 5px;
}

.tc-rep-item a:hover {
  color: #6BA3BE;
}

.tc-rep-more {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.tc-rep-more:hover {
  color: #6BA3BE;
}

/* Trust section */
.tc-trust-section {
  padding: 34px 0 18px;
}

.tc-trust-box {
  height: 100%;
  background: #0A7075;
  border-radius: 24px;
  padding: 24px;
}

.tc-trust-box h3 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.tc-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tc-logo-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px;
  text-decoration: none;
}

.tc-logo-card img {
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
  display: block;
}

.tc-logo-card:hover {
  background: #eaf7f8;
}

@media (max-width: 991px) {
  .tc-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .tc-logo-grid {
    grid-template-columns: 1fr;
  }

  .tc-logo-card {
    min-height: 80px;
  }

  .tc-logo-card img {
    max-height: 46px;
  }
}

/* Main footer */
.tc-footer-main {
  padding: 42px 0 34px;
}

.tc-footer-brand {
  display: inline-block;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 900;
  text-decoration: none;
  margin-bottom: 16px;
}

.tc-footer-brand:hover {
  color: #6BA3BE;
}

.tc-footer-desc {
  max-width: 370px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
  margin-bottom: 20px;
}

.tc-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tc-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #0A7075;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
}

.tc-socials a:hover {
  background: #0C959B;
  color: #ffffff;
}

.tc-footer-heading {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.tc-footer-links {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tc-footer-links a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 0.95rem;
}

.tc-footer-links a:hover {
  color: #6BA3BE;
}

.tc-contact-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.tc-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.tc-contact-list i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  background: #0A7075;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.85rem;
}

.tc-contact-list a,
.tc-contact-list span {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  line-height: 1.55;
}

.tc-contact-list a:hover {
  color: #6BA3BE;
}

.tc-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0C959B;
  color: #ffffff;
  border-radius: 999px;
  padding: 13px 19px;
  font-weight: 900;
  text-decoration: none;
}

.tc-whatsapp-btn:hover {
  background: #6BA3BE;
  color: #031716;
}

.tc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 22px;
}

.tc-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}
.tc-bottom-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.tc-bottom-links li {
    margin: 0;
    padding: 0;
}

.tc-bottom-links a,
.tc-bottom-links .nav-link {
    padding: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.22s ease;
}
.tc-bottom-links a:hover,
.tc-bottom-links .nav-link:hover {
    color: #6BA3BE;
}

/* Responsive */
@media (max-width: 991px) {
  .tc-footer {
    padding-top: 52px;
  }

  .tc-footer-top {
    padding: 28px;
  }

  .tc-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

    .tc-footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .tc-bottom-links ul {
        justify-content: center;
        gap: 14px;
    }
}

@media (max-width: 575px) {
  .tc-footer {
    padding-top: 42px;
  }

  .tc-footer-top,
  .tc-rep-box,
  .tc-trust-box {
    border-radius: 20px;
  }

  .tc-footer-top {
    padding: 22px;
  }

  .tc-newsletter-box {
    display: grid;
    border-radius: 18px;
  }

  .tc-newsletter-box .form-control,
  .tc-newsletter-btn {
    width: 100%;
    border-radius: 14px;
  }

  .tc-logo-grid {
    grid-template-columns: 1fr;
  }

  .tc-rep-item {
    align-items: flex-start;
  }
    .tc-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .tc-bottom-links ul {
        flex-direction: column;
        gap: 8px;
    }

    .tc-bottom-links a,
    .tc-bottom-links .nav-link {
        font-size: 13px;
    }
}
/* Back to top (script-controlled) */
.tc-backtop{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(3,47,48,.88);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;

  box-shadow: 0 18px 44px rgba(0,0,0,.22);
  z-index: 999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease, filter .15s ease;
}

.tc-backtop.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tc-backtop:hover{
  filter: brightness(1.05);
  transform: translateY(-2px);
}

@media (max-width: 360px){
  .tc-backtop{ right: 12px; bottom: 12px; }
}



/* =========================
   PACKAGE DETAIL PAGE
========================= */
.package-header {
  margin: 18px 0;
}

.package-breadcrumb-nav {
  margin-bottom: 12px;
}

.package-breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 14px;
}

.package-breadcrumb .breadcrumb-item a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.package-breadcrumb .breadcrumb-item a:hover {
  color: var(--tc-teal-dark);
}

.package-breadcrumb .breadcrumb-item.active {
  color: #6b7280;
}

.package-header-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: #111827;
}

.package-header-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.plan-package-btn {
  background: linear-gradient(135deg, var(--tc-teal), var(--tc-teal-dark));
  color: #fff;
  border: 1px solid transparent;
}

.plan-package-btn:hover,
.plan-package-btn:focus {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(10, 112, 117, 0.18);
}

.package-share-btn {
  background: #fff;
  border: 1px solid #dbe2ea;
  color: #111827;
}

.package-share-btn:hover,
.package-share-btn:focus,
.package-share-btn.show {
  background: #f8fafc;
  border-color: #cfd8e3;
  color: var(--tc-teal-dark);
  box-shadow: none;
}

.package-share-menu {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 8px;
  min-width: 180px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.package-share-menu .dropdown-item {
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 14px;
}

.package-share-menu .dropdown-item:hover {
  background: #f3f7f8;
  color: var(--tc-teal-dark);
}

@media (max-width: 991.98px) {
  .package-header-title {
    font-size: 28px;
  }
}

@media (max-width: 767.98px) {
  .package-header-title {
    font-size: 24px;
  }

  .package-header-actions {
    width: 100%;
  }
}


.detail-package-banner-images {
  --banner-gap: 10px;
  width: 100%;
  overflow: hidden;
}

.detail-package-banner-images .row {
  margin: 0;
}

.detail-package-banner-images .banner-image-space {
  padding: 0;
}

.detail-package-banner-images .package-main-image,
.detail-package-banner-images .package-more-image {
  position: relative;
  overflow: hidden;
}

.detail-package-banner-images .package-main-image a,
.detail-package-banner-images .package-more-image a,
.detail-package-banner-images .slider-item {
  display: block;
  width: 100%;
  height: 100%;
}

.detail-package-banner-images .package-main-image img,
.detail-package-banner-images .package-more-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.detail-package-banner-images .package-main-image {
  height: 500px;
  padding-right: calc(var(--banner-gap) / 2);
}

.detail-package-banner-images .package-main-image:only-child {
  padding-right: 0;
  width: 100%;
  height: auto;
}

.detail-package-banner-images .package-side-col {
  padding-left: calc(var(--banner-gap) / 2);
}

.detail-package-banner-images .package-side-row {
  height: 500px;
  display: flex;
  flex-direction: column;
  gap: var(--banner-gap);
}

.detail-package-banner-images .package-more-image {
  height: calc((500px - var(--banner-gap)) / 2);
}

/* .detail-package-banner-images .package-main-image:hover img,
.detail-package-banner-images .package-more-image:hover img {
  transform: scale(1.05);
} */

@media (max-width: 991.98px) {
  .detail-package-banner-images .package-main-image {
    height: 420px;
  }

  .detail-package-banner-images .package-side-row {
    height: 420px;
  }

  .detail-package-banner-images .package-more-image {
    height: calc((420px - var(--banner-gap)) / 2);
  }
}

@media (max-width: 767.98px) {
  .detail-package-banner-images .package-main-image {
    height: 280px;
    padding-right: 0;
  }

  .detail-package-banner-images .package-main-image:not(:only-child) {
    margin-bottom: var(--banner-gap);
  }

  .detail-package-banner-images .package-side-col {
    padding-left: 0;
  }

  .detail-package-banner-images .package-side-row {
    height: auto;
    display: flex;
    flex-direction: row;
    gap: var(--banner-gap);
  }

  .detail-package-banner-images .package-more-image {
    height: 180px;
    flex: 1 1 calc(50% - (var(--banner-gap) / 2));
  }
}


/* =========================
   TAB BAR
========================= */
.pkg-tabbar-wrap{
  position: sticky;
  top: var(--tc-header-h);
  z-index: 900;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pkg-tabbar-wrap .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pkg-tabbar{
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: none;
  margin: 0;
}

.pkg-tabbar::-webkit-scrollbar{
  display: none;
}

.pkg-tab{
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: #274D60;
  text-decoration: none;
  transition: 0.25s ease;
}

.pkg-tab:hover{
  background: rgba(12,150,156,0.08);
  color: #0A7075;
}

.pkg-tab.active{
  background: #0C969C;
  color: #fff;
  box-shadow: 0 10px 24px rgba(12,150,156,0.18);
}

.tc-packbar-right{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.tc-packbar-price{
  text-align: right;
}

.tc-packbar-from{
  font-size: 12px;
  line-height: 1;
  color: #6c7a86;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tc-packbar-amt{
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  color: #274D60;
}

/* =========================
   CONTENT + SECTIONS
========================= */
.tc-package-detail-body{
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfc 100%);
  padding: 1.55rem 1.55rem 1.6rem;
}

.tc-anchor{
  scroll-margin-top: var(--tc-scroll-offset);
}

.tc-package-detail-body .tc-panel-card{
  background: #ffffff;
  border: 1px solid rgba(39, 77, 96, 0.12);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 18px 40px rgba(16, 40, 52, 0.08);
}

.tc-package-detail-body .tc-h2{
  font-size: 1.65rem;
  line-height: 1.2;
  font-weight: 800;
  color: #274D60;
  margin-bottom: 0.8rem;
}
.tc-package-detail-body h3{
  font-size: 1.55rem;
  color: #0C959B;
}
.tc-package-detail-body p{
  color: #5f7280;
  line-height: 1.85;
  font-size: 1rem;
}
.tc-package-detail-body .tc-muted2{
  color: #5f7280;
  line-height: 1.85;
  font-size: 1rem;
}

.tc-package-detail-body .tc-link2{
  font-weight: 700;
  color: #0A7075;
  text-decoration: none;
}

.tc-package-detail-body .tc-link2:hover{
  color: #0C969C;
}

/* =========================
   INFO GRID
========================= */
.tc-package-info-grid {
  --tc-primary: #0a7075;
  --tc-dark: #274d60;
  --tc-soft: #f4fbfb;
}

.tc-package-detail-body .tc-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  height: 100%;
  padding: 16px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 251, 0.96));
  border: 1px solid rgba(12, 150, 156, 0.12);
  box-shadow: 0 10px 28px rgba(3, 47, 48, 0.06);
}

.tc-package-detail-body .tc-info-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(12, 150, 156, 0.12);
  color: var(--tc-primary);
}

.tc-package-detail-body .tc-info-icon i {
  font-size: 1rem;
}

.tc-package-detail-body .tc-info-content {
  min-width: 0;
  flex: 1;
}

.tc-package-detail-body .tc-info-k {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(39, 77, 96, 0.56);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}

.tc-package-detail-body .tc-info-v {
  font-size: 0.98rem;
  font-weight: 900;
  color: var(--tc-dark);
  line-height: 1.45;
  word-break: break-word;
}

.tc-grade-value {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.tc-grade-help-btn {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(12, 150, 156, 0.12);
  color: var(--tc-primary);
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tc-grade-help-btn:hover {
  background: var(--tc-primary);
  color: #ffffff;
  transform: translateY(-1px);
}

.tc-grade-help-btn:focus-visible {
  outline: 3px solid rgba(12, 150, 156, 0.26);
  outline-offset: 3px;
}

.tc-grade-tooltip {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  bottom: auto;

  width: min(320px, 85vw);
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(12, 150, 156, 0.16);
  box-shadow: 0 18px 45px rgba(3, 47, 48, 0.18);

  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 999;

  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.tc-grade-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  bottom: auto;

  width: 14px;
  height: 14px;
  background: #ffffff;
  border-left: 1px solid rgba(12, 150, 156, 0.16);
  border-top: 1px solid rgba(12, 150, 156, 0.16);

  transform: translateX(-50%) rotate(45deg);
}

.tc-grade-hover:hover .tc-grade-tooltip,
.tc-grade-hover:focus-within .tc-grade-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
@media (max-width: 575.98px) {
  .tc-grade-tooltip {
    left: auto;
    right: 0;
    top: calc(100% + 12px);
    bottom: auto;
    transform: translateY(-8px);
  }

  .tc-grade-hover:hover .tc-grade-tooltip,
  .tc-grade-hover:focus-within .tc-grade-tooltip {
    transform: translateY(0);
  }

  .tc-grade-tooltip::after {
    left: auto;
    right: 10px;
    top: -7px;
    bottom: auto;
    transform: rotate(45deg);
  }
}
@media (max-width: 575.98px) {
  .tc-package-detail-body .tc-info {
    padding: 14px;
    border-radius: 17px;
  }

  .tc-package-detail-body .tc-info-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 14px;
  }

  .tc-package-detail-body .tc-info-v {
    font-size: 0.94rem;
  }
}
/* =========================
   CALLOUT
========================= */
.tc-callout{
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #f0fbfb 0%, #f8fefe 100%);
  border: 1px solid #d7eff0;
}
.tc-callout-title{
  font-size: 1rem;
  font-weight: 800;
  color: #0A7075;
  margin-bottom: .2rem;
}

.tc-callout-sub{
  color: var(--tc-muted);
  font-size: .95rem;
  line-height: 1.6;
}

/* =========================
   GALLERY
========================= */
#sec-gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 12px 28px rgba(17, 38, 52, 0.08);
}
/* =========================
   ITINERARY PANEL
========================= */
.itinerary-topbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.toggle-itinerary-btn{
  border: 0;
  background: linear-gradient(135deg, #0A7075 0%, #0C969C 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(10, 112, 117, 0.22);
  transition: all 0.25s ease;
}

.toggle-itinerary-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(10, 112, 117, 0.28);
  color: #fff;
}

.toggle-itinerary-btn:focus{
  outline: none;
  box-shadow: 0 0 0 4px rgba(12, 150, 156, 0.18);
}
.day-by-day-itinerary-images img {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 12px 28px rgba(17, 38, 52, 0.08);
}
/* =========================
   ACCORDION
========================= */
.tc-acc .accordion-item{
  border: 1px solid rgba(39, 77, 96, 0.12);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #fff;
}

.tc-acc .accordion-item:last-child{
  margin-bottom: 0;
}

.tc-acc .accordion-button{
  font-weight: 800;
  color: #274D60;
  background: #fff;
  box-shadow: none;
  padding: 1rem 1.1rem;
}

.tc-acc .accordion-button:not(.collapsed) {
  color: #0A7075;
  background: linear-gradient(180deg, rgba(12,150,156,0.08) 0%, rgba(12,150,156,0.03) 100%);
  box-shadow: none;
}
.tc-acc .accordion-button:focus{
  box-shadow: none;
  border-color: transparent;
}

.tc-acc .accordion-body{
  color: #5f7280;
  line-height: 1.8;
  padding: 0.2rem 1.1rem 1rem;
}

.tc-mini{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #72828c;
  font-size: 0.94rem;
}

.tc-dot{
  opacity: 0.6;
}

/* =========================
   INCLUDE / EXCLUDE LISTS
========================= */
.tc-panel-card{
  background: linear-gradient(180deg, #ffffff 0%, #fbfefe 100%);
  border: 1px solid rgba(39, 77, 96, 0.12);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: 0 18px 40px rgba(16, 40, 52, 0.08);
}

.tc-stack{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tc-listbox{
  padding: 1.15rem 1.15rem 1rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(39, 77, 96, 0.12);
  box-shadow: 0 6px 18px rgba(12,150,156,.05);
}

.package-include{
  background: linear-gradient(180deg, #ffffff 0%, var(--tc-success-bg) 100%);
  border-color: var(--tc-success-border);
}

.package-exclude{
  background: linear-gradient(180deg, #ffffff 0%, var(--tc-danger-bg) 100%);
  border-color: var(--tc-danger-border);
}

.tc-listbox-h{
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .9rem;
  padding-bottom: .7rem;
  border-bottom: 1px dashed rgba(3,47,48,.12);
  font-size: 1rem;
  font-weight: 800;
  color: #0A7075;
}

.package-include .tc-listbox-h i{
  color: #5f7280;
}

.tc-listbox-h.tc-ex{
  color: #0A7075;
}

.package-exclude .tc-listbox-h i{
  color: #5f7280;
}

.tc-pack-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tc-pack-section ul li{
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: .8rem;
  color: #5f7280;
  line-height: 1.65;
  font-weight: 500;
}
.tc-pack-section ul li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}
.tc-pack-section ul li:last-child{
  margin-bottom: 0;
}

.tc-pack-section .package-include ul li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}
.tc-pack-section .package-exclude ul li::before{
  content: "\f057";
  position: absolute;
  left: 0;
  font-family: "Font Awesome 7 Free";
  color: #5f7280;
  font-weight: 900;
}

/* =========================
   EQUIPMENT LISTS
========================= */
.equipment-lists .tc-listbox h3 {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .9rem;
  padding-bottom: .7rem;
  border-bottom: 1px dashed rgba(3,47,48,.12);
  font-size: 1rem;
  font-weight: 800;
  color: #0A7075;
}
.equipment-lists .tc-listbox h3:not(:first-of-type) {
  margin-top: 30px;
}
.equipment-lists ul li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}
/* =========================
   RELATED
========================= */
.tc-related{
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(39, 77, 96, 0.12);
  text-decoration: none;
  transition: 0.25s ease;
  height: 100%;
}

.tc-related:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(16, 40, 52, 0.08);
  border-color: rgba(39, 77, 96, 0.18);
}

.tc-related img{
  width: 92px;
  height: 82px;
  object-fit: cover;
  border-radius: 14px;
  flex: 0 0 92px;
}

.tc-related-title{
  font-weight: 800;
  color: #274D60;
  margin-bottom: 6px;
}

.tc-related-sub{
  color: #5f7280;
  font-size: 0.94rem;
  line-height: 1.6;
}

/* =========================
   SIDEBAR BOOKING CARD
========================= */
.booking-card{
  position: sticky;
  top: calc(var(--tc-header-h) + var(--tc-tab-h) + 24px);
  background: #fff;
  border: 1px solid rgba(39,77,96,0.08);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 14px 34px rgba(19, 47, 61, 0.08);
}

.price-badge{
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}

.price-badge .amount{
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 900;
  color: #274D60;
  letter-spacing: -0.02em;
}

.price-badge .before-price{
  font-size: 1rem;
  font-weight: 700;
  color: #9aa9b3;
  text-decoration: line-through;
  padding-bottom: 6px;
}

.price-badge .meta{
  color: #748692;
  font-size: 0.95rem;
  padding-bottom: 6px;
}

.tc-group-discount{
  margin-top: 1.1rem;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #f6fbfb 0%, #eef8f8 100%);
  border: 1px solid rgba(12,150,156,.12);
}

.tc-group-discount-title{
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .98rem;
  font-weight: 800;
  color: #274D60;
  margin-bottom: .85rem;
}

.tc-group-discount-list{
  display: grid;
  gap: .7rem;
}

.tc-group-discount-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .7rem;
  border-bottom: 1px dashed rgba(39,77,96,.14);
  color: #5f7280;
  font-size: .95rem;
}

.tc-group-discount-row:last-child{
  padding-bottom: 0;
  border-bottom: 0;
}

.tc-group-discount-row strong{
  color: #0A7075;
  font-weight: 800;
  white-space: nowrap;
}

.book-btn,
.outline-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-decoration: none;
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font-weight: 800;
  transition: all 0.25s ease;
}

.book-btn{
  margin-top: 1.2rem;
  background: linear-gradient(135deg, #0C969C, #0A7075);
  color: #fff;
  box-shadow: 0 14px 30px rgba(12,150,156,0.2);
}

.book-btn:hover{
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(12,150,156,0.24);
}

.outline-btn{
  background: #fff;
  color: #0A7075;
  border: 1px solid rgba(12,150,156,0.2);
  margin-top: 0.75rem;
}

.outline-btn:hover{
  background: rgba(12,150,156,0.05);
  color: #0A7075;
  transform: translateY(-2px);
}


.tc-badge-soft{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(12,150,156,0.08);
  color: #0A7075;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(12,150,156,0.12);
}

.tc-map-frame{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(39, 77, 96, 0.12);
  background: #fff;
  box-shadow: 0 18px 40px rgba(16, 40, 52, 0.08);
}

.tc-map-frame img{
  width: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
}

.tc-video-card{
  display: block;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(39, 77, 96, 0.12);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  transition: 0.25s ease;
  box-shadow: 0 18px 40px rgba(16, 40, 52, 0.08);
}

.tc-video-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(16, 40, 52, 0.12);
}

.tc-video-thumb{
  position: relative;
}

.tc-video-thumb img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.tc-video-play{
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(12,150,156,0.92);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 16px 30px rgba(12,150,156,0.25);
}

.tc-video-body{
  padding: 1rem 1rem 1.1rem;
}

.tc-video-title{
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 800;
  color: #274D60;
  margin-bottom: 6px;
}
/* Review Section */
#sec-review {
    margin-top: 30px;
}

#sec-review .tc-panel-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

#sec-review .tc-review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

#sec-review .tc-h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

#sec-review .tc-muted2 {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* Platform Badges */
.tc-review-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.tc-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #374151;
}

.tc-platform-tripadvisor i {
    color: #34a853;
}

.tc-platform-google i {
    color: #4285f4;
}

/* Review List */
.reviews.common-space {
    margin-top: 20px;
}

.reviews-lists {
    border: 1px solid #edf0f2;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 20px;
    background: #fff;
    transition: all 0.3s ease;
}

.reviews-lists:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: #dbe3ea;
}

.reviews-lists .item {
    width: 100%;
}

/* Left Side */
.review-left-side {
    text-align: center;
    padding-right: 15px;
}

.review-from-box {
    margin: 0 0 15px;
}

.text-caption {
    display: flex;
    justify-content: center;
    align-items: center;
}

.name_first_text {
    width: 68px;
    height: 68px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    border-radius: 50%;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.review-from-others {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.review-froms-name {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-froms-name img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Stars */
.reviews-lists .review-stars {
    justify-content: center;
    gap: 4px;
    margin: 12px 0;
    padding: 0;
}

.reviews-lists .review-stars li {
    list-style: none;
    color: #fbbf24;
    font-size: 16px;
    padding: 0px;
}
.reviews-lists .review-rating .fa-star {
  color: #FFA500;
  font-size: 16px;
  margin-right: 2px;
}
.review-name {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.review-country,
.review-date {
    display: block;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Right Side */
.review-right-side {
    padding-left: 10px;
}

.reviews-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.4;
}

.reviews-details {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
}

.review-content p:last-child {
    margin-bottom: 0;
}

/* Load More Button */
.btn-load-more-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 12px 24px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px auto 0;
    display: block;
}

.btn-load-more-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.btn-load-more-review:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.btn-load-more-review:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Ajax Loader */
#AjaxLoading {
    margin: 20px 0;
    color: #2563eb;
}

/* Responsive */
@media (max-width: 991px) {
    #sec-review .tc-panel-card {
        padding: 24px 20px;
    }

    .review-left-side {
        margin-bottom: 20px;
        padding-right: 0;
    }

    .review-right-side {
        padding-left: 0;
    }

    .reviews-title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    #sec-review .tc-h2 {
        font-size: 24px;
    }

    .tc-platform-badge {
        font-size: 13px;
        padding: 8px 14px;
    }

    .reviews-lists {
        padding: 18px;
    }

    .name_first_text {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }

    .review-name {
        font-size: 16px;
    }

    .reviews-title {
        font-size: 18px;
    }

    .reviews-details {
        font-size: 14px;
        line-height: 1.7;
    }

    .btn-load-more-review {
        width: 100%;
    }
}

.tc-departure-wrap{
  margin-top: 1.5rem;
}

.tc-departure-top{
  margin-bottom: 1rem;
}

.tc-month-filter{
  max-width: 260px;
}

.tc-month-label{
  display: block;
  font-size: .98rem;
  font-weight: 600;
  color: #3e4b53;
  margin-bottom: .75rem;
}

.tc-month-select{
  height: 52px;
  border: 0;
  border-radius: 10px;
  background-color: #247d82;
  color: #fff;
  font-weight: 700;
  padding-left: 14px;
  padding-right: 46px;
  box-shadow: none;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
}

.tc-month-select:focus{
  box-shadow: none;
  border: 0;
  background-color: #247d82;
  color: #fff;
}

.tc-departure-cards{
  display: grid;
  gap: 16px;
}

.tc-departure-card{
  display: grid;
  grid-template-columns: 1.45fr .9fr .9fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 20px;
  border-radius: 10px;
  background: #d7e1e3;
  transition: .25s ease;
}

.tc-departure-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(16,40,52,.08);
}

.tc-departure-col{
  min-width: 0;
}

.tc-departure-dates{
  display: grid;
  gap: 6px;
}

.tc-date-line{
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.45;
}

.tc-date-label{
  color: #5f6d74;
  font-weight: 500;
}

.tc-date-line strong{
  color: #40484e;
  font-weight: 800;
}

.tc-departure-meta-label{
  font-size: .96rem;
  color: #5f6d74;
  margin-bottom: 4px;
}

.tc-departure-price-block{
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tc-price-new{
  font-size: 1.08rem;
  font-weight: 900;
  color: #247d82;
  line-height: 1.1;
}

.tc-price-old{
  font-size: .9rem;
  color: #7d8a91;
  text-decoration: line-through;
  line-height: 1;
}

.tc-seat{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 1rem;
  font-weight: 800;
}

.tc-seat-open{
  color: #247d82;
}

.tc-seat-fast{
  color: #a86600;
}

.tc-seat-guaranteed{
  color: #3f474d;
}

.tc-departure-action{
  display: flex;
  justify-content: flex-end;
}

.tc-book-pill{
  min-width: 110px;
  height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: #247d82;
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tc-book-pill:hover{
  background: #1f6d71;
  color: #fff;
}

@media (max-width: 991.98px){
  .tc-departure-card{
    grid-template-columns: 1fr 1fr;
  }

  .tc-departure-action{
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px){
  .tc-month-filter{
    max-width: 100%;
  }

  .tc-departure-card{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 16px;
  }

  .tc-departure-action{
    justify-content: stretch;
  }

  .tc-book-pill{
    width: 100%;
  }
}

@media (max-width: 991.98px){
  .tc-map-frame img{
    height: 340px;
  }
}

@media (max-width: 767.98px){
  .tc-video-thumb img{
    height: 210px;
  }

  .tc-map-frame img{
    height: 260px;
  }

  .tc-map-overlay{
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199.98px){
  .tc-pack-highlights{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px){
  :root{
    --tc-header-h: 76px;
    --tc-tab-h: 68px;
    --tc-scroll-offset: 150px;
  }

  .tc-pack-hero{
    min-height: auto;
  }

  .tc-pack-hero .container{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .tc-packbar-right{
    display: none;
  }

  .booking-card{
    position: static;
  }

  .tc-panel-card{
    padding: 1.25rem;
  }

  .tc-gallery{
    height: 190px;
  }
}

@media (max-width: 767.98px){
  .tc-pack-highlights{
    grid-template-columns: 1fr;
  }

  .tc-package-title{
    font-size: 2.15rem;
  }

  .tc-pack-sub{
    font-size: 0.98rem;
  }

  .pkg-tabbar{
    padding: 12px 0;
  }

  .pkg-tab{
    padding: 9px 14px;
    font-size: 0.94rem;
  }

  .tc-h2{
    font-size: 1.35rem;
  }

  .tc-gallery{
    height: 150px;
  }

  .tc-related{
    align-items: flex-start;
  }
}

@media (max-width: 575.98px){

  .tc-hi{
    padding: 14px;
  }

  .tc-info{
    padding: 14px;
  }

  .tc-callout{
    padding: 14px;
  }

  .tc-related{
    flex-direction: column;
  }

  .tc-related img{
    width: 100%;
    height: 180px;
    flex: none;
  }

  .price-badge .amount{
    font-size: 1.8rem;
  }
}

/* =========================
   TEAM List PAGE
========================= */
#PageDetail.team-page{
  padding: 60px 0;
  background:
    radial-gradient(circle at top left, rgba(107,163,190,.14), transparent 30%),
    linear-gradient(180deg, #f7fbfc 0%, #eef6f8 100%);
}

/* header */
#PageDetail.team-page .team-page-header{
  max-width: 880px;
  margin: 0 auto 50px;
}

#PageDetail.team-page .team-page-header h1{
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--tc-forest);
  letter-spacing: -.02em;
}

#PageDetail.team-page .team-page-header .desc{
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(3,23,22,.75);
}

#PageDetail.team-page .team-page-header .desc p:last-child{
  margin-bottom: 0;
}

/* category section */
#PageDetail.team-page .team-level-section{
  margin-bottom: 42px;
}

#PageDetail.team-page .team-level-head{
  margin-bottom: 22px;
}

#PageDetail.team-page .team-level-title{
  position: relative;
  display: inline-block;
  margin: 0;
  padding-left: 16px;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--tc-forest);
}

#PageDetail.team-page .team-level-title::before{
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 5px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--tc-teal), var(--tc-deep));
}

/* link reset */
#PageDetail.team-page .team-card-link{
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* team card */
#PageDetail.team-page .team-member{
  position: relative;
  overflow: hidden;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfc 100%);
  border: 1px solid rgba(39,77,96,.08);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(3,47,48,.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

#PageDetail.team-page .team-card-link:hover .team-member{
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(3,47,48,.13);
  border-color: rgba(12,150,156,.24);
}

/* image */
#PageDetail.team-page .team-image{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(107,163,190,.14), rgba(12,150,156,.08));
}

#PageDetail.team-page .team-image img{
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

#PageDetail.team-page .team-card-link:hover .team-image img{
  transform: scale(1.06);
}

#PageDetail.team-page .team-image::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3,47,48,.10) 100%);
  pointer-events: none;
}

/* no image fallback */
#PageDetail.team-page .team-image.no-image{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  background: linear-gradient(135deg, var(--tc-deep), var(--tc-teal));
}

#PageDetail.team-page .team-image.no-image span{
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  backdrop-filter: blur(4px);
}

/* content */
#PageDetail.team-page .our-team-short-info{
  padding: 20px 18px 22px;
  text-align: center;
}

#PageDetail.team-page .our-team-short-info h3{
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--tc-forest);
}

#PageDetail.team-page .our-team-short-info b{
  margin: 0;
  font-size: .96rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--tc-teal-dark);
}

#PageDetail.team-page .team-member::before{
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tc-teal), var(--tc-sky));
  opacity: 0;
  transform: scaleX(.4);
  transform-origin: center;
  transition: .35s ease;
}

#PageDetail.team-page .team-card-link:hover .team-member::before{
  opacity: 1;
  transform: scaleX(1);
}

/* responsive */
@media (max-width: 1199.98px){
  #PageDetail.team-page .team-image img,
  #PageDetail.team-page .team-image.no-image{
    height: 280px;
  }
}

@media (max-width: 991.98px){
  #PageDetail.team-page{
    padding: 45px 0;
  }

  #PageDetail.team-page .team-page-header{
    margin-bottom: 40px;
  }

  #PageDetail.team-page .team-image img,
  #PageDetail.team-page .team-image.no-image{
    height: 260px;
  }

  #PageDetail.team-page .our-team-short-info{
    padding: 18px 16px 20px;
  }
}

@media (max-width: 767.98px){
  #PageDetail.team-page{
    padding: 35px 0;
  }

  #PageDetail.team-page .team-page-header{
    margin-bottom: 30px;
  }

  #PageDetail.team-page .team-level-section{
    margin-bottom: 32px;
  }

  #PageDetail.team-page .team-member{
    border-radius: 20px;
  }

  #PageDetail.team-page .team-image img,
  #PageDetail.team-page .team-image.no-image{
    height: 240px;
  }

  #PageDetail.team-page .our-team-short-info h3{
    font-size: 1.08rem;
  }

  #PageDetail.team-page .our-team-short-info b{
    font-size: .92rem;
  }
}

@media (max-width: 575.98px){
  #PageDetail.team-page .team-page-header{
    text-align: left;
  }

  #PageDetail.team-page .team-image img,
  #PageDetail.team-page .team-image.no-image{
    height: 220px;
  }

  #PageDetail.team-page .our-team-short-info{
    padding: 16px 14px 18px;
  }
}
/* =========================
   TEAM DETAIL PAGE
   ========================= */

#TeamDetailPage{
  padding: 30px 0;
  background:
    radial-gradient(circle at top left, rgba(107,163,190,.14), transparent 30%),
    linear-gradient(180deg, #f7fbfc 0%, #eef6f8 100%);
}

#TeamDetailPage .container{
  max-width: 1240px;
}

/* top back button */
#TeamDetailPage .back-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: var(--tc-deep);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(39,77,96,.12);
  box-shadow: 0 8px 20px rgba(3,47,48,.06);
  transition: .3s ease;
}
#TeamDetailPage .back-btn:hover{
  background: var(--tc-teal);
  color: #fff;
  border-color: var(--tc-teal);
  transform: translateY(-2px);
}

/* main profile card */
#TeamDetailPage .team-member-details{
  position: relative;
  overflow: hidden;
  background: var(--tc-white);
  border: 1px solid rgba(39,77,96,.08);
  border-radius: 28px;
  padding: clamp(20px, 4vw, 36px);
  box-shadow: 0 18px 60px rgba(3,47,48,.09);
}

#TeamDetailPage .team-member-details::before{
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,255,138,.18) 0%, transparent 70%);
  pointer-events: none;
}

#TeamDetailPage .team-image img{
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

#TeamDetailPage .our-team-content h1{
  margin: 0 0 10px;
  color: var(--tc-forest);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.02em;
}

#TeamDetailPage .team-badge{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--tc-deep);
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
}

#TeamDetailPage .team-designation{
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(12,150,156,.08);
  border: 1px solid rgba(12,150,156,.12);
  color: var(--tc-teal-dark);
  font-weight: 700;
  font-size: 1rem;
}

#TeamDetailPage .team-details{
  margin-top: 8px;
  color: rgba(3,23,22,.86);
  font-size: 1rem;
  line-height: 1.85;
}

#TeamDetailPage .team-details p:last-child{
  margin-bottom: 0;
}

#TeamDetailPage .team-details h2,
#TeamDetailPage .team-details h3,
#TeamDetailPage .team-details h4{
  color: var(--tc-forest);
  margin: 24px 0 12px;
  font-weight: 700;
}

#TeamDetailPage .team-details a{
  color: var(--tc-teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

#TeamDetailPage .team-details blockquote{
  margin: 22px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--tc-teal);
  background: rgba(12,150,156,.06);
  border-radius: 12px;
}

/* unified section for certificates + gallery */
#TeamDetailPage .team-media-section{
  margin-top: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(39,77,96,.08);
  border-radius: 28px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: 0 16px 50px rgba(3,47,48,.07);
}

#TeamDetailPage .team-section-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(39,77,96,.08);
}

#TeamDetailPage .team-section-head h2{
  margin: 0 0 6px;
  color: var(--tc-forest);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 800;
}

#TeamDetailPage .team-section-head p{
  margin: 0;
  color: rgba(3,23,22,.65);
  font-size: .98rem;
}

#TeamDetailPage .team-media-block h4{
  margin: 0 0 18px;
  color: var(--tc-forest);
  font-size: 1.3rem;
  font-weight: 800;
}

#TeamDetailPage .team-media-block.with-divider{
  margin-top: 6px;
  padding-top: 28px;
  border-top: 1px solid rgba(39,77,96,.08);
}

/* image cards */
#TeamDetailPage .team-caption{
  margin-bottom: 0;
}

#TeamDetailPage .team-caption a{
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #eff6f8;
  box-shadow: 0 10px 25px rgba(39,77,96,.10);
  position: relative;
}

#TeamDetailPage .team-caption a::before{
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(39,77,96,.08);
  border-radius: 18px;
  pointer-events: none;
  z-index: 1;
}

#TeamDetailPage .team-caption img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

#TeamDetailPage .team-caption a:hover img{
  transform: scale(1.07);
}

#TeamDetailPage .team-caption span{
  display: block;
  margin-top: 10px;
  font-size: .94rem;
  line-height: 1.45;
  color: rgba(3,23,22,.78);
  font-weight: 500;
}

/* spacing */
#TeamDetailPage .pb-4{
  padding-bottom: 1.5rem !important;
}

/* responsive */
@media (max-width: 991.98px){
  #TeamDetailPage{
    padding: 45px 0;
  }

  #TeamDetailPage .team-image img{
    max-height: 420px;
  }

  #TeamDetailPage .team-member-details,
  #TeamDetailPage .team-media-section{
    border-radius: 22px;
  }
}

@media (max-width: 767.98px){
  #TeamDetailPage{
    padding: 35px 0;
  }

  #TeamDetailPage .team-member-details,
  #TeamDetailPage .team-media-section{
    padding: 18px;
    border-radius: 18px;
  }

  #TeamDetailPage .team-image{
    border-radius: 18px;
    margin-bottom: 12px;
  }

  #TeamDetailPage .team-image img{
    min-height: auto;
    max-height: 340px;
    aspect-ratio: 4 / 4.2;
  }

  #TeamDetailPage .our-team-content h1{
    font-size: 2rem;
  }

  #TeamDetailPage .team-designation{
    width: 100%;
    text-align: center;
    border-radius: 14px;
    font-size: .95rem;
  }

  #TeamDetailPage .team-section-head{
    margin-bottom: 20px;
    padding-bottom: 14px;
  }

  #TeamDetailPage .team-section-head h2{
    font-size: 1.45rem;
  }

  #TeamDetailPage .team-media-block h4{
    font-size: 1.1rem;
  }

  #TeamDetailPage .team-caption span{
    font-size: .88rem;
  }
}

@media (max-width: 575.98px){
  #TeamDetailPage .back-btn{
    width: 100%;
    justify-content: center;
  }

  #TeamDetailPage .team-image img{
    max-height: 300px;
  }

  #TeamDetailPage .team-caption a,
  #TeamDetailPage .team-caption a::before{
    border-radius: 14px;
  }
}
/* =========================
   CONTACT PAGE
========================= */
.contact-page {
  --contact-ink: #032f30;
  --contact-text: #274d60;
  --contact-primary: #0c959b;
  --contact-primary-dark: #0a7075;
  --contact-surface: #ffffff;
  --contact-surface-soft: #f8fbfc;
  --contact-border: rgba(39, 77, 96, 0.12);
  --contact-shadow: 0 18px 44px rgba(3, 47, 48, 0.08);
}

.contact-page .contact-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #112734;
}

.contact-page .contact-hero-media,
.contact-page .contact-hero-overlay {
  position: absolute;
  inset: 0;
}

.contact-page .contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-page .contact-hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 24, 32, 0.18) 0%, rgba(10, 29, 38, 0.62) 45%, rgba(8, 24, 32, 0.92) 100%);
}

.contact-page .contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 4rem 0 3.5rem;
}

.contact-page .contact-title {
  margin: 0 0 1rem;
  max-width: 820px;
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.contact-page .contact-main {
  padding: 2.5rem 0 4rem;
  background: linear-gradient(180deg, #f7fafb 0%, #ffffff 34%);
}

.contact-page .contact-info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: -72px 0 2rem;
  position: relative;
  z-index: 4;
}

.contact-page .contact-info-card,
.contact-page .contact-form-wrap,
.contact-page .side-card,
.contact-page .map-card {
  background: var(--contact-surface);
  border: 1px solid var(--contact-border);
  border-radius: 24px;
  box-shadow: var(--contact-shadow);
}

.contact-page .contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.2rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-page .contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(3, 47, 48, 0.1);
  border-color: rgba(12, 150, 156, 0.18);
}

.contact-page .contact-info-card i {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(12, 150, 156, 0.1);
  color: var(--contact-primary-dark);
  font-size: 1.05rem;
}

.contact-page .contact-info-card h6 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 900;
  color: var(--contact-ink);
}

.contact-page .contact-info-card p,
.contact-page .contact-info-card a {
  margin: 0;
  line-height: 1.7;
  color: var(--contact-text);
  text-decoration: none;
}

.contact-page .contact-info-card a {
  color: var(--contact-primary-dark);
  font-weight: 800;
  word-break: break-word;
}

.contact-page .contact-form-wrap {
  padding: 2rem;
}

.contact-page .contact-form-head {
  margin-bottom: 1.5rem;
}

.contact-page .contact-form-head h2 {
  margin: 0 0 0.55rem;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--contact-ink);
}

.contact-page .contact-form-head p {
  margin: 0;
  color: var(--contact-text);
  line-height: 1.8;
}

.contact-page .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-page .form-group {
  display: flex;
  flex-direction: column;
}

.contact-page .form-group.full {
  grid-column: 1 / -1;
}

.contact-page .form-label {
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--contact-ink);
}

.contact-page .form-control,
.contact-page .form-select,
.contact-page .form-textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(39, 77, 96, 0.16);
  border-radius: 16px;
  background: var(--contact-surface-soft);
  color: var(--contact-ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-page .form-control::placeholder,
.contact-page .form-textarea::placeholder {
  color: rgba(39, 77, 96, 0.72);
}

.contact-page .form-control:focus,
.contact-page .form-select:focus,
.contact-page .form-textarea:focus {
  outline: none;
  border-color: rgba(12, 149, 155, 0.52);
  box-shadow: 0 0 0 0.24rem rgba(12, 149, 155, 0.12);
  background: #fff;
}

.contact-page .form-textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-page .alert {
  grid-column: 1 / -1;
  padding: 1rem 1.1rem;
  border-radius: 16px;
}

.contact-page .alert ul {
  padding-left: 1.2rem;
}

.contact-page .btn-tc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0.9rem 1.45rem;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--contact-primary) 0%, var(--contact-primary-dark) 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(10, 112, 117, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-page .btn-tc:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(10, 112, 117, 0.28);
}

.contact-page .side-card {
  padding: 1.6rem;
  position: sticky;
  top: 1.5rem;
}

.contact-page .side-card h5 {
  margin: 0 0 0.75rem;
  color: var(--contact-ink);
  font-weight: 900;
}

.contact-page .side-card p {
  margin: 0 0 1.25rem;
  color: var(--contact-text);
  line-height: 1.8;
}

.contact-page .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-page .social-links a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(12, 149, 155, 0.08);
  color: var(--contact-primary-dark);
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.contact-page .social-links a:hover {
  transform: translateY(-2px);
  background: var(--contact-primary-dark);
  color: #fff;
}

/* =========================
   MAP
========================= */
.contact-page .map-card {
  margin-top: 2rem;
  overflow: hidden;
}

.contact-page .map-frame {
  position: relative;
}

.contact-page .map-frame iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

.contact-page .map-address-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 340px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(39, 77, 96, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(3, 47, 48, 0.14);
}

.contact-page .map-address-card h5 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--contact-ink);
}

.contact-page .map-address-card p {
  margin: 0 0 10px;
  line-height: 1.7;
  color: var(--contact-text);
}

.contact-page .map-address-card a {
  color: var(--contact-primary-dark);
  font-weight: 800;
  text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
  .contact-page .contact-hero {
    min-height: 50vh;
  }

  .contact-page .contact-info-strip {
    grid-template-columns: 1fr;
    margin: -48px 0 1.5rem;
  }

  .contact-page .side-card {
    position: static;
  }

  .contact-page .map-frame iframe {
    height: 400px;
  }
}

@media (max-width: 767.98px) {
  .contact-page .contact-hero-content {
    padding: 3rem 0 2.75rem;
  }

  .contact-page .contact-title {
    font-size: 2.2rem;
  }

  .contact-page .contact-subtitle {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .contact-page .contact-form-wrap,
  .contact-page .side-card {
    padding: 1.25rem;
  }

  .contact-page .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .btn-tc {
    width: 100%;
  }

  .contact-page .map-frame iframe {
    height: 340px;
  }

  .contact-page .map-address-card {
    position: static;
    max-width: none;
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    box-shadow: none;
    background: #fff;
  }
}

@media (max-width: 575.98px) {
  .contact-page .contact-main {
    padding-bottom: 3rem;
  }

  .contact-page .contact-info-strip {
    margin: -34px 0 1.25rem;
    gap: 14px;
  }

  .contact-page .contact-info-card {
    padding: 1rem;
  }

  .contact-page .contact-info-card i {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .contact-page .map-frame iframe {
    height: 300px;
  }
}
/* =========================
   BLOG Page
========================= */
.blog-hero {
    position: relative;
    overflow: hidden;
    min-height: 78vh;
    display: flex;
    align-items: end;
    color: #fff;
    background: #0f2430;
}

.blog-hero-media,
.blog-hero-overlay {
    position: absolute;
    inset: 0;
}

.blog-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(9, 24, 31, 0.10) 0%,
        rgba(12, 35, 44, 0.52) 42%,
        rgba(8, 24, 32, 0.94) 100%
    );
}

.blog-hero .container {
    z-index: 2;
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.78);
}

.blog-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-title {
    font-size: clamp(1.75rem, 3.2vw, 2.6rem);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.04em;
    max-width: 980px;
    margin: 0 0 1rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.blog-main {
    padding: 3rem 0 4.5rem;
    background: #f7fafb;
}

.blog-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.article-main,
.side-card,
.author-card {
    background: #fff;
    border: 1px solid var(--tc-border, #e4edf0);
    border-radius: 28px;
    box-shadow: var(--tc-shadow, 0 18px 50px rgba(15, 36, 48, 0.08));
}

.article-main {
    padding: 2rem;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-card {
    padding: 1.5rem;
}

.toc-title,
.sidebar-mini-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--tc-deep, #102c39);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.toc-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.toc-link {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 14px;
    color: #4e6974;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.45;
    transition: all 0.25s ease;
}

.toc-link:hover,
.toc-link.active {
    background: rgba(10, 95, 120, 0.08);
    color: var(--tc-primary-dark, #0b6c83);
}

.toc-link.toc-sub {
    padding-left: 1.6rem;
    font-size: 0.95rem;
}
    .share-list{display:flex;gap:10px;flex-wrap:wrap;}
    .share-btn{
      width:42px;height:42px;border-radius:50%;display:grid;place-items:center;
      background:rgba(12,150,156,.08);color:var(--tc-primary-dark);font-size:1rem;
    }
.article-content {
    color: #546f7a;
    font-size: 1rem;
    line-height: 1.95;
}

.article-content > *:first-child {
    margin-top: 0;
}

.article-content p {
    margin-bottom: 1.1rem;
    color: #546f7a;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: var(--tc-deep, #102c39);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.article-content h2 {
    font-size: 1.9rem;
    margin: 2.2rem 0 1rem;
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 1.8rem 0 0.85rem;
}

.article-content h4 {
    font-size: 1.15rem;
    margin: 1.3rem 0 0.7rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    margin: 1.25rem 0;
    display: block;
}

.article-content a {
    color: var(--tc-primary-dark, #0b6c83);
    font-weight: 700;
    text-decoration: underline;
}

.article-content blockquote {
    margin: 1.6rem 0;
    padding: 1.25rem 1.25rem 1.25rem 1.4rem;
    border-left: 4px solid var(--tc-primary-dark, #0b6c83);
    background: #f4f9fb;
    border-radius: 18px;
    color: #34515d;
    font-size: 1.05rem;
}

.article-content ul,
.article-content ol {
    margin: 0 0 1.25rem;
    padding-left: 0;
}

.article-content ul {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.article-content ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #546f7a;
  line-height: 1.85;
}

.article-content ul li::before {
    content: "\f058";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
}

.article-content ol {
    padding-left: 1.2rem;
}

.article-content ol li {
    margin-bottom: 0.7rem;
    color: #546f7a;
}

.article-content table {
    width: 100%;
    margin: 1.4rem 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #dce7eb;
}

.article-content table th,
.article-content table td {
    padding: 0.9rem 1rem;
    border: 1px solid #dce7eb;
    text-align: left;
}

.article-content table th {
    background: #f5fafb;
    color: var(--tc-deep, #102c39);
}

.author-card {
    padding: 1.5rem;
}

.author-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tc-primary-dark, #0b6c83);
    margin-bottom: 0.4rem;
}

.writer-name {
    color: var(--tc-deep, #102c39);
    font-weight: 800;
}

.writer-image {
    width: 100%;
    max-width: 90px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: #eef5f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.writer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.writer-placeholder {
    color: #7f98a3;
    font-size: 1.5rem;
}

.blog-writer-desc,
.blog-writer-desc p {
    color: #5b7480;
    margin-bottom: 0;
    line-height: 1.8;
}

@media (max-width: 991.98px) {
    .blog-hero {
        min-height: 65vh;
    }

    .blog-main {
        padding: 2rem 0 3rem;
    }

    .blog-sidebar {
        position: static;
    }

    .article-main,
    .side-card,
    .author-card {
        border-radius: 22px;
    }
}

@media (max-width: 767.98px) {
    .blog-hero .container {
        padding-top: 4rem;
        padding-bottom: 2.4rem;
    }

    .blog-title {
        font-size: clamp(1.5rem, 3vw, 2.4rem);
    }

    .blog-meta-chip {
        width: 100%;
        justify-content: flex-start;
    }

    .article-main,
    .side-card,
    .author-card {
        padding: 1.2rem;
        border-radius: 20px;
    }

    .article-content h2 {
        font-size: 1.55rem;
    }

    .article-content h3 {
        font-size: 1.2rem;
    }
}
.related-blog-section {
    padding: 0 0 4.5rem;
    background: #f7fafb;
}

.related-blog-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.8rem;
}




.blog-list-hero {
    position: relative;
    padding: 3rem 0 3rem;
    background:
        radial-gradient(circle at top left, rgba(21, 126, 154, 0.14), transparent 32%),
        linear-gradient(180deg, #f7fafb 0%, #eef5f7 100%);
}

.blog-list-hero .page-title-content {
    max-width: 760px;
    margin: 0 auto;
}

.blog-list-hero .page-title {
    margin-bottom: .8rem;
    color: var(--tc-deep, #102c39);
    font-size: clamp(1.75rem, 3.2vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.05;
}

.blog-list-hero .page-subtitle {
    max-width: 620px;
    margin: 0 auto;
    color: #607985;
    font-size: 1.04rem;
    line-height: 1.85;
}

.blog-list-section {
    padding: 1rem 0 4.5rem;
    background: #f7fafb;
}
/* =========================
   Search Page Styling
========================= */
.search-list-page {
    background: linear-gradient(135deg, #274D60, #0C959B);
    padding: 40px 0 40px;
    color: #fff;
}

.search-title-content {
    margin-bottom: 30px;
}

.search-heading-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 0.5px;
}

.search-page-form {
    display: flex;
    justify-content: center;
}

.search-page-form form {
    background: #ffffff;
    padding: 8px;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    gap: 10px;
}

.search-page-form .form-control {
    border: none;
    border-radius: 50px;
    padding: 14px 20px;
    font-size: 15px;
    box-shadow: none !important;
}

.search-page-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.search-page-form .btn.search {
    background: #6BA3BE;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.search-page-form .btn.search:hover {
    background: #274D60;
    transform: translateY(-1px);
}
#search-packages {
    background: #f8fafc;
    padding: 70px 0;
}

.popular-package-div {
    margin-top: 10px;
}

/* =========================
   Category Page Styling
========================= */
.category-banner-section {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0f172a;
    color: #fff;
}

.category-banner-media {
    position: absolute;
    inset: 0;
}

.category-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.18) 0%, rgba(15, 23, 42, 0.74) 100%);
}

.category-banner-section .container {
    position: relative;
    z-index: 2;
}

.category-banner-content {
    padding: 80px 0 56px;
}

.category-title {
    margin: 0;
    max-width: 760px;
    color: #fff;
    font-size: clamp(1.75rem, 3.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.08;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.category-page-section {
    padding: 80px 0;
    background: #f8fafc;
}

.category-content-card {
    margin-bottom: 48px;
    padding: 32px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    color: #475569;
    font-size: 16px;
    line-height: 1.9;
}

.category-content-card h1,
.category-content-card h2,
.category-content-card h3,
.category-content-card h4,
.category-content-card h5,
.category-content-card h6 {
    margin: 0 0 16px;
    color: #0f172a;
    font-weight: 700;
}

.category-content-card p:last-child {
    margin-bottom: 0;
}

.category-content-card ul,
.category-content-card ol {
    padding-left: 20px;
}

.category-content-card a {
    color: #0ea5e9;
    text-decoration: none;
}

.category-content-card a:hover {
    text-decoration: underline;
}

.category-block + .category-block {
    margin-top: 50px;
}

.section-heading-wrap {
    margin-bottom: 24px;
}

.category-section-title {
    margin: 0;
    color: #0f172a;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
}

.category-card-space {
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .category-title {
        font-size: 44px;
    }

}

@media (max-width: 991px) {
    .category-banner-section {
        min-height: 42vh;
    }

    .category-banner-content {
        padding: 64px 0 42px;
    }

    .category-title {
        font-size: 36px;
    }

    .category-page-section {
        padding: 60px 0;
    }

    .category-content-card {
        padding: 24px;
    }

    .category-section-title {
        font-size: 26px;
    }

}

@media (max-width: 767px) {
    .category-banner-section {
        min-height: 320px;
    }

    .category-banner-content {
        padding: 56px 0 30px;
    }

    .category-title {
        font-size: 28px;
    }

    .category-content-card {
        padding: 20px;
        border-radius: 16px;
    }

}

/* =========================
   Single Page
========================= */

.single-page-section {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0f172a;
  color: #fff;
}
.single-page-banner {
  position: absolute;
  inset: 0;
}
.single-page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18) 0%, rgba(15, 23, 42, 0.74) 100%);
}
.single-page-section .container {
  position: relative;
  z-index: 2;
}
.single-page-banner-content {
  padding: 80px 0 56px;
}
.single-page-title {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.08;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.single-page-detail {
  padding: 30px 0;
  background: #f8fafc;
}