/* ============================================================
   TravelBlog Home Page - Custom Styles
   Brand Color: #FF6B35 (Orange), #1A1A2E (Dark)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --tb-orange: #FF6B35;
  --tb-orange-dark: #E55A24;
  --tb-orange-light: #FF8C5A;
  --tb-dark: #1A1A2E;
  --tb-dark-2: #16213E;
  --tb-gray: #6B7280;
  --tb-gray-light: #F3F4F6;
  --tb-cream: #FFF8F0;
  --tb-white: #FFFFFF;
  --tb-text: #2D3748;
  --tb-font: 'Outfit', sans-serif;
  --tb-serif: 'Playfair Display', serif;
  --tb-radius: 16px;
  --tb-radius-sm: 8px;
  --tb-radius-lg: 24px;
  --tb-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  --tb-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --tb-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset for Home Page */
.tb-home-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.tb-home-page {
  font-family: var(--tb-font);
  color: var(--tb-text);
  overflow-x: hidden;
  width: 100%;
}

/* ============================================================
   NAVIGATION / HEADER
   ============================================================ */
.tb-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--tb-transition);
}

.tb-nav.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.tb-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.tb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.tb-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--tb-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.tb-logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--tb-white);
  letter-spacing: -0.5px;
}

.tb-logo-text span {
  color: var(--tb-orange);
}

.tb-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.tb-nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--tb-transition);
  position: relative;
}

.tb-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tb-orange);
  transition: var(--tb-transition);
}

.tb-nav-links a:hover {
  color: var(--tb-white);
}

.tb-nav-links a:hover::after {
  width: 100%;
}

.tb-nav-cta {
  background: var(--tb-orange);
  color: var(--tb-white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--tb-transition);
  white-space: nowrap;
}

.tb-nav-cta:hover {
  background: var(--tb-orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.tb-nav-cta::after {
  display: none !important;
}

.tb-nav-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--tb-white);
  font-size: 28px;
  cursor: pointer;
  padding: 4px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.tb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.tb-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-travel-bg.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.tb-hero-bg.animated {
  transform: scale(1);
}

.tb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(26, 26, 46, 0.75) 0%,
      rgba(26, 26, 46, 0.45) 50%,
      rgba(0, 0, 0, 0.2) 100%);
}

.tb-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 120px;
  width: 100%;
}

.tb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid rgba(255, 107, 53, 0.4);
  backdrop-filter: blur(10px);
  color: var(--tb-orange-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease forwards;
}

.tb-hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--tb-orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.tb-hero-title {
  font-family: var(--tb-font);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--tb-white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  max-width: 700px;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.tb-hero-title span {
  color: var(--tb-orange);
  font-style: italic;
  font-family: var(--tb-serif);
}

.tb-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 48px;
  font-weight: 400;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.tb-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.tb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--tb-orange);
  color: var(--tb-white);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--tb-transition);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
  border: none;
  cursor: pointer;
}

.tb-btn-primary:hover {
  background: var(--tb-orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
  color: var(--tb-white);
}

.tb-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--tb-white);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--tb-transition);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.tb-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
  color: var(--tb-white);
}

.tb-hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp 0.6s 0.4s ease both;
}

.tb-hero-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--tb-white);
  line-height: 1;
}

.tb-hero-stat-num span {
  color: var(--tb-orange);
}

.tb-hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Scroll indicator */
.tb-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s 1s ease both;
  cursor: pointer;
}

.tb-scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.tb-scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--tb-orange);
  border-radius: 2px;
  animation: scrollDown 2s ease infinite;
}

.tb-scroll-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.tb-section {
  padding: 100px 0;
}

.tb-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.tb-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tb-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tb-section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--tb-orange);
  border-radius: 2px;
}

.tb-section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--tb-dark);
  line-height: 1.15;
  letter-spacing: -1px;
}

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

.tb-section-subtitle {
  font-size: 17px;
  color: var(--tb-gray);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 16px;
}

/* ============================================================
   PACKAGES SECTION
   ============================================================ */
.tb-packages {
  background: var(--tb-white);
}

.tb-packages-header {
  text-align: center;
  margin-bottom: 64px;
}

.tb-packages-header .tb-section-tag {
  justify-content: center;
}

.tb-packages-header .tb-section-tag::before {
  display: none;
}

.tb-packages-header .tb-section-subtitle {
  margin: 16px auto 0;
}

.tb-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tb-package-card {
  position: relative;
  border-radius: var(--tb-radius-lg);
  overflow: hidden;
  background: var(--tb-white);
  box-shadow: var(--tb-shadow);
  transition: var(--tb-transition);
  cursor: pointer;
}

.tb-package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--tb-shadow-lg);
}

.tb-package-card:nth-child(2) {
  transform: translateY(-20px);
}

.tb-package-card:nth-child(2):hover {
  transform: translateY(-30px);
}

.tb-package-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.tb-package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tb-package-card:hover .tb-package-img-wrap img {
  transform: scale(1.08);
}

.tb-package-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--tb-orange);
  color: var(--tb-white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.tb-package-info {
  padding: 24px;
}

.tb-package-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.tb-package-stars {
  color: #FBBF24;
  font-size: 14px;
}

.tb-package-rating-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--tb-gray);
}

.tb-package-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--tb-dark);
  margin-bottom: 6px;
}

.tb-package-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--tb-gray);
  font-size: 13px;
  font-weight: 500;
}

.tb-package-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tb-package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #F3F4F6;
}

.tb-package-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--tb-orange);
}

.tb-package-price sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--tb-gray);
}

.tb-package-btn {
  background: var(--tb-dark);
  color: var(--tb-white);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--tb-transition);
}

.tb-package-btn:hover {
  background: var(--tb-orange);
  color: var(--tb-white);
  transform: translateY(-2px);
}

/* ============================================================
   ABOUT / PASSION SECTION
   ============================================================ */
.tb-passion {
  background: var(--tb-cream);
  overflow: hidden;
}

.tb-passion-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tb-passion-img-container {
  position: relative;
}

.tb-passion-img-main {
  width: 100%;
  border-radius: var(--tb-radius-lg);
  box-shadow: var(--tb-shadow-lg);
  display: block;
}

.tb-passion-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--tb-radius);
  border: 4px solid var(--tb-white);
  box-shadow: var(--tb-shadow);
}

.tb-passion-badge-float {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--tb-white);
  border-radius: var(--tb-radius);
  padding: 16px 20px;
  box-shadow: var(--tb-shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.tb-passion-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--tb-orange);
  border-radius: var(--tb-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.tb-passion-badge-text strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--tb-dark);
}

.tb-passion-badge-text small {
  color: var(--tb-gray);
  font-size: 12px;
}

.tb-passion-content {
  padding-right: 20px;
}

.tb-passion-features {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tb-passion-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.tb-passion-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--tb-radius-sm);
  background: rgba(255, 107, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tb-passion-feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--tb-dark);
  margin-bottom: 4px;
}

.tb-passion-feature-text p {
  font-size: 14px;
  color: var(--tb-gray);
  line-height: 1.6;
}

/* ============================================================
   DESTINATIONS SECTION
   ============================================================ */
.tb-destinations {
  background: var(--tb-white);
}

.tb-destinations-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}

.tb-destinations-content {
  position: sticky;
  top: 100px;
}

.tb-destinations-content .tb-section-subtitle {
  max-width: 280px;
}

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

.tb-dest-card {
  position: relative;
  border-radius: var(--tb-radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--tb-gray-light);
  transition: var(--tb-transition);
}

.tb-dest-card:hover {
  transform: scale(1.03);
  box-shadow: var(--tb-shadow);
  z-index: 2;
}

.tb-dest-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.tb-dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--tb-transition);
}

.tb-dest-card:hover .tb-dest-card-overlay {
  opacity: 1;
}

.tb-dest-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--tb-transition);
}

.tb-dest-card:hover .tb-dest-card-info {
  transform: translateY(0);
  opacity: 1;
}

.tb-dest-card-name {
  color: var(--tb-white);
  font-size: 18px;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}

.tb-dest-card-count {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.tb-dest-card-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--tb-white);
  font-size: 16px;
  font-weight: 700;
  transition: var(--tb-transition);
}

.tb-dest-card:hover .tb-dest-card-label {
  opacity: 0;
}

/* ============================================================
   CRAFTING JOURNEYS SECTION
   ============================================================ */
.tb-crafting {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 60%, #0F3460 100%);
  position: relative;
  overflow: hidden;
}

.tb-crafting::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
}

.tb-crafting::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
}

.tb-crafting-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tb-crafting .tb-section-title {
  color: var(--tb-white);
}

.tb-crafting .tb-section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.tb-crafting-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.tb-crafting-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--tb-radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
  transition: var(--tb-transition);
  cursor: pointer;
}

.tb-crafting-card:hover {
  background: rgba(255, 107, 53, 0.12);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateX(8px);
}

.tb-crafting-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 107, 53, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.tb-crafting-card h4 {
  color: var(--tb-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tb-crafting-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.5;
}

.tb-crafting-img-side {
  position: relative;
}

.tb-crafting-img-main {
  width: 100%;
  border-radius: var(--tb-radius-lg);
  display: block;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.tb-crafting-counter {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--tb-orange);
  border-radius: var(--tb-radius);
  padding: 20px 28px;
  text-align: center;
}

.tb-crafting-counter-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--tb-white);
  display: block;
  line-height: 1;
}

.tb-crafting-counter-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 4px;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.tb-reviews {
  background: var(--tb-white);
}

.tb-reviews-header {
  text-align: center;
  margin-bottom: 64px;
}

.tb-reviews-header .tb-section-tag {
  justify-content: center;
}

.tb-reviews-header .tb-section-tag::before {
  display: none;
}

.tb-reviews-header .tb-section-title {
  font-size: 2.5rem;
}

.tb-reviews-header .tb-section-subtitle {
  margin: 16px auto 0;
}

.tb-reviews-overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.tb-reviews-quote-icon {
  color: var(--tb-orange);
  font-size: 48px;
  line-height: 1;
  font-family: 'Times New Roman', serif;
  display: block;
  margin-bottom: 8px;
  opacity: 0.3;
}

.tb-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tb-review-card {
  background: var(--tb-white);
  border: 1px solid #F0F0F0;
  border-radius: var(--tb-radius-lg);
  padding: 32px;
  transition: var(--tb-transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tb-review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tb-shadow);
  border-color: rgba(255, 107, 53, 0.2);
}

.tb-review-stars {
  color: #FBBF24;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.tb-review-text {
  font-size: 15px;
  color: var(--tb-gray);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.tb-reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tb-reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 107, 53, 0.2);
}

.tb-reviewer-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--tb-white);
  flex-shrink: 0;
}

.tb-reviewer-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--tb-dark);
}

.tb-reviewer-location {
  font-size: 12px;
  color: var(--tb-gray);
  margin-top: 2px;
}

/* ============================================================
   CTA SECTION (Orange Banner)
   ============================================================ */
.tb-cta {
  background: var(--tb-orange);
  position: relative;
  overflow: hidden;
}

.tb-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.tb-cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.tb-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.tb-cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--tb-white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.tb-cta-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 36px;
}

.tb-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.tb-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--tb-white);
  color: var(--tb-orange);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  transition: var(--tb-transition);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tb-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  color: var(--tb-orange-dark);
}

.tb-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--tb-white);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--tb-transition);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.tb-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--tb-white);
  transform: translateY(-3px);
  color: var(--tb-white);
}

.tb-cta-img {
  width: 360px;
  object-fit: contain;
  margin-bottom: -100px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.tb-footer {
  background: var(--tb-dark);
  color: var(--tb-white);
  padding: 80px 0 0;
}

.tb-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.tb-footer-brand-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 28px;
  max-width: 300px;
}

.tb-footer-social {
  display: flex;
  gap: 12px;
}

.tb-footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 16px;
  transition: var(--tb-transition);
}

.tb-footer-social-link:hover {
  background: var(--tb-orange);
  border-color: var(--tb-orange);
  color: var(--tb-white);
  transform: translateY(-3px);
}

.tb-footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--tb-white);
  margin-bottom: 24px;
}

.tb-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tb-footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--tb-transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tb-footer-links a:hover {
  color: var(--tb-orange);
  gap: 10px;
}

.tb-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tb-footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.tb-footer-copyright span {
  color: var(--tb-orange);
}

.tb-footer-bottom-links {
  display: flex;
  gap: 24px;
}

.tb-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 13px;
  transition: var(--tb-transition);
}

.tb-footer-bottom-links a:hover {
  color: var(--tb-orange);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.tb-float {
  animation: float 4s ease-in-out infinite;
}

/* Scroll Reveal */
.tb-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.tb-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.tb-reveal-delay-1 {
  transition-delay: 0.1s;
}

.tb-reveal-delay-2 {
  transition-delay: 0.2s;
}

.tb-reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tb-packages-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tb-package-card:nth-child(3) {
    display: none;
  }

  .tb-passion-inner,
  .tb-crafting-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tb-destinations-inner {
    grid-template-columns: 1fr;
  }

  .tb-destinations-content {
    position: static;
  }

  .tb-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tb-reviews-grid> :last-child {
    display: none;
  }

  .tb-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .tb-nav-mobile-toggle {
    display: block;
  }

  .tb-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    padding: 30px 40px;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
  }

  .tb-nav-links.open {
    display: flex;
  }

  .tb-hero-stats {
    gap: 24px;
  }

  .tb-section {
    padding: 64px 0;
  }

  .tb-section-inner {
    padding: 0 20px;
  }

  .tb-hero-content {
    padding: 0 20px;
    padding-top: 100px;
  }

  .tb-packages-grid,
  .tb-reviews-grid,
  .tb-destinations-grid {
    grid-template-columns: 1fr;
  }

  .tb-package-card:nth-child(2) {
    transform: translateY(0);
  }

  .tb-cta-inner {
    grid-template-columns: 1fr;
  }

  .tb-cta-img {
    display: none;
  }

  .tb-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tb-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   BLOG LISTING SECTION
   ============================================================ */
.tb-blog {
  background: var(--tb-gray-light);
}

/* Section header with title + "View All" button inline */
.tb-blog-header {
  margin-bottom: 56px;
}

.tb-blog-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

/* Outline button variant (dark) */
.tb-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--tb-dark);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid rgba(26, 26, 46, 0.25);
  transition: var(--tb-transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.tb-btn-outline-dark:hover {
  background: var(--tb-orange);
  border-color: var(--tb-orange);
  color: var(--tb-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

/* ---- Main 2-column layout:  featured left │ side stack right ---- */
.tb-blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* ============================================================
   FEATURED POST (left, tall card)
   ============================================================ */
.tb-blog-featured {
  display: flex;
  flex-direction: column;
  background: var(--tb-white);
  border-radius: var(--tb-radius-lg);
  overflow: hidden;
  box-shadow: var(--tb-shadow);
  transition: var(--tb-transition);
  height: 100%;
}

.tb-blog-featured:hover {
  transform: translateY(-6px);
  box-shadow: var(--tb-shadow-lg);
}

.tb-blog-featured-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}

.tb-blog-featured-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.tb-blog-featured:hover .tb-blog-featured-img {
  transform: scale(1.05);
}

.tb-blog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.tb-blog-featured-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* ============================================================
   SHARED META / CATEGORY STYLES
   ============================================================ */
.tb-blog-meta,
.tb-blog-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
}

.tb-blog-cat {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 107, 53, 0.12);
  color: var(--tb-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.tb-blog-date,
.tb-blog-read-time {
  color: var(--tb-gray);
  font-weight: 500;
}

.tb-blog-meta-sep {
  color: var(--tb-gray);
  opacity: 0.4;
}

/* ============================================================
   FEATURED POST: TITLE, EXCERPT, AUTHOR ROW
   ============================================================ */
.tb-blog-featured-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--tb-dark);
  line-height: 1.3;
  letter-spacing: -0.4px;
}

.tb-blog-featured-title a {
  color: inherit;
  text-decoration: none;
  transition: var(--tb-transition);
}

.tb-blog-featured-title a:hover {
  color: var(--tb-orange);
}

.tb-blog-featured-excerpt {
  font-size: 15px;
  color: var(--tb-gray);
  line-height: 1.7;
  flex: 1;
}

/* Author row */
.tb-blog-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #F0F0F0;
}

.tb-blog-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tb-orange), var(--tb-orange-dark));
  color: var(--tb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.tb-blog-author-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--tb-dark);
}

.tb-blog-author-role {
  display: block;
  font-size: 12px;
  color: var(--tb-gray);
  margin-top: 1px;
}

.tb-blog-read-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--tb-orange);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--tb-transition);
}

.tb-blog-read-link span {
  transition: transform 0.3s ease;
}

.tb-blog-read-link:hover {
  color: var(--tb-orange-dark);
}

.tb-blog-read-link:hover span {
  transform: translateX(4px);
}

/* ============================================================
   SIDE CARDS STACK (right column)
   ============================================================ */
.tb-blog-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

/* Individual side blog card */
.tb-blog-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  background: var(--tb-white);
  border-radius: var(--tb-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #F0F0F0;
  transition: var(--tb-transition);
  flex: 1;
}

.tb-blog-card:hover {
  transform: translateX(6px);
  box-shadow: var(--tb-shadow);
  border-color: rgba(255, 107, 53, 0.15);
}

/* Card image */
.tb-blog-card-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.tb-blog-card-img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.tb-blog-card-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--tb-orange);
  color: var(--tb-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}

/* Card body */
.tb-blog-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.tb-blog-card-meta {
  font-size: 12px;
}

.tb-blog-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--tb-dark);
  line-height: 1.35;
  letter-spacing: -0.2px;
}

.tb-blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: var(--tb-transition);
}

.tb-blog-card-title a:hover {
  color: var(--tb-orange);
}

.tb-blog-card-excerpt {
  font-size: 13px;
  color: var(--tb-gray);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tb-blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--tb-orange);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
  transition: var(--tb-transition);
}

.tb-blog-card-link span {
  transition: transform 0.3s ease;
}

.tb-blog-card-link:hover {
  color: var(--tb-orange-dark);
}

.tb-blog-card-link:hover span {
  transform: translateX(4px);
}

/* ============================================================
   BLOG RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tb-blog-grid {
    grid-template-columns: 1fr;
  }

  .tb-blog-featured-img {
    height: 280px;
  }

  .tb-blog-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .tb-blog-card {
    grid-template-columns: 1fr;
  }

  .tb-blog-card-img {
    min-height: 160px;
  }
}

@media (max-width: 768px) {
  .tb-blog-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .tb-blog-side {
    grid-template-columns: 1fr;
  }

  .tb-blog-card {
    grid-template-columns: 130px 1fr;
  }

  .tb-blog-featured-img {
    height: 220px;
  }

  .tb-blog-featured-body {
    padding: 20px;
  }

  .tb-blog-featured-title {
    font-size: 18px;
  }
}