/* ═══════════════════════════════════════════════════════════════
   TRIPSKAR  —  Landing-site theme  (tripkarr.css)
   Fonts : Cormorant Garamond (display) + Jost (body/UI)
   Colour: #26a69a teal primary — matches Vue global.css v2
   ═══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ──────────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap");

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --tk-primary: #679bce;
  --tk-primary-dark: #679bce;
  --tk-primary-light: #b2dfdb;
  --tk-primary-soft: #e0f2f1;
  --tk-secondary: #ff7043;
  --tk-accent: #c9a96e; /* gold — eyebrow on hero */

  --tk-text: #1a1a18;
  --tk-text-sub: #4a4a42;
  --tk-text-muted: #6b7280;

  --tk-bg: #f9f6f0;
  --tk-bg-soft: #f4f7f6;
  --tk-bg-card: #ffffff;
  --tk-border: #e5e7eb;

  --tk-shadow-sm:
    0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --tk-shadow-md: 0 4px 16px rgba(15, 23, 42, 0.09);
  --tk-shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.13);

  --tk-radius-sm: 8px;
  --tk-radius-md: 14px;
  --tk-radius-lg: 22px;
  --tk-radius-pill: 999px;

  --tk-font-display: "Cormorant Garamond", Georgia, serif;
  --tk-font-body: "Jost", system-ui, sans-serif;

  --tk-transition: all 0.24s ease;
}

/* ── Base ──────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--tk-font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--tk-text);
  background: var(--tk-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Display headings — Cormorant Garamond, light weight, like Vue app */
h1,
h2 {
  font-family: var(--tk-font-display);
  font-weight: 300;
  color: var(--tk-text);
  letter-spacing: 0.01em;
  line-height: 1.08;
}

/* Sub-headings — Jost */
h3,
h4,
h5,
h6 {
  font-family: var(--tk-font-body);
  font-weight: 600;
  color: var(--tk-text);
  line-height: 1.25;
}

a {
  color: var(--tk-primary-dark);
  text-decoration: none;
}
a:hover {
  color: var(--tk-primary);
}
img {
  max-width: 100%;
  height: auto;
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */

.tk-navbar {
  background: var(--tk-primary) !important;
  padding: 0.6rem 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.tk-navbar img {
  height: 42px;
  width: auto;
}

.tk-navbar .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
  font-family: var(--tk-font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem !important;
  border-radius: var(--tk-radius-pill);
  transition: background 0.2s ease;
}
.tk-navbar .nav-link:hover,
.tk-navbar .nav-link.active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff !important;
  text-decoration: none;
}

.tk-navbar .btn-signin {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff !important;
  font-family: var(--tk-font-body);
  font-weight: 600;
}
.tk-navbar .btn-signin:hover {
  background: rgba(255, 255, 255, 0.28);
}

.tk-navbar .navbar-toggler {
  border: none;
  color: #fff;
  padding: 0.3rem 0.5rem;
}
.tk-navbar .navbar-toggler:focus {
  box-shadow: none;
}
.tk-navbar .navbar-toggler i {
  color: #fff;
}

@media (max-width: 991px) {
  .tk-navbar .navbar-collapse {
    background: var(--tk-primary-dark);
    border-radius: var(--tk-radius-md);
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS  — pill shape, matches Vue app
   ══════════════════════════════════════════════════════════════ */

.btn-tk-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--tk-primary);
  color: #fff;
  border: none;
  padding: 0.72rem 1.75rem;
  border-radius: var(--tk-radius-pill);
  font-family: var(--tk-font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--tk-transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-tk-primary:hover {
  background: var(--tk-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--tk-shadow-md);
  text-decoration: none;
}

.btn-tk-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  color: var(--tk-primary-dark);
  border: 2px solid var(--tk-primary);
  padding: 0.65rem 1.75rem;
  border-radius: var(--tk-radius-pill);
  font-family: var(--tk-font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--tk-transition);
  text-decoration: none;
}
.btn-tk-outline:hover {
  background: var(--tk-primary);
  color: #fff;
  text-decoration: none;
}

/* White outline — for hero "Find Stays" button */
.btn-tk-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--tk-primary-dark);
  border: 2px solid rgba(255, 255, 255, 0.85);
  padding: 0.65rem 1.75rem;
  border-radius: var(--tk-radius-pill);
  font-family: var(--tk-font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--tk-transition);
  text-decoration: none;
}
.btn-tk-outline-white:hover {
  background: #fff;
  color: var(--tk-primary-dark);
  text-decoration: none;
}

.btn-tk-light {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  color: var(--tk-text);
  border: 1.5px solid var(--tk-border);
  padding: 0.6rem 1.4rem;
  border-radius: var(--tk-radius-pill);
  font-family: var(--tk-font-body);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--tk-transition);
  text-decoration: none;
}
.btn-tk-light:hover {
  border-color: var(--tk-primary);
  color: var(--tk-primary-dark);
  background: var(--tk-primary-soft);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════════
   HERO  — Cormorant Garamond title, like Vue app
   ══════════════════════════════════════════════════════════════ */

.tk-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #1a1a18;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.tk-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.32) 0%,
    rgba(15, 23, 42, 0.6) 100%
  );
}
.tk-hero .container {
  position: relative;
  z-index: 2;
}

/* ★ KEY CHANGE: display serif, light weight — matches Vue tk-hero-title */
.tk-hero h1 {
  font-family: var(--tk-font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.tk-hero p.lead {
  font-family: var(--tk-font-body);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  max-width: 640px;
  margin: 0 auto 2rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.02em;
  line-height: 1.75;
}

/* Eyebrow on hero — pill with translucent white, matches Vue */
.tk-hero .tk-eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.tk-hero-compact {
  min-height: 46vh;
}

@media (max-width: 768px) {
  .tk-hero {
    min-height: 62vh;
  }
  .tk-hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* ══════════════════════════════════════════════════════════════
   SEARCH / BOOKING WIDGET
   ══════════════════════════════════════════════════════════════ */

.tk-search-card {
  background: #fff;
  border-radius: var(--tk-radius-lg);
  box-shadow: var(--tk-shadow-lg);
  padding: 1.5rem 1.75rem;
  margin-top: -3.25rem;
  position: relative;
  z-index: 5;
  align-items: flex-end;
}
.tk-search-card .form-label {
  display: block;
  font-family: var(--tk-font-body);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tk-text-muted);
  margin-bottom: 0.35rem;
}
.tk-search-card .form-control,
.tk-search-card .form-select {
  border-radius: var(--tk-radius-sm);
  border-color: var(--tk-border);
  padding: 0.6rem 0.85rem;
  font-family: var(--tk-font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.tk-search-card .form-control:focus,
.tk-search-card .form-select:focus {
  border-color: var(--tk-primary);
  box-shadow: 0 0 0 3px rgba(38, 166, 154, 0.15);
}

@media (max-width: 768px) {
  .tk-search-card {
    margin-top: -2rem;
    padding: 1.25rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   SECTION UTILITIES
   ══════════════════════════════════════════════════════════════ */

.tk-section {
  padding: 4.5rem 0;
}
.tk-section-soft {
  background: var(--tk-bg-soft);
}

/* Section title — Cormorant Garamond, light weight */
.tk-section-title {
  font-family: var(--tk-font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
/* em inside section title for italic accent */
.tk-section-title em {
  font-style: italic;
  color: var(--tk-primary-dark);
}

/* Section sub — Jost light */
.tk-section-sub {
  font-family: var(--tk-font-body);
  text-align: center;
  color: var(--tk-text-muted);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

/* Eyebrow pill — teal, matches Vue app exactly */
.tk-eyebrow {
  display: inline-block;
  background: var(--tk-primary-soft);
  color: var(--tk-primary-dark);
  font-family: var(--tk-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.28rem 0.9rem;
  border-radius: var(--tk-radius-pill);
}

@media (max-width: 768px) {
  .tk-section {
    padding: 3rem 0;
  }
}
@media (max-width: 576px) {
  .tk-section {
    padding: 2.25rem 0;
  }
}

/* ══════════════════════════════════════════════════════════════
   EXPERIENCE / STAY CARDS
   ══════════════════════════════════════════════════════════════ */

.tk-card {
  background: var(--tk-bg-card);
  border-radius: var(--tk-radius-md);
  overflow: hidden;
  box-shadow: var(--tk-shadow-sm);
  border: 1px solid var(--tk-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.tk-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tk-shadow-lg);
}
.tk-card .tk-card-img {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--tk-bg-soft);
}
.tk-card .tk-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.tk-card:hover .tk-card-img img {
  transform: scale(1.04);
}

.tk-badge-featured {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--tk-secondary);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--tk-radius-pill);
  font-family: var(--tk-font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.tk-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* Card h3 uses Jost (sub-heading) */
.tk-card-body h3 {
  font-family: var(--tk-font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
  line-height: 1.3;
  color: var(--tk-text);
}
.tk-rating {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.tk-meta {
  color: var(--tk-text-muted);
  font-family: var(--tk-font-body);
  font-size: 0.83rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.tk-meta i {
  margin-right: 0.2rem;
}
.tk-desc {
  font-family: var(--tk-font-body);
  color: var(--tk-text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  line-height: 1.65;
}
.tk-price {
  font-family: var(--tk-font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--tk-text);
  margin-bottom: 0.9rem;
}
.tk-price small {
  color: var(--tk-text-muted);
  font-weight: 400;
  font-size: 0.78rem;
}
.tk-card-footer {
  margin-top: auto;
}

/* ══════════════════════════════════════════════════════════════
   QUICK-ACTION TILES  (mobile)
   ══════════════════════════════════════════════════════════════ */

.tk-tile {
  background: #fff;
  border: 1.5px solid var(--tk-border);
  border-radius: var(--tk-radius-md);
  padding: 1.4rem 1rem;
  text-align: center;
  display: block;
  color: var(--tk-text);
  transition: var(--tk-transition);
  height: 100%;
}
.tk-tile:hover {
  border-color: var(--tk-primary);
  box-shadow: var(--tk-shadow-md);
  transform: translateY(-2px);
  color: var(--tk-text);
  text-decoration: none;
}
.tk-tile .tk-tile-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 0.75rem;
  background: var(--tk-primary-soft);
  color: var(--tk-primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.tk-tile h3 {
  font-family: var(--tk-font-body);
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
}
.tk-tile p {
  margin: 0;
  color: var(--tk-text-muted);
  font-size: 0.85rem;
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════════════
   DESTINATION CARDS
   ══════════════════════════════════════════════════════════════ */

.tk-dest-card {
  position: relative;
  border-radius: var(--tk-radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  color: #fff;
  box-shadow: var(--tk-shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.tk-dest-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--tk-shadow-md);
  color: #fff;
  text-decoration: none;
}
.tk-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.tk-dest-card:hover img {
  transform: scale(1.04);
}
.tk-dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 14, 0) 38%,
    rgba(10, 20, 14, 0.82) 100%
  );
}
.tk-dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.1rem 1.2rem;
  z-index: 2;
}
/* Destination name — display serif */
.tk-dest-info h3 {
  font-family: var(--tk-font-display);
  font-weight: 400;
  color: #fff;
  font-size: 1.35rem;
  margin: 0 0 0.2rem;
  letter-spacing: 0.01em;
}
.tk-dest-info p {
  margin: 0;
  font-family: var(--tk-font-body);
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
}

/* ══════════════════════════════════════════════════════════════
   WHY BOOK WITH US
   ══════════════════════════════════════════════════════════════ */

.tk-why-item {
  text-align: center;
  padding: 1.25rem 0.75rem;
}
.tk-why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: var(--tk-primary-soft);
  color: var(--tk-primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}
.tk-why-item h3 {
  font-family: var(--tk-font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.tk-why-item p {
  color: var(--tk-text-muted);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════════════
   STATS STRIP  — matches Vue's gradient + display font numbers
   ══════════════════════════════════════════════════════════════ */

.tk-strip {
  background: linear-gradient(
    135deg,
    var(--tk-primary) 0%,
    var(--tk-primary-dark) 100%
  );
  padding: 3.5rem 0;
  color: #fff;
  text-align: center;
}
.tk-stat {
  text-align: center;
}
/* Numbers use Cormorant Garamond like Vue's .tk-stat-num */
.tk-stat-num {
  font-family: var(--tk-font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  line-height: 1.1;
  display: block;
  letter-spacing: 0.01em;
}
.tk-stat-label {
  display: block;
  font-family: var(--tk-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.82;
  margin-top: 0.25rem;
}

/* ══════════════════════════════════════════════════════════════
   BLOG TEASER CARDS
   ══════════════════════════════════════════════════════════════ */

.tk-blog-card {
  background: #fff;
  border-radius: var(--tk-radius-md);
  border: 1px solid var(--tk-border);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.tk-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tk-shadow-lg);
  text-decoration: none;
}
.tk-blog-card .tk-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
}
.tk-blog-card .tk-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.tk-blog-card:hover .tk-card-img img {
  transform: scale(1.04);
}

.tk-blog-card-body {
  padding: 1.2rem 1.35rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tk-blog-meta {
  font-family: var(--tk-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--tk-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
/* Blog card title — display serif, matches the editorial look */
.tk-blog-card-body h3 {
  font-family: var(--tk-font-display);
  font-weight: 400;
  font-size: 1.25rem;
  margin: 0 0 0.6rem;
  line-height: 1.25;
  color: var(--tk-text);
  letter-spacing: 0.01em;
}
.tk-blog-card-body p {
  font-family: var(--tk-font-body);
  color: var(--tk-text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.65;
}
.tk-blog-link {
  margin-top: auto;
  color: var(--tk-primary-dark);
  font-family: var(--tk-font-body);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition:
    gap 0.2s,
    color 0.2s;
}
.tk-blog-card:hover .tk-blog-link {
  gap: 0.5rem;
  color: var(--tk-primary);
}

/* Blog section heading override for the "From the Tripskar Blog" h2 */
.tk-section h2 {
  font-family: var(--tk-font-display);
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════════ */

.tk-cta {
  background: linear-gradient(
    135deg,
    var(--tk-primary) 0%,
    var(--tk-primary-dark) 100%
  );
  color: #fff;
  padding: 4.5rem 2rem;
  border-radius: var(--tk-radius-lg);
  text-align: center;
}
.tk-cta h2 {
  font-family: var(--tk-font-display);
  font-weight: 300;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 0.65rem;
  letter-spacing: 0.01em;
}
.tk-cta p {
  font-family: var(--tk-font-body);
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.94;
  margin-bottom: 1.75rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.tk-cta .btn-tk-primary {
  background: #fff;
  color: var(--tk-primary-dark);
}
.tk-cta .btn-tk-primary:hover {
  background: var(--tk-primary-soft);
  color: var(--tk-primary-dark);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */

.tk-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 3.5rem 0 1.5rem;
}
/* Footer brand — display serif, matches Vue .tk-footer-brand */
.tk-footer-brand {
  font-family: var(--tk-font-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.tk-footer p {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 300;
}
.tk-footer h4 {
  font-family: var(--tk-font-body);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tk-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tk-footer ul li {
  margin-bottom: 0.5rem;
}
.tk-footer ul li a {
  color: #94a3b8;
  font-family: var(--tk-font-body);
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.2s;
}
.tk-footer ul li a:hover {
  color: var(--tk-primary-light);
  text-decoration: none;
}

.tk-footer .text-light {
  color: #94a3b8 !important;
  transition: color 0.2s;
}
.tk-footer .text-light:hover {
  color: var(--tk-primary-light) !important;
}

.tk-footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  font-size: 0.82rem;
  color: #64748b;
  text-align: center;
  font-family: var(--tk-font-body);
}

/* ══════════════════════════════════════════════════════════════
   ARTICLE / BLOG POST BODY
   ══════════════════════════════════════════════════════════════ */

.tk-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1rem;
  font-family: var(--tk-font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: #2d3748;
}
.tk-article h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 0.9rem;
}
.tk-article h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.65rem;
}
.tk-article p {
  margin-bottom: 1.15rem;
}
.tk-article ul,
.tk-article ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.tk-article li {
  margin-bottom: 0.4rem;
}
.tk-article blockquote {
  border-left: 4px solid var(--tk-primary);
  background: var(--tk-primary-soft);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--tk-radius-sm) var(--tk-radius-sm) 0;
  font-style: italic;
  color: var(--tk-text);
}
.tk-article img {
  border-radius: var(--tk-radius-md);
  margin: 1.5rem 0;
}

/* ══════════════════════════════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════════════════════════════ */

.tk-breadcrumb {
  background: var(--tk-bg-soft);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--tk-border);
  font-family: var(--tk-font-body);
  font-size: 0.87rem;
}
.tk-breadcrumb a {
  color: var(--tk-text-muted);
}
.tk-breadcrumb a:hover {
  color: var(--tk-primary-dark);
}
.tk-breadcrumb .sep {
  margin: 0 0.45rem;
  color: var(--tk-text-muted);
}
.tk-breadcrumb .current {
  color: var(--tk-text);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   PAGE HEADER (listing pages)
   ══════════════════════════════════════════════════════════════ */

.tk-page-header {
  padding: 2.5rem 0 1.5rem;
}
.tk-page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.tk-page-header p {
  color: var(--tk-text-muted);
  font-size: 1rem;
  max-width: 720px;
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════════════
   TAGS
   ══════════════════════════════════════════════════════════════ */

.tk-tag {
  display: inline-block;
  background: var(--tk-primary-soft);
  color: var(--tk-primary-dark);
  padding: 0.28rem 0.75rem;
  border-radius: var(--tk-radius-pill);
  font-family: var(--tk-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0 0.3rem 0.3rem 0;
}

/* ══════════════════════════════════════════════════════════════
   BOOKING SIDEBAR
   ══════════════════════════════════════════════════════════════ */

.tk-booking-card {
  background: #fff;
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius-md);
  padding: 1.5rem;
  box-shadow: var(--tk-shadow-md);
  position: sticky;
  top: 88px;
}
.tk-booking-card .tk-price-large {
  font-family: var(--tk-font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--tk-text);
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}
.tk-booking-card .tk-price-large small {
  font-family: var(--tk-font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--tk-text-muted);
}
.tk-booking-card .tk-availability {
  display: inline-block;
  background: var(--tk-primary-soft);
  color: var(--tk-primary-dark);
  padding: 0.35rem 0.85rem;
  border-radius: var(--tk-radius-pill);
  font-family: var(--tk-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.tk-booking-card .tk-fee-row {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  font-family: var(--tk-font-body);
  font-size: 0.9rem;
  color: var(--tk-text-muted);
}
.tk-booking-card .tk-fee-row.tk-total {
  border-top: 1px solid var(--tk-border);
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--tk-text);
}

/* ══════════════════════════════════════════════════════════════
   TEMPLE TABLE
   ══════════════════════════════════════════════════════════════ */

.tk-table-wrap {
  border-radius: var(--tk-radius-md);
  overflow: hidden;
  border: 1px solid var(--tk-border);
  box-shadow: var(--tk-shadow-sm);
}
.tk-temple-table {
  margin: 0;
  width: 100%;
}
.tk-temple-table thead {
  background: var(--tk-primary-soft);
}
.tk-temple-table th {
  font-family: var(--tk-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--tk-primary-dark);
  padding: 0.85rem 1rem;
  border: none;
}
.tk-temple-table td {
  font-family: var(--tk-font-body);
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--tk-border);
  vertical-align: middle;
}
.tk-temple-table tr:hover td {
  background: var(--tk-bg-soft);
}

/* ══════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════ */

.tk-faq .accordion-item {
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius-sm) !important;
  margin-bottom: 0.65rem;
  overflow: hidden;
}
.tk-faq .accordion-button {
  font-family: var(--tk-font-body);
  font-weight: 600;
  color: var(--tk-text);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}
.tk-faq .accordion-button:not(.collapsed) {
  background: var(--tk-primary-soft);
  color: var(--tk-primary-dark);
  box-shadow: none;
}
.tk-faq .accordion-button:focus {
  box-shadow: none;
}
