:root{
  --tt-navy:        #0b2a55;
  --tt-navy-dark:   #07203f;
  --tt-blue:        #1f5fc4;
  --tt-orange:      #f5840f;
  --tt-orange-dark: #d96e05;
  --tt-green:       #25d366;
  --tt-text:        #233044;
  --tt-muted:       #8a96a8;
  --tt-light-bg:    #f4f7fb;
  --tt-border:      #e3e8f0;
  --tt-radius:      10px;
  --tt-radius-lg:   16px;
  --tt-shadow:      0 6px 24px rgba(11,42,85,.08);
  --tt-shadow-lg:   0 14px 40px rgba(11,42,85,.14);
  --tt-font:        "Poppins", sans-serif;
  --tt-font-display:"Great Vibes", cursive;
  --tt-container:   1200px;
}

/* ============ RESET ============ */
*,
*::before,
*::after{
  box-sizing:border-box;
}
button:focus{
  outline: none;
}
html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}
html,body{
  margin:0;
  padding:0;
}
body{
  font-family:var(--tt-font);
  font-size:16px;
  line-height:1.7;
  font-weight:400;
  color:var(--tt-text);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{
  max-width:100%;
  height:auto;
  display:inline-block;
  border:0;
  vertical-align:middle;
}
figure{ margin:0; }
hr{
  border:none;
  border-top:1px solid var(--tt-border);
  margin:30px 0;
}
::selection{
  background:var(--tt-orange);
  color:#fff;
}
@media (min-width: 1600px){
  .container{
    max-width: 1340px;
  }
}
/* ============ HEADINGS ============ */
h1, h2, h3, h4, h5, h6{
  font-family:var(--tt-font);
  font-weight:700;
  color:var(--tt-navy);
  line-height:1.3;
  margin:0 0 16px;
  letter-spacing:-.01em;
}
h1{ font-size:42px; }
h2{ font-size:34px; }
h3{ font-size:26px; }
h4{ font-size:21px; }
h5{ font-size:18px; }
h6{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.06em;
}
h1 span, h2 span, h3 span{
  color:var(--tt-orange);
}
@media (max-width:767px){
  h1{ font-size:30px; }
  h2{ font-size:26px; }
  h3{ font-size:22px; }
  h4{ font-size:18px; }
}

/* ============ TEXT ============ */
p{
  margin:0 0 16px;
  color:var(--tt-text);
}
p:last-child{ margin-bottom:0; }
small{ font-size:13px; color:var(--tt-muted); }
strong, b{ font-weight:700; }
.lead{
  font-size:18px;
  color:var(--tt-muted);
  line-height:1.8;
}
.text-muted{ color:var(--tt-muted) !important; }
.text-orange{ color:var(--tt-orange) !important; }
.text-navy{ color:var(--tt-navy) !important; }
.text-center{ text-align:center; }
.text-left{ text-align:left; }
.text-right{ text-align:right; }

/* eyebrow / section labels */
.section-tag{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--tt-orange);
  margin-bottom:8px;
}
.section-title{
  margin-bottom:6px;
}
.section-subtitle{
  color:var(--tt-muted);
  font-size:15px;
  margin-bottom:30px;
}

/* ============ LINKS ============ */
a{
  color:var(--tt-blue);
  text-decoration:none;
  transition:color .2s ease;
}
a:hover, a:focus{
  color:var(--tt-orange);
  text-decoration:none;
}
a:focus{
  color:#000;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline:2px solid var(--tt-blue);
  outline-offset:2px;
}

/* ============ LISTS ============ */
ul, ol{
  margin:0 0 16px;
  padding-left:22px;
  color:var(--tt-text);
}
ul li, ol li{
  margin-bottom:8px;
}
ul.list-unstyled,
ol.list-unstyled{
  list-style:none;
  margin:0;
  padding:0;
}
ul.list-unstyled li,
ol.list-unstyled li{
  margin-bottom:0;
}

/* checkmark feature list, e.g. inclusions */
ul.tt-check-list{
  list-style:none;
  padding:0;
  margin:0 0 16px;
}
ul.tt-check-list li{
  position:relative;
  padding-left:30px;
  margin-bottom:12px;
}
ul.tt-check-list li::before{
  content:"\f00c";
  font-family:"Font Awesome 6 Pro";
  font-weight:900;
  position:absolute;
  left:0;
  top:2px;
  width:20px;
  height:20px;
  font-size:11px;
  border-radius:50%;
  background:rgba(37,211,102,.12);
  color:var(--tt-green);
  display:flex;
  align-items:center;
  justify-content:center;
}
/* cross / exclusions list */
ul.tt-cross-list{
  list-style:none;
  padding:0;
  margin:0 0 16px;
}
ul.tt-cross-list li{
  position:relative;
  padding-left:30px;
  margin-bottom:12px;
  color:var(--tt-muted);
}
ul.tt-cross-list li::before{
  content:"\f00d";
  font-family:"Font Awesome 6 Pro";
  font-weight:900;
  position:absolute;
  left:0;
  top:2px;
  width:20px;
  height:20px;
  font-size:11px;
  border-radius:50%;
  background:rgba(220,53,69,.1);
  color:#dc3545;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ============ BLOCKQUOTE ============ */
blockquote{
  margin:0 0 20px;
  padding:18px 22px;
  border-left:4px solid var(--tt-orange);
  background:var(--tt-light-bg);
  border-radius:0 var(--tt-radius) var(--tt-radius) 0;
  font-style:italic;
  color:var(--tt-text);
}

/* ============ TABLES ============ */
table{
  width:100%;
  border-collapse:collapse;
  margin:0 0 20px;
  font-size:15px;
}
table th, table td{
  padding:12px 16px;
  border:1px solid var(--tt-border);
  text-align:left;
}
table th{
  background:var(--tt-light-bg);
  color:var(--tt-navy);
  font-weight:700;
}
table tr:nth-child(even) td{
  background:#fafbfd;
}

section{
  padding:35px 0;
}
@media (max-width:767px){
  section{ padding:28px 0; }
}
.bg-light{ background:var(--tt-light-bg); }
.bg-navy{ background:var(--tt-navy); color:#fff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4, .bg-navy p{ color:#fff; }

/* generic card */
.tt-card{
  background:#fff;
  border:1px solid var(--tt-border);
  border-radius:var(--tt-radius-lg);
  box-shadow:var(--tt-shadow);
  padding:24px;
  transition:transform .25s, box-shadow .25s;
}
.tt-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--tt-shadow-lg);
}

/* badge */
.tt-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  padding:5px 12px;
  border-radius:30px;
  background:rgba(245,132,15,.12);
  color:var(--tt-orange);
}

/* ============ BUTTONS ============ */
.btn,
button,
input[type="submit"],
input[type="button"]{
  font-family:var(--tt-font);
}
.btnTheme,
.tt-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:var(--tt-orange);
  color:#fff;
  font-weight:600;
  font-size:14px;
  text-decoration:none;
  padding:13px 28px;
  border-radius:30px;
  border:none;
  cursor:pointer;
  transition:background .25s, transform .15s, box-shadow .25s;
}
.btnTheme:hover,
.tt-btn:hover{
  background:var(--tt-orange-dark);
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(245,132,15,.3);
}
.tt-btn--outline{
  background:transparent;
  color:var(--tt-navy);
  border:1.5px solid var(--tt-navy);
}
.tt-btn--outline:hover{
  background:var(--tt-navy);
  color:#fff;
  box-shadow:none;
}
.tt-btn--light{
  background:#fff;
  color:var(--tt-navy);
}
.tt-btn--light:hover{
  background:var(--tt-light-bg);
  color:var(--tt-navy);
  box-shadow:none;
}
.tt-btn--sm{
  padding:9px 20px;
  font-size:13px;
}

/* ============ FORMS ============ */
label{
  display:block;
  font-size:13px;
  font-weight:600;
  color:var(--tt-text);
  margin-bottom:6px;
}
input,
select,
textarea{
  width:100%;
  font-family:var(--tt-font);
  font-size:14px;
  color:var(--tt-text);
  background:#fff;
  border:1px solid var(--tt-border);
  border-radius:8px;
  padding:12px 14px;
  outline:none;
  transition:border-color .2s, box-shadow .2s;
}
input::placeholder,
textarea::placeholder{
  color:var(--tt-muted);
}
input:focus,
select:focus,
textarea:focus{
  border-color:var(--tt-blue);
  box-shadow:0 0 0 3px rgba(31,95,196,.12);
}
textarea{ resize:vertical; min-height:110px; }
fieldset{ border:none; padding:0; margin:0; }

/* ============ PAGE TITLE / BREADCRUMB BANNER ============ */
/* Use on inner pages, right below the header */
.tt-page-banner{
  position:relative;
  background:linear-gradient(180deg, rgba(7,32,63,.78) 0%, rgba(7,32,63,.55) 100%), var(--tt-navy);
  background-size:cover;
  background-position:center;
  padding:70px 0;
  text-align:center;
  color:#fff;
}
.tt-page-banner h1{
  color:#fff;
  margin-bottom:10px;
  font-size:36px;
}
.tt-page-banner .tt-breadcrumb{
  list-style:none;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  margin:0;
  padding:0;
  font-size:14px;
}
.tt-page-banner .tt-breadcrumb li{ margin:0; color:#cfe0ff; }
.tt-page-banner .tt-breadcrumb li a{ color:#fff; }
.tt-page-banner .tt-breadcrumb li a:hover{ color:var(--tt-orange); }
.tt-page-banner .tt-breadcrumb li:not(:last-child)::after{
  content:"/";
  margin-left:8px;
  color:#7e94c2;
}
@media (max-width:767px){
  .tt-page-banner{ padding:46px 0; }
  .tt-page-banner h1{ font-size:26px; }
}


/* scrollbar (optional, modern browsers) */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background:var(--tt-light-bg); }
::-webkit-scrollbar-thumb{
  background:var(--tt-orange);
  border-radius:0px;
}
/* ============ TOPBAR ============ */
.tt-topbar{
  background:var(--tt-navy-dark);
  color:#fff;
  font-family:var(--tt-font);
  font-size:13px;
}
.tt-topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 0;
  flex-wrap:wrap;
  gap:8px;
}
.tt-topbar__contact{
  list-style:none;
  display:flex;
  align-items:center;
  gap:22px;
  margin:0;
  padding:0;
  flex-wrap:wrap;
}
.tt-topbar__contact li{
  display:flex;
  align-items:center;
  gap:7px;
  white-space:nowrap;
  margin-bottom:0;
  line-height:1;
}
.tt-topbar__contact li i{
    color: var(--tt-orange);
    font-size: 10px;
    background: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.tt-topbar__contact a{
  color:#fff;
  text-decoration:none;
  transition:color .2s;
}
.tt-topbar__contact a:hover{ color:var(--tt-orange); }
.tt-topbar__badge{
    background: var(--tt-orange);
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: 500;
    color: #fff;
    border: 1px solid #ffffff2e;
}
.tt-topbar__badge i{ color:#ffd166; }
.tt-topbar__social{
  display:flex;
  align-items:center;
  gap:10px;
}
.tt-topbar__social span{
  margin-right:4px;
  color:#cfd9ec;
}
.tt-topbar__social a{
  width:28px;
  height:28px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  text-decoration:none;
  transition:.25s;
}
.tt-topbar__social a.facebook{ color:#1877F2; }
.tt-topbar__social a.twitter{ color:#1DA1F2; }
.tt-topbar__social a.instagram{ color:#E1306C; }
.tt-topbar__social a.youtube{ color:#FF0000; }

.tt-topbar__social a.facebook:hover{ background:#1877F2; color:#fff; transform:translateY(-2px); }
.tt-topbar__social a.twitter:hover{ background:#1DA1F2; color:#fff; transform:translateY(-2px); }
.tt-topbar__social a.instagram:hover{ background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; transform:translateY(-2px); }
.tt-topbar__social a.youtube:hover{ background:#FF0000; color:#fff; transform:translateY(-2px); }
/* ============ MAIN HEADER (sticky) ============ */
.tt-header{
  background:#fff;
  position:sticky;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:999;
  box-shadow:0 2px 14px rgba(11,42,85,.06);
  font-family:var(--tt-font);
  transition:box-shadow .25s, padding .25s;
}
.tt-header.is-sticky{
  box-shadow:0 6px 24px rgba(11,42,85,.14);
}
.tt-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:5px 0;
  gap:24px;
}
.tt-header__logo img{
    height: 70px;
    width: auto;
    display: block;
}

/* ---- desktop nav ---- */
.tt-nav__list{
  display:flex;
  align-items:center;
  gap:28px;
  list-style:none;
  margin:0;
  padding:0;
}
.tt-nav__list > li{ position:relative; margin-bottom:0; }
.tt-nav__list > li > a{
  display:flex;
  align-items:center;
  gap:6px;
  color:var(--tt-text);
  font-weight:500;
  font-size:15px;
  text-decoration:none;
  padding:0px 2px;
  transition:color .2s;
}
.tt-nav__list > li > a i{ font-size:11px; transition:transform .2s; }
.tt-nav__list > li:hover > a,
.tt-nav__list > li.active > a{ color:var(--tt-blue); }
.tt-nav__list > li:hover > a i{ transform:rotate(180deg); }
.tt-dropdown li{
  margin-bottom:0;
}
.tt-dropdown{
  position:absolute;
  top:100%;
  left:0;
  min-width:260px;
  background:#fff;
  list-style:none;
  margin:0;
  padding:10px 0;
  border-radius:var(--tt-radius);
  box-shadow:var(--tt-shadow);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.2s;
  z-index:50;
  max-height:420px;
  overflow-y:auto;
}

/* Dropdowns that contain a flyout (.has-subdropdown) must NOT scroll —
   overflow-y:auto forces overflow-x to auto too, which clips any
   absolutely-positioned child. So this variant removes the scroll
   entirely and lets the list grow naturally instead. */
.tt-dropdown--has-flyout{
  max-height:none;
  overflow:visible;
}
.tt-nav__list > li:hover > .tt-dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.tt-dropdown li a{
    display: block;
    padding: 10px 12px;
    color: var(--tt-text);
    font-size: 13px;
    text-decoration: none;
    transition: .2s;
    line-height: 1;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
}
.tt-dropdown li:last-child a{
  border-bottom: 0;
}
.tt-dropdown li a:hover{
  background:var(--tt-light-bg);
  color:var(--tt-blue);
  padding-left:24px;
}
.tt-dropdown--empty{ display:none; }

/* ---- header actions ---- */
.tt-header__actions{
  display:flex;
  align-items:center;
  gap:14px;
}
.btn-quote{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--tt-orange);
  color:#fff !important;
  font-weight:600;
  font-size:14px;
  text-decoration:none;
  padding:12px 24px;
  border-radius:8px;
  border:none;
  cursor:pointer;
  white-space:nowrap;
  transition:background .25s, transform .15s;
}
.btn-quote:hover{
  background:var(--tt-orange-dark);
  transform:translateY(-1px);
  color:#fff;
}
.btn-quote.full-width{
  width:100%;
  justify-content:center;
  margin-top:18px;
}

/* burger */
.tt-burger{
  display:none;
  width:42px;
  height:42px;
  border-radius:8px;
  border:1px solid var(--tt-border);
  background:#fff;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  cursor:pointer;
}
.tt-burger span{
  display:block;
  width:20px;
  height:2px;
  background:var(--tt-navy);
  border-radius:2px;
  transition:.25s;
}
.tt-burger.is-active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.tt-burger.is-active span:nth-child(2){ opacity:0; }
.tt-burger.is-active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ============ MOBILE DRAWER ============ */
.tt-drawer__overlay{
  position:fixed;
  inset:0;
  background:rgba(7,32,63,.55);
  opacity:0;
  visibility:hidden;
  transition:opacity .3s;
  z-index:1199;
}
.tt-drawer__panel{
  position:fixed;
  top:0;
  right:0;
  height:100%;
  width:320px;
  max-width:88vw;
  background:#fff;
  z-index:1200;
  padding:26px 22px 30px;
  overflow-y:auto;
  transform:translateX(100%);
  transition:transform .35s ease;
  box-shadow:-8px 0 30px rgba(0,0,0,.18);
  font-family:var(--tt-font);
}
.tt-drawer.is-open .tt-drawer__overlay{
  opacity:1;
  visibility:visible;
}
.tt-drawer.is-open .tt-drawer__panel{
  transform:translateX(0);
}
.tt-drawer__close{
  position:absolute;
  top:18px;
  right:18px;
  width:36px;
  height:36px;
  border-radius:50%;
  border:1px solid var(--tt-border);
  background:#fff;
  font-size:16px;
  color:var(--tt-text);
  cursor:pointer;
}
.tt-drawer__logo{ margin-bottom:22px; }
.tt-drawer__logo img{ max-width:120px; }

.tt-drawer__nav{
  list-style:none;
  margin:0 0 20px;
  padding:0;
  border-top:1px solid var(--tt-border);
}
.tt-drawer__nav li{ border-bottom:1px solid var(--tt-border); margin-bottom:0;}
.tt-drawer__nav > li > a,
.tt-drawer__toggle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  background:none;
  border:none;
  text-align:left;
  padding:9px 4px;
  font-size:15px;
  font-weight:500;
  color:var(--tt-text);
  text-decoration:none;
  cursor:pointer;
}
.tt-drawer__toggle i{ transition:transform .25s; font-size:12px; color:var(--tt-muted); }
.tt-drawer__toggle.is-open i{ transform:rotate(180deg); }
.tt-drawer__submenu{
  list-style:none;
  margin-bottom:0;
  margin:0 0 0px;
  padding:0 0 0 14px;
  max-height:0;
  overflow:auto;
  transition:max-height .3s ease;
}
.tt-drawer__submenu.is-open{ max-height:600px; }
.tt-drawer__submenu li a{
    display: block;
    padding: 9px 4px;
    font-size: 14px;
    color: var(--tt-muted);
    text-decoration: none;
    line-height: 1.2;
}
.tt-drawer__submenu li a:hover{ color:var(--tt-blue); }

.tt-drawer__contact{
  display:flex;
  flex-direction:column;
  gap:10px;
  font-size:14px;
  margin-bottom:14px;
}
.tt-drawer__contact a{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--tt-text);
  text-decoration:none;
  line-height:1;
    word-break: break-word;
}
.tt-drawer__contact i{
  width:32px;
  height:32px;
  border-radius:50%;
  background:var(--tt-light-bg);
  color:var(--tt-blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
}
.tt-drawer__social{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.tt-drawer__social-label{
  font-size:13px;
  font-weight:700;
  color:var(--tt-navy);
  text-transform:uppercase;
  letter-spacing:.06em;
}
.tt-drawer__social-icons{
  display:flex;
  gap:10px;
}
.tt-drawer__social-icons a{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--tt-border);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:14px;
  transition:.25s;
}
.tt-drawer__social-icons a.facebook{ color:#1877F2; }
.tt-drawer__social-icons a.twitter{ color:#1DA1F2; }
.tt-drawer__social-icons a.instagram{ color:#E1306C; }
.tt-drawer__social-icons a.youtube{ color:#FF0000; }

.tt-drawer__social-icons a.facebook:hover{ background:#1877F2; border-color:#1877F2; color:#fff; }
.tt-drawer__social-icons a.twitter:hover{ background:#1DA1F2; border-color:#1DA1F2; color:#fff; }
.tt-drawer__social-icons a.instagram:hover{ background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color:transparent; color:#fff; }
.tt-drawer__social-icons a.youtube:hover{ background:#FF0000; border-color:#FF0000; color:#fff; }
body.tt-no-scroll{ overflow:hidden; }

/* ============ SLUG / EXPLORE SECTION (before footer) ============ */
.tt-explore{
  background:var(--tt-light-bg);
  padding:42px 0 28px;
  font-family:var(--tt-font);
}
.tt-explore__title{
  font-size:18px;
  font-weight:700;
  color:var(--tt-navy);
  margin:0 0 18px;
  padding-bottom:12px;
  border-bottom:1px solid var(--tt-border);
}
.tt-explore__group{
  padding:14px 0;
  border-bottom:1px solid var(--tt-border);
}
.tt-explore__group:last-child{ border-bottom:none; }
.tt-explore__group h6{
  font-size:14px;
  font-weight:700;
  color:var(--tt-navy);
  text-transform:uppercase;
  letter-spacing:.04em;
  margin:0 0 12px;
}
.tt-explore__links{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:3px 4px;
  margin:0;
  padding:0;
}
.tt-explore__links li {
  margin-bottom: 0;
}
.tt-explore__links li a{
    display: inline-block;
    padding: 5px 9px;
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 30px;
    color: var(--tt-text);
    font-size: 11px;
    text-decoration: none;
    transition: .2s;
    font-weight: 600;
    line-height: 1;
}
.tt-explore__links li a:hover{
  background:var(--tt-blue);
  border-color:var(--tt-blue);
  color:#fff;
}
.tt-explore__empty{
  font-size:13px;
  color:var(--tt-muted);
  margin:0;
}

/* ============ NEWSLETTER BAR ============ */
.tt-newsletter{
  background:linear-gradient(90deg,var(--tt-navy) 0%,var(--tt-blue) 100%);
  padding:26px 0;
  font-family:var(--tt-font);
}
.tt-newsletter__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.tt-newsletter__text h3{
  color:#fff;
  font-size:20px;
  font-weight:700;
  margin:0 0 4px;
}
.tt-newsletter__text p{
  color:#cfe0ff;
  margin:0;
  font-size:14px;
}
.tt-newsletter__form{
  display:flex;
  gap:0;
  width:100%;
  max-width:460px;
  border-radius:30px;
  overflow:hidden;
  background:#fff;
}
.tt-newsletter__form input{
  flex:1;
  border:none;
  outline:none;
  padding:14px 20px;
  font-size:14px;
  font-family:var(--tt-font);
}
.tt-newsletter__form button{
  background:var(--tt-orange);
  color:#fff;
  border:none;
  font-weight:700;
  letter-spacing:.03em;
  font-size:13px;
  padding:0 26px;
  cursor:pointer;
  transition:background .2s;
}
.tt-newsletter__form button:hover{ background:var(--tt-orange-dark); }

/* ============ FOOTER ============ */
.tt-footer{
  background:var(--tt-navy-dark);
  color:#c6d1e6;
  font-family:var(--tt-font);
  padding: 30px 0 0;
}
.tt-footer__grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1.2fr;
  gap:36px;
  padding-bottom:30px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.tt-footer__logo img{ max-width:120px; margin-bottom:14px; }
.tt-footer__about h3{
  color:#fff;
  font-size:17px;
  font-weight:700;
  margin:0 0 10px;
  line-height:1.4;
}
.tt-footer__about p{
  font-size:14px;
  line-height:1.7;
  margin:0;
  color:#a9b6cf;
}
.tt-footer h4.widget-title{
  color:#fff;
  font-size:15px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin:0 0 18px;
}
.tt-footer ul{
  list-style:none;
  margin:0;
  padding:0;
}
.tt-footer ul li{ margin-bottom:11px; }
.tt-footer ul li a{
  color:#a9b6cf;
  text-decoration:none;
  font-size:14px;
  transition:.2s;
}
.tt-footer ul li a:hover{ color:var(--tt-orange); padding-left:3px; }
.tt-footer .footer_contact li a{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.tt-footer .footer_contact li i{
  margin-top:3px;
  color:var(--tt-orange);
  width:16px;
}
.tt-footer__payments{
  margin-top:18px;
}
.tt-footer__payments span{
  display:block;
  font-size:13px;
  font-weight:700;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:10px;
}
.tt-footer__payments .icons{
  display:flex;
  gap:8px;
}
.tt-footer__payments .icons li{
  background:#fff;
  border-radius:6px;
  width:42px;
  height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  color:var(--tt-navy);
}

.gt-footer-gallery-slider { margin-top: 14px; }
.gt-footer-gallery-slider .swiper-slide a { display: block;  overflow: hidden; border-radius: 6px; }
.gt-footer-gallery-slider .swiper-slide img { 
    width: 69%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin-inline: auto;
}
.gt-footer-gallery-slider .swiper-wrapper{
  align-items: center;
}
/* footer bottom */
.tt-footer__bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
    font-size: 13px;
    color: #90a0bd;
    border-top: 1px solid rgba(255, 255, 255, .06);
    margin-top: 10px;
}
.tt-footer__bottom a{ color:#cfe0ff; text-decoration:none; }
.tt-footer__social{
  display:flex;
  gap:10px;
}
.tt-footer__social a{
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(255,255,255,.07);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:.2s;
}
.tt-footer__social a:hover{ background:var(--tt-orange); }

/* ============ FLOATING BUTTONS ============ */
.tt-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:1100;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-end;
}
.tt-float a, .tt-float button{
  display:flex;
  align-items:center;
  gap:8px;
  border-radius:30px;
  padding:12px 18px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  border:none;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
  font-family:var(--tt-font);
  line-height: 1.3;
}
.tt-float .tt-float__whatsapp{ background:var(--tt-green); color:#fff; }
.tt-float .tt-float__call{ background:#fff; color:var(--tt-navy); }
.tt-float .tt-float__query{ background:var(--tt-orange); color:#fff; }
.tt-float img{ width:18px; height:18px; }

/* ============ ENQUIRY MODAL ============ */
.tt-modal{
  position:fixed;
  inset:0;
  z-index:1300;
  display:none;
  align-items:center;
  justify-content:center;
  font-family:var(--tt-font);
}
.tt-modal.is-open{ display:flex; }
.tt-modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(7,32,63,.6);
}
.tt-modal__box{
  position:relative;
  background:#fff;
  width:520px;
  max-width:92vw;
  max-height:90vh;
  overflow-y:auto;
  border-radius:14px;
  padding:34px 30px;
  z-index:1;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
}
.tt-modal__close{
  position:absolute;
  top:14px;
  right:14px;
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid var(--tt-border);
  background:#fff;
  font-size:18px;
  line-height:1;
  cursor:pointer;
  color:var(--tt-text);
}
.tt-modal__title{
  font-size:20px;
  font-weight:700;
  color:var(--tt-navy);
  margin:0 0 4px;
}
.tt-modal__subtitle{
  font-size:13px;
  color:var(--tt-muted);
  margin:0 0 22px;
}
.tt-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}
.tt-form-row.tt-form-row--single{ grid-template-columns:1fr; }
.tt-field label{
  display:block;
  font-size:13px;
  font-weight:600;
  color:var(--tt-text);
  margin-bottom:6px;
}
.tt-field input,
.tt-field select,
.tt-field textarea{
  width:100%;
  border:1px solid var(--tt-border);
  border-radius:8px;
  padding:11px 13px;
  font-size:14px;
  font-family:var(--tt-font);
  color:var(--tt-text);
  background:#fff;
  outline:none;
  transition:border-color .2s;
}
.tt-field input:focus,
.tt-field select:focus,
.tt-field textarea:focus{
  border-color:var(--tt-blue);
}
.tt-modal .btn-quote{ width:100%; justify-content:center; margin-top:6px; }

/* ============ RESPONSIVE ============ */
@media (max-width:1199px){
  .tt-nav{ display:none; }
  .tt-burger{ display:flex; }
  .tt-footer__grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:767px){
  .tt-topbar__contact li:nth-child(n+3){ display:none; }
  .tt-topbar__badge{ display:none; }
  .tt-header__actions .btn-quote{ display:none; }
  .tt-footer__grid{ grid-template-columns:1fr; gap:28px; }
  .tt-newsletter__inner{ flex-direction:column; align-items:flex-start; }
  .tt-form-row{ grid-template-columns:1fr; }
  .tt-float{ right:12px; bottom:12px; }
  .tt-float span{ display:none; }
  .tt-float a, .tt-float button{ padding:12px; border-radius:50%; }
}


.tt-hero {
  position: relative;
  height: 620px;
  font-family: var(--tt-font);
  padding: 0;
}

/* ── slides ────────────────────────────────────────────────────────── */
.tt-hero__slide {
  height: 620px;
  background-size: cover;
  background-position: center;
}
.tt-hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 18, 38, .90) 0%,
    rgba(5, 18, 38, .80) 20%,
    rgba(5, 18, 38, .40) 45%,
    rgba(5, 18, 38, .0) 55%
  );
}

/* ── overlay layout ────────────────────────────────────────────────── */
.tt-hero__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  max-width: 700px;
  left: 10%;
}
.tt-hero__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.tt-hero__content {
  flex: 1;
  color: #fff;
}
.tt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,132,15,.18);
  border: 1px solid rgba(245,132,15,.45);
  color: #ffd166;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
  line-height: 1;
}
.tt-hero__badge i { font-size: 10px; }

.tt-hero__title {
    font-size: 50px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin: 0 0 14px;
    letter-spacing: -.01em;
    font-family: var(--tt-font-display);
}
.tt-hero__title span {
    display: block;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    font-family: var(--tt-font);
    text-transform: capitalize;
}
.tt-hero__title strong {
    font-family: var(--tt-font);
    font-weight: 900;
    color: var(--tt-orange);
    display: block;
    font-size: 71px;
    line-height: 1.1;
}

.tt-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin: 0 0 26px;
}
/* #word# accent marker rendered via JS */
.tt-hero__desc-accent {
  color: #ffd166;
  font-weight: 600;
}

/* trust icons row */
.tt-hero__trust {
  display: flex;
  align-items: center;
  gap: 0px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.tt-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}
.tt-hero__trust-item .icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tt-hero__trust-item:nth-child(2) .icon-wrap { background: var(--blue); }
.tt-hero__trust-item:nth-child(3) .icon-wrap { background:purple;}
.tt-hero__trust-item:nth-child(4) .icon-wrap { background: var(--orange); }
.tt-hero__trust-item .icon-wrap i { font-size: 17px; color: #fff; }
.tt-hero__trust-item span {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}

/* action buttons */
.tt-hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.tt-hero__btn-primary,
.tt-hero__btn-whatsapp,
.tt-hero__btn-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s, transform .15s, box-shadow .25s;
  line-height: 1;
}
.tt-hero__btn-primary {
  background: #f5840f;
  color: #fff;
}
.tt-hero__btn-primary:hover {
  background: #d96e05;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245,132,15,.4);
}
.tt-hero__btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.tt-hero__btn-whatsapp:hover {
  background: #1db954;
  color: #fff;
  transform: translateY(-2px);
}
.tt-hero__btn-call {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
}
.tt-hero__btn-call:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
  transform: translateY(-2px);
}

/* ── booking widget ────────────────────────────────────────────────── */
.tt-hero__widget { */
    flex-shrink: 0;
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    position: relative;
    z-index: 5;
    margin-top: -60px;
}
.form__grid{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.form__grid .tt-widget-cta{
      min-width: calc(20% - 12px);
      width: auto;
}
.tt-hero__widget-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.tt-hero__widget-title h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--tt-navy, #0b2a55);
  margin: 0;
}
.tt-hero__widget-title img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* widget fields */
.tt-widget-field {
    position: relative;
    margin-bottom: 14px;
    width: calc(20% - 15px);
    min-width: calc(20% - 12px);
 }
.tt-widget-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--tt-muted, #8a96a8);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.tt-widget-field .field-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--tt-border, #e3e8f0);
  border-radius: 10px;
  padding: 8px 12px;
  background: #fff;
  transition: border-color .2s;
  overflow: hidden;
}
.tt-widget-field .field-wrap:hover,
.tt-widget-field .field-wrap:focus-within { border-color: var(--tt-blue, #1f5fc4); }

.tt-widget-field .field-wrap .field-icon {
    font-size: 16px;
    color: var(--tt-navy);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}
.tt-widget-field .field-wrap select,
.tt-widget-field .field-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--tt-text, #233044);
  background: transparent;
  padding: 0;
  width: 100%;
  box-shadow: none;
}
.tt-widget-field .field-wrap .arrow {
  font-size: 12px;
  color: var(--tt-muted, #8a96a8);
  flex-shrink: 0;
}
.travelers-display {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--tt-text, #233044);
  user-select: none;
}

/* travelers dropdown */
.tt-travelers-dropdown {
  display: none;
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 4px);
  background: #fff;
  border: 1.5px solid var(--tt-border, #e3e8f0);
  border-radius: 10px;
  padding: 14px 16px;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(11,42,85,.12);
}
.tt-travelers-dropdown.is-open { display: block; }

.tt-travelers-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--tt-text, #233044);
  margin-bottom: 12px;
}
.tt-travelers-row:last-child { margin-bottom: 0; }
.tt-travelers-row small { font-size: 11px; color: var(--tt-muted, #8a96a8); font-weight: 400; }

.tt-stepper {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tt-stepper button {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--tt-border, #e3e8f0);
  background: var(--tt-light-bg, #f4f7fb);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--tt-navy, #0b2a55);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: background .2s, border-color .2s;
}
.tt-stepper button:hover {
  background: var(--tt-blue, #1f5fc4);
  border-color: var(--tt-blue, #1f5fc4);
  color: #fff;
}
.tt-stepper span {
  font-size: 15px;
  font-weight: 700;
  color: var(--tt-navy, #0b2a55);
  min-width: 18px;
  text-align: center;
}

/* CTA */
.tt-widget-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #f5840f;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s, transform .15s, box-shadow .25s;
  margin-top: 4px;
  line-height: 1.4;
}
.tt-widget-cta:hover {
  background: #d96e05;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245,132,15,.38);
}

/* social proof */
.tt-widget-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.tt-widget-proof .avatars { display: flex; }
.tt-widget-proof .avatars img {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  object-fit: cover;
}
.tt-widget-proof .avatars img:first-child { margin-left: 0; }
.tt-widget-proof .proof-text {
  font-size: 12px;
  color: var(--tt-muted, #8a96a8);
  font-weight: 500;
}
.tt-widget-proof .proof-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--tt-light-bg, #f4f7fb);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--tt-navy, #0b2a55);
}
.tt-widget-proof .proof-rating i { color: #f5840f; font-size: 11px; }

/* ── swiper pagination ─────────────────────────────────────────────── */
.tt-hero__dots {
  position: absolute;
  bottom: 70px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 10;
}
.tt-hero__dots .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.5);
  opacity: 1;
  margin: 0 4px;
}
.tt-hero__dots .swiper-pagination-bullet-active {
  background: #f5840f;
  width: 22px;
  border-radius: 4px;
}

/* ── trust bar ─────────────────────────────────────────────────────── */
.tt-trustbar {
  position: relative;
  z-index: 3;
  margin-top: -40.5px;
  margin-bottom: 25px;
}
.tt-trustbar .container{
    background: #fff;
    box-shadow: 0 4px 20px rgba(11, 42, 85, .07);
    border: 1px solid #cecece;
    border-radius: 15px;
    padding-inline:0;
}
.tt-trustbar__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.tt-trustbar__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  line-height: 1;
  border-right: 1px solid var(--tt-border, #e3e8f0);
}
.tt-trustbar__item:last-child { border-right: none; }
.tt-trustbar__item .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.tt-trustbar__item .icon.green  { background: rgba(37,211,102,.12); color: #25d366; }
.tt-trustbar__item .icon.orange { background: rgba(245,132,15,.12);  color: #f5840f; }
.tt-trustbar__item .icon.blue   { background: rgba(31,95,196,.1);    color: #1f5fc4; }
.tt-trustbar__item .icon.purple { background: rgba(111,66,193,.1);   color: #6f42c1; }
.tt-trustbar__item .icon.teal   { background: rgba(32,201,151,.1);   color: #20c997; }
.tt-trustbar__item .info strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--tt-navy, #0b2a55);
  line-height: 1.3;
}
.tt-trustbar__item .info span {
  font-size: 11px;
  color: var(--tt-muted, #8a96a8);
  display: block;
  margin-top: 1px;
}

/* ── responsive ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tt-hero__slide { height: auto; min-height: 560px; padding: 100px 0 80px; }
  .tt-hero__title { font-size: 34px; }
  .tt-hero__title strong { font-size: 46px; }
  .tt-hero__widget { width: 300px; }
}
@media (max-width: 768px) {
  .tt-hero__slide { padding: 90px 0 130px; }
  .tt-hero__layout { flex-direction: column; align-items: flex-start; gap: 28px; }
  .tt-hero__content { max-width: 100%; }
  .tt-hero__title { font-size: 28px; }
  .tt-hero__title strong { font-size: 38px; }
  .tt-hero__widget { width: 100%; max-width: 420px; }
  .tt-trustbar__inner { flex-wrap: wrap; }
  .tt-trustbar__item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--tt-border, #e3e8f0); }
  .tt-trustbar__item:nth-child(odd) { border-right: 1px solid var(--tt-border, #e3e8f0); }
  .tt-trustbar__item:last-child,
  .tt-trustbar__item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}
@media (max-width: 480px) {
  .tt-hero__actions { gap: 8px; }
  .tt-hero__btn-call span { display: none; }
  .tt-trustbar__item { flex: 0 0 100%; border-right: none; border-bottom: 1px solid var(--tt-border, #e3e8f0); }
  .tt-trustbar__item:last-child { border-bottom: none; }
}
/* ── Select2 inside hero widget ─────────────────────────── */
#heroDestination + .select2-container {
  width: 100% !important;
}
.hero-select2 .select2-selection--single {
  border: none !important;
  background: transparent !important;
  height: auto !important;
  padding: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}
.hero-select2 .select2-selection__rendered {
  font-size: 14px;
  font-weight: 500;
  color: var(--tt-text, #233044) !important;
  padding: 0 !important;
  line-height: 1.4 !important;
}
.hero-select2 .select2-selection__placeholder {
  color: var(--tt-muted, #8a96a8) !important;
}
.hero-select2 .select2-selection__arrow {
  display: none !important;
}
/* dropdown list */
.select2-dropdown.hero-select2-dropdown {
  border: 1.5px solid var(--tt-blue, #1f5fc4) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 24px rgba(11,42,85,.12) !important;
  overflow: hidden;
  margin-top: 4px;
}
.select2-dropdown.hero-select2-dropdown .select2-search__field {
  border: 1px solid var(--tt-border, #e3e8f0) !important;
  border-radius: 6px !important;
  padding: 8px 10px !important;
  font-size: 13px !important;
  margin: 8px !important;
  width: calc(100% - 16px) !important;
  box-sizing: border-box;
}
.select2-dropdown.hero-select2-dropdown .select2-results__option {
  font-size: 14px;
  padding: 10px 16px;
  color: var(--tt-text, #233044);
  display: flex;
  align-items: center;
  gap: 8px;
}
.select2-dropdown.hero-select2-dropdown .select2-results__option::before {
  content: '\f3c5';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  font-size: 11px;
  color: var(--tt-blue, #1f5fc4);
}
.select2-dropdown.hero-select2-dropdown .select2-results__option--highlighted {
  background: var(--tt-light-bg, #f4f7fb) !important;
  color: var(--tt-blue, #1f5fc4) !important;
}
.select2-dropdown.hero-select2-dropdown .select2-results__option[aria-selected="true"] {
  background: rgba(31,95,196,.08) !important;
  color: var(--tt-blue, #1f5fc4) !important;
  font-weight: 600;
}
.select2-container--default .select2-selection--single{
  border:0  ;
}
/* ============================================================
   HANDPICKED TOUR PACKAGES SLIDER
   Add this to your main stylesheet (style.css).
   Uses the same --tt-* variables already defined in :root.
   ============================================================ */

.tt-packages{
  background:var(--tt-light-bg);
  padding:50px 0;
}

/* ---- section head ---- */
.tt-packages__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:30px;
}
.tt-packages__heading{
  flex:1;
  min-width:260px;
}
.tt-packages__heading .section-title{
  margin-bottom:10px;
}

/* small decorative line + dot under the heading */
.tt-section-divider{
  display:flex;
  align-items:center;
  gap:8px;
}
.tt-section-divider span{
  display:block;
  width:34px;
  height:3px;
  border-radius:3px;
  background:var(--tt-blue);
}
.tt-section-divider i{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--tt-blue);
  display:block;
}

.tt-packages__head-right{
  display:flex;
  align-items:center;
  gap:16px;
}
.tt-packages__viewall{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.03em;
  color:var(--tt-blue);
  text-decoration:none;
  white-space:nowrap;
}
.tt-packages__viewall i{
  font-size:12px;
  transition:transform .2s;
}
.tt-packages__viewall:hover{ color:var(--tt-orange); }
.tt-packages__viewall:hover i{ transform:translateX(3px); }

/* ---- prev / next arrows ---- */
.tt-packages__nav{
  display:flex;
  gap:8px;
}
.tt-packages__arrow{
  width:38px;
  height:38px;
  border-radius:50%;
  border:1.5px solid var(--tt-border);
  background:#fff;
  color:var(--tt-navy);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:13px;
  transition:.2s;
}
.tt-packages__arrow:hover{
  background:var(--tt-blue);
  border-color:var(--tt-blue);
  color:#fff;
}
.tt-packages__arrow.swiper-button-disabled{
  opacity:.35;
  cursor:not-allowed;
}

/* ---- swiper sizing ---- */
.tt-packages-swiper{
  overflow:hidden;
  padding-bottom:4px;
}
.tt-packages-swiper .swiper-slide{
  height:auto;
  display:flex;
}

/* ============================================================
   PACKAGE CARD
   ============================================================ */
.tt-package-card{
  display:flex;
  flex-direction:column;
  width:100%;
  background:#fff;
  border:1px solid var(--tt-border);
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--tt-shadow);
  transition:transform .25s, box-shadow .25s;
}
.tt-package-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--tt-shadow-lg);
}

/* image + badge */
.tt-package-card__img{
  position:relative;
  height:150px;
}
.tt-package-card__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.tt-package-card__badge{
  position:absolute;
  top:14px;
  left:0;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#fff;
  padding:5px 14px;
  border-radius:0 6px 6px 0;
  line-height:1.4;
}
.tt-package-card__badge--bestseller{ background:#e8491d; }
.tt-package-card__badge--popular{   background:var(--tt-green); }
.tt-package-card__badge--dealgreen{ background:#20c997; }
.tt-package-card__badge--family{    background:#6f42c1; }
.tt-package-card__badge--trending{  background:var(--tt-blue); }
.tt-package-card__badge--new{       background:var(--tt-orange); }
.tt-package-card__badge--default{   background:var(--tt-navy); }

/* body */
.tt-package-card__body{
  flex:1;
  display:flex;
  flex-direction:column;
  padding:10px;
  line-height:1;
}
.tt-package-card__title{
  font-size:17px;
  font-weight:800;
  color:var(--tt-navy);
  margin:0 0 6px;
  line-height:1.35;
}
.tt-package-card__title a{
  color:inherit;
  text-decoration:none;
}
.tt-package-card__title a:hover{ color:var(--tt-blue); }

.tt-package-card__duration{
  font-size:13px;
  color:var(--tt-muted);
  margin-bottom:8px;
}

/* rating row */
.tt-package-card__rating{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  color:var(--tt-muted);
  margin-bottom:0px;
}
.tt-package-card__rating-val{
  font-weight:700;
  color:var(--tt-navy);
}
.tt-stars{
  position:relative;
  display:inline-flex;
  font-size:12px;
  line-height:1;
}
.tt-stars__back,
.tt-stars__front{
  display:flex;
  gap:2px;
  white-space:nowrap;
}
.tt-stars__back i{ color:#e3e8f0; }
.tt-stars__front{
  position:absolute;
  top:0;
  left:0;
  overflow:hidden;
}
.tt-stars__front i{ color:var(--tt-orange); }

/* price block */
.tt-package-card__price{
  margin-top:auto;
  padding-top:8px;
  margin-bottom:14px;
}
.tt-package-card__price-old{
  display:block;
  font-size:13px;
  color:var(--tt-muted);
  text-decoration:line-through;
  margin-bottom:2px;
}
.tt-package-card__price-label{
  display:block;
  font-size:12px;
  color:var(--tt-muted);
  margin-bottom:2px;
}
.tt-package-card__price-amount{
  font-size:22px;
  font-weight:700;
  color:var(--tt-navy);
}
.tt-package-card__price-amount span{
  font-size:12px;
  font-weight:400;
  color:var(--tt-muted);
}

/* CTA button */
.tt-package-card__btn{
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--tt-orange);
  color:#fff;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  text-decoration:none;
  padding:12px;
  border-radius:8px;
  transition:background .25s, transform .15s, box-shadow .25s;
}
.tt-package-card__btn:hover{
  background:var(--tt-orange-dark);
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(245,132,15,.3);
}

.tt-packages__empty{
  text-align:center;
  color:var(--tt-muted);
  padding:30px 0;
}

/* ---- responsive ---- */
@media (max-width:991px){
  .tt-packages__head{ align-items:center; }
}
@media (max-width:575px){
  .tt-packages{ padding:36px 0; }
  .tt-packages__head{ flex-direction:column; align-items:flex-start; }
  .tt-packages__head-right{ width:100%; justify-content:space-between; }
}


/* ============================================================
   LIMITED TIME OFFER BANNER
   ============================================================ */
.tt-offer{
  padding:20px 0;
}
.tt-offer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:24px;
  border-radius:16px;
  overflow:hidden;
  padding:30px 36px;
  background:#fdf2e1;
}

.tt-offer__text{
  /* flex:1; */
  min-width:240px;
}
.tt-offer__tag{
  display:block;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--tt-orange);
  margin-bottom:6px;
}
.tt-offer__title{
    font-size: 40px;
    font-weight: 700;
    color: #d8350f;
    margin: 0 0 6px;
    line-height: 1.1;
}
.tt-offer__subtitle{
  font-size:14px;
  color:var(--tt-text);
  margin:0;
}

/* countdown */
.tt-offer__timer{
  display:flex;
  align-items:center;
  gap:12px;
}
.tt-offer__timer::before{
  content:"\f178";
  font-family:"Font Awesome 6 Pro";
  font-weight:900;
  font-size:22px;
  color:var(--tt-orange);
  transform:rotate(15deg);
  margin-right:4px;
}
.tt-offer__timebox{
    background: #fff;
    border-radius: 10px;
    padding: 12px 18px;
    text-align: center;
    min-width: 93px;
    box-shadow: 0 6px 16px rgba(11, 42, 85, .06);
    border: 1px solid #ff9b48;
}
.tt-offer__num{
  display:block;
  font-size:24px;
  font-weight:800;
  color:var(--tt-orange);
  line-height:1;
  margin-bottom:4px;
}
.tt-offer__timebox small{
  font-size:11px;
  font-weight:600;
  color:var(--tt-muted);
  text-transform:uppercase;
  letter-spacing:.04em;
}

/* CTAs */
.tt-offer__actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:200px;
}
.tt-offer__btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 24px;
  border-radius:8px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
  transition:transform .15s, box-shadow .25s;
}
.tt-offer__btn--whatsapp{ background:var(--tt-green); color:#fff; }
.tt-offer__btn--call{ background:#fff; color:var(--tt-navy); }
.tt-offer__btn:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,.15);
}
.tt-offer__btn--whatsapp:hover{ color:#fff; }
.tt-offer__btn--call:hover{ color:var(--tt-navy); }

/* ---- responsive ---- */
@media (max-width:991px){
  .tt-offer__inner{
    background:#fdf2e1;
  }
  .tt-offer__timer{
    flex-wrap:wrap;
    justify-content:center;
    width:100%;
  }
  .tt-offer__timer::before{ display:none; }
  .tt-offer__actions{ width:100%; flex-direction:row; }
  .tt-offer__btn{ flex:1; }
}
@media (max-width:575px){
  .tt-offer__inner{ padding:24px 20px; }
  .tt-offer__title{ font-size:26px; }
  .tt-offer__timebox{ min-width:84px; padding:10px 12px; }
  .tt-offer__num{ font-size:20px; }
  .tt-offer__actions{ flex-direction:column; }
}
.tt-offer__inner{
  z-index: 1;
}
.counter_bg_shape{
  
    position: absolute;
    height: 100%;
    right: -140px;
    z-index: -1;
}
/* ============================================================
   TOP DESTINATIONS IN UTTARAKHAND
   ============================================================ */
.tt-destinations {
  background: #fff;
  padding: 36px 0;
}

.tt-section-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--tt-navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 20px;
}

.tt-destinations__row {
  position: relative;
}

.tt-destinations-swiper {
  overflow: hidden;
}

.tt-destinations-swiper .swiper-wrapper {
  display: flex;
  gap: 14px;
  transition: transform .4s ease;
}

.tt-destinations-swiper .swiper-slide {
  flex-shrink: 0;
  width: 200px;
  margin-bottom: 5px;
}

.tt-destination-card {
  display: block;
  text-decoration: none;
  text-align: center;
}

.tt-destination-card__img {
    width: 200px;
    height: 200px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 0px;
  border: 3px solid var(--tt-border);
  transition: border-color .25s;
}

.tt-destination-card:hover .tt-destination-card__img {
  border-color: var(--tt-blue);
}

.tt-destination-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tt-destination-card__label {
    font-size: 17px;
    font-weight: 600;
    color: var(--tt-text);
    transition: color .2s;
    max-width: 78%;
    margin-inline: auto;
    margin-top: -24px;
    background: #fff;
    border: 1px solid #d5d5d5;
    box-shadow: 0 0 5px rgb(0 0 0 / 30%);
    border-radius: 53px;
    padding: 7px;
    position:relative;
}

.tt-destination-card:hover .tt-destination-card__label {
  color: var(--tt-blue);
}

.tt-destinations__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--tt-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tt-navy);
  transition: .2s;
  z-index: 5;
}

.tt-destinations__arrow--prev {
  left: -18px;
}
.tt-destinations__arrow--prev svg {
  transform: rotate(180deg);
}
.tt-destinations__arrow--next {
  right: -18px;
}

.tt-destinations__arrow:hover {
  background: var(--tt-blue);
  border-color: var(--tt-blue);
  color: #fff;
}

.tt-destinations__arrow[disabled],
.tt-destinations__arrow.is-disabled {
  opacity: .35;
  cursor: not-allowed;
}

.tt-destinations__empty {
  font-size: 13px;
  color: var(--tt-muted);
}

/* ============================================================
   WHY TRAVELERS CHOOSE US
   ============================================================ */
.tt-why {
  background: var(--tt-light-bg);
  padding: 36px 0;
}

.tt-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.tt-why-card {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}

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

.tt-why-card__icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px;
}

.tt-why-card__icon--green  { background: rgba(37,211,102,.12); color: #25d366; }
.tt-why-card__icon--orange { background: rgba(245,132,15,.12);  color: #f5840f; }
.tt-why-card__icon--blue   { background: rgba(31,95,196,.10);   color: #1f5fc4; }
.tt-why-card__icon--purple { background: rgba(111,66,193,.10);  color: #6f42c1; }
.tt-why-card__icon--gold   { background: rgba(255,193,7,.12);   color: #d4a017; }
.tt-why-card__icon--teal   { background: rgba(32,201,151,.10);  color: #20c997; }
.tt-why-card__icon--red {
  background: rgba(220, 53, 69, .12);
  color: #dc3545;
}

.tt-why-card__icon--indigo {
  background: rgba(102, 16, 242, .10);
  color: #6610f2;
}
.tt-why-card__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.tt-why-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--tt-navy);
  margin: 0 0 6px;
}

.tt-why-card__text {
  font-size: 12px;
  color: var(--tt-muted);
  line-height: 1.5;
  margin: 0;
}

/* ── responsive ── */
@media (max-width: 991px) {
  .tt-why__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575px) {
  .tt-why__grid { grid-template-columns: repeat(2, 1fr); }
}
/* ============================================================
   SOCIAL PROOF — Testimonials + Video
   ============================================================ */
.tt-social-proof {
  padding: 50px 0;
  background: #fff;
}

.tt-section-heading {
  font-size: 17px;
  font-weight: 700;
  color: var(--tt-navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tt-heading-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* ── Slider outer wrapper clips overflow ── */
.tt-testi-outer {
  overflow: hidden;
}

/* ── Track: all slides in one horizontal row ── */
.tt-testi-track {
  display: flex;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

/* ── Each slide takes full width of the outer wrapper ── */
.tt-testi-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}

/* ── Card ── */
.tt-testi-card {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 4px 16px rgba(11,42,85,.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.tt-testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(11,42,85,.11);
}

/* stars */
.tt-testi-card__stars {
  display: flex;
  gap: 3px;
}
.tt-testi-card__stars .fas.fa-star { color: #f5840f; font-size: 13px; }
.tt-testi-card__stars .far.fa-star { color: #e3e8f0; font-size: 13px; }

/* review text */
.tt-testi-card__text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--tt-text);
  margin: 0;
  flex: 1;
}

/* author row */
.tt-testi-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--tt-border);
  padding-top: 10px;
  margin-top: auto;
}
.tt-testi-card__author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--tt-border);
}
.tt-testi-card__author strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--tt-navy);
  line-height: 1.3;
}
.tt-testi-card__author span {
  font-size: 12px;
  color: var(--tt-muted);
}

/* ── Dot pagination ── */
.tt-testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}
.tt-testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d9e6;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, width .3s;
  display: block;
}
.tt-testi-dot.is-active {
  background: var(--tt-blue);
  width: 26px;
  border-radius: 5px;
}

/* ============================================================
   VIDEO BANNER
   ============================================================ */
.tt-video-banner {
  border-radius: 16px;
  overflow: hidden;
  background: var(--tt-navy-dark);
}

.tt-video-thumb {
  position: relative;
  cursor: pointer;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.tt-video-thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.tt-video-thumb:hover > img {
  transform: scale(1.04);
}

/* gradient overlay */
.tt-video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,18,38,.82) 0%,
    rgba(5,18,38,.20) 55%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* play button */
.tt-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 3;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: none;
  color: var(--tt-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
  transition: background .25s, transform .25s, box-shadow .25s;
}
.tt-video-play svg { margin-left: 4px; }
.tt-video-thumb:hover .tt-video-play {
  background: var(--tt-orange);
  color: #fff;
  transform: translate(-50%, -55%) scale(1.1);
  box-shadow: 0 12px 32px rgba(245,132,15,.45);
}

/* caption */
.tt-video-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  pointer-events: none;
}
.tt-video-caption p {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 2px;
  color: #fff;
  font-family: var(--tt-font-display);
  line-height: 1.2;
}
.tt-video-caption em {
  font-size: 24px;
  font-family: var(--tt-font-display);
  font-style: italic;
  color: #fff;
}

/* native video player replaces thumb on play */
.tt-video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  z-index: 10;
  background: #000;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .tt-video-banner { margin-top: 10px; }
}
@media (max-width: 575px) {
  .tt-testi-card { padding: 14px 12px; }
  .tt-testi-card__text { font-size: 12px; }
}
/* ============================================================
   HOMEPAGE BLOG SLIDER
   ============================================================ */
.tt-blogs-home {
  padding: 50px 0;
  background: var(--tt-light-bg);
}

/* ── Slider wrap — positions arrows ── */
.tt-blogs-slider-wrap {
  position: relative;
  padding: 0 0px;
}

/* ── Swiper ── */
.tt-blogs-swiper {
  overflow: hidden;
}

/* ── Prev / Next arrows ── */
.tt-blogs__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--tt-border);
  color: var(--tt-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  z-index: 5;
  padding: 0;
}
.tt-blogs__arrow--prev { left: -18px; }
.tt-blogs__arrow--next { right: -18px; }
.tt-blogs__arrow:hover {
  background: var(--tt-blue);
  border-color: var(--tt-blue);
  color: #fff;
}
.tt-blogs__arrow.swiper-button-disabled {
  opacity: .35;
  cursor: not-allowed;
}

/* ============================================================
   BLOG CARD
   ============================================================ */
.tt-blog-card {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--tt-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.tt-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tt-shadow-lg);
}

/* image */
.tt-blog-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.tt-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.tt-blog-card:hover .tt-blog-card__img img {
  transform: scale(1.05);
}

/* category badge on image */
.tt-blog-card__cat {
  position: absolute;
  top: 12px;
  left: 0;
  background: var(--tt-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 4px 12px;
  border-radius: 0 6px 6px 0;
  line-height: 1.4;
}

/* body */
.tt-blog-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

/* meta — date & author */
.tt-blog-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.tt-blog-card__meta span {
    font-size: 10px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 5px;
}
.tt-blog-card__meta i {
  font-size: 11px;
  color: var(--tt-orange);
}

/* title */
.tt-blog-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--tt-navy);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tt-blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.tt-blog-card__title a:hover {
  color: var(--tt-blue);
}

/* excerpt */
.tt-blog-card__excerpt {
  font-size: 13px;
  color: var(--tt-muted);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* read more link */
.tt-blog-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--tt-blue);
  text-decoration: none;
  margin-top: auto;
  transition: color .2s, gap .2s;
}
.tt-blog-card__readmore:hover {
  color: var(--tt-orange);
  gap: 10px;
}
.tt-blog-card__readmore i {
  font-size: 12px;
}

/* ── Responsive ── */
@media (max-width: 575px) {
  .tt-blog-card__img { height: 170px; }
}
/* ============================================================
   EXPLORE BY CATEGORY SLIDER
   ============================================================ */
.tt-explore-category {
  background: #fff;
  padding: 40px 0 30px;
}

.tt-explore-category__head {
  text-align: center;
  margin-bottom: 28px;
}

.tt-explore-category__head .section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--tt-navy);
  margin-bottom: 10px;
}

.tt-explore-category__head .tt-section-divider {
  justify-content: center;
}

/* ── Slider wrap ── */
.tt-cat-slider-wrap {
  overflow: hidden;
}

.tt-cat-swiper {
  overflow: hidden;
  padding: 10px 4px 16px;
}

/* ── Category Card ── */
.tt-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.tt-cat-card__circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--tt-border);
  transition: border-color .25s, transform .25s, box-shadow .25s;
  flex-shrink: 0;
}

.tt-cat-card:hover .tt-cat-card__circle {
  border-color: var(--tt-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(31, 95, 196, .18);
}

.tt-cat-card__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.tt-cat-card:hover .tt-cat-card__circle img {
  transform: scale(1.07);
}

/* ── Label ── */
.tt-cat-card__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  text-align: center;
}

.tt-cat-card__label span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tt-text);
  transition: color .2s;
}

.tt-cat-card__label span:last-child {
  font-size: 13px;
  font-weight: 500;
  color: var(--tt-muted);
}

.tt-cat-card:hover .tt-cat-card__label span {
  color: var(--tt-blue);
}

/* ── Responsive ── */
@media (max-width: 575px) {
  .tt-cat-card__label span {
    font-size: 12px;
  }
  .tt-cat-card__label span:last-child {
    font-size: 11px;
  }
}
/* ── BREADCRUMB BAR ── */
.tt-breadcrumb-bar {
  background: #f0f2f5;
  padding: 13px 0;
  border-bottom: 1px solid #e3e8f0;
}

.tt-breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
}

.tt-breadcrumb-list li {
  margin: 0;
  font-weight:600;
  margin-bottom:0;
  color: #233044;
}

.tt-breadcrumb-list li a {
  color: #1f5fc4;
  text-decoration: none;
}

.tt-breadcrumb-list li a:hover {
  color: #f5840f;
}
.tt-breadcrumb-title{
  
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 0;
}

/* separator */
.tt-breadcrumb-list li:not(:last-child)::after {
  content: '\f061';
  margin-left: 6px;
  font-family: 'Font Awesome 6 Pro';
  color: #8a96a8;
  font-weight: 400;
}

/* current page — last item */
.tt-breadcrumb-list li:last-child {
  color: #8a96a8;
  font-weight: 500;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ── Intro ── */
.tt-about-intro {
  padding: 60px 0;
  background: #fff;
}

.tt-about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* image stack */
.tt-about-intro__images {
  position: relative;
}

.tt-about-img__main {
  border-radius: 16px;
  overflow: hidden;
  height: 460px;
}

.tt-about-img__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tt-about-img__secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 10px 30px rgba(11,42,85,.15);
}

.tt-about-img__secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tt-about-img__badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--tt-orange);
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(245,132,15,.35);
  line-height: 1.2;
}

.tt-about-img__badge-num {
  display: block;
  font-size: 30px;
  font-weight: 800;
}

.tt-about-img__badge-text {
  font-size: 12px;
  font-weight: 600;
  opacity: .9;
}

/* content */
.tt-about-intro__lead {
  font-size: 17px;
  color: var(--tt-text);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 14px;
}

.tt-about-intro__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 28px;
}

.tt-about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tt-about-feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(31,95,196,.1);
  color: var(--tt-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.tt-about-feature__icon--orange { background: rgba(245,132,15,.1);  color: var(--tt-orange); }
.tt-about-feature__icon--green  { background: rgba(37,211,102,.1);  color: #25d366; }
.tt-about-feature__icon--purple { background: rgba(111,66,193,.1);  color: #6f42c1; }

.tt-about-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--tt-navy);
  margin-bottom: 2px;
}

.tt-about-feature span {
  font-size: 12px;
  color: var(--tt-muted);
}

.tt-about-intro__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tt-about-call {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.tt-about-call__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tt-light-bg);
  color: var(--tt-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.tt-about-call small {
  display: block;
  font-size: 11px;
  color: var(--tt-muted);
}

.tt-about-call strong {
  font-size: 15px;
  color: var(--tt-navy);
  font-weight: 700;
}

/* ── Stats ── */
.tt-about-stats {
  background: var(--tt-navy);
  padding: 44px 0;
}

.tt-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tt-about-stat {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.tt-about-stat:last-child { border-right: none; }

.tt-about-stat__num {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.tt-about-stat__num i {
  font-style: normal;
  color: var(--tt-orange);
}

.tt-about-stat__label {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

/* ── Mission Vision ── */
.tt-about-mv {
  padding: 60px 0;
  background: var(--tt-light-bg);
}

.tt-about-mv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tt-about-mv__card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 26px;
  border-top: 4px solid var(--tt-blue);
  box-shadow: var(--tt-shadow);
  transition: transform .25s, box-shadow .25s;
}

.tt-about-mv__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tt-shadow-lg);
}

.tt-about-mv__card--vision  { border-top-color: var(--tt-orange); }
.tt-about-mv__card--values  { border-top-color: #25d366; }

.tt-about-mv__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(31,95,196,.1);
  color: var(--tt-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.tt-about-mv__card--vision .tt-about-mv__icon  { background: rgba(245,132,15,.1);  color: var(--tt-orange); }
.tt-about-mv__card--values .tt-about-mv__icon  { background: rgba(37,211,102,.1);  color: #25d366; }

.tt-about-mv__card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--tt-navy);
  margin: 0 0 10px;
}

.tt-about-mv__card p {
  font-size: 14px;
  color: var(--tt-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Why Choose Us ── */
.tt-about-why {
  padding: 60px 0;
  background: #fff;
}

.tt-about-why__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.tt-about-why__img {
  width: 100%;
  border-radius: 16px;
  margin-top: 24px;
  object-fit: cover;
  height: 260px;
}

.tt-about-why__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--tt-border);
}

.tt-about-why__item:last-child { border-bottom: none; }

.tt-about-why__item-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--tt-light-bg);
  color: var(--tt-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background .25s, color .25s;
}

.tt-about-why__item:hover .tt-about-why__item-icon {
  background: var(--tt-blue);
  color: #fff;
}

.tt-about-why__item-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--tt-navy);
  margin: 0 0 4px;
}

.tt-about-why__item-body p {
  font-size: 13px;
  color: var(--tt-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Team ── */
.tt-about-team {
  padding: 60px 0;
  background: var(--tt-light-bg);
}

.tt-about-team__head {
  text-align: center;
  margin-bottom: 36px;
}

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

.tt-team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--tt-shadow);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}

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

.tt-team-card__img {
  height: 220px;
  overflow: hidden;
}

.tt-team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.tt-team-card:hover .tt-team-card__img img {
  transform: scale(1.06);
}

.tt-team-card__body {
  padding: 16px;
}

.tt-team-card__body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--tt-navy);
  margin: 0 0 4px;
}

.tt-team-card__body span {
  font-size: 13px;
  color: var(--tt-orange);
  font-weight: 500;
}

/* ── CTA Banner ── */
.tt-about-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--tt-navy) 0%, var(--tt-blue) 100%);
}

.tt-about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.tt-about-cta__text h2 {
  color: #fff;
  font-size: 28px;
  margin: 0 0 8px;
}

.tt-about-cta__text p {
  color: rgba(255,255,255,.75);
  margin: 0;
  font-size: 15px;
}

.tt-about-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.tt-about-cta__actions .tt-btn {
  background: #fff;
  color: var(--tt-navy);
}

.tt-about-cta__actions .tt-btn:hover {
  background: var(--tt-light-bg);
  color: var(--tt-navy);
  box-shadow: none;
}

.tt-about-cta__wa {
  background: #25d366 !important;
  color: #fff !important;
}

.tt-about-cta__wa:hover {
  background: #1db954 !important;
  color: #fff !important;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .tt-about-intro__grid  { grid-template-columns: 1fr; gap: 40px; }
  .tt-about-img__main    { height: 320px; }
  .tt-about-img__secondary { right: 10px; bottom: -20px; }
  .tt-about-img__badge   { left: 10px; }
  .tt-about-stats__grid  { grid-template-columns: repeat(2, 1fr); }
  .tt-about-stat         { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .tt-about-mv__grid     { grid-template-columns: 1fr; }
  .tt-about-why__inner   { grid-template-columns: 1fr; }
  .tt-about-why__img     { display: none; }
  .tt-about-team__grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .tt-about-intro__features { grid-template-columns: 1fr; }
  .tt-about-stats__grid     { grid-template-columns: repeat(2, 1fr); }
  .tt-about-team__grid      { grid-template-columns: repeat(2, 1fr); }
  .tt-about-cta__inner      { flex-direction: column; text-align: center; }
  .tt-about-cta__actions    { justify-content: center; }
  .tt-about-stat__num       { font-size: 32px; }
}
/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ── Main Section ── */
.tt-contact {
  padding: 60px 0;
  background: #fff;
}

.tt-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* ── Intro text ── */
.tt-contact__intro {
  font-size: 15px;
  color: var(--tt-muted);
  line-height: 1.75;
  margin: 0 0 30px;
}

/* ── Info Cards ── */
.tt-contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.tt-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--tt-light-bg);
  border: 1px solid var(--tt-border);
  border-radius: 14px;
  padding: 18px 16px;
  transition: box-shadow .25s, transform .25s;
    width: 100%;
    word-break: break-word;
}

.tt-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--tt-shadow);
}

.tt-contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.tt-contact-card__icon--blue   { background: rgba(31,95,196,.1);   color: var(--tt-blue); }
.tt-contact-card__icon--orange { background: rgba(245,132,15,.1);  color: var(--tt-orange); }
.tt-contact-card__icon--green  { background: rgba(37,211,102,.1);  color: #25d366; }
.tt-contact-card__icon--purple { background: rgba(111,66,193,.1);  color: #6f42c1; }

.tt-contact-card__body h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--tt-navy);
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.tt-contact-card__body a,
.tt-contact-card__body span {
  display: block;
  font-size: 13px;
  color: var(--tt-muted);
  text-decoration: none;
  line-height: 1.6;
  transition: color .2s;
}

.tt-contact-card__body a:hover {
  color: var(--tt-orange);
}

/* ── Social ── */
.tt-contact__social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tt-contact__social span {
  font-size: 13px;
  font-weight: 600;
  color: var(--tt-navy);
  margin-right: 4px;
}

.tt-contact__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tt-light-bg);
  border: 1px solid var(--tt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: .25s;
}

.tt-contact__social a.facebook  { color: #1877F2; }
.tt-contact__social a.instagram { color: #E1306C; }
.tt-contact__social a.twitter   { color: #1DA1F2; }
.tt-contact__social a.youtube   { color: #FF0000; }

.tt-contact__social a.facebook:hover  { background: #1877F2; border-color: #1877F2; color: #fff; }
.tt-contact__social a.instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; color: #fff; }
.tt-contact__social a.twitter:hover   { background: #1DA1F2; border-color: #1DA1F2; color: #fff; }
.tt-contact__social a.youtube:hover   { background: #FF0000; border-color: #FF0000; color: #fff; }

/* ── Form Wrap ── */
.tt-contact__form-wrap {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--tt-shadow);
}

.tt-contact__form-head {
  margin-bottom: 24px;
}

.tt-contact__form-head h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--tt-navy);
  margin: 0 0 6px;
}

.tt-contact__form-head p {
  font-size: 13px;
  color: var(--tt-muted);
  margin: 0;
}

/* ── Form Fields ── */
.tt-cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.tt-cf-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.tt-cf-row .tt-cf-field {
  margin-bottom: 0;
}

.tt-cf-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--tt-text);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.tt-cf-field label span {
  color: var(--tt-orange);
}

.tt-cf-field input,
.tt-cf-field textarea,
.tt-cf-field select {
  border: 1.5px solid var(--tt-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--tt-font);
  color: var(--tt-text);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

.tt-cf-field input:focus,
.tt-cf-field textarea:focus {
  border-color: var(--tt-blue);
  box-shadow: 0 0 0 3px rgba(31,95,196,.1);
}

.tt-cf-field textarea {
  resize: vertical;
  min-height: 120px;
}

.tt-cf-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  font-size: 15px;
  padding: 14px;
  border-radius: 10px;
}

/* ── Quick Strip ── */
.tt-contact-strip {
  background: var(--tt-navy);
  padding: 24px 0;
}

.tt-contact-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.tt-contact-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.tt-contact-strip__item > i {
  font-size: 26px;
  color: var(--tt-orange);
  flex-shrink: 0;
}

.tt-contact-strip__item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.tt-contact-strip__item span {
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

/* ── Map ── */
.tt-contact-map {
  width: 100%;
  height: 420px;
}

.tt-contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(15%);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .tt-contact__grid   { grid-template-columns: 1fr; gap: 40px; }
  .tt-contact-strip__inner { justify-content: flex-start; gap: 24px; }
}

@media (max-width: 575px) {
  .tt-contact__cards  { grid-template-columns: 1fr; }
  .tt-cf-row          { grid-template-columns: 1fr; }
  .tt-contact__form-wrap { padding: 24px 18px; }
  .tt-contact-map     { height: 280px; }
  .tt-contact-strip__item:nth-child(n+3) { display: none; }
}

/* ============================================================
   TOUR CATEGORY PAGE
   ============================================================ */

.tt-cat-page {
  padding: 40px 0 60px;
  background: var(--tt-light-bg);
}

.tt-cat-page__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

/* ══════════════════════════════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════════════════════════════ */
.tt-cat-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
}

/* ADD/REPLACE */
.tt-sidebar-widget {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.tt-sidebar-widget__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tt-muted);
  margin: 0 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--tt-border);
}
.tt-sidebar-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tt-sidebar-cat-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--tt-text);
  text-decoration: none;
  transition: .15s;
}

.tt-sidebar-cat-list li a:hover,
.tt-sidebar-cat-list li.is-active > a {
  background: rgba(31,95,196,.07);
  color: var(--tt-blue);
}

.tt-sidebar-cat-list li a em {
  font-style: normal;
  font-size: 11px;
  background: var(--tt-light-bg);
  color: var(--tt-muted);
  padding: 1px 7px;
  border-radius: 10px;
  min-width: 22px;
  text-align: center;
}

.tt-sidebar-cat-list li.is-empty { opacity: .45; }

.tt-sidebar-sub-list {
  list-style: none;
  margin: 2px 0 2px 10px;
  padding: 0;
  border-left: 2px solid var(--tt-border);
}

.tt-sidebar-sub-list li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  font-size: 12px;
  color: var(--tt-muted);
  text-decoration: none;
  border-radius: 5px;
  transition: .15s;
}

.tt-sidebar-sub-list li a:hover,
.tt-sidebar-sub-list li.is-active a {
  color: var(--tt-blue);
  background: rgba(31,95,196,.05);
}

.tt-sidebar-sub-list li a em {
  margin-left: auto;
  font-style: normal;
  font-size: 10px;
  color: var(--tt-muted);
}

.tt-sidebar-sub-list li a:hover,
.tt-sidebar-sub-list li.is-active a {
  color: var(--tt-blue);
  background: rgba(31,95,196,.06);
}

.tt-sidebar-sub-list li a i {
  font-size: 10px;
  color: var(--tt-orange);
}
.tt-sidebar-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tt-sidebar-filter-list li a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 12px;
  border: 1px solid var(--tt-border);
  border-radius: 20px;
  color: var(--tt-text);
  text-decoration: none;
  background: var(--tt-light-bg);
  transition: .15s;
  white-space: nowrap;
}

.tt-sidebar-filter-list li a:hover,
.tt-sidebar-filter-list li a.is-active {
  background: var(--tt-blue);
  border-color: var(--tt-blue);
  color: #fff;
}

.tt-sidebar-filter-list li a i { font-size: 10px; }

.tt-sidebar-filter-list li a:hover {
  background: var(--tt-light-bg);
  color: var(--tt-blue);
}

.tt-sidebar-filter-list li a.is-active {
  background: rgba(245,132,15,.1);
  border-color: rgba(245,132,15,.3);
  color: var(--tt-orange);
  font-weight: 600;
}
.tt-sidebar-price input[type=range] {
  width: 100%;
  accent-color: var(--tt-blue);
  margin: 4px 0 6px;
  height: 4px;
}

.tt-sidebar-price__labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--tt-muted);
  margin-bottom: 8px;
}

.tt-sidebar-price__labels strong {
  font-size: 12px;
  color: var(--tt-navy);
}

.tt-sidebar-price__btn {
  width: 100%;
  padding: 7px;
  background: var(--tt-blue);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
}

.tt-sidebar-price__btn:hover { background: var(--tt-navy); }
.tt-sidebar-enquiry {
  background: linear-gradient(135deg, var(--tt-navy), var(--tt-blue)) !important;
  border: none !important;
  text-align: center;
  color: #fff;
}

.tt-sidebar-enquiry__icon {
  font-size: 22px;
  margin-bottom: 6px;
  color: rgba(255,255,255,.8);
}

.tt-sidebar-enquiry h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.tt-sidebar-enquiry p {
  font-size: 11px;
  color: rgba(255,255,255,.75);
  margin: 0 0 10px;
  line-height: 1.5;
}

.tt-sidebar-enquiry__call,
.tt-sidebar-enquiry__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 6px;
  transition: .2s;
}

.tt-sidebar-enquiry__call {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}

.tt-sidebar-enquiry__wa {
  background: #25d366;
  color: #fff;
  border: none;
  margin-bottom: 0;
}

.tt-sidebar-enquiry__call:hover { background: rgba(255,255,255,.25); color: #fff; }
.tt-sidebar-enquiry__wa:hover   { background: #1ebe5d; color: #fff; }
/* ══════════════════════════════════════════════════════════════
   MAIN CONTENT AREA
   ══════════════════════════════════════════════════════════════ */

/* Category Hero */
.tt-cat-hero {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  padding:10px;
  gap: 0;
}

.tt-cat-hero__img {
  width: 220px;
  height: 120px;
  flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
}

.tt-cat-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tt-cat-hero__body {
  padding: 18px 22px;
  flex: 1;
}

.tt-cat-hero__body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--tt-navy);
  margin: 0 0 6px;
}

.tt-cat-hero__body p {
  font-size: 13px;
  color: var(--tt-muted);
  margin: 0 0 10px;
  line-height: 1.6;
}

.tt-cat-hero__count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(31,95,196,.08);
  color: var(--tt-blue);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Sub-category chips */
.tt-cat-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: 10px;
  padding: 12px 16px;
}

.tt-cat-chips__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--tt-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}

.tt-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: var(--tt-light-bg);
  border: 1px solid var(--tt-border);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--tt-text);
  text-decoration: none;
  transition: .2s;
}

.tt-cat-chip em {
  font-style: normal;
  font-size: 11px;
  background: #fff;
  color: var(--tt-muted);
  padding: 1px 6px;
  border-radius: 10px;
}

.tt-cat-chip:hover {
  background: var(--tt-blue);
  border-color: var(--tt-blue);
  color: #fff;
}

.tt-cat-chip:hover em { background: rgba(255,255,255,.2); color: #fff; }
.tt-cat-chip--sibling { border-color: rgba(245,132,15,.3); color: var(--tt-orange); }

/* Toolbar */
.tt-cat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}

.tt-cat-toolbar__count {
  font-size: 13px;
  color: var(--tt-muted);
}

.tt-cat-toolbar__count strong { color: var(--tt-navy); }

.tt-cat-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tt-cat-toolbar__sort label {
  font-size: 13px;
  font-weight: 600;
  color: var(--tt-text);
  margin: 0;
}

.tt-cat-toolbar__sort select {
  border: 1px solid var(--tt-border);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 13px;
  font-family: var(--tt-font);
  color: var(--tt-text);
  background: #fff;
  cursor: pointer;
  outline: none;
  width: auto;
}

/* Active filters */
.tt-active-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--tt-muted);
}

.tt-active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(245,132,15,.1);
  border: 1px solid rgba(245,132,15,.3);
  border-radius: 20px;
  color: var(--tt-orange);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
}

.tt-active-filter-tag:hover { background: var(--tt-orange); color: #fff; }
.tt-active-filter-tag i { font-size: 10px; }

.tt-active-filter-clear {
  font-size: 12px;
  font-weight: 700;
  color: var(--tt-blue);
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════════
   PACKAGE CARD (listing style)
   ══════════════════════════════════════════════════════════════ */
.tt-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.tt-pkg-card {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--tt-shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

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

.tt-pkg-card__img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.tt-pkg-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

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

.tt-pkg-card__badge {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 12px;
  border-radius: 0 6px 6px 0;
}

.tt-pkg-card__badge--bestseller { background: #e8491d; }
.tt-pkg-card__badge--popular    { background: #25d366; }
.tt-pkg-card__badge--dealgreen  { background: #20c997; }
.tt-pkg-card__badge--family     { background: #6f42c1; }
.tt-pkg-card__badge--trending   { background: var(--tt-blue); }
.tt-pkg-card__badge--new        { background: var(--tt-orange); }
.tt-pkg-card__badge--default    { background: var(--tt-navy); }

.tt-pkg-card__cat {
  position: absolute;
  bottom: 40px;
  right: 10px;
  background: rgba(11,42,85,.75);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.tt-pkg-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.tt-pkg-card__places {
  font-size: 11px;
  color: var(--tt-muted);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tt-pkg-card__places i { color: var(--tt-orange); margin-right: 3px; font-size: 10px; }

.tt-pkg-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--tt-navy);
  margin: 0 0 6px;
  line-height: 1.35;
}

.tt-pkg-card__title a { color: inherit; text-decoration: none; }
.tt-pkg-card__title a:hover { color: var(--tt-blue); }

.tt-pkg-card__desc {
  font-size: 12px;
  color: var(--tt-muted);
  line-height: 1.5;
  margin: 0 0 10px;
}

.tt-pkg-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--tt-muted);
  flex-wrap: wrap;
}

.tt-pkg-card__meta i { color: var(--tt-orange); margin-right: 2px; }

.tt-pkg-card__rating { color: var(--tt-navy); font-weight: 600; }
.tt-pkg-card__rating i { color: #f5840f; }
.tt-pkg-card__rating em { font-style: normal; color: var(--tt-muted); font-weight: 400; }

.tt-pkg-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--tt-border);
}

.tt-pkg-card__price del {
  display: block;
  font-size: 11px;
  color: var(--tt-muted);
  text-decoration: line-through;
}

.tt-pkg-card__price-label {
  display: block;
  font-size: 10px;
  color: var(--tt-muted);
  text-transform: uppercase;
}

.tt-pkg-card__price strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--tt-navy);
  line-height: 1;
}

.tt-pkg-card__price strong small {
  font-size: 11px;
  font-weight: 400;
  color: var(--tt-muted);
}

.tt-pkg-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tt-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}

.tt-pkg-card__btn:hover {
  background: var(--tt-orange-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════════════════════════════ */
.tt-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  margin-bottom:30px;
  flex-wrap: wrap;
}

.tt-pagination__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tt-navy);
  text-decoration: none;
  transition: .2s;
}

.tt-pagination__btn:hover {
  background: var(--tt-blue);
  border-color: var(--tt-blue);
  color: #fff;
}

.tt-pagination__pages { display: flex; align-items: center; gap: 6px; }

.tt-pagination__page {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--tt-border);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--tt-text);
  text-decoration: none;
  transition: .2s;
}

.tt-pagination__page:hover { background: var(--tt-light-bg); color: var(--tt-blue); }
.tt-pagination__page.is-active { background: var(--tt-orange); border-color: var(--tt-orange); color: #fff; }

.tt-pagination__dots {
  font-size: 14px;
  color: var(--tt-muted);
  padding: 0 4px;
}

/* Empty state */
.tt-cat-empty {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--tt-border);
}

.tt-cat-empty i {
  font-size: 48px;
  color: var(--tt-border);
  display: block;
  margin-bottom: 16px;
}

.tt-cat-empty h3 { font-size: 22px; color: var(--tt-navy); margin: 0 0 8px; }
.tt-cat-empty p  { color: var(--tt-muted); margin: 0 0 20px; }

/* ══════════════════════════════════════════════════════════════
   OTHER CATEGORIES SECTION
   ══════════════════════════════════════════════════════════════ */
.tt-other-cats {
  padding: 50px 0;
  background: #fff;
}

.tt-other-cats__head {
  text-align: center;
  margin-bottom: 30px;
}

.tt-other-cats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tt-other-cat-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  aspect-ratio: 4/3;
}

.tt-other-cat-card__img {
  width: 100%;
  height: 100%;
}

.tt-other-cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.tt-other-cat-card:hover .tt-other-cat-card__img img { transform: scale(1.08); }

.tt-other-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,18,38,.85) 0%, rgba(5,18,38,.2) 55%, transparent 100%);
  transition: background .3s;
}

.tt-other-cat-card:hover .tt-other-cat-card__overlay {
  background: linear-gradient(to top, rgba(5,18,38,.9) 0%, rgba(5,18,38,.4) 55%, rgba(5,18,38,.1) 100%);
}

.tt-other-cat-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 2;
}

.tt-other-cat-card__body h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
  line-height: 1.3;
}

.tt-other-cat-card__body span {
  font-size: 12px;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
/* ══════════════════════════════════════════════════════════════
   SIDEBAR FILTER FORM
   ══════════════════════════════════════════════════════════════ */
.tt-cat-sidebar {
  position: sticky;
  top: 20px;
  align-self: start;
}

.tt-sidebar-form {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tt-sf-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tt-sf-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--tt-muted);
}

.tt-sf-label strong {
  color: var(--tt-navy);
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
}

/* Text input with icon */
.tt-sf-input-wrap {
  position: relative;
}

.tt-sf-input-wrap i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--tt-muted);
  pointer-events: none;
}

.tt-sf-input-wrap input {
  width: 100%;
  padding: 8px 10px 8px 30px;
  border: 1px solid var(--tt-border);
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--tt-font);
  color: var(--tt-text);
  background: var(--tt-light-bg);
  outline: none;
  box-sizing: border-box;
  transition: border .2s;
}

.tt-sf-input-wrap input:focus {
  border-color: var(--tt-blue);
  background: #fff;
}

/* Selects */
.tt-sidebar-form select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--tt-border);
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--tt-font);
  color: var(--tt-text);
  background: var(--tt-light-bg);
  outline: none;
  cursor: pointer;
  appearance: auto;
  transition: border .2s;
}

.tt-sidebar-form select:focus {
  border-color: var(--tt-blue);
  background: #fff;
}

/* Range slider */
.tt-sidebar-form input[type=range] {
  width: 100%;
  accent-color: var(--tt-blue);
  height: 4px;
  margin: 2px 0 4px;
}

.tt-sf-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--tt-muted);
}

/* Buttons */
.tt-sf-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tt-sf-btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  background: var(--tt-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}

.tt-sf-btn-search:hover { background: var(--tt-orange-dark); }

.tt-sf-btn-reset {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  background: var(--tt-light-bg);
  color: var(--tt-muted);
  border: 1px solid var(--tt-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
}

.tt-sf-btn-reset:hover {
  background: var(--tt-border);
  color: var(--tt-navy);
}

/* Help strip */
.tt-sf-help {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--tt-navy), var(--tt-blue));
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  line-height: 1.2;
}

.tt-sf-help > i {
  font-size: 22px;
  opacity: .85;
  flex-shrink: 0;
}

.tt-sf-help p {
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
  opacity: .8;
  color:#fff;
}

.tt-sf-help a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
}

.tt-sf-help a:hover { text-decoration: underline; }
.tt-sf-help a i { color: #25d366; }
/* ══════════════════════════════════════════════════════════════
   TOUR-PACKAGES.PHP — EXTRA CSS
   Add these rules to your main stylesheet (tour-category.css or
   wherever you keep the tt-pkg-card / tt-cat-page rules)
   ══════════════════════════════════════════════════════════════ */

/* ── Swiper inside package card ────────────────────────────── */
.tt-pkg-card__img .tt-pkg-swiper {
  width: 100%;
  height: 100%;        /* inherits 180px from .tt-pkg-card__img */
}

.tt-pkg-card__img .tt-pkg-swiper .swiper-slide {
  overflow: hidden;
}

.tt-pkg-card__img .tt-pkg-swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.tt-pkg-card__img .tt-pkg-swiper .swiper-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.tt-pkg-card:hover .tt-pkg-swiper .swiper-slide img {
  transform: scale(1.06);
}

/* Swiper pagination dots — small, inside card */
.tt-pkg-card__img .swiper-pagination {
  bottom: 6px;
}

.tt-pkg-card__img .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,.6);
  opacity: 1;
  transition: background .2s, transform .2s;
}

.tt-pkg-card__img .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.3);
}

/* Keep badge + cat tag on top of swiper */
.tt-pkg-card__img {
  position: relative;
}

.tt-pkg-card__badge,
.tt-pkg-card__cat {
  z-index: 10;
  pointer-events: none;
}

/* ── Featured-only checkbox in sidebar ─────────────────────── */
.tt-sf-check-group {
  flex-direction: row !important;
  align-items: center;
}

.tt-sf-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  color: var(--tt-text);
  font-weight: 500;
}

.tt-sf-check-label input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--tt-orange);
  cursor: pointer;
  flex-shrink: 0;
}
/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .tt-cat-page__layout { grid-template-columns: 240px 1fr; gap: 20px; }
  .tt-cat-grid          { grid-template-columns: repeat(2, 1fr); }
  .tt-other-cats__grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .tt-cat-page__layout  { grid-template-columns: 1fr; }
  .tt-cat-grid          { grid-template-columns: repeat(2, 1fr); }
  .tt-other-cats__grid  { grid-template-columns: repeat(2, 1fr); }

  .tt-cat-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 88vw;
    height: 100%;
    overflow-y: auto;
    background: #fff;
    z-index: 1200;
    padding: 20px 16px 30px;
    box-shadow: 4px 0 24px rgba(11,42,85,.18);
    transform: translateX(-110%);
    transition: transform .35s ease;
    /* override the sticky from desktop */
    align-self: auto;
    gap: 0;
  }

  .tt-cat-sidebar.is-open {
    transform: translateX(0);
  }

  .tt-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7,32,63,.5);
    z-index: 1199;
  }

  .tt-sidebar-overlay.is-open {
    display: block;
  }

  .tt-mobile-filter-btn {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .tt-mobile-filter-btn { display: none; }
  .tt-sidebar-overlay   { display: none !important; }
}

@media (max-width: 575px) {
  .tt-cat-grid          { grid-template-columns: 1fr; }
  .tt-other-cats__grid  { grid-template-columns: repeat(2, 1fr); }
  .tt-cat-hero          { flex-direction: column; }
  .tt-cat-hero__img     { width: 100%; height: 160px; }
  .tt-pagination__btn span { display: none; }
}


.tt-mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--tt-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--tt-font);
  margin-bottom: 14px;
}

/* Close button inside sidebar on mobile */
.tt-sidebar-close {
  display: none;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--tt-border);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--tt-navy);
  font-family: var(--tt-font);
  cursor: pointer;
}

@media (max-width: 991px) {
  .tt-sidebar-close { display: flex; }
}

/* ── listing section ── */
.tt-dest-listing {
  padding: 50px 0 70px;
  background: var(--tt-light-bg);
}

.tt-dest-listing__head {
  text-align: center;
  margin-bottom: 40px;
}

/* ── grid ── */
.tt-dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── card ── */
.tt-dest-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--tt-shadow);
  text-decoration: none;
  transition: transform .28s, box-shadow .28s;
}

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

/* image */
.tt-dest-card__img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.tt-dest-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

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

.tt-dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,18,38,.75) 0%,
    rgba(5,18,38,.15) 50%,
    transparent 100%
  );
  transition: opacity .3s;
}

/* package count badge */
.tt-dest-card__count {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--tt-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  line-height: 1.4;
  letter-spacing: .03em;
}

/* body */
.tt-dest-card__body {
  flex: 1;
  padding: 5px 10px 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tt-dest-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--tt-navy);
  margin: 0;
  line-height: 1.3;
}

.tt-dest-card__desc {
  font-size: 13px;
  color: var(--tt-muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.tt-dest-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--tt-blue);
  margin-top: 6px;
  transition: gap .2s, color .2s;
}

.tt-dest-card:hover .tt-dest-card__link {
  color: var(--tt-orange);
  gap: 10px;
}

.tt-dest-card__link i {
  font-size: 11px;
  transition: transform .2s;
}

.tt-dest-card:hover .tt-dest-card__link i {
  transform: translateX(3px);
}

/* ── responsive ── */
@media (max-width: 1100px) {
  .tt-dest-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .tt-dest-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .tt-dest-card__img { height: 160px; }
  .tt-dest-card__name { font-size: 16px; }
}

@media (max-width: 480px) {
  .tt-dest-grid { grid-template-columns: 1fr; }
  .tt-dest-card__img { height: 200px; }
}
/* ── destination hero banner ── */
.tt-dd-hero {
  position: relative;
  padding: 50px 0;
  background: #f7f8fa; /* light neutral, swap for whatever fits your theme */
  overflow: hidden;
}

.tt-dd-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.tt-dd-hero__content {
  flex: 1 1 55%;
  min-width: 280px;
}

.tt-dd-hero__title {
  font-size: 36px;
  font-weight: 800;
  color: #051226;
  margin: 0 0 10px;
  line-height: 1.2;
}

.tt-dd-hero__desc {
  font-size: 15px;
  color: rgba(5,18,38,.7);
  margin: 0 0 16px;
  max-width: 560px;
  line-height: 1.65;
}

.tt-dd-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tt-dd-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #051226;
  background: #fff;
  border: 1px solid rgba(5,18,38,.12);
  padding: 5px 14px;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(5,18,38,.06);
}

.tt-dd-hero__meta span i { color: var(--tt-orange); }

.tt-dd-hero__image {
  flex: 1 1 40%;
  min-width: 260px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(5,18,38,.15);
}

.tt-dd-hero__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .tt-dd-hero__inner {
    flex-direction: column-reverse;
  }
  .tt-dd-hero__image,
  .tt-dd-hero__content {
    flex: 1 1 100%;
    width: 100%;
  }
  .tt-dd-hero__image img {
    height: 220px;
  }
}
/* ── main layout ── */
.tt-dd-page {
  padding: 36px 0 60px;
  background: var(--tt-light-bg);
}

.tt-dd-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

/* ── content area ── */
.tt-dd-content {
  min-width: 0; /* prevent grid blowout */
}

/* ── toolbar ── */
.tt-dd-toolbar {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.tt-dd-toolbar__count {
  font-size: 13px;
  color: var(--tt-muted);
  margin: 0;
}

.tt-dd-toolbar__count strong { color: var(--tt-navy); }

/* ── sidebar: other destinations widget ── */
.tt-dd-other-dest {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: 10px;
  padding: 14px;
  margin-top: 16px;
}

.tt-dd-other-dest__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--tt-muted);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--tt-border);
}

.tt-dd-other-dest__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--tt-border);
  text-decoration: none;
  transition: .15s;
}

.tt-dd-other-dest__item:last-child { border-bottom: none; }

.tt-dd-other-dest__item:hover { padding-left: 4px; }

.tt-dd-other-dest__item img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--tt-border);
}

.tt-dd-other-dest__item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--tt-navy);
  line-height: 1.3;
}

.tt-dd-other-dest__item span {
  font-size: 11px;
  color: var(--tt-muted);
}

.tt-dd-other-dest__item:hover strong { color: var(--tt-blue); }

/* ── explore other destinations (bottom) ── */
.tt-dd-explore {
  padding: 50px 0;
  background: #fff;
}

.tt-dd-explore__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.tt-dd-explore__head .section-title { margin: 0; }

.tt-dd-explore__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--tt-blue);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .03em;
  transition: color .2s, gap .2s;
}

.tt-dd-explore__all:hover { color: var(--tt-orange); gap: 10px; }

.tt-dd-explore__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── responsive ── */
@media (max-width: 1100px) {
  .tt-dd-layout { grid-template-columns: 240px 1fr; gap: 20px; }
}

@media (max-width: 991px) {
  .tt-dd-layout { grid-template-columns: 1fr; }

  /* sidebar becomes slide-in panel (same as tour-category) */
  .tt-cat-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 88vw;
    height: 100%;
    overflow-y: auto;
    background: #fff;
    z-index: 1200;
    padding: 20px 16px 30px;
    box-shadow: 4px 0 24px rgba(11,42,85,.18);
    transform: translateX(-110%);
    transition: transform .35s ease;
    align-self: auto;
    gap: 0;
  }

  .tt-cat-sidebar.is-open { transform: translateX(0); }

  .tt-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7,32,63,.5);
    z-index: 1199;
  }

  .tt-sidebar-overlay.is-open { display: block; }

  .tt-mobile-filter-btn { display: inline-flex; }

  .tt-dd-explore__grid { grid-template-columns: repeat(2, 1fr); }
  .tt-dd-hero { height: 240px; }
  .tt-dd-hero__title { font-size: 28px; }
}

@media (max-width: 767px) {
  .tt-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .tt-dd-hero { height: 200px; }
  .tt-dd-hero__title { font-size: 22px; }
}

@media (max-width: 575px) {
  .tt-cat-grid { grid-template-columns: 1fr; }
  .tt-dd-explore__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .tt-pagination__btn span { display: none; }
}

@media (min-width: 992px) {
  .tt-mobile-filter-btn { display: none; }
  .tt-sidebar-overlay   { display: none !important; }
}



/* ── blog detail page ── */
.tt-blog-detail__img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.tt-blog-detail__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.tt-blog-detail__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.tt-blog-detail__meta span {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tt-blog-detail__meta span i { color: var(--tt-orange); }
.tt-blog-detail__meta a { color: #6b7280; text-decoration: none; }
.tt-blog-detail__meta a:hover { color: var(--tt-orange); }

.tt-blog-detail__title {
  font-size: 28px;
  font-weight: 800;
  color: #051226;
  margin: 0 0 20px;
  line-height: 1.3;
}

.tt-blog-detail__content {
  font-size: 15.5px;
  line-height: 1.85;
  color: #374151;
}
.tt-blog-detail__content h2,
.tt-blog-detail__content h3 {
  font-weight: 700;
  color: #051226;
  margin: 28px 0 12px;
}
.tt-blog-detail__content h2 { font-size: 22px; }
.tt-blog-detail__content h3 { font-size: 18px; }
.tt-blog-detail__content p { margin: 0 0 16px; }
.tt-blog-detail__content ul,
.tt-blog-detail__content ol { margin: 0 0 16px; padding-left: 22px; }
.tt-blog-detail__content li { margin-bottom: 8px; }
.tt-blog-detail__content strong { color: #051226; }

/* ── sidebar boxes ── */
.tt-blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tt-sidebar-box {
  background: #fff;
  border: 1px solid rgba(5,18,38,.08);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(5,18,38,.05);
}

.tt-sidebar-box__title {
  font-size: 16px;
  font-weight: 700;
  color: #051226;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--tt-orange);
  display: inline-block;
}

.tt-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tt-sidebar-list__link { display: flex; gap: 12px; text-decoration: none; }

.tt-sidebar-list__img {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
}
.tt-sidebar-list__img img { width: 100%; height: 100%; object-fit: cover; }

.tt-sidebar-list__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.tt-sidebar-list__title {
  font-size: 13.5px;
  font-weight: 600;
  color: #051226;
  line-height: 1.4;
}
.tt-sidebar-list__link:hover .tt-sidebar-list__title { color: var(--tt-orange); }

.tt-sidebar-list__date {
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tt-sidebar-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tt-sidebar-cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  padding: 10px 14px;
  border-radius: 8px;
  background: #f7f8fa;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.tt-sidebar-cat-list a i { font-size: 11px; color: #9ca3af; }
.tt-sidebar-cat-list a:hover,
.tt-sidebar-cat-list a.is-active { background: var(--tt-orange); color: #fff; }
.tt-sidebar-cat-list a:hover i,
.tt-sidebar-cat-list a.is-active i { color: #fff; }

/* ── category pill bar (blog-category.php) ── */
.tt-blog-cat-bar {
  background: #fff;
  border-bottom: 1px solid rgba(5,18,38,.08);
  padding: 16px 0;
}
.tt-blog-cat-bar__list { display: flex; gap: 10px; flex-wrap: wrap; }
.tt-blog-cat-pill {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  background: #f7f8fa;
  border: 1px solid rgba(5,18,38,.08);
  padding: 7px 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.tt-blog-cat-pill:hover,
.tt-blog-cat-pill.is-active { background: var(--tt-orange); border-color: var(--tt-orange); color: #fff; }

@media (max-width: 991px) {
  .tt-blog-detail__img img { height: 260px; }
  .tt-blog-sidebar { margin-top: 30px; }
}
/* ============ NESTED SUB-DROPDOWN (desktop flyout) ============ */
.tt-dropdown li.has-subdropdown{
  position: relative;
}
.tt-dropdown li.has-subdropdown > a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}
.tt-dropdown li.has-subdropdown > a i{
  font-size:10px;
  color:var(--tt-muted);
}
.tt-subdropdown{
  position:absolute;
  top:0;
  left:100%;
  min-width:240px;
  background:#fff;
  list-style:none;
  margin:0;
  padding:10px 0;
  border-radius:var(--tt-radius);
  box-shadow:var(--tt-shadow);
  opacity:0;
  visibility:hidden;
  transform:translateX(8px);
  transition:.2s;
  z-index:60;
  max-height:420px;
  overflow:auto;
}
.tt-dropdown li.has-subdropdown:hover > .tt-subdropdown{
  opacity:1;
  visibility:visible;
  transform:translateX(0);
}
.tt-subdropdown li a{
  display:block;
  padding:10px 12px;
  color:var(--tt-text);
  font-size:13px;
  text-decoration:none;
  transition:.2s;
  line-height:1;
  font-weight:600;
  border-bottom:1px solid #ddd;
}
.tt-subdropdown li:last-child a{ border-bottom:0; }
.tt-subdropdown li a:hover{
  background:var(--tt-light-bg);
  color:var(--tt-blue);
  padding-left:18px;
}

/* ============ NESTED ACCORDION (mobile drawer) ============ */
.tt-drawer__submenu .has-children > .tt-drawer__toggle--sub{
  padding-left:14px;
  font-size:14px;
  color:var(--tt-muted);
}
.tt-drawer__submenu--sub{
  padding-left:14px;
}
.tt-drawer__submenu--sub li a{
  font-size:13px;
}

/* ============================================================
   TOUR DETAIL PAGE — tour-detail.css
   Covers all td-* and supporting components used in tour.php
   Requires the existing --tt-* CSS variables from style.css
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   PAGE WRAPPER & TWO-COLUMN LAYOUT
   ══════════════════════════════════════════════════════════ */
.td-page {
  padding: 32px 0 60px;
  background: var(--tt-light-bg);
}



/* ══════════════════════════════════════════════════════════
   GALLERY SWIPER
   ══════════════════════════════════════════════════════════ */
.td-gallery {
  border-radius: var(--tt-radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--tt-navy-dark);
}

.td-gallery__swiper {
  width: 100%;
  height: 420px;
}
.td-gallery__swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  min-width: 0;
  width: 100% !important;
  flex-shrink: 0;
}
.td-gallery__swiper.swiper {
  width: 100%;
  min-width: 0;
}

.td-gallery {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.td-main {
  min-width: 0;
}
.td-gallery__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Caption overlay */
.td-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(5, 18, 38, .75));
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 28px 18px 12px;
  line-height: 1.4;
  pointer-events: none;
}

/* Swiper nav overrides inside gallery */
.td-gallery__swiper .swiper-button-prev,
.td-gallery__swiper .swiper-button-next {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .18);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: background .2s;
}

.td-gallery__swiper .swiper-button-prev:hover,
.td-gallery__swiper .swiper-button-next:hover {
  background: var(--tt-orange);
}

.td-gallery__swiper .swiper-button-prev::after,
.td-gallery__swiper .swiper-button-next::after {
  font-size: 14px;
  color: #fff;
}

.td-gallery__swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, .55);
  opacity: 1;
}

.td-gallery__swiper .swiper-pagination-bullet-active {
  background: var(--tt-orange);
  width: 20px;
  border-radius: 4px;
}

/* Thumbnail strip */
.td-gallery__thumbs {
  height: 80px;
  padding: 6px 8px;
  background: var(--tt-navy-dark);
}

.td-gallery__thumbs .swiper-slide {
  opacity: .5;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  transition: opacity .2s;
}

.td-gallery__thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.td-gallery__thumbs .swiper-slide-thumb-active {
  opacity: 1;
  outline: 2px solid var(--tt-orange);
  outline-offset: 1px;
}

/* ══════════════════════════════════════════════════════════
   QUICK INFO BAR
   ══════════════════════════════════════════════════════════ */
.td-quickinfo {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.td-quickinfo__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  flex: 1;
  min-width: 130px;
  border-right: 1px solid var(--tt-border);
}

.td-quickinfo__item:last-child {
  border-right: none;
}

.td-quickinfo__item > i {
  font-size: 17px;
  color: var(--tt-orange);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.td-quickinfo__item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}

.td-quickinfo__item span {
  font-size: 11px;
  color: var(--tt-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
}

.td-quickinfo__item strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--tt-navy);
}

/* ══════════════════════════════════════════════════════════
   TABS
   ══════════════════════════════════════════════════════════ */
.td-tabs {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

/* Nav bar */
.td-tabs__nav {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--tt-border);
}

.td-tabs__nav::-webkit-scrollbar {
  display: none;
}

.td-tab-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 14px 22px;
  font-family: var(--tt-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--tt-muted);
  cursor: pointer;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.td-tab-btn:hover {
  color: var(--tt-navy);
}

.td-tab-btn.is-active {
  color: var(--tt-blue);
  border-bottom-color: var(--tt-blue);
}

/* Panels */
.td-tab-panel {
  display: none;
  padding: 24px;
  animation: tdFadeIn .25s ease;
}

.td-tab-panel.is-active {
  display: block;
}

@keyframes tdFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   RICH TEXT (shared for overview / itinerary / inc / exc)
   ══════════════════════════════════════════════════════════ */
.td-richtext {
  font-size: 15px;
  line-height: 1.8;
  color: var(--tt-text);
}

.td-richtext h2,
.td-richtext h3,
.td-richtext h4 {
  color: var(--tt-navy);
  margin: 22px 0 10px;
}

.td-richtext h2 { font-size: 20px; }
.td-richtext h3 { font-size: 17px; }
.td-richtext h4 { font-size: 15px; }

.td-richtext p {
  margin: 0 0 14px;
}

.td-richtext p:last-child {
  margin-bottom: 0;
}

.td-richtext ul,
.td-richtext ol {
  padding-left: 20px;
  margin: 0 0 14px;
}

.td-richtext li {
  margin-bottom: 6px;
}

.td-richtext strong {
  color: var(--tt-navy);
}

/* ══════════════════════════════════════════════════════════
   PLACES COVERED TAGS
   ══════════════════════════════════════════════════════════ */
.td-places-covered {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--tt-border);
}

.td-places-covered h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--tt-navy);
  margin: 0 0 12px;
}

.td-places-covered h4 i {
  color: var(--tt-orange);
}

.td-places-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.td-place-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: rgba(31, 95, 196, .07);
  border: 1px solid rgba(31, 95, 196, .18);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tt-blue);
}

/* ══════════════════════════════════════════════════════════
   ITINERARY
   ══════════════════════════════════════════════════════════ */
.td-itinerary {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.td-itin-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--tt-border);
  position: relative;
}

.td-itin-item:last-child {
  border-bottom: none;
}

/* Left day badge */
.td-itin-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  flex-shrink: 0;
  width: 52px;
  padding-top: 2px;
}

.td-itin-day span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tt-muted);
  line-height: 1;
}

.td-itin-day strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--tt-navy);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

/* Vertical connector line */
.td-itin-item:not(:last-child) .td-itin-day::after {
  content: '';
  display: block;
  width: 2px;
  flex: 1;
  min-height: 20px;
  background: var(--tt-border);
  margin-top: 8px;
}

/* Right content */
.td-itin-body {
  flex: 1;
  min-width: 0;
}

.td-itin-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--tt-navy);
  margin: 0 0 10px;
  line-height: 1.35;
}

.td-itin-img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--tt-radius);
  margin-top: 14px;
  display: block;
}

/* ══════════════════════════════════════════════════════════
   INCLUSIONS / EXCLUSIONS
   ══════════════════════════════════════════════════════════ */
.td-inc-exc {
  border-radius: var(--tt-radius);
  padding: 6px 0 0;
}

.td-inc-exc h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
}

.td-inc-exc--inc h4 {
  color: #16a34a;
}

.td-inc-exc--inc h4 i {
  color: #16a34a;
}

.td-inc-exc--exc h4 {
  color: #dc2626;
}

.td-inc-exc--exc h4 i {
  color: #dc2626;
}

/* Style any ul/ol inside richtext within inc/exc */
.td-inc-exc .td-richtext ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.td-inc-exc .td-richtext ul li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  margin: 0;
  line-height: 1.55;
}

.td-inc-exc--inc .td-richtext ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  font-size: 10px;
  border-radius: 50%;
  background: rgba(22, 163, 74, .12);
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.td-inc-exc--exc .td-richtext ul li::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  font-size: 10px;
  border-radius: 50%;
  background: rgba(220, 38, 38, .1);
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════════════════════ */
.td-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.td-faq-item {
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius);
  overflow: hidden;
  transition: box-shadow .2s;
}

.td-faq-item.is-open {
  box-shadow: 0 4px 14px rgba(11, 42, 85, .08);
  border-color: rgba(31, 95, 196, .25);
}

.td-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 18px;
  background: #fff;
  border: none;
  text-align: left;
  font-family: var(--tt-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--tt-navy);
  cursor: pointer;
  gap: 12px;
  transition: background .2s, color .2s;
}

.td-faq-q i {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--tt-muted);
  transition: transform .3s;
}

.td-faq-item.is-open .td-faq-q {
  background: rgba(31, 95, 196, .04);
  color: var(--tt-blue);
}

.td-faq-item.is-open .td-faq-q i {
  transform: rotate(180deg);
  color: var(--tt-blue);
}

.td-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  background: #fafbfd;
}

.td-faq-item.is-open .td-faq-a {
  max-height: 400px;
}

.td-faq-a p {
  margin: 0;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--tt-text);
}

/* ══════════════════════════════════════════════════════════
   SECTION GENERIC (departure months etc.)
   ══════════════════════════════════════════════════════════ */
.td-section {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-lg);
  padding: 22px 24px;
  margin-bottom: 24px;
}

.td-section__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--tt-navy);
  margin: 0 0 16px;
}

.td-section__title i {
  color: var(--tt-orange);
}

/* Month tags */
.td-month-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.td-month-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(31, 95, 196, .07);
  border: 1px solid rgba(31, 95, 196, .18);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tt-blue);
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS / REVIEWS SWIPER
   ══════════════════════════════════════════════════════════ */
.td-reviews-swiper {
  overflow: hidden;
  padding-bottom: 36px !important;
}

.td-review-card {
  background: var(--tt-light-bg);
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-lg);
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.td-review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.td-review-card__head img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--tt-border);
  flex-shrink: 0;
}

.td-review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--tt-navy);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.td-review-card__head > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.td-review-card__head strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--tt-navy);
  line-height: 1.3;
}

.td-review-card__head span {
  font-size: 12px;
  color: var(--tt-muted);
}

.td-review-card__stars {
  display: flex;
  gap: 3px;
  font-size: 13px;
  color: var(--tt-orange);
}

.td-review-card__stars .far.fa-star {
  color: var(--tt-border);
}

.td-review-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--tt-text);
  margin: 0;
  flex: 1;
}

.td-reviews-pagination {
  bottom: 8px !important;
}

.td-reviews-pagination .swiper-pagination-bullet {
  background: var(--tt-border);
  opacity: 1;
}

.td-reviews-pagination .swiper-pagination-bullet-active {
  background: var(--tt-blue);
  width: 18px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════
   SIDEBAR — STICKY WRAPPER
   ══════════════════════════════════════════════════════════ */
.td-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Price Card ── */
.td-price-card {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-lg);
  padding: 22px;
  box-shadow: var(--tt-shadow);
  position: relative;
  overflow: hidden;
}

/* accent top stripe */
.td-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tt-orange), var(--tt-orange-dark));
}

.td-price-card__badge {
  display: inline-flex;
  align-items: center;
  background: var(--tt-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.td-price-card__price {
  margin-bottom: 14px;
}

.td-price-card__price del {
  display: block;
  font-size: 14px;
  color: var(--tt-muted);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.td-price-card__save {
  display: inline-block;
  background: rgba(22, 163, 74, .1);
  color: #16a34a;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 30px;
  margin-bottom: 6px;
}

.td-price-card__label {
  display: block;
  font-size: 11px;
  color: var(--tt-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
  margin-bottom: 2px;
}

.td-price-card__price strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--tt-navy);
  line-height: 1.1;
}

.td-price-card__price strong small {
  font-size: 14px;
  font-weight: 400;
  color: var(--tt-muted);
}

.td-price-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--tt-orange);
  margin-bottom: 18px;
}

.td-price-card__rating span {
  font-weight: 700;
  color: var(--tt-navy);
}

.td-price-card__rating em {
  font-style: normal;
  color: var(--tt-muted);
  font-size: 12px;
}

/* CTA buttons */
.td-price-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.td-price-card__btn-primary,
.td-price-card__btn-wa,
.td-price-card__btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 8px;
  font-family: var(--tt-font);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .25s, background .2s;
  line-height: 1;
}

.td-price-card__btn-primary {
  background: var(--tt-orange);
  color: #fff;
}

.td-price-card__btn-primary:hover {
  background: var(--tt-orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 132, 15, .3);
}

.td-price-card__btn-wa {
  background: var(--tt-green);
  color: #fff;
}

.td-price-card__btn-wa:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
}

.td-price-card__btn-call {
  background: var(--tt-light-bg);
  color: var(--tt-navy);
  border: 1px solid var(--tt-border);
}

.td-price-card__btn-call:hover {
  background: var(--tt-navy);
  color: #fff;
  border-color: var(--tt-navy);
}

/* ── Sidebar generic widget ── */
.td-sidebar-widget {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-lg);
  padding: 20px;
  box-shadow: var(--tt-shadow);
}

.td-sidebar-widget__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--tt-navy);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--tt-border);
}

.td-sidebar-widget__title i {
  color: var(--tt-orange);
}

/* ── Quick Facts list ── */
.td-facts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.td-facts-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--tt-border);
  font-size: 13px;
  margin: 0;
}

.td-facts-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.td-facts-list li > i {
  font-size: 14px;
  color: var(--tt-orange);
  width: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.td-facts-list li > span {
  color: var(--tt-muted);
  flex: 1;
  font-weight: 500;
}

.td-facts-list li > strong {
  color: var(--tt-navy);
  font-weight: 700;
  text-align: right;
  max-width: 55%;
}

/* ── Enquiry Widget ── */
.td-enquiry-widget {
  scroll-margin-top: 100px;
}

/* Enquiry form fields */
.td-enquiry-widget .tt-field {
  margin-bottom: 12px;
}

.td-enquiry-widget .tt-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--tt-text);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.td-enquiry-widget .tt-field input,
.td-enquiry-widget .tt-field select,
.td-enquiry-widget .tt-field textarea {
  width: 100%;
  border: 1.5px solid var(--tt-border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: var(--tt-font);
  color: var(--tt-text);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.td-enquiry-widget .tt-field input:focus,
.td-enquiry-widget .tt-field select:focus,
.td-enquiry-widget .tt-field textarea:focus {
  border-color: var(--tt-blue);
  box-shadow: 0 0 0 3px rgba(31, 95, 196, .1);
}

.td-enquiry-widget .tt-field textarea {
  min-height: 90px;
  resize: vertical;
}

.td-enquiry-widget .tt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.td-enq-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--tt-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--tt-font);
  font-size: 14px;
  font-weight: 700;
  padding: 13px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 4px;
}

.td-enq-submit:hover {
  background: var(--tt-orange-dark);
  transform: translateY(-1px);
}

/* Form success / error messages */
.td-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 14px;
  text-align: center;
  background: rgba(22, 163, 74, .06);
  border: 1px solid rgba(22, 163, 74, .2);
  border-radius: var(--tt-radius);
}

.td-form-success i {
  font-size: 36px;
  color: #16a34a;
}

.td-form-success p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #15803d;
}

.td-form-error {
  background: rgba(220, 38, 38, .06);
  border: 1px solid rgba(220, 38, 38, .2);
  border-radius: var(--tt-radius);
  padding: 10px 14px;
  font-size: 13px;
  color: #b91c1c;
  font-weight: 600;
  margin-bottom: 14px;
}

/* ── Share buttons ── */
.td-share-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.td-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--tt-font);
  transition: opacity .2s, transform .15s;
  line-height: 1;
}

.td-share-btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.td-share-btn--wa {
  background: var(--tt-green);
  color: #fff;
}

.td-share-btn--fb {
  background: #1877F2;
  color: #fff;
}

.td-share-btn--copy {
  background: var(--tt-light-bg);
  color: var(--tt-navy);
  border: 1px solid var(--tt-border);
}

/* ══════════════════════════════════════════════════════════
   RELATED PACKAGES SECTION
   ══════════════════════════════════════════════════════════ */
.td-related-section {
  background: var(--tt-light-bg) !important;
}

.td-related-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {

  .td-gallery__swiper {
    height: 360px;
  }

  .td-related-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 991px) {


  .td-sidebar {
    position: static;
  }

  .td-gallery__swiper {
    height: 300px;
  }

  .td-quickinfo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .td-quickinfo__item {
    border-right: none;
    border-bottom: 1px solid var(--tt-border);
  }

  .td-quickinfo__item:nth-child(3n) {
    border-right: none;
  }

  .td-quickinfo__item:nth-last-child(-n+3):nth-child(3n+1) {
    border-bottom: none;
  }

  .td-related-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .td-page {
    padding: 20px 0 40px;
  }

  .td-gallery__swiper {
    height: 240px;
  }

  .td-gallery__thumbs {
    height: 64px;
  }

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

  .td-itin-day strong {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .td-tabs__nav {
    gap: 0;
  }

  .td-tab-btn {
    padding: 12px 14px;
    font-size: 13px;
  }

  .td-tab-panel {
    padding: 16px;
  }

  .td-enquiry-widget .tt-form-row {
    grid-template-columns: 1fr;
  }

  .td-related-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .td-quickinfo {
    grid-template-columns: 1fr;
  }

  .td-quickinfo__item {
    border-bottom: 1px solid var(--tt-border);
  }

  .td-price-card__price strong {
    font-size: 26px;
  }

  .td-share-btns {
    flex-direction: column;
  }

  .td-share-btn {
    justify-content: center;
  }
}

/* ══════════════════════════════════
   ENQUIRY FORM — SIDEBAR WIDGET
   ══════════════════════════════════ */

.td-enquiry-widget {
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-lg);
  box-shadow: var(--tt-shadow);
  padding: 24px;
}

.td-sidebar-widget__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--tt-navy);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.td-sidebar-widget__title i {
  color: var(--tt-orange);
  font-size: 15px;
}

/* ── Fields ── */
.td-enq-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.td-enq-field label {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

/* ── Input Wrap (icon + input) ── */
.td-enq-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.td-enq-input-wrap i {
  position: absolute;
  left: 12px;
  color: #9d9d9d;
  font-size: 13px;
  pointer-events: none;
}

.td-enq-input-wrap input {
  width: 100%;
  padding: 10px 12px 10px 34px;
  font-family: var(--tt-font);
  font-size: 14px;
  color: var(--tt-text);
  background: var(--tt-light-bg);
  border: 1px solid #9d9d9d;
  border-radius: var(--tt-radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.td-enq-input-wrap input:focus {
  border-color: var(--tt-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 95, 196, 0.1);
}

/* ── Textarea ── */
.td-enq-field textarea {
  width: 100%;
  padding: 10px 12px;
  font-family: var(--tt-font);
  font-size: 14px;
  color: var(--tt-text);
  background: var(--tt-light-bg);
  border: 1px solid #9d9d9d;
  border-radius: var(--tt-radius);
  outline: none;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.td-enq-field textarea:focus {
  border-color: var(--tt-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 95, 196, 0.1);
}

/* ── Adults / Children row ── */
.td-enq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ── Submit Button ── */
.td-enq-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: var(--tt-orange);
  color: #fff;
  font-family: var(--tt-font);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  margin-top: 4px;
}

.td-enq-submit:hover {
  background: var(--tt-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 132, 15, 0.35);
}

.td-enq-submit:active {
  transform: translateY(0);
}

/* ── Success / Error States ── */
.td-form-success {
  text-align: center;
  padding: 24px 16px;
  color: #198754;
}

.td-form-success i {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}

.td-form-success p {
  font-size: 15px;
  font-weight: 600;
  color: #198754;
  margin: 0;
}

.td-form-error {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.25);
  color: #dc3545;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--tt-radius);
  margin-bottom: 14px;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .td-enq-row {
    grid-template-columns: 1fr;
  }
}
/* ============ GALLERY COVERFLOW SECTION ============ */
.tt-gallery-coverflow{
  position:relative;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding:30px 0 30px !important;
  overflow:hidden;
}
.tt-gallery-coverflow__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(7,32,63,.85) 0%, rgba(11,42,85,.75) 50%, rgba(7,32,63,.9) 100%);
  z-index:0;
}
.tt-gallery-coverflow .container{
  position:relative;
  z-index:1;
}
.tt-gallery-coverflow__title{
  color:#fff;
  font-size:38px;
  font-weight:800;
  margin-bottom:0;
}
.tt-gallery-coverflow__wrap{
  position:relative;
  padding:0px 0 0px;
}
.tt-gallery-swiper{
  padding:30px 0 50px;
}
.tt-gallery-swiper .swiper-slide{
  width:300px;
  height:400px;
}
.tt-gallery-card{
  position:relative;
  width:100%;
  height:100%;
  border-radius:var(--tt-radius-lg);
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}
.tt-gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.tt-gallery-card__caption{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:18px 16px;
  background:linear-gradient(0deg, rgba(5,18,38,.85) 0%, rgba(5,18,38,0) 100%);
  color:#fff;
  font-size:16px;
  font-weight:700;
  text-align:center;
}
.tt-gallery-swiper__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.3);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  cursor:pointer;
  z-index:5;
  transition:.2s;
  backdrop-filter:blur(4px);
}
.tt-gallery-swiper__arrow:hover{
  background:var(--tt-orange);
  border-color:var(--tt-orange);
}
.tt-gallery-swiper__arrow--prev{ left:6px; }
.tt-gallery-swiper__arrow--next{ right:6px; }

@media (max-width:767px){
  .tt-gallery-swiper .swiper-slide{
    width:230px;
    height:320px;
  }
  .tt-gallery-coverflow__title{ font-size:26px; }
}
@media (max-width:991px){
  .tt-gallery-swiper__arrow{ display:none; }
}

/* ============ FAQ ACCORDION ============ */
.tt-faq__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px 24px;
}
@media (max-width:767px){
  .tt-faq__grid{ grid-template-columns:1fr; }
}
.tt-faq-item{
  background:#fff;
  border:1px solid var(--tt-border);
  border-radius:var(--tt-radius);
  box-shadow:var(--tt-shadow);
  overflow:hidden;
  height: max-content;
}
.tt-faq-item__question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background:none;
  border:none;
  text-align:left;
  padding:16px 20px;
  font-size:15px;
  font-weight:600;
  color:var(--tt-navy);
  cursor:pointer;
  font-family:var(--tt-font);
}
.tt-faq-item__question i{
  flex-shrink:0;
  width:26px;
  height:26px;
  border-radius:50%;
  background:rgba(245,132,15,.12);
  color:var(--tt-orange);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  outline:none;
  transition:transform .25s, background .25s, color .25s;
}
.tt-faq-item__question:focus{
  outline: none !important;
  border: 0 !important;
}
.text-center .tt-section-divider{
  justify-content: center;
}
.tt-faq-item.is-open .tt-faq-item__question i{
  transform:rotate(135deg);
  background:var(--tt-orange);
  color:#fff;
}
.tt-faq-item__answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}
.tt-faq-item__answer-inner{
  padding:0 20px 18px;
  font-size:14px;
  color:var(--tt-muted);
  line-height:1.7;
}
.tt-faq-item__answer-inner p{ margin:0; }
/* ============ TAXI FLEET CARDS ============ */
.tt-cabs{
    background: #fff1e5;
}
.tt-cab-card{
  position:relative;
  background:#fff;
  border:1px solid var(--tt-border);
  border-radius:var(--tt-radius-lg);
  overflow:hidden;
  box-shadow:var(--tt-shadow);
  transition:transform .25s, box-shadow .25s;
  height:100%;
  display:flex;
  flex-direction:column;
}
.tt-cab-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--tt-shadow-lg);
}
.tt-cab-card__img{
  background:linear-gradient(180deg, #faf3ff 0%, #fff 100%);
  padding:18px 18px 0;
  text-align:center;
}
.tt-cab-card__img img{
  max-height:140px;
  object-fit:contain;
  margin:0 auto;
}
.tt-cab-card__ribbon{
  position:absolute;
  top:14px;
  right:-34px;
  width:140px;
  text-align:center;
  background:var(--tt-orange);
  color:#fff;
  font-size:11px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  padding:5px 0;
  transform:rotate(45deg);
  box-shadow:0 2px 8px rgba(0,0,0,.15);
  z-index:2;
}
.tt-cab-card__body{
  padding:16px 18px 18px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.tt-cab-card__name{
  font-size:17px;
  font-weight:700;
  color:var(--tt-navy);
  margin:0 0 10px;
}
.tt-cab-card__badges{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:14px;
}
.tt-cab-card__badge{
  display:inline-flex;
  align-items:center;
  gap:5px;
  font-size:11.5px;
  font-weight:600;
  color:var(--tt-orange);
  background:rgba(245,132,15,.1);
  border:1px solid rgba(245,132,15,.25);
  padding:4px 10px;
  border-radius:30px;
}
.tt-cab-card__badge i{ font-size:11px; }
.tt-cab-card__pricing{
  display:flex;
  gap:8px;
  margin-bottom:14px;
}
.tt-cab-card__pricebox{
  flex:1;
  text-align:center;
  background:var(--tt-light-bg);
  border:1px solid var(--tt-border);
  border-radius:8px;
  padding:8px 6px;
}
.tt-cab-card__pricebox span{
  display:block;
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--tt-muted);
  margin-bottom:3px;
}
.tt-cab-card__pricebox strong{
  font-size:15px;
  font-weight:700;
  color:var(--tt-orange);
}
.tt-cab-card__actions{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:auto;
}
.tt-cab-card__enquire{
  flex:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  background:var(--tt-orange);
  color:#fff;
  font-weight:600;
  font-size:13px;
  padding:10px 14px;
  border-radius:8px;
  border:none;
  cursor:pointer;
  transition:background .2s, transform .15s;
}
.tt-cab-card__enquire:hover{
  background:var(--tt-orange-dark);
  color:#fff;
  transform:translateY(-1px);
}
.tt-cab-card__icon-btn{
  width:38px;
  height:38px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  text-decoration:none;
  font-size:15px;
  transition:.2s;
}
.tt-cab-card__icon-btn--call{
  background:var(--tt-navy);
  color:#fff;
}
.tt-cab-card__icon-btn--call:hover{ background:var(--tt-navy-dark); color:#fff; }
.tt-cab-card__icon-btn--whatsapp{
  background:var(--tt-green);
  color:#fff;
}
.tt-cab-card__icon-btn--whatsapp:hover{ background:#1eb955; color:#fff; }

/* ── Remain ── */

@media(max-width: 760px) {
  .tt-hero__widget{
        position: relative;
        right: 0;
        transform: none;
        top: 0;
        margin-inline: auto;
        margin-top: -30px;
        margin-bottom: 15px;
  }
  .tt-topbar .container{
    padding-inline: 10px;
  }
  .tt-topbar__contact a{
    font-size: 11px;
  }
  .tt-hero__title span{
    font-size: 26px;
  }
  .tt-hero__desc{
    font-size:12px;
  }
  .tt-hero__trust{
    display: none;
  }
  .tt-hero__slide{
    min-height: 1px;
  }
  .tt-hero__inner{
    position: relative;
  }
  .tt-topbar__contact{
    gap: 5px;
  }
  .tt-topbar__contact li{
    gap: 4px;
  }
  .tt-topbar__contact li i{
    width: 17px;
    height: 17px;
  }
  .tt-hero__slide{
    padding-top: 30px;
    padding-bottom: 80px;
  }
  .tt-hero__dots{
    bottom: 35px !important;
  }
  .tt-hero__btn-primary, .tt-hero__btn-whatsapp, .tt-hero__btn-call{
    
    gap: 5px;
    font-weight: 500;
    font-size: 11px;
    padding: 7px 9px;
    border-radius: 3px;
    letter-spacing: -0.02em;
  }
  .tt-topbar__social{
    display: none;
  }
  .tt-trustbar{
    margin-block: 25px; 
  }
  .tt-hero{
    height:auto;
  }
  .tt-trustbar .container{
    max-width: 90%;
    margin-inline: auto;
  }
  .counter_bg_shape{
    bottom: 0;
    right: 0;
    height: 149px;
    width: 100%;
  }
  .tt-destinations__row{
    padding-inline: 0;
  }
  .tt-why-card{
    padding: 10px;
  }
  .tt-why__grid{
    gap: 4px;
  }
  .tt-testi-slide .col-md-6{
    padding-bottom: 8px;
  }
  .tt-testi-dots{
    margin-bottom: 30px;
  }
  .tt-video-caption{
    line-height: 1;
        bottom: 10px;
        left: 10px;
  }
  .tt-video-play{
    width: 40px;
    height: 40px;
  }
  .tt-cat-card__circle{
    width: 170px;
    height: 170px;
  }
  .tt-blogs__arrow--next{
    right:1px ;
  }
  .tt-blogs__arrow--prev{
    left: 1px;
  }
  .tt-explore__links{
    gap: 3px;
  }
  .tt-widget-proof{
    gap: 2px;
  }
  .tt-widget-proof .avatars img{
    width: 22px;
    height: 22px;
  }
  .tt-widget-proof .proof-rating{
    padding: 4px 6px;
    font-size:11px;
  }
  .tt-widget-proof .proof-text{
    font-size: 11px;
  }
  .tt-cat-hero__body{
    
    padding: 8px 6px;
  }
  .tt-cat-page{
    padding-block: 20px;
  }
  .tt-other-cat-card__body{
        padding: 15px 6px;
        line-height: 1px;
  }
  .tt-other-cats__grid{
    gap: 5px;
  }
  .tt-other-cat-card__body h4{
    font-size: 11px;
    margin-bottom: 10px;
  }
  .tt-other-cats{
    padding-block:15px;
  }
  .tt-breadcrumb-title{
    font-size:17px;
    font-weight:600;
    margin-bottom:5px;
  }
  .tt-breadcrumb-list{
    font-size: 11px;
    gap: 0px 6px;
  }
  .tt-cat-hero{
    display: none;
  }
  .tt-destinations__arrow--next{
    right:1px;
  }
  .tt-destinations__arrow--prev{
    left: 1px;
  }
  .td-sidebar-widget.share_part{
    display: none;
  }
  .td-price-card{
    margin-bottom: 15px;
  }
  .td-quickinfo__item:nth-last-child(-n+3):nth-child(3n+1){
    border-bottom: 1px solid var(--tt-border);
  }
  .tt-hero__inner{
    left:0;
  }
  .tt-widget-field{
    width: 100%;
  }
  .form__grid .tt-widget-cta{
    width: 100%;
  }
  .form__grid{
    gap: 0;
  }
  .tt-header__logo img{
    height: 60px;
  }
}
.select2-container--default .select2-results>.select2-results__options{
  max-height: 350px;
}
.select2-results__option{
    padding: 7px 6px;
    margin-bottom: 0;
    border-bottom: 1px dashed #ddd;
    line-height: 1.1;
    font-size: 14px;
    letter-spacing: -0.02em;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
  padding-inline: 0 !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #000000;
    line-height: 28px;
    font-size: 13px;
}
.select2-container--default.select2-container--disabled .select2-selection--single{
  background: transparent;
}