/* ============================================================
   The Venture Hub — Design System
   tvh-redesign.css
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

/* ============================================================
   CSS Custom Properties (Design Tokens)
   ============================================================ */
:root {
  /* Brand Colours — Bold & Professional */
  --tvh-navy:        #0D1B2A;
  --tvh-navy-dark:   #060F1A;
  --tvh-navy-mid:    #1A1F3C;
  --tvh-gold:        #D4AF37;
  --tvh-gold-light:  #E2C47A;
  --tvh-gold-dark:   #A8882E;
  --tvh-white:       #FFFFFF;
  --tvh-off-white:   #F5F5F0;
  --tvh-light-bg:    #F5F5F0;
  --tvh-text:        #1E1E1E;
  --tvh-text-muted:  #3A3A3A;
  --tvh-text-light:  #6B7280;
  --tvh-border:      #D4CFC0;
  --tvh-whatsapp:    #25D366;

  /* Spacing Scale */
  --sp-xs:   4px;
  --sp-sm:   8px;
  --sp-md:   16px;
  --sp-lg:   24px;
  --sp-xl:   32px;
  --sp-2xl:  48px;
  --sp-3xl:  64px;
  --sp-4xl:  96px;
  --sp-5xl:  128px;

  /* Typography Scale */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.25rem;
  --fs-2xl:  1.5rem;
  --fs-3xl:  1.875rem;
  --fs-4xl:  2.25rem;
  --fs-5xl:  3rem;
  --fs-6xl:  3.75rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(27,43,75,0.08);
  --shadow-md:  0 4px 12px rgba(27,43,75,0.12);
  --shadow-lg:  0 8px 24px rgba(27,43,75,0.15);
  --shadow-xl:  0 16px 48px rgba(27,43,75,0.18);
  --shadow-gold: 0 4px 16px rgba(201,168,76,0.3);

  /* Transitions */
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Header Heights */
  --topbar-h:         34px;   /* top info bar */
  --header-h-desktop: 80px;
  --header-h-mobile:  68px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 1.65;
  color: var(--tvh-text);
  background: var(--tvh-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  line-height: 1.2;
}
h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}
@media (max-width: 768px) {
  .container { padding: 0 var(--sp-md); }
}

/* ============================================================
   Top Info Bar
   ============================================================ */
.tvh-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  background: var(--tvh-navy-dark);
  color: var(--tvh-text-light);
  font-size: var(--fs-sm);
  padding: 0;
  display: flex;
  align-items: center;
  text-align: center;
}
.tvh-topbar a {
  color: var(--tvh-gold-light);
  transition: color var(--transition);
}
.tvh-topbar a:hover { color: var(--tvh-white); }
.tvh-topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}
.tvh-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 640px) {
  :root { --topbar-h: 0px; }       /* topbar hidden, zero out the variable */
  .tvh-topbar { display: none; }
  .tvh-header { top: 0; }          /* topbar gone, header goes back to top */
  .tvh-hero-content { padding-top: var(--header-h-mobile); }
}

/* ============================================================
   Header / Navigation
   ============================================================ */
.tvh-header {
  position: fixed;
  top: var(--topbar-h);   /* sits below the topbar */
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h-desktop);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.tvh-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.tvh-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.tvh-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  text-decoration: none;
  flex-shrink: 0;
}
.tvh-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.tvh-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.tvh-logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--tvh-white);
  transition: color var(--transition);
}
.tvh-logo-text span {
  font-size: var(--fs-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tvh-gold-light);
  transition: color var(--transition);
}
.tvh-header.scrolled .tvh-logo-text strong { color: var(--tvh-navy); }
.tvh-header.scrolled .tvh-logo-text span   { color: var(--tvh-gold); }

/* Desktop Nav */
.tvh-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}
.tvh-nav-link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  white-space: nowrap;
  padding: 4px 0;
  position: relative;
}
.tvh-nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--tvh-gold);
  transition: width var(--transition);
}
.tvh-nav-link:hover::after,
.tvh-nav-link.active::after { width: 100%; }
.tvh-nav-link:hover { color: var(--tvh-white); }
.tvh-header.scrolled .tvh-nav-link { color: var(--tvh-navy); }
.tvh-header.scrolled .tvh-nav-link:hover { color: var(--tvh-gold); }
.tvh-nav-link.active { color: var(--tvh-gold-light); }
.tvh-header.scrolled .tvh-nav-link.active { color: var(--tvh-gold); }

/* Services Dropdown */
.tvh-dropdown {
  position: relative;
}
.tvh-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.tvh-dropdown-toggle svg {
  width: 14px; height: 14px;
  transition: transform var(--transition);
}
.tvh-dropdown:hover .tvh-dropdown-toggle svg { transform: rotate(180deg); }
.tvh-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -16px;
  background: var(--tvh-white);
  border: 1px solid var(--tvh-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 520px;
  padding: var(--sp-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 100;
}
.tvh-dropdown:hover .tvh-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.tvh-dropdown-item {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--tvh-text);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.tvh-dropdown-item:hover {
  background: var(--tvh-light-bg);
  color: var(--tvh-gold);
}

/* CTA Button in Nav */
.tvh-nav-cta {
  background: var(--tvh-gold);
  color: var(--tvh-navy) !important;
  padding: 9px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--fs-sm);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.tvh-nav-cta:hover {
  background: var(--tvh-gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.tvh-nav-cta::after { display: none !important; }

/* Hamburger */
.tvh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
.tvh-hamburger span {
  display: block;
  height: 2px;
  background: var(--tvh-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.tvh-header.scrolled .tvh-hamburger span { background: var(--tvh-navy); }
.tvh-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tvh-hamburger.open span:nth-child(2) { opacity: 0; }
.tvh-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.tvh-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--tvh-white);
  border-top: 2px solid var(--tvh-gold);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-md) var(--sp-md) var(--sp-xl);
  max-height: calc(100vh - var(--header-h-mobile));
  overflow-y: auto;
  z-index: 999;
}
.tvh-mobile-menu.open { display: block; }
.tvh-mobile-nav-link {
  display: block;
  padding: 12px var(--sp-md);
  color: var(--tvh-navy);
  font-weight: 500;
  border-bottom: 1px solid var(--tvh-border);
  transition: color var(--transition), background var(--transition);
}
.tvh-mobile-nav-link:hover {
  color: var(--tvh-gold);
  background: var(--tvh-light-bg);
}
.tvh-mobile-sub {
  padding-left: var(--sp-lg);
}
.tvh-mobile-sub .tvh-mobile-nav-link {
  font-size: var(--fs-sm);
  color: var(--tvh-text-muted);
  border-bottom: 1px solid rgba(226,220,204,0.5);
}
.tvh-mobile-cta-row {
  display: flex;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
  padding-top: var(--sp-md);
}

@media (max-width: 1023px) {
  .tvh-nav    { display: none; }
  .tvh-hamburger { display: flex; }
  .tvh-header { height: var(--header-h-mobile); }
  .tvh-logo img { height: 52px; }
}
@media (max-width: 480px) {
  .tvh-logo img { height: 44px; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--fs-base);
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition),
              box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--tvh-gold);
  color: var(--tvh-navy);
  border-color: var(--tvh-gold);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--tvh-gold-light);
  border-color: var(--tvh-gold-light);
  box-shadow: 0 6px 20px rgba(212,175,55,0.45);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--tvh-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--tvh-white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--tvh-navy);
  border-color: var(--tvh-navy);
}
.btn-outline-navy:hover {
  background: var(--tvh-navy);
  color: var(--tvh-white);
}

.btn-sm { padding: 10px 20px; font-size: var(--fs-sm); }
.btn-lg { padding: 16px 36px; font-size: var(--fs-lg); }

/* ============================================================
   Section Layout Pattern
   ============================================================ */
.tvh-section {
  padding: var(--sp-5xl) 0;
}
.tvh-section-sm {
  padding: var(--sp-3xl) 0;
}
.tvh-section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tvh-gold);
  margin-bottom: var(--sp-sm);
}
.tvh-section-heading {
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-5xl));
  margin-bottom: var(--sp-md);
}
.tvh-section-sub {
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--tvh-text-muted);
  max-width: 640px;
  line-height: 1.7;
}
.tvh-section-header {
  margin-bottom: var(--sp-3xl);
}
.tvh-section-header.center {
  text-align: center;
}
.tvh-section-header.center .tvh-section-sub { margin: 0 auto; }

/* ============================================================
   Hero — Video Background
   ============================================================ */
.tvh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--tvh-navy-dark);
}
.tvh-hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.tvh-hero-video-bg video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
}
.tvh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,26,46,0.85) 0%,
    rgba(27,43,75,0.75) 50%,
    rgba(15,26,46,0.80) 100%
  );
  z-index: 1;
}
.tvh-hero-content {
  position: relative;
  z-index: 2;
  color: var(--tvh-white);
  padding-top: var(--header-h-desktop);
}
.tvh-hero h1 {
  color: var(--tvh-white);
  font-size: clamp(2rem, 5vw, var(--fs-6xl));
  margin-bottom: var(--sp-lg);
}
.tvh-hero h1 em {
  color: var(--tvh-gold-light);
  font-style: normal;
}
.tvh-hero .hero-sub {
  font-size: clamp(var(--fs-base), 2vw, var(--fs-xl));
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: var(--sp-2xl);
  line-height: 1.7;
}
.tvh-hero-btns {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.tvh-hero-trust {
  display: flex;
  gap: var(--sp-xl);
  margin-top: var(--sp-2xl);
  flex-wrap: wrap;
}
.tvh-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.75);
}
.tvh-hero-trust-item svg {
  color: var(--tvh-gold-light);
  flex-shrink: 0;
}

/* Scroll indicator */
.tvh-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tvh-scroll-dot {
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  position: relative;
}
.tvh-scroll-dot::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--tvh-gold-light);
  border-radius: 50%;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(18px); opacity: 0; }
}

/* ============================================================
   Stats Bar
   ============================================================ */
.tvh-stats-bar {
  background: var(--tvh-navy);
  padding: var(--sp-3xl) 0;
}
.tvh-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.tvh-stat-item {
  text-align: center;
  padding: var(--sp-lg) var(--sp-md);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.tvh-stat-item:last-child { border-right: none; }
.tvh-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(var(--fs-3xl), 3.5vw, var(--fs-5xl));
  font-weight: 700;
  color: var(--tvh-gold-light);
  line-height: 1;
  display: block;
}
.tvh-stat-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  font-weight: 600;
}
@media (max-width: 640px) {
  .tvh-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tvh-stat-item:nth-child(2) { border-right: none; }
  .tvh-stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
}

/* ============================================================
   Service Cards
   ============================================================ */
.tvh-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}
@media (max-width: 900px) { .tvh-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tvh-services-grid { grid-template-columns: 1fr; } }

.tvh-card {
  background: var(--tvh-white);
  border: 1px solid var(--tvh-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.tvh-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tvh-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.tvh-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tvh-gold);
}
.tvh-card:hover::before { transform: scaleX(1); }

.tvh-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-lg);
  flex-shrink: 0;
}
.tvh-card-icon svg { color: var(--tvh-gold); }
.tvh-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-sm);
}
.tvh-card p {
  font-size: var(--fs-sm);
  color: var(--tvh-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}
.tvh-card-link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--tvh-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.tvh-card:hover .tvh-card-link { gap: 10px; }
.tvh-card-link svg { width: 16px; height: 16px; }

/* ============================================================
   Free Zone Partners Strip
   ============================================================ */
.tvh-freezone-strip {
  background: var(--tvh-off-white);
  border-top: 1px solid var(--tvh-border);
  border-bottom: 1px solid var(--tvh-border);
  padding: var(--sp-xl) 0;
}
.tvh-freezone-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  overflow-x: auto;
  padding-bottom: var(--sp-sm);
  scrollbar-width: none;
}
.tvh-freezone-inner::-webkit-scrollbar { display: none; }
.tvh-freezone-label {
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tvh-navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.tvh-freezone-divider {
  width: 1px; height: 24px;
  background: var(--tvh-border);
  flex-shrink: 0;
}
.tvh-freezone-partners {
  display: flex;
  gap: var(--sp-xl);
  flex-wrap: nowrap;
}
.tvh-freezone-partner {
  white-space: nowrap;
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--tvh-navy);
  padding: 12px 24px;
  border: 2px solid var(--tvh-navy);
  border-radius: var(--radius-md);
  background: var(--tvh-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  flex-shrink: 0;
}
.tvh-freezone-partner:hover {
  color: var(--tvh-white);
  background: var(--tvh-navy);
  border-color: var(--tvh-navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.03);
}

/* ============================================================
   Why TVH — Feature Cards
   ============================================================ */
.tvh-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
}
@media (max-width: 900px) { .tvh-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tvh-why-grid { grid-template-columns: 1fr; } }

.tvh-why-card {
  text-align: center;
  padding: var(--sp-xl);
}
.tvh-why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--tvh-navy), var(--tvh-navy-mid));
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-lg);
}
.tvh-why-icon svg { color: var(--tvh-gold-light); }
.tvh-why-card h4 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-sm);
}
.tvh-why-card p {
  font-size: var(--fs-sm);
  color: var(--tvh-text-muted);
  line-height: 1.7;
}

/* ============================================================
   Testimonials
   ============================================================ */
.tvh-testimonials-bg {
  background: var(--tvh-light-bg);
}
.tvh-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}
@media (max-width: 900px) { .tvh-testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tvh-testimonials-grid { grid-template-columns: 1fr; } }

.tvh-testimonial-card {
  background: var(--tvh-white);
  border: 1px solid var(--tvh-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  position: relative;
}
.tvh-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-xl);
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--tvh-gold-light);
  opacity: 0.3;
}
.tvh-testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-md);
  color: var(--tvh-gold);
  font-size: var(--fs-sm);
}
.tvh-testimonial-text {
  font-size: var(--fs-base);
  color: var(--tvh-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
  font-style: italic;
}
.tvh-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.tvh-testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tvh-navy), var(--tvh-gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--tvh-white);
  font-size: var(--fs-base);
  flex-shrink: 0;
}
.tvh-testimonial-name {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--tvh-navy);
}
.tvh-testimonial-role {
  font-size: var(--fs-xs);
  color: var(--tvh-text-light);
}

/* ============================================================
   Comparison Table
   ============================================================ */
.tvh-comparison {
  overflow-x: auto;
}
.tvh-comparison table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}
.tvh-comparison th {
  padding: var(--sp-md) var(--sp-lg);
  text-align: center;
  font-size: var(--fs-base);
  font-weight: 700;
  background: var(--tvh-navy);
  color: var(--tvh-white);
  border: 1px solid rgba(255,255,255,0.1);
}
.tvh-comparison th:first-child { text-align: left; }
.tvh-comparison th.tvh-col-highlight {
  background: var(--tvh-gold);
  color: var(--tvh-navy);
}
.tvh-comparison td {
  padding: var(--sp-md) var(--sp-lg);
  font-size: var(--fs-sm);
  color: var(--tvh-text-muted);
  border: 1px solid var(--tvh-border);
  text-align: center;
}
.tvh-comparison td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--tvh-text);
  background: var(--tvh-off-white);
}
.tvh-comparison tr:nth-child(even) td { background: var(--tvh-light-bg); }
.tvh-comparison tr:nth-child(even) td:first-child { background: var(--tvh-off-white); }
.tvh-comparison td.tvh-col-highlight { background: rgba(201,168,76,0.06); font-weight: 600; color: var(--tvh-navy); }
.tvh-check { color: #22c55e; font-size: var(--fs-lg); }
.tvh-cross { color: #ef4444; font-size: var(--fs-lg); }

/* ============================================================
   FAQ Accordion
   ============================================================ */
.tvh-faq-list { max-width: 768px; margin: 0 auto; }
.tvh-faq-item {
  border-bottom: 1px solid var(--tvh-border);
}
.tvh-faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding: var(--sp-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--tvh-navy);
  transition: color var(--transition);
}
.tvh-faq-question:hover { color: var(--tvh-gold); }
.tvh-faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--tvh-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.tvh-faq-icon svg {
  width: 14px; height: 14px;
  transition: transform var(--transition);
}
.tvh-faq-item.open .tvh-faq-icon {
  background: var(--tvh-gold);
  border-color: var(--tvh-gold);
}
.tvh-faq-item.open .tvh-faq-icon svg { transform: rotate(180deg); }
.tvh-faq-answer {
  font-size: var(--fs-sm);
  color: var(--tvh-text-muted);
  line-height: 1.8;
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-slow) ease, padding var(--transition-slow) ease;
  padding-bottom: 0;
}
.tvh-faq-item.open .tvh-faq-answer {
  max-height: 500px;
  padding-bottom: var(--sp-lg);
}

/* ============================================================
   CTA Block (navy bg, gold buttons)
   ============================================================ */
.tvh-cta-block {
  background: var(--tvh-navy);
  padding: var(--sp-5xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tvh-cta-block::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.tvh-cta-block h2 { color: var(--tvh-white); margin-bottom: var(--sp-md); }
.tvh-cta-block p {
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-lg);
  max-width: 560px;
  margin: 0 auto var(--sp-2xl);
  line-height: 1.7;
}
.tvh-cta-btns {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Page Hero (Service Pages)
   ============================================================ */
.tvh-page-hero {
  background: linear-gradient(135deg, var(--tvh-navy-dark) 0%, var(--tvh-navy-mid) 100%);
  padding: calc(var(--topbar-h) + var(--header-h-desktop) + var(--sp-4xl)) 0 var(--sp-4xl);
  color: var(--tvh-white);
  position: relative;
  overflow: hidden;
}
.tvh-page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.06));
}
.tvh-page-hero .tvh-section-label { color: var(--tvh-gold-light); }
.tvh-page-hero h1 { color: var(--tvh-white); }
.tvh-page-hero .hero-sub { color: rgba(255,255,255,0.8); }
.tvh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-lg);
}
.tvh-breadcrumb a {
  color: var(--tvh-gold-light);
  transition: color var(--transition);
}
.tvh-breadcrumb a:hover { color: var(--tvh-white); }
.tvh-breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================================
   Blog Cards
   ============================================================ */
.tvh-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}
@media (max-width: 900px) { .tvh-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tvh-blog-grid { grid-template-columns: 1fr; } }

.tvh-blog-card {
  background: var(--tvh-white);
  border: 1px solid var(--tvh-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tvh-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tvh-blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--tvh-navy), var(--tvh-navy-mid));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.tvh-blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.tvh-blog-card-body { padding: var(--sp-lg); }
.tvh-blog-card-tag {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tvh-gold);
  margin-bottom: 8px;
}
.tvh-blog-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-sm);
  line-height: 1.4;
}
.tvh-blog-card p {
  font-size: var(--fs-sm);
  color: var(--tvh-text-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-md);
}
.tvh-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--tvh-text-light);
}

/* ============================================================
   Footer
   ============================================================ */
.tvh-footer {
  background: var(--tvh-navy-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-5xl) 0 0;
}
.tvh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
}
@media (max-width: 900px) { .tvh-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tvh-footer-grid { grid-template-columns: 1fr; gap: var(--sp-xl); } }

.tvh-footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tvh-white);
  margin-bottom: var(--sp-lg);
}
.tvh-footer-col p {
  font-size: var(--fs-sm);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
}
.tvh-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
  text-decoration: none;
}
.tvh-footer-logo img { height: 52px; width: auto; object-fit: contain; }
.tvh-footer-logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--tvh-white);
  display: block;
  line-height: 1.1;
}
.tvh-footer-logo-text span {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tvh-gold-light);
}
.tvh-footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.tvh-footer-links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.tvh-footer-links a:hover { color: var(--tvh-gold-light); }
.tvh-footer-contact { list-style: none; display: flex; flex-direction: column; gap: var(--sp-sm); }
.tvh-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--fs-sm);
}
.tvh-footer-contact svg { color: var(--tvh-gold); flex-shrink: 0; margin-top: 3px; }
.tvh-footer-contact a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.tvh-footer-contact a:hover { color: var(--tvh-gold-light); }

.tvh-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-md);
}
.tvh-footer-bottom p { font-size: var(--fs-xs); color: rgba(255,255,255,0.45); }
.tvh-footer-legal {
  display: flex;
  gap: var(--sp-lg);
}
.tvh-footer-legal a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.tvh-footer-legal a:hover { color: var(--tvh-gold-light); }

/* ============================================================
   WhatsApp Floating Button
   ============================================================ */
.tvh-whatsapp-btn {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 900;
  width: 56px; height: 56px;
  background: var(--tvh-whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.tvh-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}
.tvh-whatsapp-btn svg { color: white; width: 28px; height: 28px; }
.tvh-whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--tvh-navy-dark);
  color: var(--tvh-white);
  font-size: var(--fs-xs);
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition);
}
.tvh-whatsapp-btn:hover .tvh-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 640px) {
  .tvh-whatsapp-btn { bottom: 76px; right: 16px; }
}

/* ============================================================
   Mobile CTA Bottom Bar
   ============================================================ */
.tvh-mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--tvh-white);
  border-top: 1px solid var(--tvh-border);
  padding: 10px var(--sp-md);
  gap: 8px;
  box-shadow: 0 -4px 16px rgba(27,43,75,0.12);
}
.tvh-mobile-cta-bar .btn { flex: 1; padding: 12px 8px; font-size: var(--fs-sm); }
@media (max-width: 767px) {
  .tvh-mobile-cta-bar { display: flex; }
  body { padding-bottom: 64px; }
}

/* ============================================================
   Utility classes
   ============================================================ */
.text-gold  { color: var(--tvh-gold); }
.text-navy  { color: var(--tvh-navy); }
.text-white { color: var(--tvh-white); }
.text-muted { color: var(--tvh-text-muted); }
.bg-navy    { background: var(--tvh-navy); }
.bg-navy-dark { background: var(--tvh-navy-dark); }
.bg-light   { background: var(--tvh-light-bg); }
.bg-white   { background: var(--tvh-white); }

/* Responsive font adjustments */
@media (max-width: 640px) {
  .tvh-section  { padding: var(--sp-4xl) 0; }
  .tvh-cta-block { padding: var(--sp-4xl) 0; }
  .tvh-footer   { padding-top: var(--sp-3xl); }
  /* Fix gap on mobile: reduce pt-32 (128px) hero padding for hidden topbar */
  .pt-32 { padding-top: 5rem !important; }     /* 80px — just enough for 60px header + spacing */
}

/* Service page content area */
.tvh-service-content {
  max-width: 800px;
}
.tvh-service-content h2 { margin-bottom: var(--sp-md); }
.tvh-service-content p { margin-bottom: var(--sp-md); color: var(--tvh-text-muted); line-height: 1.8; }
.tvh-service-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--sp-xl);
}
.tvh-service-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--tvh-text-muted);
}
.tvh-service-content ul li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--tvh-gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* Process Steps */
.tvh-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  position: relative;
}
.tvh-process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%;
  width: 80%; height: 2px;
  background: linear-gradient(to right, var(--tvh-gold), transparent);
  z-index: 0;
}
.tvh-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.tvh-step-number {
  width: 56px; height: 56px;
  background: var(--tvh-navy);
  color: var(--tvh-gold-light);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: var(--fs-xl);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-md);
  border: 3px solid var(--tvh-gold);
}
.tvh-process-step h4 { font-size: var(--fs-base); margin-bottom: 4px; }
.tvh-process-step p { font-size: var(--fs-xs); color: var(--tvh-text-muted); }
@media (max-width: 760px) {
  .tvh-process-steps { grid-template-columns: repeat(2, 1fr); }
  .tvh-process-steps::before { display: none; }
}
@media (max-width: 480px) {
  .tvh-process-steps { grid-template-columns: 1fr; }
}

/* Sidebar contact card */
.tvh-contact-card {
  background: var(--tvh-navy);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  color: var(--tvh-white);
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h-desktop) + var(--sp-lg));
}
.tvh-contact-card h4 { color: var(--tvh-white); margin-bottom: var(--sp-sm); }
.tvh-contact-card p { font-size: var(--fs-sm); color: rgba(255,255,255,0.7); margin-bottom: var(--sp-lg); }
.tvh-contact-card .btn { width: 100%; justify-content: center; }
.tvh-contact-card .btn + .btn { margin-top: var(--sp-sm); }

/* Animate on scroll */
.tvh-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.tvh-animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.tvh-animate-delay-1 { transition-delay: 0.1s; }
.tvh-animate-delay-2 { transition-delay: 0.2s; }
.tvh-animate-delay-3 { transition-delay: 0.3s; }
.tvh-animate-delay-4 { transition-delay: 0.4s; }
.tvh-animate-delay-5 { transition-delay: 0.5s; }
