/**
 * The Maruca Group – 2026 UI refresh
 * Design overlay: tokens, typography, spacing, and component polish.
 * Loads after base styles; keeps existing gold/purple brand.
 */

/* -------------------------------------------------------------------------
   Design tokens (TMG brand + 2026 spacing/motion)
   ------------------------------------------------------------------------- */
:root {
  /* Brand (align with existing) */
  --tmg-purple: #4b1853;
  --tmg-purple-deep: #3a1040;
  --tmg-gold: #b27f2c;
  --tmg-gold-light: #a87c2c;
  --tmg-gradient: linear-gradient(134deg, #4b1853 0%, #b27f2c 95%, #a87c2c 100%);
  /* Neutrals */
  --tmg-text: #1a1a1a;
  --tmg-text-muted: #555;
  --tmg-border: #e8e8e8;
  --tmg-bg-subtle: #f8f8f8;
  --tmg-bg-card: #fff;
  /* 2026 spacing */
  --tmg-space-xs: 0.25rem;
  --tmg-space-sm: 0.5rem;
  --tmg-space-md: 1rem;
  --tmg-space-lg: 1.5rem;
  --tmg-space-xl: 2rem;
  --tmg-space-2xl: 3rem;
  --tmg-space-3xl: 4rem;
  /* Motion */
  --tmg-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --tmg-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1); /* spring-like (stiffness ~300, damping ~20) */
  --tmg-duration: 0.25s;
  --tmg-duration-slow: 0.4s;
  /* Radii */
  --tmg-radius-sm: 6px;
  --tmg-radius-md: 10px;
  --tmg-radius-lg: 14px;
  --tmg-radius-xl: 20px;
  /* Shadows */
  --tmg-shadow-sm: 0 2px 8px rgba(63, 14, 65, 0.08);
  --tmg-shadow-md: 0 4px 16px rgba(63, 14, 65, 0.12);
  --tmg-shadow-lg: 0 8px 32px rgba(63, 14, 65, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --tmg-duration: 0.01ms;
  }
}

/* -------------------------------------------------------------------------
   Typography 2026 – Plus Jakarta Sans for headings (optional fallback Montserrat)
   ------------------------------------------------------------------------- */
.tmg-2026 {
  font-family: "Inter", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.tmg-2026 h1, .tmg-2026 h2, .tmg-2026 h3, .tmg-2026 .main_title_2 h2 {
  font-family: "Inter", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--tmg-text);
}

.tmg-2026 .main_title_2 h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.tmg-2026 .main_title_2 p,
.tmg-2026 .pxp-text-light {
  color: var(--tmg-text-muted);
  font-size: 1.0625rem;
  line-height: 1.55;
}

/* Hero */
.tmg-2026 .hero_single.version_2 .h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.tmg-2026 .hero_single.version_2 p,
.tmg-2026 .hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 42ch;
}

.tmg-2026 .hero-title {
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* -------------------------------------------------------------------------
   Header 2026 – cleaner bar, subtle shadow when sticky
   ------------------------------------------------------------------------- */
.tmg-2026 header.new_header.header {
  padding: var(--tmg-space-sm) var(--tmg-space-lg);
  transition: box-shadow var(--tmg-duration) var(--tmg-ease);
}

.tmg-2026 header.new_header.header.menu_fixed.headercolor,
.tmg-2026 header.new_header.header.bg-gold-purple {
  box-shadow: var(--tmg-shadow-sm);
}

.tmg-2026 .main-menu > ul > li > a {
  font-weight: 600;
  padding: var(--tmg-space-sm) var(--tmg-space-md);
  border-radius: var(--tmg-radius-sm);
  transition: color var(--tmg-duration) var(--tmg-ease), background-color var(--tmg-duration) var(--tmg-ease);
}

.tmg-2026 .main-menu > ul > li:hover > a {
  color: var(--tmg-purple);
}

.tmg-2026 .header_actions .btn {
  border-radius: var(--tmg-radius-md);
  font-weight: 600;
  transition: transform var(--tmg-duration) var(--tmg-ease), box-shadow var(--tmg-duration) var(--tmg-ease);
}

.tmg-2026 .header_actions .btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--tmg-shadow-md);
}

/* -------------------------------------------------------------------------
   Footer 2026 – spacing, hierarchy, social hover
   ------------------------------------------------------------------------- */
.tmg-2026 footer.plus_border {
  padding-top: var(--tmg-space-3xl);
  border-top: 1px solid var(--tmg-border);
}

.tmg-2026 footer h3 {
  font-family: "Inter", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--tmg-text);
  margin-bottom: var(--tmg-space-lg);
}

.tmg-2026 footer .links li,
.tmg-2026 footer .contacts li {
  margin-bottom: var(--tmg-space-sm);
}

.tmg-2026 footer .links a,
.tmg-2026 footer .contacts a {
  transition: color var(--tmg-duration) var(--tmg-ease);
}

.tmg-2026 footer .follow_us ul li a {
  transition: transform var(--tmg-duration) var(--tmg-ease), color var(--tmg-duration) var(--tmg-ease);
}

.tmg-2026 footer .follow_us ul li a:hover {
  transform: translateY(-2px);
  color: var(--tmg-purple);
}

.tmg-2026 footer .follow_us ul li a i:hover {
  color: var(--tmg-purple);
}

.tmg-2026 footer hr {
  border-color: var(--tmg-border);
  margin: var(--tmg-space-2xl) 0 var(--tmg-space-lg);
}

/* -------------------------------------------------------------------------
   Homepage – hero, categories, destination cards, CTA
   ------------------------------------------------------------------------- */
.tmg-2026 .hero_single.version_2 .wrapper {
  padding-top: var(--tmg-space-3xl);
  padding-bottom: var(--tmg-space-3xl);
}

.tmg-2026 .compact-search-form .custom-search-input-2.br {
  border-radius: var(--tmg-radius-lg);
  box-shadow: var(--tmg-shadow-md);
  overflow: hidden;
}

.tmg-2026 .compact-search-form .btn-gold-purple {
  border-radius: 0 var(--tmg-radius-md) var(--tmg-radius-md) 0;
}

/* Main categories (value props) */
.tmg-2026 .main_categories ul li {
  padding: var(--tmg-space-xl);
  transition: background-color var(--tmg-duration) var(--tmg-ease), transform var(--tmg-duration) var(--tmg-ease);
  border-radius: var(--tmg-radius-lg);
}

.tmg-2026 .main_categories ul li:hover {
  background-color: var(--tmg-bg-subtle);
  transform: translateY(-2px);
}

.tmg-2026 .main_categories ul li a {
  text-decoration: none;
  color: inherit;
}

.tmg-2026 .main_categories ul li h3 {
  font-family: "Inter", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--tmg-text);
  margin-bottom: var(--tmg-space-sm);
}

.tmg-2026 .main_categories ul li p {
  color: var(--tmg-text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

/* Destination cards */
.tmg-2026 .grid_item figure {
  border-radius: var(--tmg-radius-lg);
  overflow: hidden;
  box-shadow: var(--tmg-shadow-sm);
  transition: box-shadow var(--tmg-duration) var(--tmg-ease), transform var(--tmg-duration) var(--tmg-ease);
}

.tmg-2026 .grid_item:hover figure {
  box-shadow: var(--tmg-shadow-lg);
  transform: translateY(-4px);
}

.tmg-2026 .grid_item .info {
  padding: var(--tmg-space-lg);
}

.tmg-2026 .grid_item .info h3 {
  font-family: "Inter", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--tmg-text);
}

/* Why Choose Us banner */
.tmg-2026 .banner-cover.bg-gradient-purple-gold .br {
  border-radius: var(--tmg-radius-lg);
  box-shadow: var(--tmg-shadow-lg);
}

.tmg-2026 .banner-cover .btn_1.rounded {
  border-radius: var(--tmg-radius-md);
  font-weight: 600;
  padding: var(--tmg-space-sm) var(--tmg-space-xl);
  transition: transform var(--tmg-duration) var(--tmg-ease), box-shadow var(--tmg-duration) var(--tmg-ease);
}

.tmg-2026 .banner-cover .btn_1.rounded:hover {
  transform: translateY(-2px);
  box-shadow: var(--tmg-shadow-md);
}

/* Services section */
.tmg-2026 .services-list-section .pxp-services-c-intro.card {
  border-radius: var(--tmg-radius-lg);
  border: 1px solid var(--tmg-border);
}

.tmg-2026 .services-list-section .box_cat_home {
  border-radius: var(--tmg-radius-md);
  overflow: hidden;
  transition: transform var(--tmg-duration) var(--tmg-ease), box-shadow var(--tmg-duration) var(--tmg-ease);
}

.tmg-2026 .services-list-section .box_cat_home:hover {
  transform: translateY(-4px);
  box-shadow: var(--tmg-shadow-lg);
}

/* Newsletter section */
.tmg-2026 .pxp-newsletter-1-form .form-control {
  border-radius: var(--tmg-radius-md);
  border: 1px solid var(--tmg-border);
  padding: var(--tmg-space-md) var(--tmg-space-lg);
}

/* Destinations grid – consistent gap */
.tmg-2026 .margin_80_55 .row {
  gap: var(--tmg-space-xl) 0;
}

.tmg-2026 .margin_80_55 .row > [class*="col-"] {
  margin-bottom: var(--tmg-space-xl);
}

/* Section spacing */
.tmg-2026 .margin_80_55 {
  margin-top: var(--tmg-space-3xl);
  margin-bottom: var(--tmg-space-3xl);
}

.tmg-2026 .margin_160_110 {
  margin-top: var(--tmg-space-3xl);
  margin-bottom: var(--tmg-space-3xl);
}

/* Buttons – consistent radius */
.tmg-2026 .btn_1,
.tmg-2026 a.btn_1 {
  border-radius: var(--tmg-radius-md);
  font-weight: 600;
  transition: transform var(--tmg-duration) var(--tmg-ease), box-shadow var(--tmg-duration) var(--tmg-ease);
}

.tmg-2026 .btn_1:hover,
.tmg-2026 a.btn_1:hover {
  transform: translateY(-1px);
  box-shadow: var(--tmg-shadow-md);
}

/* Search CTA partial */
.tmg-2026 .pxp-primary-cta:after {
  transition: width var(--tmg-duration) var(--tmg-ease);
}

.tmg-2026 .pxp-primary-cta:hover:after {
  width: 48px;
}

/* -------------------------------------------------------------------------
   Customer Dashboard (www.themarucagroup.com/dashboard) – TMG branding
   ------------------------------------------------------------------------- */
.tmg-2026 #mainNav.navbar.bg-default,
.tmg-2026 .navbar.navbar-tmg.bg-default {
  background: var(--tmg-gradient) !important;
  box-shadow: var(--tmg-shadow-sm);
}

.tmg-2026 .content-wrapper .btn-primary {
  background: var(--tmg-purple);
  border-color: var(--tmg-purple);
  border-radius: var(--tmg-radius-sm);
}

.tmg-2026 .content-wrapper .btn-primary:hover {
  background: var(--tmg-purple-deep);
  border-color: var(--tmg-purple-deep);
  box-shadow: var(--tmg-shadow-sm);
}

.tmg-2026 .sticky-footer {
  border-top: 1px solid var(--tmg-border);
  background: var(--tmg-bg-subtle);
}

/* -------------------------------------------------------------------------
   2026 Cutting-edge: Bento “breath” cards + CTA micro-interactions
   Refs: Superfiles bento guide, Dribbble/Awwwards motion
   ------------------------------------------------------------------------- */
/* Bento-style card: hover = 2% scale + softer/lower shadow (spring) */
.tmg-2026 .tmg-bento-card {
  transition: transform var(--tmg-duration-slow) var(--tmg-ease-spring),
              box-shadow var(--tmg-duration-slow) var(--tmg-ease-spring);
}
.tmg-2026 .tmg-bento-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(63, 14, 65, 0.14);
}
/* CTA “squish” on click (micro-haptic) */
.tmg-2026 .btn_1:active,
.tmg-2026 a.btn_1:active {
  transform: scale(0.98);
}
/* Scroll-reveal: add .tmg-reveal to sections; use GSAP/IntersectionObserver to toggle .tmg-reveal--visible */
.tmg-2026 .tmg-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--tmg-duration-slow) var(--tmg-ease-spring),
              transform var(--tmg-duration-slow) var(--tmg-ease-spring);
}
.tmg-2026 .tmg-reveal.tmg-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .tmg-2026 .tmg-bento-card,
  .tmg-2026 .tmg-bento-card:hover {
    transform: none;
    transition-duration: 0.01ms;
  }
  .tmg-2026 .btn_1:active,
  .tmg-2026 a.btn_1:active {
    transform: none;
  }
  .tmg-2026 .tmg-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* -------------------------------------------------------------------------
   FUTURISTIC LOADER 2026 – full-page morphing blobs, brand reveal, progress bar
   ------------------------------------------------------------------------- */
.tmg-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0d0a0f 0%, #1a0f1f 40%, #0d0a0f 100%);
  overflow: hidden;
  transition: opacity 0.6s var(--tmg-ease-spring), visibility 0.6s;
}
.tmg-loader.tmg-loader--out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.tmg-loader__noise {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.tmg-loader__blobs {
  position: absolute;
  inset: -20%;
  pointer-events: none;
}
.tmg-loader__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
  animation: tmg-blob-morph 8s ease-in-out infinite;
}
.tmg-loader__blob--1 {
  width: 60vmin;
  height: 60vmin;
  left: 10%;
  top: 20%;
  background: linear-gradient(134deg, #4b1853 0%, #3f0e41 50%, transparent 100%);
  animation-delay: 0s;
}
.tmg-loader__blob--2 {
  width: 50vmin;
  height: 50vmin;
  right: 10%;
  bottom: 20%;
  background: linear-gradient(134deg, #b27f2c 0%, #8a5a1f 50%, transparent 100%);
  animation-delay: -2.5s;
}
.tmg-loader__blob--3 {
  width: 40vmin;
  height: 40vmin;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(134deg, rgba(75, 24, 83, 0.6) 0%, rgba(178, 127, 44, 0.5) 100%);
  animation-delay: -5s;
}
@keyframes tmg-blob-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0, 0) scale(1); }
  25%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translate(2%, -3%) scale(1.05); }
  50%      { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; transform: translate(-2%, 2%) scale(0.98); }
  75%      { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; transform: translate(3%, 1%) scale(1.02); }
}
.tmg-loader__orb {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(178, 127, 44, 0.4);
  opacity: 0.5;
  animation: tmg-orb-pulse 3s ease-in-out infinite;
}
.tmg-loader__orb--1 { left: 15%; top: 25%; animation-delay: 0s; }
.tmg-loader__orb--2 { right: 15%; bottom: 25%; animation-delay: -1.5s; }
@keyframes tmg-orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.15); opacity: 0.8; }
}
.tmg-loader__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.tmg-loader__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.tmg-loader__brand {
  font-family: "Inter", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 0 40px rgba(178, 127, 44, 0.5);
  animation: tmg-loader-text-in 0.8s var(--tmg-ease-spring) 0.2s both;
}
.tmg-loader__tagline {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  animation: tmg-loader-text-in 0.8s var(--tmg-ease-spring) 0.4s both;
}
@keyframes tmg-loader-text-in {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tmg-loader__bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
}
.tmg-loader__bar-inner {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #4b1853, #b27f2c);
  border-radius: 3px;
  animation: tmg-loader-bar 1.8s var(--tmg-ease-spring) infinite;
}
@keyframes tmg-loader-bar {
  0%   { width: 0; margin-left: 0; }
  50%  { width: 70%; margin-left: 15%; }
  100% { width: 0; margin-left: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .tmg-loader__blob,
  .tmg-loader__orb,
  .tmg-loader__bar-inner { animation: none; }
  .tmg-loader__brand,
  .tmg-loader__tagline { animation: none; opacity: 1; transform: none; }
}

/* Page-in: main content subtle scale + fade when loader leaves */
#page.tmg-page-before {
  opacity: 0;
  transform: scale(0.98);
  transition: none;
}
#page.tmg-page-visible {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s var(--tmg-ease-spring), transform 0.5s var(--tmg-ease-spring);
}
@media (prefers-reduced-motion: reduce) {
  #page.tmg-page-before,
  #page.tmg-page-visible { transform: none; transition: opacity 0.2s; }
}

/* Bento spotlight: hover one card → dim siblings */
.tmg-2026 .tmg-bento-spotlight {
  display: grid;
}
.tmg-2026 .tmg-bento-spotlight:has(.tmg-bento-card:hover) .tmg-bento-card:not(:hover) {
  opacity: 0.6;
  filter: saturate(0.85);
  transition: opacity 0.35s var(--tmg-ease-spring), filter 0.35s var(--tmg-ease-spring);
}
@media (prefers-reduced-motion: reduce) {
  .tmg-2026 .tmg-bento-spotlight:has(.tmg-bento-card:hover) .tmg-bento-card:not(:hover) {
    opacity: 1;
    filter: none;
  }
}

/* Stagger delays for scroll reveal (JS adds .tmg-reveal--visible; these add delay) */
.tmg-2026 .tmg-reveal--stagger-1 { transition-delay: 0.05s; }
.tmg-2026 .tmg-reveal--stagger-2 { transition-delay: 0.1s; }
.tmg-2026 .tmg-reveal--stagger-3 { transition-delay: 0.15s; }
.tmg-2026 .tmg-reveal--stagger-4 { transition-delay: 0.2s; }
.tmg-2026 .tmg-reveal--stagger-5 { transition-delay: 0.25s; }
.tmg-2026 .tmg-reveal--stagger-6 { transition-delay: 0.3s; }

/* ── Become a Host header button ── */
.btn-become-host {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .85rem;
  color: #4B1853 !important;
  text-decoration: none !important;
  border: 1.5px solid #4B1853;
  background: transparent;
  transition: background .18s, color .18s, transform .18s;
  white-space: nowrap;
}
.btn-become-host:hover {
  background: #4B1853;
  color: #fff !important;
  transform: translateY(-1px);
}
/* On dark/transparent header, use white */
.bg-gold-purple .btn-become-host,
header:not(.sticky):not(.bg-white) .btn-become-host {
  color: #fff !important;
  border-color: rgba(255,255,255,.6);
}
header:not(.sticky):not(.bg-white) .btn-become-host:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}
/* Once the header sticks it carries the purple→gold gradient (device-responsive.css).
   Measured on the live homepage at scrollY 900: .btn-become-host computed to
   rgb(63,14,65) — near-black purple over the gold end of that gradient, well under AA.
   A solid purple pill puts white text back on a controlled background. */
header.sticky:not(.bg-white) .btn-become-host,
.bg-gold-purple .btn-become-host {
  color: #fff !important;
  background: #4B1853;
  border-color: rgba(255,255,255,.35);
}
header.sticky:not(.bg-white) .btn-become-host:hover,
.bg-gold-purple .btn-become-host:hover {
  background: #3a0f42;
  border-color: rgba(255,255,255,.7);
}

/* Cursor glow (desktop only; element created by JS) */
.tmg-cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 24, 83, 0.15) 0%, rgba(178, 127, 44, 0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: screen;
  transition: opacity 0.15s;
}
.tmg-cursor-glow.tmg-cursor-glow--hidden { opacity: 0; }
@media (max-width: 1024px), (prefers-reduced-motion: reduce) {
  .tmg-cursor-glow { display: none !important; }
}

/* Subtle grain overlay on main content (optional depth) */
.tmg-2026.tmg-grain::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
}

/* -------------------------------------------------------------------------
   Homepage – List My Property funnel style (video hero, trust bar, stats)
   ------------------------------------------------------------------------- */
.hp-btn-gold {
  background: linear-gradient(135deg, #b27f2c, #d4a84e) !important;
  border: none !important;
  padding: 14px 28px;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(178,127,44,.4);
  transition: transform .2s, box-shadow .2s;
}
.hp-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(178,127,44,.5);
}
.hp-btn-ghost {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.15);
  color: #fff !important;
  text-decoration: none !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
  transition: background .2s, transform .2s;
}
.hp-btn-ghost:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
  color: #fff !important;
}
.hp-search-card {
  background: rgba(255,255,255,.95);
  max-width: 900px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  border-radius: var(--tmg-radius-lg);
}

.hp-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hp-hero-bg { position: absolute; inset: 0; }
.hp-hero-video-wrap {
  position: absolute; inset: -10%;
  pointer-events: none;
}
.hp-hero-yt {
  width: 100%; height: 100%;
  border: none;
  object-fit: cover;
}
.hp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(75,24,83,.92) 0%, rgba(30,8,40,.78) 50%, rgba(20,6,28,.65) 100%);
}
.hp-hero-content {
  position: relative; z-index: 2; color: #fff;
  padding: 120px 20px 80px;
  max-width: 820px;
}
.hp-hero-badge {
  display: inline-block;
  background: rgba(178,127,44,.25);
  border: 1px solid rgba(178,127,44,.5);
  color: #d4a84e;
  padding: 6px 16px; border-radius: 50px;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 20px;
}
.hp-hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  margin-bottom: 20px;
}
.hp-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 560px; line-height: 1.65; margin-bottom: 36px;
}
.hp-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hp-hero-scroll-hint {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: .82rem;
  animation: hpBounce 2s ease-in-out infinite;
}
@keyframes hpBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

.hp-trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--tmg-border);
  padding: 16px 0;
}
.hp-trust-bar .container {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.hp-trust-label {
  font-size: .78rem; color: var(--tmg-text-muted);
  font-weight: 600; white-space: nowrap;
}
.hp-trust-logos { display: flex; flex-wrap: wrap; gap: 8px; }
.hp-platform-badge {
  background: var(--tmg-bg-subtle);
  color: var(--tmg-text);
  padding: 4px 12px; border-radius: 20px;
  font-size: .78rem; font-weight: 600;
  border: 1px solid var(--tmg-border);
}

.hp-stats-section {
  background: var(--tmg-purple);
  padding: 60px 0;
}
.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,.1);
  border-radius: var(--tmg-radius-lg);
  overflow: hidden;
}
.hp-stat-card {
  background: var(--tmg-purple);
  padding: 36px 28px;
  text-align: center;
  transition: background .2s;
}
.hp-stat-card:hover { background: rgba(255,255,255,.06); }
.hp-stat-num {
  font-size: 3rem; font-weight: 800; color: var(--tmg-gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.hp-stat-label { color: rgba(255,255,255,.75); font-size: .88rem; }

/* Homepage reveal animation */
.hp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.hp-reveal.hp-visible {
  opacity: 1;
  transform: translateY(0);
}
