/* ==========================================================================
   Tripoom — Rajasthan Travel Website
   Custom stylesheet (works on top of Bootstrap 5.3)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --tp-navy: #152a45;
  --tp-navy-dark: #0f2036;
  --tp-navy-soft: #1d3557;
  --tp-orange: #f26a21;
  --tp-orange-dark: #dd5810;
  --tp-orange-soft: #fff1e7;
  --tp-cream: #fdf6f0;
  --tp-cream-dark: #f9ece1;
  --tp-body: #5c6874;
  --tp-muted: #8b95a1;
  --tp-line: #ebe6e1;
  --tp-line-cool: #e7ebf0;
  --tp-green: #21a366;
  --tp-red: #e5484d;
  --tp-white: #ffffff;

  --tp-radius-sm: 10px;
  --tp-radius: 14px;
  --tp-radius-lg: 20px;
  --tp-radius-xl: 26px;

  --tp-shadow-xs: 0 1px 2px rgba(21, 42, 69, .05);
  --tp-shadow-sm: 0 4px 14px rgba(21, 42, 69, .06);
  --tp-shadow: 0 10px 34px rgba(21, 42, 69, .08);
  --tp-shadow-lg: 0 22px 60px rgba(21, 42, 69, .12);

  --tp-head: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --tp-text: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --tp-header-h: 88px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--tp-header-h) + 20px); }

body {
  font-family: var(--tp-text);
  font-size: .95rem;
  line-height: 1.65;
  color: var(--tp-body);
  background: var(--tp-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .tp-head {
  font-family: var(--tp-head);
  color: var(--tp-navy);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.22;
}

a { text-decoration: none; color: var(--tp-orange); transition: color .2s ease; }
a:hover { color: var(--tp-orange-dark); }

img { max-width: 100%; }

::selection { background: var(--tp-orange); color: #fff; }

/* Keyboard focus only — no glow on mouse clicks */
:focus-visible { outline: 3px solid rgba(242, 106, 33, .45); outline-offset: 2px; border-radius: 6px; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--tp-cream); }
::-webkit-scrollbar-thumb { background: #d9cfc6; border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--tp-orange); }

/* --------------------------------------------------------------------------
   3. Typography helpers
   -------------------------------------------------------------------------- */
.tp-eyebrow {
  font-family: var(--tp-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tp-orange);
  margin-bottom: .5rem;
  display: block;
}
.tp-eyebrow--muted { color: var(--tp-muted); }
.tp-eyebrow--muted b { color: var(--tp-orange); font-weight: 600; }

.tp-eyebrow--line { position: relative; padding-top: 1rem; }
.tp-eyebrow--line::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 54px; height: 3px; border-radius: 3px; background: var(--tp-orange);
}

.tp-section-title { font-size: clamp(1.5rem, 3.2vw, 2.15rem); margin: 0; }
.tp-accent { color: var(--tp-orange); }
.tp-lead { color: var(--tp-body); font-size: 1rem; max-width: 46rem; }
.tp-small { font-size: .82rem; }
.tp-muted { color: var(--tp-muted); }

.tp-section { padding: 4.5rem 0; }
.tp-section--tight { padding: 3rem 0; }
.tp-section--cream { background: var(--tp-cream); }

.tp-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }

.tp-link-arrow { font-family: var(--tp-head); font-weight: 600; font-size: .88rem; display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }
.tp-link-arrow i { transition: transform .25s ease; }
.tp-link-arrow:hover i { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.tp-btn {
  --tp-btn-bg: var(--tp-orange);
  --tp-btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--tp-head); font-weight: 600; font-size: .9rem;
  padding: .78rem 1.5rem; border-radius: var(--tp-radius-sm);
  background: var(--tp-btn-bg); color: var(--tp-btn-fg);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.tp-btn:hover { color: var(--tp-btn-fg); background: var(--tp-orange-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(242, 106, 33, .3); }
.tp-btn i { transition: transform .25s ease; }
.tp-btn:hover i.bi-arrow-right { transform: translateX(4px); }

.tp-btn--outline { background: transparent; color: var(--tp-orange); border-color: var(--tp-orange); }
.tp-btn--outline:hover { background: var(--tp-orange); color: #fff; }

.tp-btn--ghost { background: #fff; color: var(--tp-navy); border-color: var(--tp-line); box-shadow: var(--tp-shadow-xs); }
.tp-btn--ghost:hover { background: #fff; color: var(--tp-orange); border-color: var(--tp-orange); box-shadow: var(--tp-shadow-sm); }

.tp-btn--wa { background: var(--tp-green); }
.tp-btn--wa:hover { background: #1a8a55; box-shadow: 0 10px 24px rgba(33, 163, 102, .3); }

.tp-btn--lg { padding: .95rem 1.9rem; font-size: .97rem; }
.tp-btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   5. Header / navbar
   -------------------------------------------------------------------------- */
.tp-header {
  position: sticky; top: 0; z-index: 1040;
  background: #fff; border-bottom: 1px solid var(--tp-line);
  transition: box-shadow .25s ease;
}
.tp-header.is-stuck { box-shadow: var(--tp-shadow-sm); }
.tp-header .container { min-height: var(--tp-header-h); }

/* Brand */
.tp-brand { display: inline-flex; flex-direction: column; gap: 1px; line-height: 1; }
.tp-brand__img { height: 60px; width: auto; display: block; }
.tp-brand__fallback { display: none; }
.tp-brand--fallback .tp-brand__img { display: none; }
.tp-brand--fallback .tp-brand__fallback { display: flex; align-items: center; gap: 2px; }

/* CSS text logo — used until images/logo.png is added */
.tp-logo-word { font-family: var(--tp-head); font-weight: 700; font-size: 1.85rem; letter-spacing: -.035em; color: var(--tp-navy); }
.tp-logo-word span { color: var(--tp-orange); }
/* The pin sits above the "i", the way it does in the real mark */
.tp-logo-i { position: relative; }
.tp-logo-i::after {
  content: ""; position: absolute; left: 50%; top: -.46em;
  width: .36em; height: .36em; border-radius: 50% 50% 50% 0;
  background: var(--tp-orange); transform: translateX(-50%) rotate(-45deg);
}
.tp-logo-trail { width: 46px; height: 20px; margin-left: 2px; margin-bottom: 14px; flex: 0 0 auto; }
.tp-brand__tag { font-family: var(--tp-text); font-size: .63rem; font-weight: 500; letter-spacing: .015em; color: var(--tp-muted); white-space: nowrap; }

/* Nav links */
.tp-nav { gap: .25rem; }
.tp-nav .nav-link {
  font-family: var(--tp-head); font-weight: 500; font-size: .9rem;
  color: var(--tp-navy); padding: .55rem .85rem; border-radius: 8px;
  position: relative; transition: color .2s ease;
}
.tp-nav .nav-link:hover { color: var(--tp-orange); }
.tp-nav .nav-link.active { color: var(--tp-orange); font-weight: 600; }
.tp-nav .nav-link.active::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: -.15rem;
  height: 3px; border-radius: 3px; background: var(--tp-orange);
}

/* Contact pill */
.tp-callpill {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .4rem .5rem .4rem .55rem; border-radius: 999px;
  border: 1px solid var(--tp-line); background: #fff; box-shadow: var(--tp-shadow-sm);
  transition: box-shadow .25s ease, border-color .2s ease;
}
.tp-callpill:hover { box-shadow: var(--tp-shadow); border-color: var(--tp-cream-dark); }
.tp-callpill__num { font-family: var(--tp-head); font-weight: 600; font-size: .93rem; color: var(--tp-navy); white-space: nowrap; }
.tp-callpill__num:hover { color: var(--tp-orange); }
.tp-ico-round {
  width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem; color: #fff; background: var(--tp-orange);
}
.tp-ico-round--wa { background: #25d366; font-size: 1.1rem; }
.tp-ico-round--soft { background: var(--tp-orange-soft); color: var(--tp-orange); }

/* Mobile nav toggle */
.tp-burger {
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--tp-line);
  background: #fff; color: var(--tp-navy); font-size: 1.35rem; display: none;
  align-items: center; justify-content: center; flex: 0 0 auto;
}
.tp-burger:hover { color: var(--tp-orange); border-color: var(--tp-orange); }

.tp-offcanvas { width: 300px; }
.tp-offcanvas .offcanvas-body { padding: 0 1.25rem 1.5rem; }
.tp-offcanvas .nav-link {
  font-family: var(--tp-head); font-weight: 500; font-size: .98rem; color: var(--tp-navy);
  padding: .85rem 0; border-bottom: 1px solid var(--tp-line);
}
.tp-offcanvas .nav-link.active { color: var(--tp-orange); font-weight: 600; }

/* --------------------------------------------------------------------------
   6. Home hero
   -------------------------------------------------------------------------- */
.tp-hero { position: relative; }
.tp-hero__media { position: absolute; inset: 0; overflow: hidden; }
.tp-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.tp-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 251, 246, .97) 0%, rgba(255, 249, 242, .9) 26%, rgba(255, 245, 235, .5) 46%, rgba(255, 240, 225, .06) 66%),
    linear-gradient(180deg, rgba(255, 252, 248, .55) 0%, transparent 30%);
}
.tp-hero__inner { position: relative; padding: 4.5rem 0 9.5rem; }
.tp-hero__title { font-size: clamp(2.3rem, 5.6vw, 3.9rem); line-height: 1.08; margin: .35rem 0 1rem; }
.tp-hero__text { max-width: 27rem; font-size: 1rem; color: #4c5866; }

.tp-hero__badges { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin-top: 2rem; }
.tp-mini { display: flex; align-items: center; gap: .6rem; }
.tp-mini i { color: var(--tp-orange); font-size: 1.35rem; }
.tp-mini b { font-family: var(--tp-head); display: block; font-size: .84rem; color: var(--tp-navy); font-weight: 600; line-height: 1.3; }
.tp-mini span { font-size: .74rem; color: var(--tp-muted); }

/* Search / plan-trip card */
.tp-planner {
  position: relative; z-index: 3; margin-top: -6.5rem;
  background: #fff; border-radius: var(--tp-radius-lg); box-shadow: var(--tp-shadow-lg);
  padding: 1.6rem 1.6rem 0; overflow: hidden;
}
.tp-planner__title { font-size: 1.22rem; margin-bottom: 1.1rem; }
.tp-field {
  border: 1px solid var(--tp-line-cool); border-radius: var(--tp-radius-sm);
  padding: .6rem .85rem; background: #fff; height: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.tp-field:focus-within { border-color: var(--tp-orange); box-shadow: 0 0 0 3px rgba(242, 106, 33, .1); }
.tp-field__label { display: flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 500; color: var(--tp-muted); margin-bottom: .1rem; }
.tp-field__label i { color: var(--tp-orange); font-size: .85rem; }
.tp-field__control {
  border: 0; padding: 0; width: 100%; background: transparent; outline: none;
  font-family: var(--tp-head); font-weight: 500; font-size: .88rem; color: var(--tp-navy);
}
.tp-field__control::placeholder { color: #aab3bd; font-weight: 400; }
.tp-field__control option { color: var(--tp-navy); }
/* Native date inputs render their own icon; keep it on-brand */
.tp-field__control[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .55; }

.tp-planner__foot {
  margin: 1.4rem -1.6rem 0; padding: .9rem 1.6rem;
  background: var(--tp-cream); display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: .5rem 1.5rem; font-size: .87rem;
}
.tp-planner__foot i.bi-headset { color: var(--tp-orange); }

/* --------------------------------------------------------------------------
   7. Feature strip (6 USPs)
   -------------------------------------------------------------------------- */
.tp-usps { background: var(--tp-cream); padding: 2.2rem 0; }
.tp-usp { text-align: center; padding: .25rem 1rem; position: relative; }
.tp-usp + .tp-usp::before {
  content: ""; position: absolute; left: 0; top: 15%; height: 70%; width: 1px; background: var(--tp-cream-dark);
}
.tp-usp i { font-size: 1.5rem; color: var(--tp-orange); display: block; margin-bottom: .5rem; }
.tp-usp b { font-family: var(--tp-head); display: block; font-size: .85rem; color: var(--tp-navy); font-weight: 600; }
.tp-usp span { font-size: .74rem; color: var(--tp-muted); }

/* --------------------------------------------------------------------------
   8. Destination cards
   -------------------------------------------------------------------------- */
.tp-dest {
  position: relative; display: block; border-radius: var(--tp-radius);
  overflow: hidden; aspect-ratio: 3 / 4; box-shadow: var(--tp-shadow-sm);
}
.tp-dest img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2, .8, .2, 1); }
.tp-dest::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 32, 54, 0) 38%, rgba(15, 32, 54, .82) 100%);
}
.tp-dest:hover img { transform: scale(1.07); }
.tp-dest__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1rem; }
.tp-dest__body b { font-family: var(--tp-head); display: block; color: #fff; font-size: 1rem; font-weight: 600; }
.tp-dest__body span { color: rgba(255, 255, 255, .78); font-size: .76rem; }
.tp-dest--wide { aspect-ratio: 16 / 11; }

/* --------------------------------------------------------------------------
   9. Package cards
   -------------------------------------------------------------------------- */
.tp-pkg {
  background: #fff; border: 1px solid var(--tp-line); border-radius: var(--tp-radius);
  overflow: hidden; height: 100%; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.tp-pkg:hover { transform: translateY(-5px); box-shadow: var(--tp-shadow); border-color: var(--tp-cream-dark); }
.tp-pkg__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.tp-pkg__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2, .8, .2, 1); }
.tp-pkg:hover .tp-pkg__media img { transform: scale(1.06); }
.tp-pkg__body { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; flex: 1 1 auto; }
.tp-pkg__title { font-size: 1.02rem; margin-bottom: .4rem; }
.tp-pkg:hover .tp-pkg__title { color: var(--tp-orange); }
.tp-pkg__route { font-size: .78rem; color: var(--tp-muted); display: flex; align-items: center; gap: .3rem; flex-wrap: wrap; margin-bottom: .55rem; }
.tp-pkg__route i { color: var(--tp-orange); }
.tp-pkg__desc { font-size: .82rem; margin-bottom: .9rem; }
.tp-pkg__price { font-family: var(--tp-head); font-weight: 700; font-size: 1.3rem; color: var(--tp-navy); letter-spacing: -.02em; }
.tp-pkg__price small { font-family: var(--tp-text); font-weight: 400; font-size: .74rem; color: var(--tp-muted); letter-spacing: 0; }

.tp-badge-dur {
  position: absolute; top: .7rem; left: .7rem; z-index: 2;
  background: #fff; color: var(--tp-navy); font-family: var(--tp-head); font-weight: 600;
  font-size: .72rem; padding: .3rem .65rem; border-radius: 7px; box-shadow: var(--tp-shadow-sm);
}
.tp-badge-dur--orange { background: var(--tp-orange); color: #fff; }

.tp-wish {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; border: 0;
  background: rgba(255, 255, 255, .92); color: var(--tp-navy);
  display: inline-flex; align-items: center; justify-content: center; font-size: .95rem;
  box-shadow: var(--tp-shadow-xs); cursor: pointer; transition: all .2s ease;
}
.tp-wish:hover { color: var(--tp-orange); transform: scale(1.08); }
.tp-wish.is-on { background: var(--tp-orange); color: #fff; }

/* Feature row (Hotel / Cab / Sightseeing / Meals) */
.tp-feats { display: flex; flex-wrap: wrap; gap: .5rem 1rem; padding: .7rem 0; border-top: 1px solid var(--tp-line); border-bottom: 1px solid var(--tp-line); margin-bottom: .9rem; }
.tp-feats span { display: inline-flex; align-items: center; gap: .35rem; font-size: .77rem; color: var(--tp-body); }
.tp-feats i { color: var(--tp-navy-soft); font-size: .9rem; }

.tp-featbox { border: 1px solid var(--tp-line); border-radius: var(--tp-radius); padding: .9rem 1.2rem; display: flex; flex-wrap: wrap; }
.tp-featbox > span { display: inline-flex; align-items: center; gap: .45rem; font-size: .87rem; color: var(--tp-navy); font-weight: 500; padding: 0 1.15rem; position: relative; }
.tp-featbox > span:first-child { padding-left: 0; }
.tp-featbox > span + span::before { content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: var(--tp-line); }
.tp-featbox i { color: var(--tp-navy-soft); font-size: 1.05rem; }
/* Compact variant for the small cards on the destinations page */
.tp-featbox--sm { padding: .6rem .85rem; }
.tp-featbox--sm > span { font-size: .78rem; padding: 0 .8rem; }
.tp-featbox--sm > span:first-child { padding-left: 0; }
.tp-featbox--sm i { font-size: .92rem; }

/* Highlighted / recommended card */
.tp-pkg--featured { border: 1.5px solid var(--tp-orange); box-shadow: 0 12px 32px rgba(242, 106, 33, .13); }
.tp-pkg--featured .tp-pkg__title { color: var(--tp-navy); }

/* --------------------------------------------------------------------------
   10. Dark CTA band + stats
   -------------------------------------------------------------------------- */
.tp-band { position: relative; background: var(--tp-navy-dark); color: #fff; overflow: hidden; padding: 3.4rem 0; }
.tp-band__media { position: absolute; inset: 0; }
.tp-band__media img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.tp-band__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15, 32, 54, .72) 0%, rgba(15, 32, 54, .93) 42%, var(--tp-navy-dark) 72%);
}
.tp-band__inner { position: relative; z-index: 2; }
.tp-band h2 { color: #fff; font-size: clamp(1.35rem, 3vw, 1.85rem); }
.tp-band p { color: rgba(255, 255, 255, .74); font-size: .93rem; max-width: 24rem; }
.tp-band__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.tp-stat { text-align: center; }
.tp-stat i { font-size: 1.5rem; color: var(--tp-orange); display: block; margin-bottom: .5rem; }
.tp-stat b { font-family: var(--tp-head); display: block; font-size: 1.7rem; color: #fff; font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }
.tp-stat span { font-size: .78rem; color: rgba(255, 255, 255, .7); }
.tp-band__divider { position: relative; }
.tp-band__divider::before { content: ""; position: absolute; left: 0; top: 8%; height: 84%; width: 1px; background: rgba(255, 255, 255, .16); }

/* Local-community strip */
.tp-strip { background: var(--tp-cream); padding: 1rem 0; text-align: center; font-size: .88rem; }
.tp-strip i { color: var(--tp-orange); margin-right: .45rem; font-size: 1.1rem; vertical-align: -2px; }

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.tp-footer { background: var(--tp-navy-dark); color: rgba(255, 255, 255, .72); padding: 3.2rem 0 0; font-size: .87rem; }
.tp-footer .tp-logo-word { color: #fff; }
.tp-footer .tp-brand__tag { color: rgba(255, 255, 255, .55); }
.tp-footer__title { font-family: var(--tp-head); color: #fff; font-size: .95rem; font-weight: 600; margin-bottom: 1rem; }
.tp-footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.tp-footer__list a, .tp-footer__list span { color: rgba(255, 255, 255, .72); display: inline-flex; align-items: flex-start; gap: .5rem; }
.tp-footer__list a:hover { color: var(--tp-orange); }
.tp-footer__list i { color: var(--tp-orange); font-size: .9rem; margin-top: .18rem; }
.tp-footer__text { color: rgba(255, 255, 255, .62); max-width: 20rem; }
.tp-socials { display: flex; gap: .6rem; }
.tp-socials a {
  width: 36px; height: 36px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; color: #fff; font-size: 1rem;
  transition: transform .2s ease, filter .2s ease;
}
.tp-socials a:hover { transform: translateY(-3px); filter: brightness(1.12); }
.tp-so-fb { background: #1877f2; }
.tp-so-ig { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); }
.tp-so-yt { background: #ff0000; }
.tp-so-wa { background: #25d366; }
.tp-footer__bottom { margin-top: 2.6rem; border-top: 1px solid rgba(255, 255, 255, .1); padding: 1.1rem 0; font-size: .8rem; color: rgba(255, 255, 255, .55); }
.tp-footer__bottom a { color: rgba(255, 255, 255, .68); }
.tp-footer__bottom a:hover { color: var(--tp-orange); }

/* Floating WhatsApp */
.tp-float-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 1035;
  width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.65rem;
  box-shadow: 0 8px 26px rgba(37, 211, 102, .42); transition: transform .2s ease;
}
.tp-float-wa:hover { color: #fff; transform: scale(1.08); }

/* --------------------------------------------------------------------------
   12. Inner page hero + breadcrumb
   -------------------------------------------------------------------------- */
.tp-phero { position: relative; background: var(--tp-white); overflow: hidden; padding: 3.2rem 0 2.2rem; }
.tp-phero__media { position: absolute; right: 0; top: 0; bottom: 0; width: 62%; }
.tp-phero__media img { width: 100%; height: 100%; object-fit: cover; }
.tp-phero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 253, 250, .92) 24%, rgba(255, 248, 240, .48) 55%, rgba(255, 245, 232, .12) 100%);
}
.tp-phero__inner { position: relative; z-index: 2; }
.tp-phero__title { font-size: clamp(1.85rem, 4.4vw, 2.9rem); margin: 0 0 .7rem; }
.tp-phero__text { max-width: 30rem; font-size: .95rem; }

.tp-crumb { background: var(--tp-cream); padding: .8rem 0; font-size: .82rem; }
.tp-crumb ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin: 0; padding: 0; }
.tp-crumb a { color: var(--tp-body); }
.tp-crumb a:hover { color: var(--tp-orange); }
.tp-crumb li + li::before { content: "\F285"; font-family: "bootstrap-icons"; font-size: .7rem; color: var(--tp-muted); margin-right: .5rem; }
.tp-crumb li[aria-current] { color: var(--tp-navy); font-weight: 500; }

/* --------------------------------------------------------------------------
   13. Packages listing: toolbar + filters
   -------------------------------------------------------------------------- */
.tp-panel {
  background: #fff; border-radius: var(--tp-radius-lg); box-shadow: var(--tp-shadow-lg);
  padding: 1.4rem; position: relative; z-index: 3;
}
.tp-panel--pull { margin-top: -1.4rem; }

.tp-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.tp-chips { display: flex; gap: .6rem; overflow-x: auto; padding-bottom: .25rem; scrollbar-width: none; }
.tp-chips::-webkit-scrollbar { display: none; }
.tp-chip {
  display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap;
  font-family: var(--tp-head); font-weight: 500; font-size: .85rem;
  padding: .6rem 1.05rem; border-radius: var(--tp-radius-sm);
  border: 1px solid var(--tp-line); background: #fff; color: var(--tp-navy); cursor: pointer;
  transition: all .2s ease;
}
.tp-chip:hover { border-color: var(--tp-orange); color: var(--tp-orange); }
.tp-chip.is-active { background: var(--tp-orange); border-color: var(--tp-orange); color: #fff; box-shadow: 0 6px 16px rgba(242, 106, 33, .28); }
.tp-chip i { font-size: .95rem; }

.tp-sort { display: flex; align-items: center; gap: .6rem; flex: 0 0 auto; }
.tp-sort label { font-size: .85rem; color: var(--tp-body); white-space: nowrap; }
.tp-select {
  font-family: var(--tp-head); font-weight: 500; font-size: .85rem; color: var(--tp-navy);
  border: 1px solid var(--tp-line); border-radius: var(--tp-radius-sm);
  padding: .58rem 2.2rem .58rem .9rem; background: #fff; cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23152a45'%3E%3Cpath d='M8 11.2 3.2 6.4l1.1-1.1L8 9l3.7-3.7 1.1 1.1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center; background-size: 14px;
}
.tp-select:focus { outline: none; border-color: var(--tp-orange); box-shadow: 0 0 0 3px rgba(242, 106, 33, .1); }

.tp-empty { display: none; text-align: center; padding: 3rem 1rem; }
.tp-empty i { font-size: 2.4rem; color: var(--tp-orange); }

/* Trust row + bottom CTA */
.tp-trustrow { background: var(--tp-cream); border-radius: var(--tp-radius); padding: 1.3rem 1rem; }
.tp-trust { display: flex; align-items: center; gap: .85rem; padding: 0 1rem; position: relative; }
.tp-trust + .tp-trust::before { content: ""; position: absolute; left: 0; top: 10%; height: 80%; width: 1px; background: var(--tp-cream-dark); }
.tp-trust b { font-family: var(--tp-head); display: block; font-size: .87rem; color: var(--tp-navy); font-weight: 600; }
.tp-trust span { font-size: .77rem; color: var(--tp-muted); }
.tp-trust .tp-ico-soft { color: var(--tp-orange); font-size: 1.2rem; }
.tp-ico-soft {
  width: 44px; height: 44px; border-radius: 12px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--tp-orange-soft); color: var(--tp-orange); font-size: 1.2rem;
}

.tp-ctabox {
  background: var(--tp-cream); border-radius: var(--tp-radius); padding: 1.3rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap;
}
.tp-ctabox__ico { width: 52px; height: 52px; border-radius: 50%; background: var(--tp-orange); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.35rem; flex: 0 0 auto; }
.tp-ctabox b { font-family: var(--tp-head); display: block; font-size: 1rem; color: var(--tp-navy); }
.tp-ctabox span { font-size: .84rem; }

/* --------------------------------------------------------------------------
   14. Package detail
   -------------------------------------------------------------------------- */
/* Gallery */
.tp-gal__stage { position: relative; border-radius: var(--tp-radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--tp-cream); }
.tp-gal__stage img { width: 100%; height: 100%; object-fit: cover; }
.tp-gal__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .92);
  color: var(--tp-navy); font-size: 1.05rem; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--tp-shadow-sm); cursor: pointer; transition: all .2s ease;
}
.tp-gal__nav:hover { background: var(--tp-orange); color: #fff; }
.tp-gal__nav--prev { left: .7rem; }
.tp-gal__nav--next { right: .7rem; }
.tp-gal__thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: .5rem; margin-top: .5rem; }
.tp-gal__thumb { border: 2px solid transparent; border-radius: 9px; overflow: hidden; padding: 0; background: none; cursor: pointer; aspect-ratio: 4 / 3; transition: border-color .2s ease, opacity .2s ease; opacity: .78; }
.tp-gal__thumb img { width: 100%; height: 100%; object-fit: cover; }
.tp-gal__thumb:hover { opacity: 1; }
.tp-gal__thumb.is-active { border-color: var(--tp-orange); opacity: 1; }

/* Title block */
.tp-detail__title { font-size: clamp(1.6rem, 3.6vw, 2.3rem); margin-bottom: .6rem; }
.tp-detail__route { display: inline-flex; align-items: center; gap: .45rem; font-size: .92rem; color: var(--tp-body); }
.tp-detail__route i { color: var(--tp-orange); }
.tp-rating { display: inline-flex; align-items: center; gap: .4rem; font-size: .88rem; }
.tp-rating i { color: #f5a623; }
.tp-rating b { font-family: var(--tp-head); color: var(--tp-navy); }
.tp-dot-sep { width: 1px; height: 16px; background: var(--tp-line); display: inline-block; }

/* Booking card */
.tp-book { border: 1px solid var(--tp-line); border-radius: var(--tp-radius-lg); box-shadow: var(--tp-shadow); background: #fff; padding: 1.35rem; }
.tp-book__price { font-family: var(--tp-head); font-weight: 700; font-size: 2rem; color: var(--tp-orange); letter-spacing: -.03em; line-height: 1.1; }
.tp-book__price small { font-family: var(--tp-text); font-weight: 400; font-size: .82rem; color: var(--tp-muted); letter-spacing: 0; }
.tp-book__meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; border-top: 1px solid var(--tp-line); border-bottom: 1px solid var(--tp-line); padding: 1rem 0; margin: 1.1rem 0; }
.tp-book__meta > div { position: relative; padding-left: .85rem; }
.tp-book__meta > div:first-child { padding-left: 0; }
.tp-book__meta > div + div::before { content: ""; position: absolute; left: 0; top: 6%; height: 88%; width: 1px; background: var(--tp-line); }
.tp-book__meta span { display: flex; align-items: center; gap: .35rem; font-size: .74rem; color: var(--tp-muted); }
.tp-book__meta span i { font-size: .85rem; }
.tp-book__meta b { font-family: var(--tp-head); display: block; font-size: .84rem; color: var(--tp-navy); font-weight: 600; margin-top: .3rem; }
.tp-book__guarantee { display: flex; align-items: flex-start; gap: .6rem; margin-top: 1.1rem; }
.tp-book__guarantee i { color: var(--tp-green); font-size: 1.1rem; margin-top: .1rem; }
.tp-book__guarantee b { font-family: var(--tp-head); display: block; font-size: .84rem; color: var(--tp-navy); font-weight: 600; }
.tp-book__guarantee span { font-size: .76rem; color: var(--tp-muted); }
@media (min-width: 992px) { .tp-book--sticky { position: sticky; top: calc(var(--tp-header-h) + 16px); } }

/* Tab bar */
.tp-tabs { border-bottom: 1px solid var(--tp-line); background: #fff; position: sticky; top: var(--tp-header-h); z-index: 1020; }
.tp-tabs__scroll { display: flex; gap: .35rem; overflow-x: auto; scrollbar-width: none; }
.tp-tabs__scroll::-webkit-scrollbar { display: none; }
.tp-tabs a {
  display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap;
  font-family: var(--tp-head); font-weight: 500; font-size: .88rem; color: var(--tp-navy);
  padding: 1rem .95rem; border-bottom: 3px solid transparent; margin-bottom: -1px;
}
.tp-tabs a:hover { color: var(--tp-orange); }
.tp-tabs a.is-active { color: var(--tp-orange); font-weight: 600; border-bottom-color: var(--tp-orange); }

/* Generic content card */
.tp-card { background: #fff; border: 1px solid var(--tp-line); border-radius: var(--tp-radius); padding: 1.25rem; }
/* Opt in to filling the grid column — only safe when the column holds one card. */
.tp-card--fill { height: 100%; }
/* Two or more cards sharing one grid column: they stack, and the last one absorbs
   the leftover height so every column in the row ends on the same line. */
.tp-colstack { display: flex; flex-direction: column; gap: .75rem; height: 100%; }
.tp-colstack > .tp-card:last-child { flex: 1 1 auto; }
.tp-card__title { font-size: 1.05rem; margin-bottom: 1.1rem; }
.tp-card__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }
.tp-card__head .tp-card__title { margin-bottom: 0; }

/* Itinerary timeline */
.tp-timeline { list-style: none; margin: 0; padding: 0; }
.tp-tl { position: relative; padding: 0 0 1.1rem 2.1rem; }
.tp-tl:last-child { padding-bottom: 0; }
.tp-tl::before {
  content: ""; position: absolute; left: 9px; top: 1.6rem; bottom: -.2rem;
  width: 2px; background: repeating-linear-gradient(180deg, var(--tp-orange) 0 4px, transparent 4px 8px);
}
.tp-tl:last-child::before { display: none; }
.tp-tl__dot {
  position: absolute; left: 0; top: .35rem; width: 20px; height: 20px; border-radius: 50%;
  background: var(--tp-orange); color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-size: .6rem; box-shadow: 0 0 0 3px rgba(242, 106, 33, .16);
}
.tp-tl__btn {
  display: flex; align-items: flex-start; gap: .9rem; width: 100%; text-align: left;
  background: none; border: 0; padding: 0; cursor: pointer;
}
.tp-tl__day { font-family: var(--tp-head); font-weight: 600; font-size: .84rem; color: var(--tp-orange); flex: 0 0 3.1rem; padding-top: .1rem; }
.tp-tl__mode { color: var(--tp-navy-soft); font-size: .95rem; flex: 0 0 auto; padding-top: .15rem; }
.tp-tl__main { flex: 1 1 auto; min-width: 0; }
.tp-tl__main b { font-family: var(--tp-head); display: block; font-size: .93rem; color: var(--tp-navy); font-weight: 600; }
.tp-tl__main p { margin: .15rem 0 0; font-size: .82rem; color: var(--tp-body); }
.tp-tl__chev { color: var(--tp-muted); font-size: .95rem; flex: 0 0 auto; transition: transform .3s ease; padding-top: .15rem; }
.tp-tl__btn[aria-expanded="true"] .tp-tl__chev { transform: rotate(180deg); color: var(--tp-orange); }
.tp-tl__more { font-size: .82rem; padding: .7rem .9rem; margin: .6rem 0 0 3.1rem; background: var(--tp-cream); border-radius: var(--tp-radius-sm); }
.tp-tl__more ul { margin: 0; padding-left: 1.1rem; }
.tp-tl__more li + li { margin-top: .25rem; }

/* Inclusions / exclusions */
.tp-ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.tp-ticks li { display: flex; align-items: flex-start; gap: .6rem; font-size: .86rem; }
.tp-ticks i { font-size: 1rem; margin-top: .08rem; flex: 0 0 auto; }
.tp-ticks--in i { color: var(--tp-green); }
.tp-ticks--ex i { color: var(--tp-red); }

/* Gallery grid */
.tp-grid-gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.tp-grid-gal a { border-radius: 10px; overflow: hidden; aspect-ratio: 4 / 3; display: block; }
.tp-grid-gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tp-grid-gal a:hover img { transform: scale(1.09); }

/* Notes */
.tp-notes { margin: 0; padding-left: 1.15rem; font-size: .85rem; }
.tp-notes li + li { margin-top: .45rem; }

/* Hotels table */
.tp-table { font-size: .86rem; }
.tp-table th { font-family: var(--tp-head); font-size: .8rem; color: var(--tp-navy); font-weight: 600; background: var(--tp-cream); }
.tp-table td, .tp-table th { padding: .7rem .85rem; vertical-align: middle; border-color: var(--tp-line); }

/* FAQ accordion */
.tp-acc .accordion-item { border: 1px solid var(--tp-line); border-radius: var(--tp-radius-sm) !important; margin-bottom: .6rem; overflow: hidden; }
.tp-acc .accordion-button {
  font-family: var(--tp-head); font-weight: 500; font-size: .92rem; color: var(--tp-navy);
  padding: .95rem 1.1rem; background: #fff; box-shadow: none;
}
.tp-acc .accordion-button:not(.collapsed) { color: var(--tp-orange); background: var(--tp-orange-soft); }
.tp-acc .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23152a45'%3E%3Cpath d='M8 11.2 3.2 6.4l1.1-1.1L8 9l3.7-3.7 1.1 1.1z'/%3E%3C/svg%3E");
  width: 1rem; height: 1rem; background-size: 1rem;
}
.tp-acc .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f26a21'%3E%3Cpath d='M8 11.2 3.2 6.4l1.1-1.1L8 9l3.7-3.7 1.1 1.1z'/%3E%3C/svg%3E");
}
.tp-acc .accordion-body { font-size: .87rem; padding: 0 1.1rem 1.1rem; }

/* Reviews */
.tp-review { border: 1px solid var(--tp-line); border-radius: var(--tp-radius); padding: 1.1rem; height: 100%; }
.tp-review__top { display: flex; align-items: center; gap: .75rem; margin-bottom: .7rem; }
.tp-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--tp-head); font-weight: 600; font-size: .95rem;
  background: var(--tp-orange-soft); color: var(--tp-orange);
}
.tp-review b { font-family: var(--tp-head); display: block; font-size: .9rem; color: var(--tp-navy); }
.tp-review__meta { font-size: .74rem; color: var(--tp-muted); }
.tp-review p { font-size: .85rem; margin: 0; }
.tp-stars { color: #f5a623; font-size: .8rem; }

/* --------------------------------------------------------------------------
   15. Forms (custom trip / contact)
   -------------------------------------------------------------------------- */
.tp-form label.form-label { font-size: .8rem; font-weight: 500; color: var(--tp-navy); margin-bottom: .35rem; }
.tp-form .form-control, .tp-form .form-select {
  font-size: .89rem; padding: .68rem .9rem; border-radius: var(--tp-radius-sm);
  border: 1px solid var(--tp-line-cool); color: var(--tp-navy);
}
.tp-form .form-control::placeholder { color: #aab3bd; }
.tp-form .form-control:focus, .tp-form .form-select:focus { border-color: var(--tp-orange); box-shadow: 0 0 0 3px rgba(242, 106, 33, .1); }
.tp-form .form-check-label { font-size: .86rem; }
.tp-form .form-check-input:checked { background-color: var(--tp-orange); border-color: var(--tp-orange); }
.tp-form .invalid-feedback { font-size: .76rem; }

.tp-note { border-radius: var(--tp-radius-sm); padding: .8rem 1rem; font-size: .85rem; display: none; }
.tp-note.is-shown { display: flex; gap: .55rem; align-items: flex-start; }
.tp-note--ok { background: #e9f7f0; color: #14663f; }
.tp-note--ok i { color: var(--tp-green); }
/* Static advisory note — visible without the .is-shown toggle the form notes use. */
.tp-note--warn { display: flex; gap: .55rem; align-items: flex-start; background: var(--tp-orange-soft); color: #8a3d0c; }
.tp-note--warn i { color: var(--tp-orange); }

/* Contact info tiles */
.tp-info { display: flex; gap: .9rem; padding: 1.05rem; border: 1px solid var(--tp-line); border-radius: var(--tp-radius); height: 100%; background: #fff; transition: box-shadow .25s ease, border-color .25s ease; }
.tp-info:hover { box-shadow: var(--tp-shadow-sm); border-color: var(--tp-cream-dark); }
.tp-info b { font-family: var(--tp-head); display: block; font-size: .9rem; color: var(--tp-navy); }
.tp-info span, .tp-info a { font-size: .85rem; color: var(--tp-body); display: block; }
.tp-info .tp-ico-soft { display: inline-flex; color: var(--tp-orange); font-size: 1.2rem; }
.tp-info a:hover { color: var(--tp-orange); }
.tp-map { border-radius: var(--tp-radius); overflow: hidden; border: 1px solid var(--tp-line); }
.tp-map iframe { width: 100%; height: 340px; border: 0; display: block; }

/* --------------------------------------------------------------------------
   16. About page
   -------------------------------------------------------------------------- */
.tp-imgframe { border-radius: var(--tp-radius-lg); overflow: hidden; box-shadow: var(--tp-shadow); }
.tp-imgframe img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tp-valuecard { border: 1px solid var(--tp-line); border-radius: var(--tp-radius); padding: 1.35rem; height: 100%; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.tp-valuecard:hover { transform: translateY(-4px); box-shadow: var(--tp-shadow); }
.tp-valuecard h3 { font-size: 1rem; margin: .85rem 0 .4rem; }
.tp-valuecard p { font-size: .85rem; margin: 0; }
.tp-steps { counter-reset: tpstep; list-style: none; padding: 0; margin: 0; display: grid; gap: 1.4rem; }
.tp-steps li { position: relative; padding-left: 3.4rem; }
.tp-steps li::before {
  counter-increment: tpstep; content: counter(tpstep);
  position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 12px;
  background: var(--tp-orange-soft); color: var(--tp-orange);
  font-family: var(--tp-head); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.tp-steps b { font-family: var(--tp-head); display: block; font-size: .96rem; color: var(--tp-navy); }
.tp-steps p { font-size: .85rem; margin: .2rem 0 0; }

/* --------------------------------------------------------------------------
   17. Blog
   -------------------------------------------------------------------------- */
.tp-post { background: #fff; border: 1px solid var(--tp-line); border-radius: var(--tp-radius); overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.tp-post:hover { transform: translateY(-5px); box-shadow: var(--tp-shadow); }
.tp-post__media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.tp-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tp-post:hover .tp-post__media img { transform: scale(1.06); }
.tp-post__tag { position: absolute; top: .7rem; left: .7rem; background: var(--tp-orange); color: #fff; font-family: var(--tp-head); font-weight: 600; font-size: .68rem; padding: .28rem .6rem; border-radius: 6px; }
.tp-post__body { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; flex: 1 1 auto; }
.tp-post__meta { font-size: .74rem; color: var(--tp-muted); display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: .5rem; }
.tp-post__meta i { color: var(--tp-orange); margin-right: .25rem; }
.tp-post h3 { font-size: 1rem; margin-bottom: .45rem; }
.tp-post:hover h3 { color: var(--tp-orange); }
.tp-post p { font-size: .84rem; margin-bottom: .9rem; }

/* --------------------------------------------------------------------------
   17b. Blog article — professional detail layout
   -------------------------------------------------------------------------- */
/* Sticky, carded article body so the TOC can sit beside it */
.tp-article-wrap { max-width: 1180px; }
.tp-article-layout { display: grid; grid-template-columns: 250px 1fr; gap: 2rem; align-items: start; }

/* Table of contents */
.tp-toc {
  position: sticky; top: calc(var(--tp-header-h) + 24px);
  background: #fff; border: 1px solid var(--tp-line); border-radius: var(--tp-radius);
  padding: 1.1rem 1.2rem; box-shadow: var(--tp-shadow-xs);
}
.tp-toc__title { font-family: var(--tp-head); font-size: .78rem; font-weight: 700; color: var(--tp-navy); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .75rem; display: flex; align-items: center; gap: .45rem; }
.tp-toc__title i { color: var(--tp-orange); }
.tp-toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: .3rem; }
.tp-toc a {
  display: block; font-size: .82rem; line-height: 1.35; color: var(--tp-body);
  padding: .3rem .55rem; border-radius: 8px; border-left: 2px solid var(--tp-line);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.tp-toc a:hover { color: var(--tp-orange); border-color: var(--tp-orange); }
.tp-toc--mini { grid-template-columns: 1fr; }
.tp-toc--mini ol { flex-direction: row; flex-wrap: wrap; gap: .35rem; }

/* Article meta bar — author / date / read time / category */
.tp-artmeta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.6rem;
  padding: 1rem 0; margin: 0 0 1.4rem; border-top: 1px solid var(--tp-line); border-bottom: 1px solid var(--tp-line);
}
.tp-artmeta__author { display: flex; align-items: center; gap: .6rem; }
.tp-artmeta__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--tp-orange), var(--tp-orange-dark)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--tp-head); font-weight: 700; font-size: .95rem;
}
.tp-artmeta__author b { font-family: var(--tp-head); display: block; font-size: .84rem; color: var(--tp-navy); line-height: 1.2; }
.tp-artmeta__author span { font-size: .72rem; color: var(--tp-muted); }
.tp-artmeta .tp-artmeta__item { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--tp-muted); }
.tp-artmeta .tp-artmeta__item i { color: var(--tp-orange); }

/* Article body typography (a self-contained reading column) */
.tp-article { font-size: .98rem; line-height: 1.75; }
.tp-article p { margin: 0 0 1.1rem; }
.tp-article h2, .tp-article h3 { scroll-margin-top: calc(var(--tp-header-h) + 20px); }
.tp-article h2 { font-size: 1.5rem; margin: 2.2rem 0 1rem; }
.tp-article h3 { font-size: 1.12rem; margin: 1.6rem 0 .7rem; }
.tp-article a { text-decoration: underline; text-underline-offset: 3px; }
.tp-article ul, .tp-article ol { margin: 0 0 1.1rem; padding-left: 1.2rem; }
.tp-article li { margin-bottom: .45rem; }
.tp-article img { border-radius: var(--tp-radius); }

/* Figure with caption */
.tp-figure { margin: 1.8rem 0; }
.tp-figure figcaption { font-size: .78rem; color: var(--tp-muted); text-align: center; margin-top: .55rem; }

/* Pull quote */
.tp-pullquote {
  margin: 1.8rem 0; padding: 1.1rem 1.3rem 1.1rem 3.2rem;
  position: relative; background: var(--tp-orange-soft); border-radius: var(--tp-radius);
  font-family: var(--tp-head); font-weight: 600; font-size: 1.02rem; line-height: 1.55; color: var(--tp-navy);
}
.tp-pullquote::before {
  content: "\201C"; position: absolute; left: 1rem; top: .5rem;
  font-size: 3rem; line-height: 1; color: var(--tp-orange);
}
.tp-pullquote p { margin: 0; }
.tp-pullquote--plain { background: var(--tp-cream); }

/* Step list inside articles */
.tp-artsteps { counter-reset: tpstep2; list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: 1.1rem; }
.tp-artsteps li { position: relative; padding-left: 3rem; }
.tp-artsteps li::before {
  counter-increment: tpstep2; content: counter(tpstep2);
  position: absolute; left: 0; top: 0; width: 38px; height: 38px; border-radius: 50%;
  background: var(--tp-orange); color: #fff; font-family: var(--tp-head); font-weight: 700; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
}
.tp-artsteps b { font-family: var(--tp-head); color: var(--tp-navy); }
.tp-artsteps p { margin: .2rem 0 0; font-size: .9rem; }

/* In-article CTA card that promotes a matching package */
.tp-ctain {
  margin: 2rem 0; padding: 1.3rem 1.4rem; position: relative; overflow: hidden;
  background: var(--tp-navy); color: #fffb f5; border-radius: var(--tp-radius-lg);
  background: linear-gradient(120deg, var(--tp-navy) 0%, var(--tp-navy-soft) 100%);
}
.tp-ctain::after {
  content: ""; position: absolute; right: -30px; top: -30px; width: 130px; height: 130px;
  background: radial-gradient(circle, rgba(242,106,33,.35) 0%, transparent 70%);
}
.tp-ctain .tp-ctain__chip { font-family: var(--tp-head); font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tp-orange); display: block; margin-bottom: .4rem; }
.tp-ctain b.tp-ctain__name { font-family: var(--tp-head); font-size: 1.12rem; color: #fff; display: block; margin-bottom: .35rem; }
.tp-ctain p { font-size: .86rem; color: rgba(255,255,255,.78); margin: 0 0 .9rem; }
.tp-ctain .tp-btn { position: relative; z-index: 2; }

/* Author bio box */
.tp-authorbox {
  display: flex; gap: 1.1rem; align-items: center; margin: 2.2rem 0 1rem;
  padding: 1.4rem; background: var(--tp-cream); border-radius: var(--tp-radius);
}
.tp-authorbox__ava {
  width: 64px; height: 64px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--tp-orange), var(--tp-orange-dark)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--tp-head); font-weight: 700; font-size: 1.4rem;
}
.tp-authorbox b { font-family: var(--tp-head); display: block; font-size: .95rem; color: var(--tp-navy); }
.tp-authorbox span { font-size: .76rem; color: var(--tp-orange); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.tp-authorbox p { font-size: .84rem; margin: .4rem 0 0; color: var(--tp-body); }

/* FAQ (accordion-lite) */
.tp-faq { margin-top: 1.5rem; }
.tp-faq details {
  border: 1px solid var(--tp-line); border-radius: var(--tp-radius); background: #fff;
  overflow: hidden; margin-bottom: .7rem;
}
.tp-faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.2rem; font-family: var(--tp-head); font-weight: 600; font-size: .92rem; color: var(--tp-navy);
}
.tp-faq summary::-webkit-details-marker { display: none; }
.tp-faq summary::after { content: "\F282"; font-family: "bootstrap-icons"; font-size: .9rem; color: var(--tp-orange); transition: transform .25s ease; }
.tp-faq details[open] summary::after { transform: rotate(180deg); }
.tp-faq details[open] summary { color: var(--tp-orange); }
.tp-faq .tp-faq__body { padding: 0 1.2rem 1.1rem; font-size: .88rem; color: var(--tp-body); }

/* Toc chip group (used on listing cards / mini navigation) */
.tp-chiprow { display: flex; flex-wrap: wrap; gap: .4rem; }
.tp-chiprow a, .tp-chip { font-size: .74rem; font-weight: 600; color: var(--tp-navy); background: var(--tp-cream); border: 1px solid var(--tp-line); padding: .3rem .65rem; border-radius: 999px; transition: .2s ease; }
.tp-chiprow a:hover, .tp-chip:hover { color: #fff; background: var(--tp-orange); border-color: var(--tp-orange); }

/* --------------------------------------------------------------------------
   18. Reveal-on-scroll
   -------------------------------------------------------------------------- */
.tp-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2, .8, .2, 1); }
.tp-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tp-reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   19. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .tp-nav .nav-link { padding: .55rem .6rem; font-size: .86rem; }
  .tp-callpill__num { font-size: .87rem; }
}

@media (max-width: 991.98px) {
  :root { --tp-header-h: 74px; }
  .tp-burger { display: inline-flex; }
  .tp-hero__inner { padding: 3rem 0 8rem; }
  .tp-hero__media::after {
    background:
      linear-gradient(180deg, rgba(255, 251, 246, .96) 0%, rgba(255, 249, 242, .88) 42%, rgba(255, 244, 233, .35) 100%),
      linear-gradient(90deg, rgba(255, 251, 246, .8) 0%, transparent 70%);
  }
  .tp-hero__media img { object-position: center 45%; }
  .tp-hero__text { max-width: 100%; }
  .tp-band__stats { grid-template-columns: repeat(4, 1fr); }
  .tp-band__divider::before { display: none; }
  .tp-phero__media { width: 100%; opacity: .5; }
  .tp-phero__media::after { background: linear-gradient(180deg, rgba(255, 253, 250, .9) 0%, rgba(255, 250, 244, .82) 60%, rgba(255, 247, 240, .7) 100%); }
  .tp-tabs { position: static; }
  .tp-gal__thumbs { grid-template-columns: repeat(6, 1fr); }
  .tp-trust + .tp-trust::before { display: none; }
  .tp-usp + .tp-usp::before { display: none; }
}

@media (max-width: 767.98px) {
  .tp-section { padding: 3rem 0; }
  .tp-hero__inner { padding: 2.5rem 0 7rem; }
  .tp-planner { margin-top: -5.5rem; padding: 1.15rem 1.15rem 0; }
  .tp-planner__foot { margin: 1.15rem -1.15rem 0; padding: .85rem 1.15rem; text-align: center; }
  .tp-hero__badges { gap: 1rem 1.6rem; }
  .tp-band { padding: 2.6rem 0; }
  .tp-band__stats { grid-template-columns: repeat(2, 1fr); gap: 1.4rem .5rem; }
  .tp-stat b { font-size: 1.45rem; }
  .tp-panel { padding: 1.1rem; border-radius: var(--tp-radius); }
  .tp-toolbar { align-items: stretch; }
  .tp-sort { justify-content: space-between; }
  .tp-select { flex: 1 1 auto; }
  .tp-featbox { gap: .6rem 0; }
  .tp-featbox > span { padding: 0 .9rem; }
  .tp-featbox > span:first-child { padding-left: 0; }
  .tp-book__meta { grid-template-columns: 1fr; gap: .9rem; }
  .tp-book__meta > div { padding-left: 0; }
  .tp-book__meta > div + div::before { display: none; }
  .tp-gal__thumbs { grid-template-columns: repeat(4, 1fr); }
  .tp-grid-gal { grid-template-columns: repeat(2, 1fr); }
  .tp-ctabox { text-align: left; }
  .tp-ctabox .tp-btn { width: 100%; }
  .tp-float-wa { width: 48px; height: 48px; font-size: 1.45rem; right: 14px; bottom: 14px; }
}

@media (max-width: 575.98px) {
  .tp-brand__img { height: 34px; }
  .tp-logo-word { font-size: 1.5rem; }
  .tp-logo-trail { width: 34px; margin-bottom: 11px; }
  .tp-brand__tag { font-size: .56rem; }
  .tp-hero__title { font-size: 2.1rem; }
  .tp-planner { margin-top: -4.5rem; }
  .tp-section-head { margin-bottom: 1.5rem; }
  .tp-gal__thumbs { grid-template-columns: repeat(3, 1fr); }
  .tp-tl__more { margin-left: 0; }
}

/* --------------------------------------------------------------------------
   20. Print (Download Itinerary uses the browser print dialog)
   -------------------------------------------------------------------------- */
@media print {
  .tp-header, .tp-tabs, .tp-footer, .tp-float-wa, .tp-book, .tp-gal__nav,
  .tp-gal__thumbs, .tp-crumb, .tp-band, .tp-strip, .no-print { display: none !important; }
  body { font-size: 11pt; }
  .tp-section { padding: 0 !important; }
  .tp-card { border: 1px solid #ccc; break-inside: avoid; }
  .collapse { display: block !important; height: auto !important; }
}




    :root {
        --navy: #10243f;
        --orange: #ff641f;
        --cream: #fff8f2;
        --light: #f7f8fa;
        --text: #24364b;
        --muted: #718096;
        --border: #e7e9ed;
        --white: #ffffff;
    }

    body {
        font-family: Arial, Helvetica, sans-serif;
        color: var(--text);
        background: var(--white);
        line-height: 1.5;
    }

    .tripoom-section {
        padding: 90px 0;
    }

    .tripoom-container {
        width: min(1180px, 92%);
        margin: auto;
    }

    .tripoom-eyebrow {
        color: var(--orange);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .tripoom-title {
        color: var(--navy);
        font-size: 42px;
        line-height: 1.1;
        font-weight: 800;
    }

    .tripoom-title span {
        color: var(--orange);
    }

    .tripoom-description {
        color: var(--muted);
        max-width: 650px;
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.75;
    }

    /* =========================================
       01. WHY CHOOSE TRIPOOM
    ========================================= */

    .why-section {
        background: var(--cream);
    }

    .why-heading {
        text-align: center;
        margin-bottom: 45px;
    }

    .why-heading .tripoom-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .why-card {
        position: relative;
        background: var(--white);
        border: 1px solid #eee4dc;
        border-radius: 20px;
        padding: 30px;
        overflow: hidden;
        transition: all .3s ease;
    }

    .why-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 45px rgba(16, 36, 63, .10);
    }

    .why-number {
        position: absolute;
        top: 5px;
        right: 18px;
        color: rgba(16, 36, 63, .055);
        font-size: 55px;
        font-weight: 900;
    }

    .why-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        background: #fff0e8;
        color: var(--orange);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 22px;
    }

    .why-card h3 {
        color: var(--navy);
        font-size: 19px;
        margin-bottom: 9px;
    }

    .why-card p {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.7;
    }

    .why-stats {
        margin-top: 25px;
        background: var(--navy);
        border-radius: 20px;
        padding: 25px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        text-align: center;
    }

    .why-stat strong {
        display: block;
        color: var(--white);
        font-size: 28px;
    }

    .why-stat span {
        color: #bdc9d7;
        font-size: 12px;
    }

    /* =========================================
       02. RAJASTHAN FOOD DESTINATIONS
    ========================================= */

    .food-section {
        background: var(--white);
    }

    .food-header {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 30px;
        margin-bottom: 35px;
    }

    .food-link {
        white-space: nowrap;
        color: var(--orange);
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
    }

    .food-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr;
        grid-template-rows: 230px 230px;
        gap: 16px;
    }

    .food-card {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        background: #ddd;
    }

    .food-card.large {
        grid-row: 1 / 3;
    }

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

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

    .food-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(5, 20, 38, .85),
            rgba(5, 20, 38, .05) 70%
        );
    }

    .food-content {
        position: absolute;
        z-index: 2;
        left: 22px;
        right: 20px;
        bottom: 20px;
        color: white;
    }

    .food-tag {
        display: inline-block;
        background: rgba(255,255,255,.9);
        color: var(--navy);
        padding: 5px 9px;
        border-radius: 30px;
        font-size: 9px;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .food-content h3 {
        font-size: 21px;
        margin-bottom: 3px;
        color: #fff
    }

    .food-card:not(.large) .food-content h3 {
        font-size: 18px;
    }

    .food-content p {
        font-size: 12px;
        color: #e5ebf2;
    }

   /* =========================================
   TRIPOOM TESTIMONIAL SLIDER
========================================= */

.tp-testimonial-section {
    padding: 95px 0;
    background: var(--tp-cream);
    overflow: hidden;
}

.tp-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.tp-testimonial-heading {
    text-align: center;
    margin-bottom: 45px;
}

.tp-eyebrow {
    display: inline-block;
    color: var(--tp-orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.tp-testimonial-heading h2 {
    margin: 0;
    color: var(--tp-navy);
    font-family: var(--tp-head);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.tp-testimonial-heading h2 span {
    color: var(--tp-orange);
}

.tp-testimonial-heading p {
    max-width: 650px;
    margin: 15px auto 0;
    color: var(--tp-body);
    font-family: var(--tp-text);
    font-size: 15px;
    line-height: 1.7;
}


/* SLIDER */

.tp-testimonial-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

.tp-testimonial-track {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.tp-testimonial-slide {
    display: none;
    grid-template-columns: .72fr 1.8fr;
    gap: 22px;
    width: 100%;
    animation: tpFade .45s ease;
}

.tp-testimonial-slide.active {
    display: grid;
}

@keyframes tpFade {
    from {
        opacity: 0;
        transform: translateX(15px);
    }

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


/* RATING BOX */

.tp-rating-box {
    background: var(--tp-navy);
    border-radius: var(--tp-radius-xl);
    padding: 35px;
    color: var(--tp-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 330px;
}

.tp-rating-number {
    font-family: var(--tp-head);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.tp-stars {
    color: #ff9b58;
    font-size: 19px;
    letter-spacing: 3px;
    margin: 12px 0 14px;
}

.tp-rating-box p {
    color: #c8d2de;
    font-family: var(--tp-text);
    font-size: 13px;
    line-height: 1.7;
}

.tp-rating-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;

    margin-top: 25px;
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.14);
}

.tp-rating-stats strong {
    display: block;
    font-family: var(--tp-head);
    font-size: 19px;
}

.tp-rating-stats span {
    color: #aebdcd;
    font-family: var(--tp-text);
    font-size: 11px;
}


/* REVIEW CARD */

.tp-review-card {
    position: relative;
    background: var(--tp-white);
    border: 1px solid var(--tp-line);
    border-radius: var(--tp-radius-xl);
    padding: 40px;
    min-height: 330px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-shadow: var(--tp-shadow-sm);
}

.tp-quote {
    position: absolute;
    top: 15px;
    right: 30px;

    color: rgba(242,106,33,.10);
    font-family: Georgia, serif;
    font-size: 90px;
    line-height: 1;
}

.tp-review-top {
    margin-bottom: 20px;
}

.tp-verified {
    display: inline-flex;
    align-items: center;

    padding: 6px 10px;

    border-radius: 50px;

    background: var(--tp-orange-soft);
    color: var(--tp-orange);

    font-family: var(--tp-text);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}

.tp-review-text {
    position: relative;
    z-index: 2;

    max-width: 760px;

    color: var(--tp-navy-soft);
    font-family: var(--tp-text);
    font-size: 19px;
    line-height: 1.75;
}

.tp-reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.tp-avatar {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

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

    border-radius: 50%;

    background: var(--tp-orange-soft);
    color: var(--tp-orange);

    font-family: var(--tp-head);
    font-weight: 800;
}

.tp-reviewer h4 {
    margin: 0;
    color: var(--tp-navy);
    font-family: var(--tp-head);
    font-size: 15px;
}

.tp-reviewer span {
    color: var(--tp-muted);
    font-family: var(--tp-text);
    font-size: 11px;
}

.tp-review-stars {
    margin-left: auto;
    color: var(--tp-orange);
    font-size: 15px;
    letter-spacing: 2px;
}


/* PREVIOUS / NEXT */

.tp-slider-btn {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    border: 1px solid var(--tp-line);
    border-radius: 50%;

    background: var(--tp-white);
    color: var(--tp-navy);

    font-size: 19px;

    cursor: pointer;

    transition: all .25s ease;

    box-shadow: var(--tp-shadow-xs);
}

.tp-slider-btn:hover {
    background: var(--tp-orange);
    border-color: var(--tp-orange);
    color: var(--tp-white);
    transform: translateY(-2px);
}


/* DOTS */

.tp-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 28px;
}

.tp-dot {
    width: 7px;
    height: 7px;

    border: 0;
    padding: 0;

    border-radius: 50%;

    background: #d5d9de;

    cursor: pointer;

    transition: all .3s ease;
}

.tp-dot.active {
    width: 25px;
    border-radius: 10px;
    background: var(--tp-orange);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .tp-testimonial-heading h2 {
        font-size: 35px;
    }

    .tp-testimonial-slide {
        grid-template-columns: 1fr;
    }

    .tp-rating-box {
        min-height: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .tp-testimonial-section {
        padding: 65px 0;
    }

    .tp-testimonial-heading h2 {
        font-size: 29px;
    }

    .tp-testimonial-heading p {
        font-size: 14px;
    }

    .tp-testimonial-slider {
        gap: 8px;
    }

    .tp-slider-btn {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        font-size: 16px;
    }

    .tp-rating-box {
        padding: 27px;
        border-radius: var(--tp-radius-lg);
    }

    .tp-rating-number {
        font-size: 40px;
    }

    .tp-review-card {
        padding: 27px;
        min-height: 310px;
        border-radius: var(--tp-radius-lg);
    }

    .tp-review-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .tp-reviewer {
        margin-top: 25px;
    }

    .tp-review-stars {
        display: none;
    }

    .tp-quote {
        font-size: 65px;
        right: 18px;
    }

}
    /* =========================================
       RESPONSIVE
    ========================================= */

    @media (max-width: 900px) {
        .tripoom-section {
            padding: 65px 0;
        }

        .tripoom-title {
            font-size: 34px;
        }

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

        .food-grid {
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 250px 200px 200px;
        }

        .food-card.large {
            grid-column: 1 / 3;
            grid-row: auto;
        }

        .testimonial-layout {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 600px) {
        .tripoom-section {
            padding: 55px 0;
        }

        .tripoom-container {
            width: 90%;
        }

        .tripoom-title {
            font-size: 29px;
        }

        .food-header {
            display: block;
        }

        .food-link {
            display: inline-block;
            margin-top: 15px;
        }

        .why-grid {
            grid-template-columns: 1fr;
        }

        .why-stats {
            grid-template-columns: 1fr 1fr;
            gap: 22px;
        }

        .food-grid {
            display: block;
        }

        .food-card {
            height: 235px;
            margin-bottom: 14px;
        }

        .review-card {
            padding: 28px;
        }

        .review-text {
            font-size: 17px;
        }

        .verified {
            display: none;
        }

         .tp-testimonial-section {
        padding: 65px 0;
    }

    .tp-testimonial-heading h2 {
        font-size: 29px;
    }

    .tp-testimonial-heading p {
        font-size: 14px;
    }

    .tp-testimonial-slider {
        gap: 8px;
    }

    .tp-slider-btn {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        font-size: 16px;
    }

    .tp-rating-box {
        padding: 27px;
        border-radius: var(--tp-radius-lg);
    }

    .tp-rating-number {
        font-size: 40px;
    }

    .tp-review-card {
        padding: 27px;
        min-height: 310px;
        border-radius: var(--tp-radius-lg);
    }

    .tp-review-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .tp-reviewer {
        margin-top: 25px;
    }

    .tp-review-stars {
        display: none;
    }

    .tp-quote {
        font-size: 65px;
        right: 18px;
    }


    }
