/* =============================================================================
   THE BHARAT JOURNEY — Premium WordPress Theme Stylesheet
   Brand: Saffron #FF6B00 | Royal Blue #0A3D62 | Cream #FFF8E7
   Fonts: Inter (body) | Playfair Display (headings)
   Version: 1.0.0
   ============================================================================= */

/* =============================================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================================= */
:root {
  /* Brand Colors */
  --saffron: #FF6B00;
  --saffron-light: #FF9A3C;
  --saffron-50: #FFF3E8;
  --saffron-100: #FFE4CC;
  --saffron-200: #FFC899;
  --saffron-300: #FFA866;
  --saffron-400: #FF8733;
  --saffron-500: #FF6B00;
  --saffron-600: #CC5500;
  --saffron-700: #993F00;
  --saffron-800: #662A00;

  --royal: #0A3D62;
  --royal-light: #2067B9;
  --royal-50: #E8F1F8;
  --royal-100: #C5D8ED;
  --royal-200: #8FAFE0;
  --royal-300: #5D8FC4;
  --royal-400: #2E6FA7;
  --royal-500: #0A3D62;
  --royal-600: #0B3258;
  --royal-700: #0B2A49;
  --royal-800: #07203A;

  --cream: #FFF8E7;
  --cream-dark: #F5EDCE;
  --white: #ffffff;

  /* Neutral Grays */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Status Colors */
  --green-500: #22c55e;
  --green-whatsapp: #25D366;
  --red-500: #ef4444;
  --yellow-400: #facc15;
  --yellow-500: #eab308;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-saffron: 0 0 20px rgba(255, 107, 0, 0.35);
  --shadow-royal: 0 0 20px rgba(10, 61, 98, 0.35);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Spacing */
  --container-max: 1280px;
  --container-pad: clamp(1rem, 4vw, 2rem);
  --section-py: clamp(3rem, 8vw, 5rem);

  /* Border Radius */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 200ms ease;
  --transition-md: 300ms ease;
  --transition-lg: 500ms ease;
}

/* =============================================================================
   2. RESET & BASE STYLES
   ============================================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--royal);
  font-weight: 700;
}

h5, h6 {
  font-family: var(--font-body);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.375rem, 3vw, 1.875rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  line-height: 1.7;
  color: var(--gray-600);
}

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

a:hover {
  color: var(--saffron-600);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* WordPress body class reset */
.entry-content a,
.wp-block-group a {
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition);
}

.entry-content a:hover,
.wp-block-group a:hover {
  text-decoration-color: var(--saffron);
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================================
   3. TYPOGRAPHY UTILITIES
   ============================================================================= */
.font-heading {
  font-family: var(--font-heading);
}

.font-body {
  font-family: var(--font-body);
}

.font-bold    { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium  { font-weight: 500; }
.font-normal  { font-weight: 400; }

.text-xs   { font-size: 0.75rem; }
.text-sm   { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }
.text-3xl  { font-size: 1.875rem; }
.text-4xl  { font-size: 2.25rem; }

.leading-tight  { line-height: 1.25; }
.leading-snug   { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose  { line-height: 2; }

.tracking-tight  { letter-spacing: -0.025em; }
.tracking-wide   { letter-spacing: 0.05em; }
.tracking-wider  { letter-spacing: 0.1em; }
.tracking-widest { letter-spacing: 0.2em; }

.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-light) 50%, #FFAB40 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================================================
   4. LAYOUT UTILITIES
   ============================================================================= */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  width: 100%;
}

.container-narrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* Flex utilities */
.flex         { display: flex; }
.inline-flex  { display: inline-flex; }
.flex-col     { flex-direction: column; }
.flex-row     { flex-direction: row; }
.flex-wrap    { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.items-end    { align-items: flex-end; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end     { justify-content: flex-end; }
.flex-1          { flex: 1 1 0%; }
.shrink-0        { flex-shrink: 0; }
.gap-1  { gap: 0.25rem; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }

/* Grid utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Position utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.sticky   { position: sticky; }
.inset-0  { top: 0; right: 0; bottom: 0; left: 0; }

/* Display */
.block        { display: block; }
.inline-block { display: inline-block; }
.hidden       { display: none; }
.overflow-hidden { overflow: hidden; }

/* Spacing */
.m-0  { margin: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.p-4  { padding: 1rem; }
.p-6  { padding: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

/* Width / Height */
.w-full  { width: 100%; }
.h-full  { height: 100%; }
.w-8     { width: 2rem; }
.h-8     { height: 2rem; }
.w-10    { width: 2.5rem; }
.h-10    { height: 2.5rem; }
.w-12    { width: 3rem; }
.h-12    { height: 3rem; }
.min-h-screen { min-height: 100vh; }

/* =============================================================================
   5. SECTION COMPONENTS
   ============================================================================= */
.section {
  padding: var(--section-py) 0;
}

.section-sm {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.section-lg {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

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

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

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

.section-royal h1,
.section-royal h2,
.section-royal h3,
.section-royal h4 {
  color: var(--white);
}

.section-gray {
  background-color: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--royal);
  margin-bottom: 1rem;
}

.section-subheading {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.divider-saffron {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron) 0%, var(--saffron-light) 100%);
  border-radius: var(--radius-full);
  margin: 1.25rem auto 0;
}

.divider-left {
  margin-left: 0;
}

/* =============================================================================
   6. BADGE COMPONENTS
   ============================================================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}

.badge-saffron {
  background-color: var(--saffron-50);
  color: var(--saffron-600);
}

.badge-saffron-solid {
  background-color: var(--saffron);
  color: var(--white);
}

.badge-royal {
  background-color: var(--royal-50);
  color: var(--royal);
}

.badge-royal-solid {
  background-color: var(--royal);
  color: var(--white);
}

.badge-green {
  background-color: #dcfce7;
  color: #15803d;
}

.badge-green-solid {
  background-color: var(--green-500);
  color: var(--white);
}

/* =============================================================================
   7. BUTTON COMPONENTS
   ============================================================================= */
.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-ghost,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-md);
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background-color: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.25);
}

.btn-primary:hover {
  background-color: var(--saffron-600);
  border-color: var(--saffron-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-secondary {
  background-color: var(--royal);
  color: var(--white);
  border-color: var(--royal);
  box-shadow: 0 4px 14px rgba(10, 61, 98, 0.2);
}

.btn-secondary:hover {
  background-color: var(--royal-light);
  border-color: var(--royal-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 61, 98, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--saffron);
  border-color: var(--saffron);
}

.btn-outline:hover {
  background-color: var(--saffron);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.3);
}

.btn-outline-royal {
  background-color: transparent;
  color: var(--royal);
  border-color: var(--royal);
  border-width: 2px;
  border-style: solid;
}

.btn-outline-royal:hover {
  background-color: var(--royal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--gray-700);
  border-color: transparent;
}

.btn-ghost:hover {
  background-color: var(--gray-100);
  color: var(--gray-900);
}

.btn-sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
  border-radius: var(--radius-lg);
}

.btn-whatsapp {
  background-color: var(--green-whatsapp);
  color: var(--white);
  border-color: var(--green-whatsapp);
  border-radius: var(--radius-full);
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* =============================================================================
   8. NAVBAR / SITE HEADER
   ============================================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.site-header.transparent {
  background-color: transparent;
}

.site-header.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding-top: 0;
  padding-bottom: 0;
}

.site-header.opaque {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity var(--transition);
}

.site-logo:hover {
  opacity: 0.9;
  color: inherit;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--saffron);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-saffron);
  transition: transform var(--transition-md);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.site-logo:hover .logo-icon {
  transform: scale(1.1);
}

.logo-text {
  display: none;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--royal);
  transition: color var(--transition);
}

.logo-subtitle {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  transition: color var(--transition);
}

.site-header.transparent .logo-title {
  color: var(--white);
}

.site-header.transparent .logo-subtitle {
  color: rgba(255, 168, 102, 0.9);
}

/* Nav Menu */
.nav-menu {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--gray-700);
  transition: all var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--saffron);
  background-color: var(--saffron-50);
}

.site-header.transparent .nav-menu a {
  color: rgba(255, 255, 255, 0.9);
}

.site-header.transparent .nav-menu a:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown arrow */
.nav-arrow {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform var(--transition);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.nav-menu li:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.nav-menu li:hover .nav-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  border-radius: 0;
  background-color: transparent;
}

.nav-dropdown a:hover {
  background-color: var(--saffron-50);
  color: var(--saffron-600);
}

.nav-dropdown-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--saffron-400);
  flex-shrink: 0;
}

/* Nav CTA area */
.nav-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: all var(--transition);
}

.nav-phone-link:hover {
  background-color: var(--gray-100);
  color: var(--gray-900);
}

.site-header.transparent .nav-phone-link {
  color: rgba(255, 255, 255, 0.8);
}

.site-header.transparent .nav-phone-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Hamburger toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.35rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--transition);
}

.nav-toggle:hover {
  background-color: var(--gray-100);
}

.site-header.transparent .nav-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-toggle-bar {
  width: 100%;
  height: 2px;
  background-color: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.site-header.transparent .nav-toggle-bar {
  background-color: var(--white);
}

.nav-toggle.open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: var(--royal);
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background-color var(--transition);
}

.mobile-menu-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu-nav a {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.mobile-menu-nav a:hover {
  color: var(--saffron-300);
  background-color: rgba(255, 255, 255, 0.08);
}

.mobile-menu-sub {
  list-style: none;
  padding: 0.25rem 0 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.mobile-menu-sub a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.375rem 0.75rem;
}

.mobile-menu-sub a:hover {
  color: var(--saffron-300);
}

.mobile-menu-actions {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Desktop visibility */
@media (min-width: 1024px) {
  .nav-menu { display: flex; }
  .nav-cta  { display: flex; }
  .logo-text { display: block; }
  .nav-toggle { display: none; }
}

@media (min-width: 640px) {
  .logo-text { display: block; }
}

/* =============================================================================
   9. HERO SECTION
   ============================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-slides-wrapper {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 61, 98, 0.6) 0%,
    rgba(10, 61, 98, 0.2) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hero-overlay-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 61, 98, 0.4) 0%, transparent 60%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 7rem var(--container-pad) 10rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 107, 0, 0.2);
  border: 1px solid rgba(255, 107, 0, 0.4);
  backdrop-filter: blur(8px);
  color: rgba(255, 200, 130, 0.95);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
}

.hero-trust-pill svg {
  color: var(--saffron-300);
  flex-shrink: 0;
}

.hero-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--saffron-300);
  margin-bottom: 0.625rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  margin-bottom: 3rem;
}

/* Hero Search Bar */
.hero-search {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.hero-search-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: 0.5rem;
  box-shadow: var(--shadow-premium);
}

.hero-search-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-search-field {
  position: relative;
  flex: 1;
}

.hero-search-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--saffron-400);
  pointer-events: none;
}

.hero-search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--gray-800);
  outline: none;
  transition: background-color var(--transition);
}

.hero-search-input::placeholder {
  color: var(--gray-400);
}

.hero-search-input:focus {
  background-color: var(--white);
}

.hero-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--saffron);
  color: var(--white);
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition-md);
  white-space: nowrap;
  box-shadow: var(--shadow-saffron);
}

.hero-search-btn:hover {
  background-color: var(--saffron-600);
  transform: translateY(-1px);
}

.hero-quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.hero-quick-tag {
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
}

.hero-quick-tag:hover {
  background-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

/* Slide indicators */
.hero-dots {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
}

.hero-dot {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 8px;
  padding: 0;
}

.hero-dot.active {
  width: 32px;
  background-color: var(--saffron);
}

/* Stats bar */
.hero-stats-bar {
  position: relative;
  z-index: 3;
  background-color: rgba(10, 61, 98, 0.96);
  backdrop-filter: blur(8px);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 1.25rem var(--container-pad);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--saffron-400);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--royal-100);
  margin-top: 0.25rem;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 5;
}

@media (min-width: 768px) {
  .hero-scroll-cue { display: flex; }
  .hero-stats-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-search-inner { flex-direction: row; }
}

@media (min-width: 640px) {
  .hero-search-inner { flex-direction: row; }
}

/* =============================================================================
   10. PACKAGE CARDS
   ============================================================================= */
.package-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-md);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  color: inherit;
}

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: var(--gray-100);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-lg);
}

.package-card:hover .card-image img {
  transform: scale(1.1);
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.card-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  line-height: 1;
  background-color: var(--saffron);
  color: var(--white);
  letter-spacing: 0.04em;
}

.card-discount {
  background-color: var(--green-500);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

.card-wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.card-wishlist:hover,
.card-wishlist.active {
  background-color: var(--white);
  color: #ef4444;
}

.card-wishlist.active svg {
  fill: #ef4444;
}

.card-category-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
}

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--saffron-600);
  margin-bottom: 0.375rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.package-card:hover .card-title {
  color: var(--saffron);
}

.card-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.625rem;
}

.card-location svg {
  color: var(--saffron-400);
  flex-shrink: 0;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.875rem;
}

.card-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Stars */
.card-rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  gap: 2px;
}

.star-filled {
  color: var(--yellow-400);
  fill: var(--yellow-400);
}

.star-empty {
  color: var(--gray-300);
}

.rating-value {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
}

.rating-count {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}

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

.price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--royal);
  line-height: 1;
}

.price-per {
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-top: 0.125rem;
}

.price-original {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-top: 0.125rem;
}

.card-view-btn {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--saffron-500);
  background-color: var(--saffron-50);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.package-card:hover .card-view-btn {
  background-color: var(--saffron);
  color: var(--white);
}

/* =============================================================================
   11. DESTINATION CARDS
   ============================================================================= */
.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--gray-900);
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.destination-card:hover {
  color: inherit;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-lg);
}

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

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: background var(--transition-md);
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(to top, rgba(10, 61, 98, 0.85) 0%, rgba(10, 61, 98, 0.3) 60%, transparent 100%);
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}

.destination-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.destination-count {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.destination-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  background-color: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition-md);
}

.destination-card:hover .destination-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* Destination Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .destinations-grid .destination-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.destination-card-sm {
  height: 180px;
}

.destination-card-lg {
  height: 280px;
}

/* =============================================================================
   12. WHY CHOOSE US SECTION
   ============================================================================= */
.why-choose-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-choose-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform var(--transition-md);
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--saffron-50) 0%, var(--saffron-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  flex-shrink: 0;
  font-size: 1.25rem;
  transition: all var(--transition-md);
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-light) 100%);
  color: var(--white);
  transform: scale(1.05);
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* =============================================================================
   13. TESTIMONIALS SECTION
   ============================================================================= */
.testimonials-section {
  background-color: var(--royal);
  padding: var(--section-py) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-md);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--saffron-400);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--saffron-400);
  flex-shrink: 0;
  background-color: var(--royal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron-300);
  font-weight: 700;
  font-size: 1.125rem;
  overflow: hidden;
}

.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9375rem;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--saffron-300);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-top: 0.25rem;
}

/* =============================================================================
   14. BLOG SECTION
   ============================================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-md);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  color: inherit;
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: var(--gray-100);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-lg);
}

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

.blog-cat-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  background-color: var(--saffron);
  color: var(--white);
}

.blog-body {
  padding: 1.375rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
  margin-bottom: 0.625rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.blog-card:hover .blog-title {
  color: var(--saffron);
}

.blog-excerpt {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  margin-top: auto;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.blog-read-more {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--saffron);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition);
}

.blog-card:hover .blog-read-more {
  gap: 0.5rem;
}

/* =============================================================================
   15. FAQ ACCORDION
   ============================================================================= */
.faq-section {
  background-color: var(--white);
  padding: var(--section-py) 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
  background-color: var(--white);
}

.faq-item.open {
  border-color: var(--saffron-300);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.4;
  flex: 1;
  transition: color var(--transition);
}

.faq-item.open .faq-question {
  color: var(--saffron-600);
}

.faq-arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--saffron-500);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.375rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}

/* =============================================================================
   16. FORM ELEMENTS
   ============================================================================= */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.375rem;
}

.input-field,
.input-select,
.input-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--gray-800);
  background-color: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
  appearance: none;
}

.input-field::placeholder,
.input-textarea::placeholder {
  color: var(--gray-400);
}

.input-field:focus,
.input-select:focus,
.input-textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.input-field.error {
  border-color: var(--red-500);
}

.input-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.375rem;
}

.form-error {
  font-size: 0.75rem;
  color: var(--red-500);
  margin-top: 0.375rem;
}

/* Contact form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-success {
  background-color: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #15803d;
  font-size: 0.9rem;
  display: none;
}

.form-success.visible {
  display: block;
}

.form-error-msg {
  background-color: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #dc2626;
  font-size: 0.9rem;
  display: none;
}

.form-error-msg.visible {
  display: block;
}

/* =============================================================================
   17. SITE FOOTER
   ============================================================================= */
.site-footer {
  background-color: var(--royal);
  color: var(--white);
}

.footer-top-bar {
  background-color: var(--saffron);
  padding: 1rem 0;
}

.footer-top-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-top-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.footer-contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-value {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.footer-logo:hover {
  color: inherit;
}

.footer-logo-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background-color: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-saffron);
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.footer-logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.footer-logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron-300);
}

.footer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--royal-100);
  margin-bottom: 0.625rem;
}

.footer-info-icon {
  color: var(--saffron-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 2.375rem;
  height: 2.375rem;
  background-color: var(--royal-600);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: background-color var(--transition);
}

.social-link:hover {
  background-color: var(--saffron);
  color: var(--white);
}

.footer-col {}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--saffron-300);
}

.footer-link-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--saffron-400);
  flex-shrink: 0;
}

/* Newsletter */
.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.footer-newsletter-input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--white);
  outline: none;
  font-family: inherit;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-input:focus {
  border-color: var(--saffron-400);
  background-color: rgba(255, 255, 255, 0.12);
}

.footer-newsletter-btn {
  padding: 0.625rem 0.875rem;
  background-color: var(--saffron);
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
  border: none;
  transition: background-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-newsletter-btn:hover {
  background-color: var(--saffron-600);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: var(--saffron-300);
}

.footer-made-with {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

/* =============================================================================
   18. WHATSAPP FLOAT BUTTON
   ============================================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
}

.whatsapp-float-btn {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--green-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  cursor: pointer;
  border: none;
  text-decoration: none;
  animation: whatsapp-bounce 2.5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float-btn:hover {
  color: var(--white);
  animation-play-state: paused;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}

.whatsapp-float-btn svg {
  width: 1.625rem;
  height: 1.625rem;
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green-whatsapp);
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
  opacity: 0;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 0.875rem);
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--gray-900);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--gray-900);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes whatsapp-bounce {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-8px); }
  60%       { transform: translateY(-4px); }
}

@keyframes whatsapp-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =============================================================================
   19. SCROLL REVEAL ANIMATIONS
   ============================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* =============================================================================
   20. MISCELLANEOUS COMPONENTS
   ============================================================================= */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--saffron);
}

.breadcrumb-sep {
  color: var(--gray-300);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 3rem;
}

.page-num {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
}

.page-num:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background-color: var(--saffron-50);
}

.page-num.current {
  background-color: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: var(--radius);
}

@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Alert / Notice */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.alert-info {
  background-color: var(--royal-50);
  border: 1px solid var(--royal-100);
  color: var(--royal-700);
}

.alert-success {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.alert-warning {
  background-color: var(--saffron-50);
  border: 1px solid var(--saffron-200);
  color: var(--saffron-700);
}

.alert-danger {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* Price tag decoration */
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-currency {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--royal);
}

.price-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--royal);
  line-height: 1;
}

.price-unit {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Tab component */
.tabs-nav {
  display: flex;
  gap: 0.25rem;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--saffron);
}

.tab-btn.active {
  color: var(--saffron);
  border-bottom-color: var(--saffron);
}

.tab-panel {
  display: none;
}

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

/* Sticky booking bar */
.sticky-book-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 0.875rem var(--container-pad);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Glass effect utility */
.glass {
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* =============================================================================
   21. RESPONSIVE BREAKPOINTS
   ============================================================================= */

/* --- Mobile (up to 639px) --- */
@media (max-width: 639px) {
  .section { padding: 3rem 0; }
  .section-heading { font-size: 1.75rem; }
  .section-subheading { font-size: 1rem; }
  .section-header { margin-bottom: 2.25rem; }

  .hero-title { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1.125rem; }
  .hero-content { padding-top: 6rem; padding-bottom: 8rem; }

  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); padding: 1rem; }
  .hero-stat-value { font-size: 1.5rem; }

  .why-choose-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number { font-size: 2rem; }

  .package-grid-2,
  .package-grid-3,
  .package-grid-4 {
    grid-template-columns: 1fr;
  }

  .btn, .btn-primary, .btn-secondary { padding: 0.75rem 1.25rem; font-size: 0.875rem; }
  .btn-lg { padding: 0.875rem 1.5rem; font-size: 0.9375rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-description { max-width: 100%; }

  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
  .whatsapp-float-btn { width: 3rem; height: 3rem; }
}

/* --- Tablet (640px to 1023px) --- */
@media (min-width: 640px) and (max-width: 1023px) {
  .hero-title { font-size: 3.5rem; }
  .hero-content { padding-top: 7rem; }
  .hero-stats-grid { grid-template-columns: repeat(4, 1fr); }

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

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

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
  .package-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .package-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .package-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================================
   22. PACKAGE GRIDS
   ============================================================================= */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .packages-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================================
   23. HOMEPAGE-SPECIFIC SECTIONS
   ============================================================================= */

/* Featured packages section */
.featured-packages {
  background-color: var(--cream);
  padding: var(--section-py) 0;
}

/* Kashi special banner */
.kashi-banner {
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-light) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.kashi-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.kashi-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Contact section */
.contact-info-card {
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-light) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background-color: rgba(255, 107, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron-300);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* =============================================================================
   24. PRINT STYLES
   ============================================================================= */
@media print {
  .site-header,
  .whatsapp-float,
  .mobile-menu,
  .nav-toggle,
  .hero-dots,
  .sticky-book-bar {
    display: none !important;
  }

  body {
    font-size: 12pt;
  }

  .package-card,
  .blog-card {
    box-shadow: none;
    border: 1px solid var(--gray-200);
  }
}

/* =============================================================================
   TBJ THEME TEMPLATE STYLES (header.php, footer.php, archive.php, single.php, 404.php)
   Uses tbj- prefix to avoid conflicts with existing styles
   ============================================================================= */

/* ── TBJ Custom Properties ────────────────────────────────────────────────── */
:root {
  --tbj-saffron:        #FF6B00;
  --tbj-saffron-dark:   #E05A00;
  --tbj-saffron-light:  #FF8C33;
  --tbj-saffron-pale:   #FFF0E0;
  --tbj-blue:           #0A3D62;
  --tbj-blue-dark:      #072D48;
  --tbj-blue-mid:       #1A5276;
  --tbj-blue-light:     #2874A6;
  --tbj-white:          #FFFFFF;
  --tbj-cream:          #FFF8E7;
  --tbj-wa-green:       #25D366;
  --tbj-wa-green-dark:  #1DA851;
  --tbj-gray-50:        #F9FAFB;
  --tbj-gray-100:       #F3F4F6;
  --tbj-gray-200:       #E5E7EB;
  --tbj-gray-300:       #D1D5DB;
  --tbj-gray-400:       #9CA3AF;
  --tbj-gray-500:       #6B7280;
  --tbj-gray-600:       #4B5563;
  --tbj-gray-700:       #374151;
  --tbj-gray-800:       #1F2937;
  --tbj-gray-900:       #111827;
  --tbj-font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --tbj-font-heading:  'Playfair Display', Georgia, serif;
  --tbj-text-xs:   0.75rem;
  --tbj-text-sm:   0.875rem;
  --tbj-text-base: 1rem;
  --tbj-text-lg:   1.125rem;
  --tbj-text-xl:   1.25rem;
  --tbj-text-2xl:  1.5rem;
  --tbj-text-3xl:  1.875rem;
  --tbj-text-4xl:  2.25rem;
  --tbj-text-5xl:  3rem;
  --tbj-text-6xl:  3.75rem;
  --tbj-radius-sm:   0.25rem;
  --tbj-radius:      0.5rem;
  --tbj-radius-md:   0.75rem;
  --tbj-radius-lg:   1rem;
  --tbj-radius-xl:   1.5rem;
  --tbj-radius-full: 9999px;
  --tbj-shadow:     0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --tbj-shadow-md:  0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --tbj-shadow-lg:  0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --tbj-shadow-xl:  0 25px 50px -12px rgba(0,0,0,.25);
  --tbj-shadow-saffron: 0 8px 24px rgba(255,107,0,.35);
  --tbj-shadow-blue:    0 8px 24px rgba(10,61,98,.25);
  --tbj-transition:       all 0.2s ease;
  --tbj-transition-slow:  all 0.35s ease;
  --tbj-transition-cubic: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --tbj-container-max: 1280px;
  --tbj-container-pad: clamp(1rem, 5vw, 2rem);
  --tbj-header-height: 80px;
  --tbj-space-1: 0.25rem; --tbj-space-2: 0.5rem; --tbj-space-3: 0.75rem;
  --tbj-space-4: 1rem; --tbj-space-5: 1.25rem; --tbj-space-6: 1.5rem;
  --tbj-space-8: 2rem; --tbj-space-10: 2.5rem; --tbj-space-12: 3rem;
  --tbj-space-16: 4rem; --tbj-space-20: 5rem; --tbj-space-24: 6rem;
}

/* ── Utilities ─────────────────────────────────────────────────────────────── */
.tbj-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

.tbj-section-title {
  font-family: var(--tbj-font-heading);
  font-size: clamp(var(--tbj-text-2xl), 3vw, var(--tbj-text-4xl));
  color: var(--tbj-blue);
  text-align: center;
  margin-bottom: var(--tbj-space-12);
  position: relative;
  padding-bottom: var(--tbj-space-5);
}
.tbj-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--tbj-saffron), #D4A017);
  border-radius: var(--tbj-radius-full);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.tbj-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--tbj-space-2); padding: 0.65em 1.4em;
  font-family: var(--tbj-font-body); font-size: var(--tbj-text-sm);
  font-weight: 600; border-radius: var(--tbj-radius-full);
  border: 2px solid transparent; cursor: pointer;
  transition: var(--tbj-transition-cubic); text-decoration: none;
  white-space: nowrap; line-height: 1.4;
  -webkit-user-select: none; user-select: none;
}
.tbj-btn:focus-visible { outline: 2px solid var(--tbj-saffron); outline-offset: 3px; }

.tbj-btn--primary {
  background: linear-gradient(135deg, var(--tbj-saffron), var(--tbj-saffron-dark));
  color: var(--tbj-white); border-color: var(--tbj-saffron);
  box-shadow: var(--tbj-shadow-saffron);
}
.tbj-btn--primary:hover {
  background: linear-gradient(135deg, var(--tbj-saffron-dark), #C04E00);
  color: var(--tbj-white); transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,107,0,.45);
}
.tbj-btn--primary:active { transform: translateY(0); }

.tbj-btn--outline {
  background: transparent; color: var(--tbj-blue); border-color: var(--tbj-blue);
}
.tbj-btn--outline:hover {
  background: var(--tbj-blue); color: var(--tbj-white); transform: translateY(-2px);
}

.tbj-btn--whatsapp {
  background: var(--tbj-wa-green); color: var(--tbj-white);
  border-color: var(--tbj-wa-green);
}
.tbj-btn--whatsapp:hover {
  background: var(--tbj-wa-green-dark); color: var(--tbj-white);
  border-color: var(--tbj-wa-green-dark); transform: translateY(-2px);
}
.tbj-btn--full { width: 100%; }

/* ── Header ─────────────────────────────────────────────────────────────── */
.tbj-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; min-height: var(--tbj-header-height);
  background: linear-gradient(to bottom, rgba(10,61,98,.45), rgba(10,61,98,0));
  transition: background-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.tbj-header.is-scrolled {
  background: var(--tbj-white);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.tbj-header__inner {
  display: flex; align-items: center;
  justify-content: space-between; min-height: 100%;
  gap: var(--tbj-space-4);
  max-width: var(--tbj-container-max);
  margin-inline: auto;
  padding-inline: var(--tbj-container-pad);
}

/* Logo */
.tbj-logo-link { text-decoration: none; }
.tbj-logo-text { display: flex; align-items: center; gap: var(--tbj-space-2); }
.tbj-logo-icon { font-size: 1.75rem; line-height: 1; }
.tbj-logo-words { display: flex; flex-direction: column; line-height: 1.1; }
.tbj-logo-name {
  font-family: var(--tbj-font-heading); font-size: var(--tbj-text-lg);
  font-weight: 700; color: var(--tbj-white); transition: color 0.3s ease;
}
.tbj-logo-tagline {
  font-size: var(--tbj-text-xs); font-weight: 500; letter-spacing: 0.05em;
  color: rgba(255,255,255,.75); transition: color 0.3s ease;
}
.tbj-header.is-scrolled .tbj-logo-name  { color: var(--tbj-blue); }
.tbj-header.is-scrolled .tbj-logo-tagline { color: var(--tbj-saffron); }

/* Nav */
.tbj-header__nav { flex: 1; display: flex; justify-content: center; }
.tbj-nav-menu { display: flex; align-items: center; list-style: none; }
.tbj-nav-menu > li > a {
  display: block; padding: 0.5rem 0.85rem;
  font-size: var(--tbj-text-sm); font-weight: 500;
  color: rgba(255,255,255,.9); border-radius: var(--tbj-radius);
  transition: var(--tbj-transition); position: relative;
  text-decoration: none;
}
.tbj-nav-menu > li > a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  width: 0; height: 2px; background: var(--tbj-saffron);
  border-radius: var(--tbj-radius-full);
  transition: width 0.25s ease, left 0.25s ease;
}
.tbj-nav-menu > li > a:hover::after,
.tbj-nav-menu > li.current-menu-item > a::after,
.tbj-nav-menu > li.current_page_item > a::after {
  width: calc(100% - 1.7rem); left: 0.85rem;
}
.tbj-header.is-scrolled .tbj-nav-menu > li > a { color: var(--tbj-gray-700); }
.tbj-header.is-scrolled .tbj-nav-menu > li > a:hover,
.tbj-header.is-scrolled .tbj-nav-menu > li.current-menu-item > a { color: var(--tbj-saffron); }

.tbj-header__actions { display: flex; align-items: center; gap: var(--tbj-space-2); flex-shrink: 0; }

/* Hamburger */
.tbj-hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 44px; height: 44px;
  background: transparent; border: 2px solid rgba(255,255,255,.4);
  border-radius: var(--tbj-radius); cursor: pointer;
  transition: var(--tbj-transition); padding: 0; flex-shrink: 0;
}
.tbj-hamburger:hover { border-color: var(--tbj-white); }
.tbj-header.is-scrolled .tbj-hamburger { border-color: var(--tbj-gray-300); }
.tbj-header.is-scrolled .tbj-hamburger:hover { border-color: var(--tbj-blue); }
.tbj-hamburger__bar {
  display: block; width: 20px; height: 2px;
  background: var(--tbj-white); border-radius: var(--tbj-radius-full);
  transition: var(--tbj-transition);
}
.tbj-header.is-scrolled .tbj-hamburger__bar { background: var(--tbj-blue); }
.tbj-hamburger[aria-expanded="true"] .tbj-hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.tbj-hamburger[aria-expanded="true"] .tbj-hamburger__bar:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.tbj-hamburger[aria-expanded="true"] .tbj-hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu ─────────────────────────────────────────────────────────── */
.tbj-mobile-menu {
  position: fixed; inset: 0; z-index: 1100;
  display: flex; align-items: flex-start; justify-content: flex-end;
}
.tbj-mobile-menu[hidden] { display: none; }
.tbj-mobile-menu__overlay {
  position: absolute; inset: 0;
  background: rgba(10,61,98,.6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.tbj-mobile-menu__panel {
  position: relative; z-index: 1; width: min(360px, 90vw); height: 100%;
  background: var(--tbj-white); overflow-y: auto;
  display: flex; flex-direction: column;
  box-shadow: -5px 0 30px rgba(0,0,0,.15);
  animation: tbj-slide-in-right 0.3s cubic-bezier(0.4,0,0.2,1);
}
@keyframes tbj-slide-in-right {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
.tbj-mobile-menu__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--tbj-space-4) var(--tbj-space-5);
  background: var(--tbj-blue); flex-shrink: 0;
}
.tbj-mobile-menu__header .tbj-logo-name  { color: var(--tbj-white); }
.tbj-mobile-menu__header .tbj-logo-tagline { color: var(--tbj-saffron-light); }
.tbj-mobile-menu__close {
  background: rgba(255,255,255,.15); border: none;
  border-radius: var(--tbj-radius); color: var(--tbj-white);
  cursor: pointer; padding: var(--tbj-space-2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--tbj-transition);
}
.tbj-mobile-menu__close:hover { background: rgba(255,255,255,.25); }
.tbj-mobile-menu__nav { padding: var(--tbj-space-4) 0; flex: 1; }
.tbj-mobile-nav-menu { list-style: none; }
.tbj-mobile-nav-menu > li > a {
  display: block; padding: 0.9rem var(--tbj-space-6);
  font-size: var(--tbj-text-base); font-weight: 500;
  color: var(--tbj-gray-800); border-left: 3px solid transparent;
  transition: var(--tbj-transition); text-decoration: none;
}
.tbj-mobile-nav-menu > li > a:hover,
.tbj-mobile-nav-menu > li.current-menu-item > a,
.tbj-mobile-nav-menu > li.current_page_item > a {
  color: var(--tbj-saffron); border-left-color: var(--tbj-saffron);
  background: var(--tbj-saffron-pale);
}
.tbj-mobile-menu__actions {
  padding: var(--tbj-space-5); display: flex; flex-direction: column;
  gap: var(--tbj-space-3); border-top: 1px solid var(--tbj-gray-100);
}
.tbj-mobile-menu__contact {
  padding: var(--tbj-space-4) var(--tbj-space-5);
  background: var(--tbj-cream); border-top: 1px solid var(--tbj-gray-100);
}
.tbj-mobile-contact-link {
  display: flex; align-items: center; gap: var(--tbj-space-2);
  color: var(--tbj-blue); font-size: var(--tbj-text-sm); font-weight: 500;
  text-decoration: none;
}

/* ── Page/Post Hero Banners ─────────────────────────────────────────────── */
.tbj-page-hero,
.tbj-post-hero {
  position: relative; min-height: 420px;
  display: flex; align-items: flex-end;
  background-color: var(--tbj-blue-dark);
  background-size: cover; background-position: center;
  background-repeat: no-repeat; overflow: hidden;
  padding-bottom: var(--tbj-space-12);
  padding-top: calc(var(--tbj-header-height) + 2rem);
}
.tbj-page-hero__overlay,
.tbj-post-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(7,45,72,.35) 0%, rgba(7,45,72,.75) 60%, rgba(7,45,72,.92) 100%);
}
.tbj-page-hero__content,
.tbj-post-hero__content { position: relative; z-index: 1;
  max-width: var(--tbj-container-max); margin-inline: auto;
  padding-inline: var(--tbj-container-pad); width: 100%;
}
.tbj-page-hero__title,
.tbj-post-hero__title {
  font-family: var(--tbj-font-heading);
  font-size: clamp(var(--tbj-text-3xl), 5vw, var(--tbj-text-6xl));
  color: var(--tbj-white); font-weight: 800;
  margin-top: var(--tbj-space-4);
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.tbj-post-hero__category {
  display: inline-block; padding: 0.3em 1em;
  background: var(--tbj-saffron); color: var(--tbj-white);
  font-size: var(--tbj-text-xs); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--tbj-radius-full); text-decoration: none;
  margin-top: var(--tbj-space-3);
}
.tbj-post-hero__meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--tbj-space-5); margin-top: var(--tbj-space-5);
}
.tbj-post-meta-item {
  display: flex; align-items: center; gap: var(--tbj-space-2);
  color: rgba(255,255,255,.85); font-size: var(--tbj-text-sm);
}
.tbj-post-meta-item a { color: inherit; text-decoration: none; }
.tbj-post-meta-item a:hover { color: var(--tbj-saffron-light); }
.tbj-post-meta-avatar { border-radius: var(--tbj-radius-full); border: 2px solid rgba(255,255,255,.5); }

/* ── Page Title Bar ─────────────────────────────────────────────────────── */
.tbj-page-title-bar {
  background: linear-gradient(135deg, var(--tbj-blue-dark) 0%, var(--tbj-blue) 100%);
  padding: calc(var(--tbj-header-height) + 2.5rem) 0 2.5rem;
}
.tbj-page-title-bar__title {
  font-family: var(--tbj-font-heading);
  font-size: clamp(var(--tbj-text-3xl), 4vw, var(--tbj-text-5xl));
  color: var(--tbj-white); margin-top: var(--tbj-space-3);
}

/* ── Breadcrumbs ───────────────────────────────────────────────────────── */
.tbj-breadcrumbs__list {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: var(--tbj-space-2); list-style: none;
}
.tbj-breadcrumbs__item a {
  font-size: var(--tbj-text-sm); color: rgba(255,255,255,.7);
  text-decoration: none; transition: color 0.2s;
}
.tbj-breadcrumbs__item a:hover { color: var(--tbj-saffron-light); }
.tbj-breadcrumbs__item--current { font-size: var(--tbj-text-sm); color: rgba(255,255,255,.9); font-weight: 500; }
.tbj-breadcrumbs__separator { color: rgba(255,255,255,.4); font-size: var(--tbj-text-sm); }
.tbj-breadcrumbs--center .tbj-breadcrumbs__list { justify-content: center; }

/* ── Article / Prose ───────────────────────────────────────────────────── */
.tbj-page-article { padding: var(--tbj-space-16) 0; }
.tbj-page-article__inner { max-width: 820px; margin-inline: auto; }
.tbj-single-post { padding: var(--tbj-space-16) 0 var(--tbj-space-8); }
.tbj-single-post__layout { max-width: 820px; margin-inline: auto; }

.tbj-prose { font-size: var(--tbj-text-lg); line-height: 1.8; color: var(--tbj-gray-700); }
.tbj-prose h1,.tbj-prose h2,.tbj-prose h3,.tbj-prose h4,.tbj-prose h5,.tbj-prose h6 {
  font-family: var(--tbj-font-heading); color: var(--tbj-blue);
  margin-top: 2em; margin-bottom: 0.75em; line-height: 1.3;
}
.tbj-prose h2 { font-size: var(--tbj-text-3xl); }
.tbj-prose h3 { font-size: var(--tbj-text-2xl); }
.tbj-prose h4 { font-size: var(--tbj-text-xl); }
.tbj-prose p { margin-bottom: 1.5em; }
.tbj-prose a { color: var(--tbj-saffron); text-decoration: underline; }
.tbj-prose a:hover { color: var(--tbj-saffron-dark); }
.tbj-prose ul,.tbj-prose ol { margin-left: 1.5em; margin-bottom: 1.5em; }
.tbj-prose ul { list-style: disc; }
.tbj-prose ol { list-style: decimal; }
.tbj-prose li { margin-bottom: 0.5em; }
.tbj-prose blockquote {
  border-left: 4px solid var(--tbj-saffron);
  padding: var(--tbj-space-4) var(--tbj-space-6);
  margin: 2em 0; background: var(--tbj-cream);
  border-radius: 0 var(--tbj-radius) var(--tbj-radius) 0;
  font-style: italic; font-family: var(--tbj-font-heading);
  font-size: var(--tbj-text-xl); color: var(--tbj-blue);
}
.tbj-prose img { border-radius: var(--tbj-radius-lg); box-shadow: var(--tbj-shadow-md); margin: 2em auto; }
.tbj-prose hr {
  border: none; height: 2px;
  background: linear-gradient(90deg, transparent, var(--tbj-saffron), transparent);
  margin: 3em 0;
}

/* ── Archive Hero ──────────────────────────────────────────────────────── */
.tbj-archive-hero {
  position: relative;
  background: linear-gradient(135deg, var(--tbj-blue-dark) 0%, var(--tbj-blue) 50%, var(--tbj-blue-mid) 100%);
  padding: calc(var(--tbj-header-height) + 3rem) 0 var(--tbj-space-16);
  overflow: hidden;
}
.tbj-archive-hero__pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(255,107,0,.08) 0%, transparent 50%),
                    radial-gradient(circle at 75% 75%, rgba(255,107,0,.06) 0%, transparent 50%);
  pointer-events: none;
}
.tbj-archive-hero__content { text-align: center; position: relative; z-index: 1;
  max-width: var(--tbj-container-max); margin-inline: auto; padding-inline: var(--tbj-container-pad); }
.tbj-archive-hero__badge {
  display: inline-block; padding: 0.3em 1.2em;
  background: rgba(255,107,0,.2); color: var(--tbj-saffron-light);
  border: 1px solid rgba(255,107,0,.35);
  font-size: var(--tbj-text-xs); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--tbj-radius-full); margin-bottom: var(--tbj-space-4);
}
.tbj-archive-hero__author-avatar { margin: 0 auto var(--tbj-space-5); }
.tbj-archive-hero__avatar-img { border-radius: var(--tbj-radius-full); border: 4px solid rgba(255,255,255,.3); }
.tbj-archive-hero__title {
  font-family: var(--tbj-font-heading);
  font-size: clamp(var(--tbj-text-3xl), 5vw, var(--tbj-text-5xl));
  color: var(--tbj-white); font-weight: 800; margin-bottom: var(--tbj-space-4);
}
.tbj-archive-hero__desc {
  font-size: var(--tbj-text-lg); color: rgba(255,255,255,.8);
  max-width: 600px; margin-inline: auto; margin-bottom: var(--tbj-space-4);
}
.tbj-archive-hero__count {
  display: inline-block; padding: 0.3em 1em;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
  font-size: var(--tbj-text-sm); border-radius: var(--tbj-radius-full);
  margin-bottom: var(--tbj-space-6);
}
.tbj-archive-hero--index { padding: calc(var(--tbj-header-height) + 2rem) 0 var(--tbj-space-12); }

/* ── Post Grid & Cards ─────────────────────────────────────────────────── */
.tbj-archive-section { padding: var(--tbj-space-16) 0; background: var(--tbj-gray-50); }
.tbj-post-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.tbj-post-card {
  background: var(--tbj-white); border-radius: var(--tbj-radius-lg);
  overflow: hidden; box-shadow: var(--tbj-shadow);
  transition: var(--tbj-transition-cubic);
  display: flex; flex-direction: column;
}
.tbj-post-card:hover { transform: translateY(-6px); box-shadow: var(--tbj-shadow-xl); }
.tbj-post-card__image-wrap { display: block; overflow: hidden; aspect-ratio: 16 / 10; }
.tbj-post-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tbj-post-card:hover .tbj-post-card__image { transform: scale(1.06); }
.tbj-post-card__image-placeholder {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--tbj-blue) 0%, var(--tbj-blue-light) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.tbj-post-card__body {
  padding: var(--tbj-space-5); display: flex; flex-direction: column; flex: 1;
}
.tbj-post-card__category {
  display: inline-block; padding: 0.25em 0.8em;
  background: var(--tbj-saffron-pale); color: var(--tbj-saffron-dark);
  font-size: var(--tbj-text-xs); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--tbj-radius-full);
  margin-bottom: var(--tbj-space-3); text-decoration: none;
  transition: var(--tbj-transition);
}
.tbj-post-card__category:hover { background: var(--tbj-saffron); color: var(--tbj-white); }
.tbj-post-card__title {
  font-family: var(--tbj-font-heading); font-size: var(--tbj-text-xl);
  color: var(--tbj-blue); margin-bottom: var(--tbj-space-3);
  line-height: 1.35; flex: 1;
}
.tbj-post-card__title a { color: inherit; text-decoration: none; }
.tbj-post-card__title a:hover { color: var(--tbj-saffron); }
.tbj-post-card__excerpt {
  font-size: var(--tbj-text-sm); color: var(--tbj-gray-600); line-height: 1.65;
  margin-bottom: var(--tbj-space-4);
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.tbj-post-card__excerpt p { margin: 0; }
.tbj-post-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--tbj-space-3); padding-top: var(--tbj-space-4);
  border-top: 1px solid var(--tbj-gray-100); margin-top: auto;
}
.tbj-post-card__meta-left { display: flex; align-items: center; gap: var(--tbj-space-3); }
.tbj-post-card__author { display: flex; align-items: center; gap: var(--tbj-space-2); }
.tbj-post-card__author-avatar { border-radius: var(--tbj-radius-full); border: 2px solid var(--tbj-gray-200); }
.tbj-post-card__author-name { font-size: var(--tbj-text-xs); color: var(--tbj-gray-500); }
.tbj-post-card__date {
  display: flex; align-items: center; gap: var(--tbj-space-1);
  font-size: var(--tbj-text-xs); color: var(--tbj-gray-400);
}
.tbj-post-card__read-more {
  display: inline-flex; align-items: center; gap: var(--tbj-space-1);
  font-size: var(--tbj-text-sm); font-weight: 600;
  color: var(--tbj-saffron); text-decoration: none;
  transition: gap 0.2s ease; white-space: nowrap; flex-shrink: 0;
}
.tbj-post-card__read-more:hover { gap: var(--tbj-space-2); color: var(--tbj-saffron-dark); }

/* ── Pagination ────────────────────────────────────────────────────────── */
.tbj-pagination { margin-top: 3rem; display: flex; justify-content: center; }
.tbj-pagination .nav-links {
  display: flex; align-items: center; gap: var(--tbj-space-2);
  flex-wrap: wrap; justify-content: center;
}
.tbj-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--tbj-space-1);
  min-width: 44px; height: 44px; padding: 0 var(--tbj-space-3);
  border-radius: var(--tbj-radius); font-size: var(--tbj-text-sm); font-weight: 500;
  color: var(--tbj-blue); background: var(--tbj-white);
  border: 1px solid var(--tbj-gray-200); text-decoration: none; transition: var(--tbj-transition);
}
.tbj-pagination .page-numbers:hover,
.tbj-pagination .page-numbers.current {
  background: var(--tbj-saffron); border-color: var(--tbj-saffron);
  color: var(--tbj-white); box-shadow: var(--tbj-shadow-saffron);
}
.tbj-pagination .page-numbers.dots { border: none; background: transparent; cursor: default; }

/* ── Post Tags ─────────────────────────────────────────────────────────── */
.tbj-post-tags {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--tbj-space-2);
  padding: var(--tbj-space-6) 0;
  border-top: 1px solid var(--tbj-gray-100); margin-top: var(--tbj-space-8);
}
.tbj-post-tags__label { font-size: var(--tbj-text-sm); font-weight: 600; color: var(--tbj-gray-500); }
.tbj-tag-pill {
  display: inline-block; padding: 0.3em 0.9em;
  background: var(--tbj-gray-100); color: var(--tbj-gray-700);
  font-size: var(--tbj-text-xs); border-radius: var(--tbj-radius-full);
  text-decoration: none; transition: var(--tbj-transition);
}
.tbj-tag-pill:hover { background: var(--tbj-blue); color: var(--tbj-white); }

/* ── Post Navigation ───────────────────────────────────────────────────── */
.tbj-post-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--tbj-space-4);
  padding: var(--tbj-space-8) 0; border-top: 1px solid var(--tbj-gray-100);
  margin-top: var(--tbj-space-4);
}
.tbj-post-nav__prev,.tbj-post-nav__next { display: flex; align-items: center; }
.tbj-post-nav__next { justify-content: flex-end; }
.tbj-post-nav a {
  display: inline-flex; align-items: center; gap: var(--tbj-space-2);
  font-size: var(--tbj-text-sm); font-weight: 600; color: var(--tbj-blue);
  text-decoration: none; padding: var(--tbj-space-3) var(--tbj-space-4);
  border: 1px solid var(--tbj-gray-200); border-radius: var(--tbj-radius);
  transition: var(--tbj-transition); max-width: 250px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.tbj-post-nav a:hover { background: var(--tbj-blue); color: var(--tbj-white); border-color: var(--tbj-blue); }

/* ── Author Bio ────────────────────────────────────────────────────────── */
.tbj-author-bio {
  background: var(--tbj-cream); border-top: 3px solid var(--tbj-saffron);
  padding: var(--tbj-space-12) 0;
}
.tbj-author-bio__inner {
  max-width: 820px; margin-inline: auto;
  display: flex; gap: var(--tbj-space-6); align-items: flex-start;
  padding-inline: var(--tbj-container-pad);
}
.tbj-author-bio__avatar { flex-shrink: 0; }
.tbj-author-bio__avatar-img {
  border-radius: var(--tbj-radius-full);
  border: 4px solid var(--tbj-saffron); box-shadow: var(--tbj-shadow-md);
}
.tbj-author-bio__label {
  font-size: var(--tbj-text-xs); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--tbj-saffron); margin-bottom: var(--tbj-space-1);
}
.tbj-author-bio__name { font-size: var(--tbj-text-2xl); color: var(--tbj-blue); margin-bottom: var(--tbj-space-3); }
.tbj-author-bio__name a { color: inherit; text-decoration: none; }
.tbj-author-bio__name a:hover { color: var(--tbj-saffron); }
.tbj-author-bio__desc { font-size: var(--tbj-text-base); color: var(--tbj-gray-600); line-height: 1.7; margin-bottom: var(--tbj-space-4); }
.tbj-author-bio__link {
  display: inline-flex; align-items: center; gap: var(--tbj-space-1);
  font-size: var(--tbj-text-sm); font-weight: 600;
  color: var(--tbj-saffron); text-decoration: none;
}
.tbj-author-bio__link:hover { gap: var(--tbj-space-2); color: var(--tbj-saffron-dark); }

/* ── Related Posts ─────────────────────────────────────────────────────── */
.tbj-related-posts { padding: var(--tbj-space-16) 0; background: var(--tbj-gray-50); }

/* ── Comments ──────────────────────────────────────────────────────────── */
.tbj-comments-section { padding: var(--tbj-space-16) 0; background: var(--tbj-white); }
.tbj-comments-wrap { max-width: 820px; margin-inline: auto; padding-inline: var(--tbj-container-pad); }
.comments-title {
  font-family: var(--tbj-font-heading); font-size: var(--tbj-text-2xl);
  color: var(--tbj-blue); margin-bottom: var(--tbj-space-8);
  padding-bottom: var(--tbj-space-4); border-bottom: 2px solid var(--tbj-gray-100);
}

/* ── No Results ────────────────────────────────────────────────────────── */
.tbj-no-results {
  text-align: center; padding: var(--tbj-space-16) 0;
  max-width: 560px; margin-inline: auto;
}
.tbj-no-results__icon { font-size: 4rem; margin-bottom: var(--tbj-space-5); }
.tbj-no-results__title {
  font-family: var(--tbj-font-heading); font-size: var(--tbj-text-2xl);
  color: var(--tbj-blue); margin-bottom: var(--tbj-space-4);
}
.tbj-no-results__text { color: var(--tbj-gray-500); margin-bottom: var(--tbj-space-8); }
.tbj-no-results__actions { display: flex; flex-direction: column; align-items: center; gap: var(--tbj-space-5); }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.tbj-footer { background: linear-gradient(160deg, #111827 0%, #0d1420 100%); color: rgba(255,255,255,.8); }
.tbj-footer__top { padding: var(--tbj-space-20) 0 var(--tbj-space-16); }
.tbj-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: var(--tbj-space-10);
}
.tbj-footer__logo { display: block; text-decoration: none; margin-bottom: var(--tbj-space-5); }
.tbj-logo-text--footer .tbj-logo-name  { color: var(--tbj-white); }
.tbj-logo-text--footer .tbj-logo-tagline { color: var(--tbj-saffron-light); }
.tbj-footer__brand-desc {
  font-size: var(--tbj-text-sm); line-height: 1.75;
  color: rgba(255,255,255,.65); margin-bottom: var(--tbj-space-6);
}
.tbj-footer__social { display: flex; gap: var(--tbj-space-3); flex-wrap: wrap; }
.tbj-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--tbj-radius);
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  text-decoration: none; transition: var(--tbj-transition);
  border: 1px solid rgba(255,255,255,.1);
}
.tbj-social-icon:hover {
  background: var(--tbj-saffron); color: var(--tbj-white);
  border-color: var(--tbj-saffron); transform: translateY(-3px);
  box-shadow: var(--tbj-shadow-saffron);
}
.tbj-footer__col-title {
  font-family: var(--tbj-font-heading); font-size: var(--tbj-text-lg);
  color: var(--tbj-white); margin-bottom: var(--tbj-space-5);
  padding-bottom: var(--tbj-space-3); border-bottom: 2px solid var(--tbj-saffron);
  display: inline-block;
}
.tbj-footer__menu { list-style: none; }
.tbj-footer__menu li { margin-bottom: var(--tbj-space-2); }
.tbj-footer__menu a {
  font-size: var(--tbj-text-sm); color: rgba(255,255,255,.65);
  text-decoration: none; display: flex; align-items: center;
  gap: var(--tbj-space-2); transition: var(--tbj-transition);
}
.tbj-footer__menu a::before {
  content: ''; width: 6px; height: 6px;
  border-radius: var(--tbj-radius-full); background: var(--tbj-saffron);
  flex-shrink: 0; transition: transform 0.2s;
}
.tbj-footer__menu a:hover { color: var(--tbj-white); padding-left: var(--tbj-space-1); }
.tbj-footer__menu a:hover::before { transform: scale(1.4); }

.tbj-footer__newsletter-desc {
  font-size: var(--tbj-text-sm); color: rgba(255,255,255,.65);
  margin-bottom: var(--tbj-space-4); line-height: 1.7;
}
.tbj-newsletter-form { display: flex; flex-direction: column; gap: var(--tbj-space-3); }
.tbj-newsletter-form__input {
  width: 100%; padding: 0.75em 1em;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--tbj-radius); color: var(--tbj-white);
  font-size: var(--tbj-text-sm); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tbj-newsletter-form__input::placeholder { color: rgba(255,255,255,.4); }
.tbj-newsletter-form__input:focus {
  border-color: var(--tbj-saffron); box-shadow: 0 0 0 3px rgba(255,107,0,.15);
  background: rgba(255,255,255,.12);
}
.tbj-newsletter-form__submit { position: relative; }
.tbj-newsletter-form__submit-loading { display: none; }
.tbj-newsletter-form__submit.is-loading .tbj-newsletter-form__submit-text { opacity: 0; }
.tbj-newsletter-form__submit.is-loading .tbj-newsletter-form__submit-loading { display: flex; position: absolute; }
@keyframes tbj-spin { to { transform: rotate(360deg); } }
.tbj-spinner { animation: tbj-spin 0.7s linear infinite; }
.tbj-newsletter-form__message {
  font-size: var(--tbj-text-sm); padding: var(--tbj-space-2) var(--tbj-space-3);
  border-radius: var(--tbj-radius); min-height: 1em;
}
.tbj-newsletter-form__message.success { background: rgba(37,211,102,.15); color: #4ade80; }
.tbj-newsletter-form__message.error   { background: rgba(239,68,68,.15);  color: #fca5a5; }

.tbj-footer__contact-info {
  margin-top: var(--tbj-space-5); display: flex; flex-direction: column; gap: var(--tbj-space-3);
}
.tbj-footer__contact-item {
  display: flex; align-items: flex-start; gap: var(--tbj-space-3);
  font-size: var(--tbj-text-sm); color: rgba(255,255,255,.65); line-height: 1.5;
}
.tbj-footer__contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--tbj-saffron); }
.tbj-footer__contact-item a { color: rgba(255,255,255,.65); text-decoration: none; }
.tbj-footer__contact-item a:hover { color: var(--tbj-white); }
.tbj-footer__contact-item address { font-style: normal; }

.tbj-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: var(--tbj-space-5) 0;
}
.tbj-footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--tbj-space-3);
  max-width: var(--tbj-container-max); margin-inline: auto;
  padding-inline: var(--tbj-container-pad);
}
.tbj-footer__copyright {
  font-size: var(--tbj-text-sm); color: rgba(255,255,255,.5); margin: 0;
}
.tbj-footer__copyright a { color: rgba(255,255,255,.7); text-decoration: none; }
.tbj-footer__copyright a:hover { color: var(--tbj-saffron); }
.tbj-footer__made-with {
  font-size: var(--tbj-text-sm); color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: var(--tbj-space-1); margin: 0;
}
.tbj-heart { color: #ef4444; animation: tbj-heartbeat 1.4s ease-in-out infinite; display: inline-block; }
@keyframes tbj-heartbeat {
  0%,100% { transform: scale(1); } 14% { transform: scale(1.2); }
  28% { transform: scale(1); }      42% { transform: scale(1.15); }
  70% { transform: scale(1); }
}
.tbj-footer__bottom-menu { display: flex; list-style: none; gap: var(--tbj-space-4); flex-wrap: wrap; }
.tbj-footer__bottom-menu a {
  font-size: var(--tbj-text-xs); color: rgba(255,255,255,.45); text-decoration: none; transition: color 0.2s;
}
.tbj-footer__bottom-menu a:hover { color: var(--tbj-saffron-light); }

/* ── Floating WhatsApp Button ──────────────────────────────────────────── */
.tbj-whatsapp-fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 60px; height: 60px; border-radius: var(--tbj-radius-full);
  background: var(--tbj-wa-green); color: var(--tbj-white);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,.5);
  animation: tbj-bounce 2.5s ease-in-out infinite;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.tbj-whatsapp-fab:hover {
  background: var(--tbj-wa-green-dark); color: var(--tbj-white);
  animation: none; transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,.65);
}
@keyframes tbj-bounce {
  0%,80%,100% { transform: translateY(0); }
  40%          { transform: translateY(-8px); }
  60%          { transform: translateY(-4px); }
}
.tbj-whatsapp-fab__tooltip {
  position: absolute; right: calc(100% + 10px); white-space: nowrap;
  background: var(--tbj-gray-900); color: var(--tbj-white);
  font-size: var(--tbj-text-xs); font-weight: 500;
  padding: 0.4em 0.8em; border-radius: var(--tbj-radius);
  pointer-events: none; opacity: 0; transform: translateX(8px);
  transition: opacity 0.2s, transform 0.2s;
}
.tbj-whatsapp-fab:hover .tbj-whatsapp-fab__tooltip { opacity: 1; transform: translateX(0); }

/* ── 404 Page ──────────────────────────────────────────────────────────── */
.tbj-404-page {
  min-height: calc(100vh - var(--tbj-header-height));
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--tbj-cream) 0%, var(--tbj-white) 60%);
  padding: calc(var(--tbj-header-height) + 4rem) 0 5rem;
  position: relative; overflow: hidden;
}
.tbj-404-page__inner {
  text-align: center; position: relative; z-index: 1;
  max-width: 700px; margin-inline: auto;
}
.tbj-404-page__bg-number {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--tbj-font-heading);
  font-size: clamp(160px, 25vw, 300px); font-weight: 900;
  color: var(--tbj-gray-100); letter-spacing: -0.05em; line-height: 1;
  pointer-events: none; user-select: none; z-index: 0;
}
.tbj-404-page__icon { color: var(--tbj-saffron); margin: 0 auto var(--tbj-space-5); position: relative; z-index: 1; }
.tbj-404-page__code {
  font-family: var(--tbj-font-heading);
  font-size: clamp(5rem, 12vw, 9rem); font-weight: 900;
  line-height: 1; margin-bottom: var(--tbj-space-4);
  letter-spacing: -0.04em; position: relative; z-index: 1;
}
.tbj-404-page__code-four { color: var(--tbj-saffron); }
.tbj-404-page__code-zero { color: var(--tbj-blue); }
.tbj-404-page__title {
  font-family: var(--tbj-font-heading);
  font-size: clamp(var(--tbj-text-xl), 3vw, var(--tbj-text-3xl));
  color: var(--tbj-blue); margin-bottom: var(--tbj-space-4);
}
.tbj-404-page__subtitle {
  font-size: var(--tbj-text-lg); color: var(--tbj-gray-500);
  max-width: 480px; margin-inline: auto; margin-bottom: var(--tbj-space-10); line-height: 1.7;
}
.tbj-404-page__search { margin-bottom: var(--tbj-space-10); }
.tbj-404-page__search-label { font-size: var(--tbj-text-sm); color: var(--tbj-gray-500); margin-bottom: var(--tbj-space-3); }
.tbj-404-page__suggestions-label { font-size: var(--tbj-text-sm); color: var(--tbj-gray-500); margin-bottom: var(--tbj-space-4); }
.tbj-404-page__links {
  display: flex; flex-wrap: wrap; gap: var(--tbj-space-3); justify-content: center;
}
.tbj-404-dots { display: flex; gap: var(--tbj-space-3); justify-content: center; flex-wrap: wrap; margin-top: var(--tbj-space-12); }
.tbj-404-dot {
  width: 10px; height: 10px; border-radius: var(--tbj-radius-full);
  background: var(--tbj-saffron); opacity: 0.3;
  animation: tbj-dot-pulse 2s ease-in-out infinite;
}
.tbj-404-dot:nth-child(2n)   { background: var(--tbj-blue); animation-delay: 0.3s; }
.tbj-404-dot:nth-child(3n)   { animation-delay: 0.6s; opacity: 0.2; }
.tbj-404-dot:nth-child(4n)   { animation-delay: 0.9s; }
.tbj-404-dot:nth-child(5n)   { animation-delay: 1.2s; opacity: 0.4; }
@keyframes tbj-dot-pulse {
  0%,100% { transform: scale(1); opacity: 0.3; }
  50%     { transform: scale(1.6); opacity: 0.7; }
}

/* ── Page Links ────────────────────────────────────────────────────────── */
.tbj-page-links {
  display: flex; align-items: center; gap: var(--tbj-space-2);
  padding: var(--tbj-space-6) 0; border-top: 1px solid var(--tbj-gray-100); margin-top: var(--tbj-space-8);
}
.tbj-page-links__label { font-size: var(--tbj-text-sm); font-weight: 600; color: var(--tbj-gray-500); }
.tbj-page-links__item a,
.tbj-page-links__item span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid var(--tbj-gray-200);
  border-radius: var(--tbj-radius); font-size: var(--tbj-text-sm); font-weight: 500;
  color: var(--tbj-blue); text-decoration: none; transition: var(--tbj-transition);
}
.tbj-page-links__item span {
  background: var(--tbj-saffron); border-color: var(--tbj-saffron); color: var(--tbj-white);
}
.tbj-page-links__item a:hover { background: var(--tbj-blue); border-color: var(--tbj-blue); color: var(--tbj-white); }

/* ── Main Content Offset ───────────────────────────────────────────────── */
.tbj-main > *:first-child:not(.tbj-page-hero):not(.tbj-post-hero):not(.tbj-archive-hero):not(.tbj-404-page):not(.tbj-page-title-bar) {
  padding-top: var(--tbj-header-height);
}

/* ── Responsive (tbj- classes) ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tbj-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .tbj-post-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --tbj-header-height: 64px; }

  /* Header: hide desktop actions — WhatsApp + Book Now live in mobile panel */
  .tbj-header__nav     { display: none; }
  .tbj-header__actions { display: none; }
  .tbj-hamburger       { display: flex; }

  /* Header inner: tighten so logo + hamburger fit with padding */
  .tbj-header__inner { gap: 0; padding-inline: 1rem; justify-content: space-between; }

  /* Logo: smaller text on mobile */
  .tbj-logo-icon  { font-size: 1.4rem; }
  .tbj-logo-name  { font-size: 1rem; }
  .tbj-logo-tagline { font-size: 0.68rem; }

  /* Page / post heroes */
  .tbj-page-hero,.tbj-post-hero { min-height: 300px; padding-bottom: 2rem; }
  .tbj-post-hero__meta { gap: var(--tbj-space-3); }

  /* Blog / post layout */
  .tbj-post-grid { grid-template-columns: 1fr; }
  .tbj-author-bio__inner { flex-direction: column; align-items: center; text-align: center; }
  .tbj-post-nav { grid-template-columns: 1fr; }
  .tbj-post-nav__next { justify-content: flex-start; }
  .tbj-post-nav a { max-width: 100%; }

  /* Footer */
  .tbj-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .tbj-footer__top  { padding: 3rem 0 2.5rem; }
  .tbj-footer__bottom-inner { flex-direction: column; align-items: center; text-align: center; }

  /* 404 */
  .tbj-404-page__links { flex-direction: column; align-items: center; }
  .tbj-404-page__links .tbj-btn { width: 100%; max-width: 280px; justify-content: center; }

  /* WhatsApp FAB */
  .tbj-whatsapp-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; }

  /* Buttons: prevent overflow */
  .tbj-btn { white-space: nowrap; }

  /* Single trip booking sidebar */
  .tbj-trip-layout { grid-template-columns: 1fr; }
  .tbj-trip-sidebar { position: static; }

  /* Package / destination cards */
  .tbj-package-grid { grid-template-columns: 1fr; }
  .tbj-dest-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  :root { --tbj-header-height: 60px; }

  .tbj-post-hero__meta { flex-direction: column; align-items: flex-start; gap: var(--tbj-space-2); }
  .tbj-footer__bottom-menu { justify-content: center; }

  /* Destination grid: single column on very small screens */
  .tbj-dest-grid { grid-template-columns: 1fr; }

  /* Prevent any inline text from overflowing card boundaries */
  .tbj-card-title, .tbj-card-price { overflow-wrap: break-word; word-break: break-word; }
}

/* ==========================================================================
   LOGO — Custom logo (uploaded via Customizer → Site Identity)
   ========================================================================== */

/* ── Header logo link wrapper ── */
.tbj-header__logo .custom-logo-link,
.tbj-logo-link .custom-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

/* ── Header logo image ── */
.tbj-header__logo .custom-logo,
.tbj-logo-link .custom-logo {
  display: block;
  max-height: 72px;       /* default; overridden by tbj_logo_max_height Customizer setting */
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.25s ease, filter 0.25s ease;
  /* keep the logo crisp on retina screens */
  image-rendering: -webkit-optimize-contrast;
}

/* Slight opacity lift on hover */
.tbj-header__logo .custom-logo-link:hover .custom-logo {
  opacity: 0.88;
}

/* ── Transparent header (hero pages — before scrolling) ──
   The logo has a white background. On the transparent hero header the logo
   still looks fine because the hero has a dark overlay behind it.
   If you use a transparent-PNG logo, no filter is needed.
   If you want a fully white logo on transparent header, uncomment below. */
/*
.tbj-header:not(.is-scrolled) .custom-logo {
  filter: brightness(0) invert(1);
}
*/

/* ── Scrolled / solid white header ── */
.tbj-header.is-scrolled .custom-logo {
  /* logo shows at 100% color — no filter needed */
}

/* ── Mobile header logo ── */
@media (max-width: 768px) {
  /* Header is 64px on mobile — logo must stay inside */
  .tbj-header__logo .custom-logo,
  .tbj-logo-link .custom-logo {
    max-height: 44px;
  }
  /* Prevent logo from ever spilling outside the fixed header */
  .tbj-header__logo,
  .tbj-logo-link {
    overflow: hidden;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 400px) {
  .tbj-header__logo .custom-logo,
  .tbj-logo-link .custom-logo {
    max-height: 36px;
  }
}

/* ── Footer logo ──
   White capsule behind logo so orange+navy SVG reads on any dark background.
   Inline style on the div is the primary rule; CSS below is a reinforcement. */
.tbj-footer__logo {
  display: inline-block !important;
  background: rgba(255, 255, 255, 0.93) !important;
  border-radius: 10px !important;
  padding: 8px 18px !important;
  margin-bottom: var(--tbj-space-5);
}

.tbj-footer__logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: transparent;
  padding: 0;
}

.tbj-footer__logo:hover {
  background: rgba(255, 255, 255, 1) !important;
}

.tbj-footer__logo .custom-logo {
  display: block;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ── Mobile menu panel logo ──
   White capsule behind logo so the navy+orange SVG logo reads clearly
   against the dark blue mobile menu header (same treatment as footer logo). */
.tbj-mobile-menu__logo {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 6px 14px;
}

.tbj-mobile-menu__logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.tbj-mobile-menu__logo .custom-logo {
  display: block;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ── Fallback text logo — shown when no image logo is uploaded ── */
.tbj-logo-text { display: flex; align-items: center; gap: var(--tbj-space-2); }
.tbj-logo-icon { font-size: 1.75rem; line-height: 1; flex-shrink: 0; }
.tbj-logo-words { display: flex; flex-direction: column; line-height: 1.15; }
.tbj-logo-name {
  font-family: var(--tbj-font-heading);
  font-size: var(--tbj-text-lg);
  font-weight: 700;
  color: var(--tbj-white);
  transition: color 0.3s ease;
  white-space: nowrap;
}
.tbj-logo-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.75);
  transition: color 0.3s ease;
  white-space: nowrap;
}
.tbj-header.is-scrolled .tbj-logo-name    { color: var(--tbj-blue); }
.tbj-header.is-scrolled .tbj-logo-tagline { color: var(--tbj-saffron); }

@media (max-width: 768px) {
  .tbj-logo-name    { font-size: 1rem; }
  .tbj-logo-tagline { font-size: 0.6rem; }
  .tbj-logo-icon    { font-size: 1.4rem; }
}
