/**
 * TGM 2026 Design System - Component Library
 * All components use CSS variables from theme-tokens.css
 */

/* ================================================
   CSS RESET & BASE STYLES
   ================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background-color: var(--bg-page);
  transition: background-color var(--transition-base), color var(--transition-base);
}

/* ================================================
   TYPOGRAPHY - Premium Themed Styles
   ================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  color: var(--heading-primary);
  margin-top: 0;
  margin-bottom: var(--space-4);
  line-height: var(--line-height-tight);
  font-weight: var(--font-weight-bold);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

@media (max-width: 768px) {
  h1 { font-size: var(--font-size-3xl); }
  h2 { font-size: var(--font-size-2xl); }
  h3 { font-size: var(--font-size-xl); }
}

p {
  margin-top: 0;
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
}

a {
  color: var(--link-default);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--link-hover);
  text-shadow: var(--text-glow);
}

strong, b {
  color: var(--heading-accent);
  font-weight: var(--font-weight-semibold);
}

/* ================================================
   PREMIUM HEADING STYLES - Theme Customized
   ================================================ */

/* Gradient Text Effect */
.text-gradient,
.heading-gradient {
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-alt {
  background: var(--heading-gradient-alt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: var(--heading-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-pink {
  background: var(--heading-gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glowing Text Effects */
.text-glow {
  text-shadow: var(--text-glow);
}

.text-glow-strong {
  text-shadow: var(--text-glow-strong);
}

/* Premium Section Title */
.section-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: var(--space-3);
  position: relative;
  display: inline-block;
}

.section-title--gradient {
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px var(--brand-primary-soft));
}

.section-title--glow {
  color: var(--heading-accent);
  text-shadow: var(--heading-shadow);
}

/* Section Header with Decorative Line */
.section-header {
  text-align: center;
  margin-bottom: var(--space-8);
  position: relative;
}

.section-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent-underline);
  margin: var(--space-4) auto 0;
  border-radius: var(--radius-full);
  box-shadow: var(--accent-border-glow);
}

.section-header .section-subtitle {
  color: var(--text-secondary);
  font-size: var(--font-size-lg);
  margin-top: var(--space-2);
  font-weight: var(--font-weight-normal);
}

/* Premium Heading with Accent Span */
.heading-accent {
  color: var(--heading-accent);
}

.heading-highlight {
  color: var(--heading-highlight);
  text-shadow: var(--text-glow);
}

/* Main Heading - Enhanced Premium Style */
.main-heading {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--heading-primary);
  margin-bottom: var(--space-6);
  position: relative;
  line-height: 1.3;
}

.main-heading .text-accent,
.main-heading span.text-accent {
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px var(--brand-primary-soft));
}

/* Premium Main Heading with Glow */
.main-heading--premium {
  text-shadow: var(--heading-shadow-sm);
}

.main-heading--premium .text-accent {
  text-shadow: none;
  filter: drop-shadow(var(--heading-shadow-sm));
}

/* Luxurious Display Heading */
.display-heading {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-black);
  letter-spacing: 0.02em;
  line-height: 1.1;
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 30px var(--brand-primary-soft));
  margin-bottom: var(--space-4);
}

/* Accent Text Highlight */
.text-accent {
  color: var(--heading-accent) !important;
  -webkit-text-fill-color: var(--heading-accent);
}

/* Themed Paragraph Styles */
.lead-text {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: var(--font-weight-normal);
}

.lead-text strong {
  color: var(--heading-accent);
  font-weight: var(--font-weight-semibold);
}

.body-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: var(--font-size-base);
}

.body-text a {
  color: var(--heading-accent);
  font-weight: var(--font-weight-medium);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-fast);
}

.body-text a:hover {
  color: var(--heading-highlight);
  border-bottom-color: var(--heading-highlight);
  text-shadow: var(--text-glow);
}

/* Decorative Divider */
.divider-accent {
  width: 100%;
  height: 1px;
  background: var(--accent-underline);
  border: none;
  margin: var(--space-8) 0;
  box-shadow: var(--accent-border-glow);
}

.divider-accent--short {
  width: 120px;
  margin-left: auto;
  margin-right: auto;
}

/* Card Title Styles */
.card-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--heading-accent);
  margin-bottom: var(--space-2);
  letter-spacing: 0.01em;
}

.card-title--glow {
  text-shadow: var(--heading-shadow-sm);
}

/* Feature Title */
.feature-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--heading-accent);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.feature-title svg {
  color: var(--heading-highlight);
  filter: drop-shadow(var(--text-glow));
}

/* Stat/Number Display */
.stat-number {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-black);
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px var(--brand-primary-soft));
  line-height: 1;
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--font-weight-medium);
}

/* Quote/Testimonial Text */
.quote-text {
  font-size: var(--font-size-xl);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
  padding-left: var(--space-6);
  border-left: 3px solid var(--heading-accent);
}

.quote-text::before {
  content: '"';
  position: absolute;
  left: var(--space-2);
  top: -10px;
  font-size: var(--font-size-4xl);
  color: var(--heading-accent);
  opacity: 0.5;
  font-family: Georgia, serif;
}

/* Badge Text */
.badge-text {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .main-heading {
    font-size: var(--font-size-2xl);
    letter-spacing: 0.02em;
  }

  .section-title {
    font-size: var(--font-size-2xl);
  }

  .display-heading {
    font-size: var(--font-size-3xl);
  }

  .lead-text {
    font-size: var(--font-size-lg);
  }

  .stat-number {
    font-size: var(--font-size-3xl);
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: var(--font-size-xl);
  }

  .section-title {
    font-size: var(--font-size-xl);
    letter-spacing: 0.02em;
  }

  .display-heading {
    font-size: var(--font-size-2xl);
  }
}

/* ================================================
   LAYOUT & CONTAINERS
   ================================================ */
.tgm-container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.tgm-container-lg {
  max-width: var(--container-2xl);
}

.tgm-section {
  padding: var(--space-12) 0;
  background-color: var(--bg-section);
}

.tgm-section-alt {
  background-color: var(--bg-section-alt);
}

.tgm-section-dark {
  background-color: var(--bg-page);
}

/* Grid System */
.tgm-grid {
  display: grid;
  gap: var(--space-4);
}

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

@media (max-width: 1200px) {
  .tgm-grid-5, .tgm-grid-6 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
  .tgm-grid-4, .tgm-grid-5, .tgm-grid-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .tgm-grid-3, .tgm-grid-4, .tgm-grid-5, .tgm-grid-6 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .tgm-grid-2, .tgm-grid-3, .tgm-grid-4, .tgm-grid-5, .tgm-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--brand-primary-soft);
}

/* Primary Button */
.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border-color: transparent;
}

.btn-primary:hover {
  background: var(--btn-primary-hover-bg);
  color: var(--btn-primary-hover-text);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

/* Secondary Button */
.btn-secondary {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  border-color: var(--btn-secondary-border);
}

.btn-secondary:hover {
  background: var(--btn-secondary-hover-bg);
  color: var(--btn-secondary-hover-text);
  border-color: var(--btn-secondary-hover-border);
}

/* Ghost Button */
.btn-ghost {
  background: var(--btn-ghost-bg);
  color: var(--btn-ghost-text);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--btn-ghost-hover-bg);
  color: var(--btn-ghost-hover-text);
}

/* CTA Button */
.btn-cta {
  background: var(--btn-cta-bg);
  color: var(--btn-cta-text);
  border-color: transparent;
  font-weight: var(--font-weight-bold);
}

.btn-cta:hover {
  background: var(--btn-cta-hover-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Button Sizes */
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-sm);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-lg);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Icon Button */
.btn-icon {
  padding: var(--space-3);
  border-radius: var(--radius-full);
}

/* ================================================
   CARDS
   ================================================ */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--card-shadow);
}

.card:hover {
  box-shadow: var(--card-hover-shadow);
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.card-body {
  padding: var(--space-4);
}

.card-header {
  padding: var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
  background-color: var(--bg-card-alt);
  font-weight: var(--font-weight-semibold);
  color: var(--heading-accent);
}

.card-footer {
  padding: var(--space-4);
  border-top: 1px solid var(--border-subtle);
  background-color: var(--bg-card-alt);
}

/* Profile Card */
.profile-card {
  position: relative;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--card-shadow);
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-hover-shadow);
}

.profile-card__image {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.profile-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.profile-card:hover .profile-card__image img {
  transform: scale(1.05);
}

.profile-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--card-profile-overlay);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.profile-card:hover .profile-card__overlay {
  opacity: 1;
}

.profile-card__badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  z-index: 2;
}

.profile-card__status {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-2);
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  color: var(--text-primary);
}

.profile-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  z-index: 1;
}

.profile-card__name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin-bottom: var(--space-1);
  text-transform: capitalize;
}

.profile-card__meta {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
}

.profile-card__cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 3;
}

.profile-card:hover .profile-card__cta {
  opacity: 1;
}

/* Category Card */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--card-shadow);
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-card__image {
  transform: scale(1.1);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}

.category-card__title {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Location Card */
.location-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--card-shadow);
}

.location-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.location-card:hover .location-card__image {
  transform: scale(1.1);
}

.location-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-4);
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
}

.location-card__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin-bottom: var(--space-1);
}

.location-card__count {
  font-size: var(--font-size-sm);
  color: var(--heading-accent);
}

/* Video Card */
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 9/16;
  background-color: var(--bg-card);
  box-shadow: var(--card-shadow);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.video-card__play:hover {
  background: var(--brand-primary);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.video-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--heading-accent);
  margin-bottom: var(--space-1);
}

.video-card__desc {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ================================================
   PROFILE CARD 2026 - ENHANCED PREMIUM DESIGN
   Modern, Elegant, with Glassmorphism Effects
   ================================================ */

.profile-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.profile-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 107, 138, 0.3),
    0 0 80px rgba(255, 107, 138, 0.15);
}

.profile-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

/* Figure / Image Container */
.profile-card__figure {
  position: relative;
  margin: 0;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.profile-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
}

.profile-card:hover .profile-card__img {
  transform: scale(1.1);
}

/* Gradient Overlay - Enhanced */
.profile-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(15, 15, 35, 0.98) 0%,
    rgba(15, 15, 35, 0.8) 20%,
    rgba(15, 15, 35, 0.4) 40%,
    rgba(200, 35, 51, 0.05) 70%,
    transparent 100%
  );
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.profile-card:hover .profile-card__gradient {
  background: linear-gradient(
    0deg,
    rgba(15, 15, 35, 0.95) 0%,
    rgba(15, 15, 35, 0.7) 25%,
    rgba(200, 35, 51, 0.15) 50%,
    rgba(200, 35, 51, 0.05) 75%,
    transparent 100%
  );
}

/* Shine Effect on Hover */
.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.7s ease;
  z-index: 5;
  pointer-events: none;
}

.profile-card:hover::before {
  left: 150%;
}

/* ============================================
   BADGE TAGS - Clean, Simple Premium Design
   ============================================ */

/* Base Tag Styles */
.profile-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover .profile-card__tag {
  transform: translateY(-2px);
}

/* ★ PREMIUM Tag - Gold */
.profile-card__tag--gold {
  background: linear-gradient(135deg, #d4a00a 0%, #f5c842 50%, #d4a00a 100%);
  color: #1a1200;
  border: 1px solid rgba(212, 160, 10, 0.4);
  box-shadow: 0 2px 8px rgba(212, 160, 10, 0.3);
}

.profile-card:hover .profile-card__tag--gold {
  box-shadow: 0 4px 15px rgba(212, 160, 10, 0.4);
}

/* 🔥 TOP Tag - Hot Pink/Red */
.profile-card__tag--pink {
  background: linear-gradient(135deg, #e63956 0%, #ff6b8a 50%, #e63956 100%);
  color: #fff;
  border: 1px solid rgba(230, 57, 86, 0.4);
  box-shadow: 0 2px 8px rgba(230, 57, 86, 0.3);
}

.profile-card:hover .profile-card__tag--pink {
  box-shadow: 0 4px 15px rgba(230, 57, 86, 0.4);
}

/* ✨ NEW Tag - Cyan/Teal */
.profile-card__tag--blue {
  background: linear-gradient(135deg, #00a8b5 0%, #00d4e0 50%, #00a8b5 100%);
  color: #fff;
  border: 1px solid rgba(0, 168, 181, 0.4);
  box-shadow: 0 2px 8px rgba(0, 168, 181, 0.3);
}

.profile-card:hover .profile-card__tag--blue {
  box-shadow: 0 4px 15px rgba(0, 168, 181, 0.4);
}

/* Views Counter - Top Right - Enhanced */
.profile-card__views {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(15, 15, 35, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.profile-card:hover .profile-card__views {
  background: rgba(255, 107, 138, 0.2);
  border-color: rgba(255, 107, 138, 0.3);
}

.profile-card__views svg {
  opacity: 0.9;
  color: #ff6b8a;
}

/* Floating Hearts - Hover Animation */
.profile-card__figure::after {
  content: '♥';
  position: absolute;
  bottom: 80px;
  right: 20px;
  font-size: 24px;
  color: #ff6b8a;
  opacity: 0;
  transform: translateY(20px) scale(0.5);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 3;
  text-shadow: 0 0 20px rgba(255, 107, 138, 0.8);
  pointer-events: none;
}

.profile-card:hover .profile-card__figure::after {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: float-heart 2s ease-in-out infinite;
}

@keyframes float-heart {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.1); }
}

/* Info Section - Bottom Overlay - Enhanced */
.profile-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  background: linear-gradient(
    0deg,
    rgba(15, 15, 35, 0.95) 0%,
    rgba(15, 15, 35, 0.7) 60%,
    transparent 100%
  );
}

.profile-card__header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.profile-card__name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.01em;
}

/* Verified Badge - Enhanced with glow */
.profile-card__verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow:
    0 2px 10px rgba(34, 197, 94, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: pulse-verified 2s ease-in-out infinite;
}

@keyframes pulse-verified {
  0%, 100% { box-shadow: 0 2px 10px rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 2px 20px rgba(34, 197, 94, 0.6); }
}

.profile-card__verified svg {
  width: 14px;
  height: 14px;
  color: #fff;
}

/* Meta Info - Enhanced */
.profile-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.profile-card__age {
  font-weight: 700;
  color: #ff6b8a;
}

.profile-card__dot {
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #ff6b8a, #ff3d67);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 107, 138, 0.5);
}

.profile-card__location {
  opacity: 0.85;
  font-weight: 500;
}

/* Availability Badge - Hotel Section - Enhanced */
.profile-card__avail {
  position: absolute;
  bottom: 85px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.95), rgba(16, 185, 129, 0.95));
  backdrop-filter: blur(10px);
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 3;
  box-shadow:
    0 4px 15px rgba(34, 197, 94, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-card__avail::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-avail 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

@keyframes pulse-avail {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* Hover Border Glow Effect - Enhanced */
.profile-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 107, 138, 0) 40%,
    rgba(255, 107, 138, 0) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 4;
}

.profile-card:hover::after {
  opacity: 1;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 138, 0.8) 0%,
    rgba(255, 61, 103, 0.6) 25%,
    rgba(255, 193, 7, 0.4) 50%,
    rgba(255, 107, 138, 0.8) 100%
  );
  animation: border-glow 3s linear infinite;
}

@keyframes border-glow {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(30deg); }
}

/* ============================================
   LIGHT MODE - Profile Card - Fixed Visibility
   ============================================ */
[data-mode="light"] .profile-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}

[data-mode="light"] .profile-card:hover {
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(200, 35, 51, 0.2),
    0 0 60px rgba(200, 35, 51, 0.1);
}

[data-mode="light"] .profile-card__gradient {
  background: linear-gradient(
    0deg,
    rgba(30, 30, 60, 0.95) 0%,
    rgba(30, 30, 60, 0.75) 20%,
    rgba(30, 30, 60, 0.3) 45%,
    transparent 70%
  );
}

[data-mode="light"] .profile-card:hover .profile-card__gradient {
  background: linear-gradient(
    0deg,
    rgba(30, 30, 60, 0.92) 0%,
    rgba(30, 30, 60, 0.65) 25%,
    rgba(200, 35, 51, 0.1) 55%,
    transparent 80%
  );
}

[data-mode="light"] .profile-card__views {
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a2e;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

[data-mode="light"] .profile-card__views svg {
  color: #c82333;
}

[data-mode="light"] .profile-card:hover .profile-card__views {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(200, 35, 51, 0.2);
}

/* Light mode - Info text stays white due to dark gradient overlay */
[data-mode="light"] .profile-card__name {
  color: #fff;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

[data-mode="light"] .profile-card__meta {
  color: rgba(255, 255, 255, 0.95);
}

[data-mode="light"] .profile-card__age {
  color: #ff6b8a;
}

[data-mode="light"] .profile-card__location {
  color: rgba(255, 255, 255, 0.9);
}

[data-mode="light"] .profile-card__info {
  background: linear-gradient(
    0deg,
    rgba(30, 30, 60, 0.92) 0%,
    rgba(30, 30, 60, 0.6) 60%,
    transparent 100%
  );
}

[data-mode="light"] .profile-card::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

[data-mode="light"] .profile-card:hover::after {
  background: linear-gradient(
    135deg,
    rgba(200, 35, 51, 0.7) 0%,
    rgba(255, 107, 138, 0.5) 25%,
    rgba(255, 170, 0, 0.4) 50%,
    rgba(200, 35, 51, 0.7) 100%
  );
}

/* ============================================
   RESPONSIVE - Profile Card - Enhanced
   ============================================ */
@media (max-width: 1200px) {
  .profile-card {
    border-radius: 22px;
  }

  .profile-card::after {
    border-radius: 22px;
  }

  .profile-card__name {
    font-size: 20px;
  }

  .profile-card__meta {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .profile-card {
    border-radius: 20px;
  }

  .profile-card::after {
    border-radius: 20px;
  }

  .profile-card:hover {
    transform: translateY(-8px) scale(1.01);
  }

  .profile-card__tag {
    top: 14px;
    left: 14px;
    padding: 8px 14px;
    font-size: 10px;
    border-radius: 6px;
  }

  .profile-card__tag--gold::before,
  .profile-card__tag--pink::before,
  .profile-card__tag--blue::before {
    display: none; /* Simplify animations on tablet */
  }

  .profile-card__views {
    top: 14px;
    right: 14px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .profile-card__info {
    padding: 20px;
  }

  .profile-card__name {
    font-size: 18px;
    gap: 8px;
  }

  .profile-card__verified {
    width: 22px;
    height: 22px;
  }

  .profile-card__verified svg {
    width: 13px;
    height: 13px;
  }

  .profile-card__figure::after {
    font-size: 20px;
    bottom: 70px;
    right: 16px;
  }
}

@media (max-width: 768px) {
  .profile-card {
    border-radius: 18px;
  }

  .profile-card::after {
    border-radius: 18px;
  }

  .profile-card:hover {
    transform: translateY(-6px);
  }

  .profile-card__tag {
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 9px;
    border-radius: 6px;
    border-width: 1px;
  }

  .profile-card__views {
    top: 12px;
    right: 12px;
    padding: 7px 10px;
    font-size: 10px;
    border-radius: 20px;
    gap: 5px;
  }

  .profile-card__views svg {
    width: 11px;
    height: 11px;
  }

  .profile-card__info {
    padding: 18px;
  }

  .profile-card__name {
    font-size: 16px;
    gap: 6px;
  }

  .profile-card__verified {
    width: 20px;
    height: 20px;
  }

  .profile-card__verified svg {
    width: 12px;
    height: 12px;
  }

  .profile-card__meta {
    font-size: 12px;
    gap: 10px;
  }

  .profile-card__dot {
    width: 5px;
    height: 5px;
  }

  .profile-card__figure::after {
    font-size: 18px;
    bottom: 65px;
    right: 14px;
  }

  .profile-card__avail {
    bottom: 75px;
    left: 12px;
    padding: 6px 12px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .profile-card {
    border-radius: 16px;
  }

  .profile-card::after {
    border-radius: 16px;
  }

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

  .profile-card::before {
    display: none; /* Hide shine effect on mobile for performance */
  }

  .profile-card__tag {
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-size: 8px;
    border-radius: 5px;
    border-width: 1px;
    letter-spacing: 0.08em;
  }

  .profile-card__tag--gold,
  .profile-card__tag--pink,
  .profile-card__tag--blue {
    animation: none; /* Disable animations on mobile for performance */
  }

  .profile-card__views {
    top: 10px;
    right: 10px;
    padding: 6px 9px;
    font-size: 9px;
  }

  .profile-card__views svg {
    width: 10px;
    height: 10px;
  }

  .profile-card__info {
    padding: 14px;
  }

  .profile-card__name {
    font-size: 15px;
    gap: 5px;
  }

  .profile-card__verified {
    width: 18px;
    height: 18px;
  }

  .profile-card__verified svg {
    width: 11px;
    height: 11px;
  }

  .profile-card__meta {
    font-size: 11px;
    gap: 8px;
  }

  .profile-card__dot {
    width: 4px;
    height: 4px;
  }

  .profile-card__figure::after {
    font-size: 16px;
    bottom: 55px;
    right: 12px;
  }

  .profile-card__avail {
    bottom: 65px;
    left: 10px;
    padding: 5px 10px;
    font-size: 9px;
    gap: 6px;
  }

  .profile-card__avail::before {
    width: 6px;
    height: 6px;
  }
}

/* Hotel Card */
.hotel-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-base);
}

.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-hover-shadow);
}

.hotel-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.hotel-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hotel-card:hover .hotel-card__image img {
  transform: scale(1.05);
}

.hotel-card__body {
  padding: var(--space-4);
}

.hotel-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--heading-primary);
  margin-bottom: var(--space-2);
}

.hotel-card__location {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* ================================================
   BADGES
   ================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.badge-verified {
  background: var(--badge-verified-bg);
  color: var(--badge-verified-text);
}

.badge-featured {
  background: var(--badge-featured-bg);
  color: var(--badge-featured-text);
}

.badge-hot {
  background: var(--badge-hot-bg);
  color: var(--badge-hot-text);
}

.badge-new {
  background: var(--badge-new-bg);
  color: var(--badge-new-text);
}

.badge-premium {
  background: var(--badge-premium-bg);
  color: var(--badge-premium-text);
}

.badge-top {
  background: var(--gradient-accent);
  color: var(--text-inverse);
}

/* ================================================
   FORMS
   ================================================ */
.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
}

.form-control {
  display: block;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-base);
  font-family: inherit;
  color: var(--input-text);
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-control::placeholder {
  color: var(--input-placeholder);
}

.form-control:focus {
  outline: none;
  border-color: var(--input-border-focus);
  box-shadow: 0 0 0 3px var(--brand-primary-soft);
}

.form-control:disabled {
  background-color: var(--bg-section-alt);
  cursor: not-allowed;
  opacity: 0.6;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236c757d' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  padding-right: var(--space-10);
}

/* Input Group */
.input-group {
  display: flex;
}

.input-group .form-control {
  flex: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* ================================================
   NAVIGATION & HEADER - FUTURISTIC 2026 DESIGN
   ================================================ */

/* Hide legacy header elements ONLY when new TGM header exists */
/* The :has() selector checks if .tgm-header is present in the document */
html:has(.tgm-header) .header,
html:has(.tgm-header) .header .radial,
html:has(.tgm-header) nav.navbar,
html:has(.tgm-header) .mainlinks.redborder:not(.tgm-nav) {
  display: none !important;
}

/* Fallback for browsers without :has() support - hide legacy only within body that has tgm-header */
body.has-tgm-header .header,
body.has-tgm-header .header .radial,
body.has-tgm-header nav.navbar,
body.has-tgm-header .mainlinks.redborder:not(.tgm-nav) {
  display: none !important;
}

/* Ensure hpContent is always visible */
.hpContent.radial {
  display: block !important;
}

/* ================================================
   PROMOTIONAL TOP BANNER - Theme Aware
   ================================================ */
.tgm-promo-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--brand-primary, #e91e63) 0%, var(--brand-secondary, #9c27b0) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  gap: 16px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.tgm-promo-banner.is-hidden {
  display: none;
}

.tgm-promo-banner__content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.tgm-promo-banner__icon {
  font-size: 18px;
}

.tgm-promo-banner__text {
  letter-spacing: 0.02em;
}

.tgm-promo-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.tgm-promo-banner__cta:hover {
  background: rgba(255, 255, 255, 0.3);
}

.tgm-promo-banner__cta::after {
  content: '→';
  font-size: 14px;
}

.tgm-promo-banner__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tgm-promo-banner__close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%);
}

/* Body padding = header height only (banner is in-flow, scrolls naturally) */
body {
  padding-top: 64px; /* Header height only */
}

@media (max-width: 992px) {
  body {
    padding-top: 58px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 54px;
  }
}

@media (max-width: 360px) {
  body {
    padding-top: 50px;
  }
}

@media (max-width: 768px) {
  .tgm-promo-banner {
    padding: 6px 36px 6px 12px;
    font-size: 11px;
    height: 36px;
  }

  .tgm-promo-banner__content {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .tgm-promo-banner__icon {
    font-size: 14px;
    flex-shrink: 0;
  }

  .tgm-promo-banner__text {
    display: none;
  }

  .tgm-promo-banner__link {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
  }

  .tgm-promo-banner__arrow {
    display: none;
  }

  .tgm-promo-banner__cta {
    padding: 4px 10px;
    font-size: 9px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .tgm-promo-banner__close {
    right: 8px;
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .tgm-promo-banner {
    padding: 6px 32px 6px 10px;
    min-height: 32px;
  }

  .tgm-promo-banner__content {
    gap: 6px;
  }

  .tgm-promo-banner__link {
    font-size: 10px;
    max-width: 140px;
  }

  .tgm-promo-banner__cta {
    padding: 3px 8px;
    font-size: 8px;
  }

  .tgm-promo-banner__cta::after {
    display: none;
  }
}

/* Main Header - Glass Morphism 2026 */
.tgm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #08080c 0%, #0c0c12 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-mode="light"] .tgm-header {
  background: linear-gradient(180deg, #ffffff 0%, #f8f8fa 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tgm-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0.1) 80%,
    transparent 100%
  );
}

.tgm-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--brand-primary, #f4a9c0) 30%,
    var(--heading-accent, #d4af37) 70%,
    transparent 100%
  );
  opacity: 0.5;
}

.tgm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 24px;
}

/* Logo - Premium Futuristic */
.tgm-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.tgm-logo img {
  height: 44px;
  width: 44px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.tgm-logo:hover img {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5),
              0 0 20px var(--brand-primary-soft, rgba(244, 169, 192, 0.2));
}

.tgm-logo__text {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.tgm-logo__accent {
  background: var(--heading-gradient, linear-gradient(135deg, #f4a9c0 0%, #d4af37 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation - Centered Inline */
.tgm-nav {
  background: transparent;
  border: none;
  position: static;
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 700px;
}

.tgm-nav::before {
  display: none;
}

.tgm-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.tgm-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tgm-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  position: relative;
  border-radius: 8px;
  white-space: nowrap;
  border: none;
  background: transparent;
  cursor: pointer;
}

.tgm-nav__link svg {
  transition: transform 0.2s ease;
}

.tgm-nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--heading-accent, #d4af37);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.tgm-nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.tgm-nav__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.tgm-nav__link.active {
  color: var(--heading-accent, #d4af37);
  background: rgba(212, 175, 55, 0.08);
}

.tgm-nav__link.active::after {
  transform: translateX(-50%) scaleX(1);
  background: var(--heading-accent, #d4af37);
}

/* Dropdown Menu */
.tgm-nav__more {
  position: relative;
}

.tgm-nav__dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.tgm-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: linear-gradient(180deg, rgba(20, 20, 28, 0.98) 0%, rgba(15, 15, 22, 0.99) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.05);
  list-style: none;
  margin: 0;
  z-index: 100;
}

.tgm-nav__more:hover .tgm-nav__dropdown,
.tgm-nav__dropdown-toggle[aria-expanded="true"] + .tgm-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tgm-nav__dropdown li {
  margin: 0;
}

.tgm-nav__dropdown a {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.tgm-nav__dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--heading-accent, #d4af37);
}

/* IDEA DESIGN - Image Copy 18: Header Actions (Right Side Icons) */
.tgm-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.tgm-header__icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.tgm-header__icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.tgm-header__icon-btn .icon-sun {
  display: none;
}

.tgm-header__icon-btn .icon-moon {
  display: block;
}

[data-mode="dark"] .tgm-header__icon-btn .icon-sun {
  display: block;
}

[data-mode="dark"] .tgm-header__icon-btn .icon-moon {
  display: none;
}

.tgm-header__signin {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.tgm-header__signin:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.tgm-header__signin span {
  display: inline;
}

/* Hide old CTA buttons on desktop - now using actions */
.tgm-header__cta {
  display: none;
}

/* Promo Banner - Image Copy 18 Style (Pink Gradient) */
.tgm-promo-banner__link {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.tgm-promo-banner__link:hover {
  opacity: 0.9;
}

.tgm-promo-banner__arrow {
  color: #fff;
  margin: 0 8px;
  font-size: 14px;
}

/* Dropdown for has-dropdown items */
.tgm-nav__has-dropdown {
  position: relative;
}

.tgm-nav__has-dropdown .tgm-nav__dropdown {
  left: 0;
  right: auto;
}

.tgm-nav__has-dropdown:hover .tgm-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Desktop hide mobile elements */
.hide-mobile { display: flex; }

/* ================================================
   HEADER RESPONSIVE - LARGE TABLET (1200px)
   ================================================ */
@media (max-width: 1200px) {
  .tgm-header__inner {
    padding: 0 24px;
  }

  .tgm-nav {
    max-width: 580px;
  }

  .tgm-nav__link {
    padding: 10px 10px;
    font-size: 11px;
  }

  .tgm-header__cta .btn {
    padding: 9px 14px;
    font-size: 10px;
  }

  .tgm-logo__text {
    font-size: 16px;
  }
}

/* ================================================
   HEADER RESPONSIVE - TABLET (992px)
   ================================================ */
@media (max-width: 992px) {
  .tgm-header__cta {
    display: none;
  }

  .tgm-promo-banner {
    height: 36px;
  }

  .tgm-header {
    top: 0;
  }

  /* ========== CLEAN MOBILE HEADER LAYOUT ========== */

  /* Header inner - simple flexbox, full width */
  .tgm-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    height: 58px;
    padding: 0 12px;
    margin: 0;
    box-sizing: border-box;
  }

  /* Logo - left side */
  .tgm-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .tgm-logo img,
  .tgm-logo__icon svg {
    height: 30px;
    width: 30px;
  }

  .tgm-logo__text {
    font-size: 15px;
    font-weight: 700;
  }

  /* Actions - right side, contains all buttons */
  .tgm-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  /* Icon buttons */
  .tgm-header__icon-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    padding: 0;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .tgm-header__icon-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Call button - pink gradient, icon only */
  .tgm-header__signin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    border: none;
    border-radius: 10px;
    gap: 0;
    flex-shrink: 0;
  }

  .tgm-header__signin span {
    display: none;
  }

  .tgm-header__signin svg {
    width: 18px;
    height: 18px;
    color: #fff;
    stroke: #fff;
  }

  /* Mobile nav hidden - no mobile menu */
  .tgm-nav {
    display: none !important;
  }
}

/* ================================================
   HEADER RESPONSIVE - SMALL MOBILE (480px)
   ================================================ */
@media (max-width: 480px) {
  .tgm-promo-banner {
    height: 32px;
    font-size: 10px;
  }

  .tgm-header {
    top: 0;
  }

  .tgm-header__inner {
    height: 54px;
    padding: 0 10px;
  }

  .tgm-logo {
    gap: 6px;
  }

  .tgm-logo img,
  .tgm-logo__icon svg {
    height: 26px;
    width: 26px;
  }

  .tgm-logo__text {
    font-size: 13px;
  }

  .tgm-header__actions {
    gap: 8px;
  }

  .tgm-header__icon-btn {
    width: 34px;
    height: 34px;
  }

  .tgm-header__icon-btn svg {
    width: 16px;
    height: 16px;
  }

  .tgm-header__signin {
    width: 38px;
    height: 38px;
  }

  .tgm-header__signin svg {
    width: 16px;
    height: 16px;
  }

}

/* ================================================
   FOOTER
   ================================================ */
.tgm-footer {
  background-color: var(--footer-bg);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-12) 0 var(--space-6);
  border-top: 1px solid var(--footer-border);
}

.tgm-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (max-width: 768px) {
  .tgm-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.tgm-footer__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--heading-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.tgm-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tgm-footer__list li {
  margin-bottom: var(--space-2);
}

.tgm-footer__list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.tgm-footer__list a:hover {
  color: #ff6b8a;
}

.tgm-footer__text {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.tgm-footer__text a {
  color: var(--heading-accent);
}

.tgm-footer__text a:hover {
  color: #ff6b8a;
}

.tgm-footer__bottom {
  text-align: center;
  padding-top: var(--space-6);
  margin-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.5);
}

.tgm-footer__bottom p {
  color: rgba(255, 255, 255, 0.5);
}

/* ================================================
   BREADCRUMBS - Unified Design System
   ================================================ */
.tgm-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.tgm-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tgm-breadcrumb a:hover {
  color: var(--accent-gold);
}

.tgm-breadcrumb svg {
  width: 16px;
  height: 16px;
  opacity: 0.4;
  flex-shrink: 0;
}

.tgm-breadcrumb__current {
  background: var(--heading-gradient, linear-gradient(135deg, #e8ce88, #ffc107));
  color: var(--text-inverse, #1a1a1a);
  padding: 5px 14px;
  border-radius: var(--radius-full, 20px);
  font-weight: var(--font-weight-semibold, 600);
  font-size: var(--font-size-xs, 0.75rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Light mode breadcrumb adjustments */
[data-mode="light"] .tgm-breadcrumb__current {
  background: linear-gradient(135deg, #c82333, #a71d2a);
  color: #fff;
}

/* ================================================
   HERO SECTION
   ================================================ */
.tgm-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-bg);
  overflow: hidden;
}

.tgm-hero--full {
  min-height: 100vh;
}

.tgm-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tgm-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tgm-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.tgm-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--space-8);
}

.tgm-hero__title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-black);
  color: #fff;
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.tgm-hero__subtitle {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
}

.tgm-hero__cta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .tgm-hero__title {
    font-size: var(--font-size-3xl);
  }

  .tgm-hero__subtitle {
    font-size: var(--font-size-lg);
  }
}

/* ================================================
   TRUST STRIP / CTA BAND
   ================================================ */
.tgm-trust-strip {
  background: var(--gradient-brand);
  padding: var(--space-6) 0;
}

.tgm-trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.tgm-trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: #fff;
}

.tgm-trust-strip__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
}

.tgm-trust-strip__text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

.tgm-trust-strip__number {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-black);
  display: block;
}

/* CTA Band */
.tgm-cta-band {
  background: var(--gradient-accent);
  padding: var(--space-8) 0;
  text-align: center;
}

.tgm-cta-band__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-inverse);
  margin-bottom: var(--space-2);
}

.tgm-cta-band__text {
  font-size: var(--font-size-lg);
  color: var(--text-inverse);
  opacity: 0.9;
  margin-bottom: var(--space-4);
}

/* ================================================
   FAQ / ACCORDION
   ================================================ */
.tgm-accordion {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tgm-accordion__item {
  border-bottom: 1px solid var(--border-default);
}

.tgm-accordion__item:last-child {
  border-bottom: none;
}

.tgm-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: var(--bg-card);
  border: none;
  cursor: pointer;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  text-align: left;
  transition: all var(--transition-fast);
}

.tgm-accordion__header:hover {
  background: var(--bg-card-hover);
}

.tgm-accordion__icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.tgm-accordion__item.is-open .tgm-accordion__icon {
  transform: rotate(180deg);
}

.tgm-accordion__body {
  display: none;
  padding: var(--space-4) var(--space-5);
  background: var(--bg-section-alt);
  color: var(--text-secondary);
}

.tgm-accordion__item.is-open .tgm-accordion__body {
  display: block;
}

/* ================================================
   SIDEBAR WIDGETS
   ================================================ */
.tgm-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.tgm-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tgm-widget__header {
  padding: var(--space-4);
  background: var(--brand-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.tgm-widget__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--heading-accent);
  margin: 0;
}

.tgm-widget__body {
  padding: var(--space-4);
}

.tgm-widget__list {
  list-style: decimal;
  padding-left: var(--space-5);
  margin: 0;
}

.tgm-widget__list li {
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.tgm-widget__list li:last-child {
  border-bottom: none;
}

.tgm-widget__list a {
  color: var(--text-secondary);
  text-transform: capitalize;
}

.tgm-widget__list a:hover {
  color: var(--heading-accent);
}

/* ================================================
   FLOATING BUTTONS
   ================================================ */
.tgm-floating-buttons {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  z-index: var(--z-fixed);
}

.tgm-floating-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-strong);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.tgm-floating-btn:hover {
  transform: scale(1.1);
}

.tgm-floating-btn--call {
  background: var(--brand-primary);
}

.tgm-floating-btn--whatsapp {
  background: #25D366;
}

.tgm-floating-btn--top {
  background: var(--bg-card);
  color: var(--text-primary);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.tgm-floating-btn--top.is-visible {
  opacity: 1;
  visibility: visible;
}

.tgm-floating-btn img {
  width: 28px;
  height: 28px;
}

/* ================================================
   LOADING & SKELETON
   ================================================ */
.tgm-skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-card) 25%,
    var(--bg-card-hover) 50%,
    var(--bg-card) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-md);
}

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

.tgm-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-default);
  border-top-color: var(--brand-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ================================================
   THEME TOGGLE
   ================================================ */
.tgm-theme-toggle {
  position: relative;
  width: 60px;
  height: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tgm-theme-toggle__track {
  position: absolute;
  inset: 2px;
  border-radius: var(--radius-full);
  background: var(--bg-section-alt);
}

.tgm-theme-toggle__thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: var(--brand-primary);
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

[data-mode="dark"] .tgm-theme-toggle__thumb {
  transform: translateX(28px);
}

/* ================================================
   UTILITIES
   ================================================ */
.text-accent { color: var(--heading-accent) !important; }
.text-highlight { color: var(--heading-highlight) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-primary { color: var(--text-primary) !important; }
.text-brand { color: var(--brand-primary) !important; }

.bg-page { background-color: var(--bg-page) !important; }
.bg-section { background-color: var(--bg-section) !important; }
.bg-section-alt { background-color: var(--bg-section-alt) !important; }
.bg-card { background-color: var(--bg-card) !important; }
.bg-brand { background-color: var(--brand-secondary) !important; }

.border-accent { border-color: var(--border-accent) !important; }
.border-subtle { border-color: var(--border-subtle) !important; }

.shadow-soft { box-shadow: var(--shadow-soft) !important; }
.shadow-medium { box-shadow: var(--shadow-medium) !important; }
.shadow-glow { box-shadow: var(--shadow-glow) !important; }

/* Spacing utilities */
.mt-0 { margin-top: 0 !important; }
.mt-4 { margin-top: var(--space-4) !important; }
.mt-6 { margin-top: var(--space-6) !important; }
.mt-8 { margin-top: var(--space-8) !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: var(--space-4) !important; }
.mb-6 { margin-bottom: var(--space-6) !important; }
.mb-8 { margin-bottom: var(--space-8) !important; }
.py-4 { padding-top: var(--space-4) !important; padding-bottom: var(--space-4) !important; }
.py-6 { padding-top: var(--space-6) !important; padding-bottom: var(--space-6) !important; }
.py-8 { padding-top: var(--space-8) !important; padding-bottom: var(--space-8) !important; }
.py-12 { padding-top: var(--space-12) !important; padding-bottom: var(--space-12) !important; }

/* Hide/Show */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* ============================================
   SHARED LIGHT MODE STYLES
   Common elements across all pages
   ============================================ */

/* Page Sections */
[data-mode="light"] .tgm-section {
  background: #fafafa;
}

[data-mode="light"] .tgm-section-alt {
  background: #fff;
}

/* Page Hero */
[data-mode="light"] .page-hero {
  background: linear-gradient(180deg, #fff5f7 0%, #fff0f3 100%);
}

[data-mode="light"] .page-hero__gradient {
  background: linear-gradient(135deg, rgba(200, 35, 51, 0.08) 0%, rgba(255, 107, 138, 0.04) 100%);
}

[data-mode="light"] .page-hero__title {
  color: #2d1f24;
}

[data-mode="light"] .page-hero__subtitle {
  color: #5a4248;
}

[data-mode="light"] .page-hero__icon {
  color: #c82333;
}

/* Breadcrumbs - Light Mode (uses plain <a> and <svg>, not BEM classes) */
[data-mode="light"] .tgm-breadcrumb a {
  color: #6b4a52;
}

[data-mode="light"] .tgm-breadcrumb a:hover {
  color: #c82333;
}

[data-mode="light"] .tgm-breadcrumb svg {
  color: #a88a92;
  stroke: #a88a92;
}

/* Cards */
[data-mode="light"] .tgm-card {
  background: #fff;
  border: 1px solid rgba(200, 35, 51, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-mode="light"] .tgm-card:hover {
  box-shadow: 0 10px 40px rgba(200, 35, 51, 0.1);
}

/* Widgets */
[data-mode="light"] .tgm-widget {
  background: #fff;
  border: 1px solid rgba(200, 35, 51, 0.08);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

[data-mode="light"] .tgm-widget h3 {
  color: #2d1f24;
}

[data-mode="light"] .tgm-widget a {
  color: #5a4248;
}

[data-mode="light"] .tgm-widget a:hover {
  color: #c82333;
}

/* CTA Band */
[data-mode="light"] .tgm-cta-band {
  background: linear-gradient(135deg, #c82333 0%, #e63956 100%);
}

[data-mode="light"] .tgm-cta-band__title {
  color: #fff;
}

[data-mode="light"] .tgm-cta-band__text {
  color: rgba(255, 255, 255, 0.9);
}

[data-mode="light"] .tgm-cta-band .btn-secondary {
  background: #fff;
  color: #c82333 !important;
  border-color: #fff;
}

[data-mode="light"] .tgm-cta-band .btn-secondary:hover {
  background: transparent;
  color: #fff !important;
  border-color: #fff;
}

/* Section Headers */
[data-mode="light"] .section-header h2 {
  color: #2d1f24;
}

[data-mode="light"] .main-heading {
  color: #2d1f24;
}

[data-mode="light"] .text-accent {
  color: #c82333;
}

/* Listing Cards */
[data-mode="light"] .listing-card {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-mode="light"] .listing-card:hover {
  box-shadow: 0 10px 40px rgba(200, 35, 51, 0.12);
}

/* Forms */
[data-mode="light"] input[type="text"],
[data-mode="light"] input[type="email"],
[data-mode="light"] input[type="tel"],
[data-mode="light"] input[type="number"],
[data-mode="light"] textarea,
[data-mode="light"] select {
  background: #fff;
  color: #2d1f24;
  border: 1px solid rgba(200, 35, 51, 0.15);
}

[data-mode="light"] input::placeholder,
[data-mode="light"] textarea::placeholder {
  color: rgba(45, 31, 36, 0.5);
}

/* Buttons */
[data-mode="light"] .btn-primary {
  background: linear-gradient(135deg, #c82333 0%, #e63956 100%);
  color: #fff !important;
}

[data-mode="light"] .btn-secondary {
  background: transparent;
  color: #c82333 !important;
  border: 2px solid #c82333;
}

[data-mode="light"] .btn-secondary:hover {
  background: #c82333;
  color: #fff !important;
}

[data-mode="light"] .btn-cta {
  background: linear-gradient(135deg, #c82333 0%, #e63956 100%);
  color: #fff !important;
}

[data-mode="light"] .btn-ghost {
  color: #5a4248;
}

[data-mode="light"] .btn-ghost:hover {
  background: rgba(200, 35, 51, 0.05);
  color: #c82333;
}

/* ================================================
   FOOTER - LIGHT MODE VISIBILITY FIXES
   Footer always uses dark background, so text must be light
   ================================================ */
[data-mode="light"] .tgm-footer {
  background: #1a1015;
  color: rgba(255, 255, 255, 0.75);
}

[data-mode="light"] .tgm-footer__title {
  color: #ff6b8a;
}

[data-mode="light"] .tgm-footer__list a {
  color: rgba(255, 255, 255, 0.75);
}

[data-mode="light"] .tgm-footer__list a:hover {
  color: #ff6b8a;
}

[data-mode="light"] .tgm-footer__bottom {
  color: rgba(255, 255, 255, 0.5);
  border-top-color: rgba(255, 255, 255, 0.1);
}

[data-mode="light"] .tgm-footer__bottom p {
  color: rgba(255, 255, 255, 0.5);
}

[data-mode="light"] .tgm-footer__contact,
[data-mode="light"] .tgm-footer__contact p,
[data-mode="light"] .tgm-footer p {
  color: rgba(255, 255, 255, 0.75) !important;
}

[data-mode="light"] .tgm-footer a {
  color: rgba(255, 255, 255, 0.75);
}

[data-mode="light"] .tgm-footer a:hover {
  color: #ff6b8a;
}

[data-mode="light"] .tgm-footer a[style*="color: var(--heading-accent)"],
[data-mode="light"] .tgm-footer a[style*="color: var(--text-secondary)"] {
  color: #ff6b8a !important;
}

/* ================================================
   PROMO BANNER - LIGHT MODE VISIBILITY FIXES
   ================================================ */
[data-mode="light"] .tgm-promo-banner {
  background: linear-gradient(135deg, #c82333 0%, #880e4f 100%);
}

[data-mode="light"] .tgm-promo-banner__text {
  color: #fff;
}

[data-mode="light"] .tgm-promo-banner__link {
  color: #ffd700;
  text-decoration: underline;
}

[data-mode="light"] .tgm-promo-banner__arrow {
  color: #ffd700;
}

[data-mode="light"] .tgm-promo-banner__cta {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

[data-mode="light"] .tgm-promo-banner__cta:hover {
  background: rgba(255, 255, 255, 0.3);
}

[data-mode="light"] .tgm-promo-banner__close {
  color: #fff;
}

/* ================================================
   LEGACY FOOTER - LIGHT MODE VISIBILITY FIXES
   ================================================ */
[data-mode="light"] footer {
  background: #1a1015 !important;
  color: #fff !important;
}

[data-mode="light"] footer .container {
  background: transparent !important;
}

[data-mode="light"] footer h2 {
  color: #ff6b8a !important;
}

[data-mode="light"] footer .footer-column {
  color: rgba(255, 255, 255, 0.9) !important;
}

[data-mode="light"] footer .footer-column ul li {
  color: rgba(255, 255, 255, 0.8) !important;
}

[data-mode="light"] footer .footer-column ul li a {
  color: rgba(255, 255, 255, 0.8) !important;
}

[data-mode="light"] footer .footer-column ul li a:hover {
  color: #ff6b8a !important;
}

[data-mode="light"] footer .rates-right h2,
[data-mode="light"] footer .textwidget,
[data-mode="light"] footer .textwidget p {
  color: rgba(255, 255, 255, 0.9) !important;
}

[data-mode="light"] footer .textwidget a {
  color: #ff6b8a !important;
}

[data-mode="light"] footer .footer-phone a {
  color: #ff6b8a !important;
}

[data-mode="light"] footer .text-center,
[data-mode="light"] footer p.text-center {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ================================================
   LEGACY PAGE CONTENT - LIGHT MODE VISIBILITY FIXES
   ================================================ */

/* Main Content Area */
[data-mode="light"] .hpContent {
  background: #fff !important;
}

[data-mode="light"] .hpContent.radial {
  background: linear-gradient(180deg, #fff5f7 0%, #ffffff 100%) !important;
}

/* Breadcrumbs */
[data-mode="light"] .bd-cum,
[data-mode="light"] .bd-cum a {
  color: #5a4248 !important;
}

[data-mode="light"] .bd-cum a:hover {
  color: #c82333 !important;
}

/* Profile Details Page */
[data-mode="light"] .profileContainer {
  color: #2d1f24 !important;
}

[data-mode="light"] .profileContainer h1,
[data-mode="light"] .profileContainer h2,
[data-mode="light"] .profileContainer h3 {
  color: #c82333 !important;
}

[data-mode="light"] .profileContainer .statsq,
[data-mode="light"] .profileContainer .statsa,
[data-mode="light"] .profileContainer .ratesq,
[data-mode="light"] .profileContainer .ratesa {
  color: #2d1f24 !important;
}

[data-mode="light"] .profileContainer p {
  color: #5a4248 !important;
}

[data-mode="light"] .profileContainer .table {
  background: #fff !important;
}

[data-mode="light"] .profileContainer .table th,
[data-mode="light"] .profileContainer .table td {
  color: #2d1f24 !important;
  border-color: rgba(200, 35, 51, 0.15) !important;
}

[data-mode="light"] .profileContainer .table th {
  background: rgba(200, 35, 51, 0.08) !important;
  color: #c82333 !important;
}

/* Scroll to Stats Button */
[data-mode="light"] .scrollToStats h1 {
  color: #c82333 !important;
}

[data-mode="light"] .scrollToStats .button {
  border-color: #c82333 !important;
}

[data-mode="light"] .scrollToStats .button a {
  color: #c82333 !important;
}

/* Buttons in Profile */
[data-mode="light"] .btn-outline-warning {
  color: #c82333 !important;
  border-color: #c82333 !important;
  background: transparent !important;
}

[data-mode="light"] .btn-outline-warning:hover {
  background: #c82333 !important;
  color: #fff !important;
}

[data-mode="light"] .btn-outline-warning img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(98%) saturate(3246%) hue-rotate(343deg) brightness(85%) contrast(95%);
}

[data-mode="light"] .btn-outline-warning:hover img {
  filter: brightness(0) invert(1);
}

/* Gold Border Button */
[data-mode="light"] .goldBorder {
  border-color: #c82333 !important;
}

[data-mode="light"] .redContent {
  color: #c82333 !important;
}

/* Category/Location Page Headings */
[data-mode="light"] .loc_head,
[data-mode="light"] .only-loc-det h1 {
  color: #c82333 !important;
}

/* Content Items */
[data-mode="light"] .content .itemContainer .item {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

[data-mode="light"] .content .itemContainer .item:hover {
  box-shadow: 0 10px 40px rgba(200, 35, 51, 0.15) !important;
}

[data-mode="light"] .content .itemContainer .item div.itemLink .itemInfoRight h3 {
  color: #c82333 !important;
}

[data-mode="light"] .content .itemContainer .item div.itemLink .itemInfoRight p,
[data-mode="light"] .content .itemContainer .item div.itemLink .itemInfoRight span {
  color: #5a4248 !important;
}

/* Main Links / Navigation */
[data-mode="light"] .mainlinks {
  background: #1a1015 !important;
}

[data-mode="light"] .mainlinks a {
  color: rgba(255, 255, 255, 0.9) !important;
}

[data-mode="light"] .mainlinks a:hover {
  color: #ff6b8a !important;
}

/* Header Strip / Promo Banner */
[data-mode="light"] .new_top,
[data-mode="light"] .header {
  background: linear-gradient(135deg, #c82333 0%, #880e4f 100%) !important;
}

/* Card Body - List Items */
[data-mode="light"] .card-body ol li {
  color: #5a4248 !important;
}

/* W-Details Section */
[data-mode="light"] .w-details {
  background: linear-gradient(135deg, #c82333 0%, #a91d2e 100%) !important;
}

[data-mode="light"] .w-details * {
  color: #fff !important;
}

/* Category Image Section */
[data-mode="light"] .cat-img-new {
  background: #f8f9fa !important;
}

/* Text Gold - Override for light mode */
[data-mode="light"] .text-gold {
  color: #c82333 !important;
}

/* ================================================
   LEGACY LISTING PAGES - LIGHT MODE VISIBILITY
   ================================================ */

/* Available Girls, Location, Category pages */
[data-mode="light"] .container h1,
[data-mode="light"] .container h2:not(.section-title) {
  color: #2d1f24;
}

[data-mode="light"] .container p {
  color: #5a4248;
}

/* Profile Card Grid */
[data-mode="light"] .row > [class*="col-"] .card {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Whatsapp Link Buttons */
[data-mode="light"] .whatsapp-link li a {
  background: #25d366 !important;
  color: #fff !important;
}

/* Reviews Section on Profile */
[data-mode="light"] #review_box,
[data-mode="light"] #review_box2 {
  background: #fff !important;
  color: #2d1f24 !important;
}

[data-mode="light"] #review_box div,
[data-mode="light"] #review_box2 div {
  color: #2d1f24 !important;
}

/* FAQ Page */
[data-mode="light"] .faq-section {
  background: #fff !important;
}

[data-mode="light"] .faq-section h2,
[data-mode="light"] .faq-section h3 {
  color: #c82333 !important;
}

[data-mode="light"] .faq-section p {
  color: #5a4248 !important;
}

/* Blog Page */
[data-mode="light"] .blog-card {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

[data-mode="light"] .blog-card h3,
[data-mode="light"] .blog-card h2 {
  color: #2d1f24 !important;
}

[data-mode="light"] .blog-card p {
  color: #5a4248 !important;
}

/* Contact Page */
[data-mode="light"] .contact-form {
  background: #fff !important;
}

[data-mode="light"] .contact-form label {
  color: #2d1f24 !important;
}

/* Employment Page */
[data-mode="light"] .employment-section {
  background: #fff !important;
}

[data-mode="light"] .employment-section h1,
[data-mode="light"] .employment-section h2 {
  color: #c82333 !important;
}

[data-mode="light"] .employment-section p,
[data-mode="light"] .employment-section li {
  color: #5a4248 !important;
}

/* Hotel Page */
[data-mode="light"] .hotel-card {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

[data-mode="light"] .hotel-card h3 {
  color: #2d1f24 !important;
}

[data-mode="light"] .hotel-card p {
  color: #5a4248 !important;
}

/* Price Page */
[data-mode="light"] .price-table {
  background: #fff !important;
}

[data-mode="light"] .price-table th {
  background: rgba(200, 35, 51, 0.08) !important;
  color: #c82333 !important;
}

[data-mode="light"] .price-table td {
  color: #2d1f24 !important;
  border-color: rgba(200, 35, 51, 0.1) !important;
}

/* Video Page */
[data-mode="light"] .video-container {
  background: #f8f9fa !important;
}

/* General Text Classes */
[data-mode="light"] .text-white {
  color: #2d1f24 !important;
}

[data-mode="light"] .bg-dark {
  background: #1a1015 !important;
}

/* Radial Background Override */
[data-mode="light"] .radial {
  background: linear-gradient(180deg, #fff5f7 0%, #ffffff 100%) !important;
}

/* ================================================
   LEGACY RELATED PROFILES SECTION - LIGHT MODE
   ================================================ */
[data-mode="light"] .related-profiles h2,
[data-mode="light"] .related-profiles h3 {
  color: #c82333 !important;
}

[data-mode="light"] .related-profiles .card {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

[data-mode="light"] .related-profiles .card h4,
[data-mode="light"] .related-profiles .card h5 {
  color: #2d1f24 !important;
}

[data-mode="light"] .related-profiles .card p {
  color: #5a4248 !important;
}

/* ================================================
   MOBILE MENU - LIGHT MODE FIXES
   ================================================ */
[data-mode="light"] .mainlinks.redborder {
  background: #1a1015 !important;
}

[data-mode="light"] .redContent {
  background: transparent !important;
}

[data-mode="light"] .mobileExpand {
  background: rgba(200, 35, 51, 0.9) !important;
}

/* ================================================
   KEYLIST - LIGHT MODE FIXES
   ================================================ */
[data-mode="light"] .keylist li {
  color: #5a4248 !important;
}

[data-mode="light"] .keylist li h3 {
  color: #c82333 !important;
}

/* ================================================
   HEADER / NAVIGATION - LIGHT MODE FIXES
   ================================================ */
[data-mode="light"] .header {
  background: linear-gradient(135deg, #c82333 0%, #a91d2e 100%) !important;
}

[data-mode="light"] .header .radial {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

[data-mode="light"] .redborder {
  background: #c82333 !important;
}

[data-mode="light"] .redContent {
  background: linear-gradient(135deg, #a91d2e 0%, #880e4f 100%) !important;
}

[data-mode="light"] .redContent a {
  color: #fff !important;
}

[data-mode="light"] .redContent a:hover {
  color: #ffd700 !important;
}

/* Main Navigation */
[data-mode="light"] .mainlinks {
  background: #1a1015 !important;
}

[data-mode="light"] .mainlinks > div > div {
  background: transparent !important;
}

[data-mode="light"] .mainlinks > div > div a {
  color: rgba(255, 255, 255, 0.9) !important;
}

[data-mode="light"] .mainlinks > div > div a:hover {
  color: #ff6b8a !important;
}

/* Float Contact Buttons */
[data-mode="light"] .float {
  background: transparent !important;
}

[data-mode="light"] .float a {
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

/* Body Overlay */
[data-mode="light"] .bodyoverlay {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

/* Overlay */
[data-mode="light"] .overlay:after {
  background: rgba(0, 0, 0, 0.7) !important;
}

/* Dialog/Modal */
[data-mode="light"] .discal {
  background: #fff !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

/* ================================================
   TOP BUTTON / SCROLL TO TOP - LIGHT MODE
   ================================================ */
[data-mode="light"] #myBtn {
  background-color: #c82333 !important;
  color: #fff !important;
  border-color: #c82333 !important;
}

[data-mode="light"] #myBtn:hover {
  background-color: #a91d2e !important;
}

/* ================================================
   BLINK / ANIMATION TEXT - LIGHT MODE
   ================================================ */
[data-mode="light"] .blink_me {
  color: #c82333 !important;
}

[data-mode="light"] .blink {
  color: #c82333 !important;
}

/* ================================================
   USER BOX - LIGHT MODE
   ================================================ */
[data-mode="light"] .user {
  background-color: #fff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

/* ================================================
   GENERAL LIGHT MODE OVERRIDES FOR LEGACY PAGES
   ================================================ */

/* Ensure body has proper light background */
[data-mode="light"] body {
  background: #fafafa !important;
}

/* Container backgrounds */
[data-mode="light"] .container {
  background: transparent;
}

/* HP Content Section */
[data-mode="light"] .hpContent h1,
[data-mode="light"] .hpContent h2 {
  color: #c82333 !important;
}

[data-mode="light"] .hpContent h3,
[data-mode="light"] .hpContent h4,
[data-mode="light"] .hpContent h5,
[data-mode="light"] .hpContent h6 {
  color: #2d1f24 !important;
}

[data-mode="light"] .hpContent p,
[data-mode="light"] .hpContent span,
[data-mode="light"] .hpContent li {
  color: #5a4248 !important;
}

[data-mode="light"] .hpContent a {
  color: #c82333 !important;
}

[data-mode="light"] .hpContent a:hover {
  color: #a91d2e !important;
}

/* About Page */
[data-mode="light"] .about-section {
  background: #fff !important;
}

[data-mode="light"] .about-section h1,
[data-mode="light"] .about-section h2 {
  color: #c82333 !important;
}

[data-mode="light"] .about-section p {
  color: #5a4248 !important;
}

/* Location Details */
[data-mode="light"] .location-details {
  background: #fff !important;
}

[data-mode="light"] .location-details h1,
[data-mode="light"] .location-details h2 {
  color: #c82333 !important;
}

[data-mode="light"] .location-details p {
  color: #5a4248 !important;
}

/* Category Details */
[data-mode="light"] .category-details {
  background: #fff !important;
}

[data-mode="light"] .category-details h1,
[data-mode="light"] .category-details h2 {
  color: #c82333 !important;
}

[data-mode="light"] .category-details p {
  color: #5a4248 !important;
}

/* Grid Container */
[data-mode="light"] .grid-1280 {
  background: transparent !important;
}

/* More Profiles Section */
[data-mode="light"] .moreprofile .card {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

[data-mode="light"] .moreprofile .card h3,
[data-mode="light"] .moreprofile .card h4 {
  color: #2d1f24 !important;
}

[data-mode="light"] .moreprofile .card p {
  color: #5a4248 !important;
}

/* Spinner */
[data-mode="light"] #spinner {
  color: #c82333 !important;
}

/* View More Button */
[data-mode="light"] #view_morebtn {
  background: linear-gradient(135deg, #c82333 0%, #e63956 100%) !important;
  color: #fff !important;
  border: none !important;
}

[data-mode="light"] #view_morebtn:hover {
  background: linear-gradient(135deg, #a91d2e 0%, #c82333 100%) !important;
}

/* ================================================
   LOCATION/CATEGORY DETAILS PAGES - LIGHT MODE
   ================================================ */

/* Location Details Page */
[data-mode="light"] .only-loc-det h1 {
  color: #c82333 !important;
}

[data-mode="light"] .only-loc-det h2 {
  color: #a91d2e !important;
}

[data-mode="light"] .location-gap {
  color: #5a4248 !important;
}

[data-mode="light"] .featured {
  color: #5a4248 !important;
}

/* Strong/Bold text override for light mode */
[data-mode="light"] strong {
  color: #c82333 !important;
}

/* Category Details Sidebar Cards */
[data-mode="light"] .bg-red {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

[data-mode="light"] .bg-red .card-header {
  background: rgba(200, 35, 51, 0.08) !important;
  color: #c82333 !important;
  border-color: rgba(200, 35, 51, 0.15) !important;
}

[data-mode="light"] .bg-red .card-body {
  background: #fff !important;
}

[data-mode="light"] .bg-red .card-body ol li,
[data-mode="light"] .bg-red .card-body ul li {
  color: #5a4248 !important;
}

[data-mode="light"] .bg-red .card-body ol li a,
[data-mode="light"] .bg-red .card-body ul li a {
  color: #5a4248 !important;
}

[data-mode="light"] .bg-red .card-body ol li a:hover,
[data-mode="light"] .bg-red .card-body ul li a:hover {
  color: #c82333 !important;
}

/* Text Warning Override */
[data-mode="light"] .text-warning {
  color: #c82333 !important;
}

/* Border Classes */
[data-mode="light"] .border-mum {
  border-color: rgba(200, 35, 51, 0.15) !important;
}

/* Partners Item */
[data-mode="light"] .partners-item__thumb {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

[data-mode="light"] .lc-name {
  background: #c82333 !important;
  color: #fff !important;
}

/* Gredient Overlay - Keep dark for image overlay */
[data-mode="light"] .gredient {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.48)) !important;
}

/* Category Cards */
[data-mode="light"] .card.bg-red {
  border: 1px solid rgba(200, 35, 51, 0.1) !important;
}

[data-mode="light"] .card.my-4 {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Text Light Override for Light Mode */
[data-mode="light"] .text-light {
  color: #5a4248 !important;
}

[data-mode="light"] .text-light:hover {
  color: #c82333 !important;
}

/* Text Dark Override for Light Mode */
[data-mode="light"] .text-dark {
  color: #2d1f24 !important;
}

/* Button Warning */
[data-mode="light"] .btn-warning {
  background: #c82333 !important;
  color: #fff !important;
  border-color: #c82333 !important;
}

[data-mode="light"] .btn-warning:hover {
  background: #a91d2e !important;
  color: #fff !important;
}

/* ================================================
   GENERAL BOOTSTRAP OVERRIDES - LIGHT MODE
   ================================================ */

/* Cards */
[data-mode="light"] .card {
  background: #fff !important;
  border-color: rgba(200, 35, 51, 0.1) !important;
}

[data-mode="light"] .card-header {
  background: rgba(200, 35, 51, 0.05) !important;
  border-color: rgba(200, 35, 51, 0.1) !important;
  color: #2d1f24 !important;
}

[data-mode="light"] .card-body {
  background: #fff !important;
  color: #5a4248 !important;
}

[data-mode="light"] .card-footer {
  background: rgba(200, 35, 51, 0.03) !important;
  border-color: rgba(200, 35, 51, 0.1) !important;
}

/* Form Controls */
[data-mode="light"] .form-control {
  background: #fff !important;
  color: #2d1f24 !important;
  border-color: rgba(200, 35, 51, 0.2) !important;
}

[data-mode="light"] .form-control:focus {
  border-color: #c82333 !important;
  box-shadow: 0 0 0 0.2rem rgba(200, 35, 51, 0.15) !important;
}

[data-mode="light"] .form-control::placeholder {
  color: rgba(45, 31, 36, 0.5) !important;
}

/* Input Group */
[data-mode="light"] .input-group-append .btn,
[data-mode="light"] .input-group-prepend .btn {
  background: #c82333 !important;
  color: #fff !important;
  border-color: #c82333 !important;
}

/* Badges */
[data-mode="light"] .badge-primary {
  background: #c82333 !important;
  color: #fff !important;
}

[data-mode="light"] .badge-warning {
  background: #c82333 !important;
  color: #fff !important;
}

[data-mode="light"] .badge-danger {
  background: #a91d2e !important;
  color: #fff !important;
}

/* Alerts */
[data-mode="light"] .alert-warning {
  background: rgba(200, 35, 51, 0.1) !important;
  color: #c82333 !important;
  border-color: rgba(200, 35, 51, 0.2) !important;
}

/* Tables */
[data-mode="light"] .table {
  color: #2d1f24 !important;
}

[data-mode="light"] .table th {
  background: rgba(200, 35, 51, 0.08) !important;
  color: #c82333 !important;
  border-color: rgba(200, 35, 51, 0.15) !important;
}

[data-mode="light"] .table td {
  color: #2d1f24 !important;
  border-color: rgba(200, 35, 51, 0.1) !important;
}

[data-mode="light"] .table-striped tbody tr:nth-of-type(odd) {
  background: rgba(200, 35, 51, 0.03) !important;
}

[data-mode="light"] .table-hover tbody tr:hover {
  background: rgba(200, 35, 51, 0.06) !important;
}

/* List Groups */
[data-mode="light"] .list-group-item {
  background: #fff !important;
  color: #5a4248 !important;
  border-color: rgba(200, 35, 51, 0.1) !important;
}

[data-mode="light"] .list-group-item:hover {
  background: rgba(200, 35, 51, 0.03) !important;
}

/* ================================================
   READ MORE BUTTON - LIGHT MODE
   ================================================ */
[data-mode="light"] #readMoreBtn {
  background: #c82333 !important;
  color: #fff !important;
  border-color: #c82333 !important;
}

[data-mode="light"] #readMoreBtn:hover {
  background: #a91d2e !important;
}

/* ================================================
   PRICE PAGE - LIGHT MODE FIXES
   ================================================ */
[data-mode="light"] .main-head {
  background: linear-gradient(135deg, #c82333 0%, #a91d2e 100%) !important;
  color: #fff !important;
}

[data-mode="light"] .pricing-table {
  background: #fff !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}

[data-mode="light"] .pricing-table h2 {
  color: #c82333 !important;
}

[data-mode="light"] .pricing-table p,
[data-mode="light"] .pricing-table li {
  color: #5a4248 !important;
}

[data-mode="light"] .pricing-table .pricing-label {
  background: rgba(200, 35, 51, 0.1) !important;
  color: #c82333 !important;
}

[data-mode="light"] .pricing-table .btn {
  background: #c82333 !important;
  color: #fff !important;
}

/* ================================================
   ABOUT PAGE - LIGHT MODE FIXES
   ================================================ */
[data-mode="light"] .tgm-benifits {
  background: #fff !important;
  color: #2d1f24 !important;
  box-shadow: 0 0 10px 5px rgba(200, 35, 51, 0.1) !important;
}

[data-mode="light"] .about-content {
  background: #fff !important;
}

[data-mode="light"] .about-content h1,
[data-mode="light"] .about-content h2 {
  color: #c82333 !important;
}

[data-mode="light"] .about-content p {
  color: #5a4248 !important;
}

/* ================================================
   FAQ PAGE - LIGHT MODE FIXES
   ================================================ */
[data-mode="light"] .faq-container {
  background: #fff !important;
}

[data-mode="light"] .faq-question,
[data-mode="light"] .accordion-header {
  background: rgba(200, 35, 51, 0.05) !important;
  color: #2d1f24 !important;
}

[data-mode="light"] .faq-answer,
[data-mode="light"] .accordion-body {
  background: #fff !important;
  color: #5a4248 !important;
}

/* ================================================
   CONTACT PAGE - LIGHT MODE FIXES
   ================================================ */
[data-mode="light"] .contact-container {
  background: #fff !important;
}

[data-mode="light"] .contact-container h1,
[data-mode="light"] .contact-container h2 {
  color: #c82333 !important;
}

[data-mode="light"] .contact-container p,
[data-mode="light"] .contact-container label {
  color: #5a4248 !important;
}

[data-mode="light"] .contact-info {
  background: #fff !important;
}

[data-mode="light"] .contact-info h3 {
  color: #c82333 !important;
}

[data-mode="light"] .contact-info p,
[data-mode="light"] .contact-info a {
  color: #5a4248 !important;
}

[data-mode="light"] .contact-info a:hover {
  color: #c82333 !important;
}

/* ================================================
   VIDEO PAGE - LIGHT MODE FIXES
   ================================================ */
[data-mode="light"] .video-section {
  background: #fafafa !important;
}

[data-mode="light"] .video-card {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

[data-mode="light"] .video-card h3 {
  color: #2d1f24 !important;
}

[data-mode="light"] .video-card p {
  color: #5a4248 !important;
}

[data-mode="light"] .playbtn {
  background: rgba(200, 35, 51, 0.9) !important;
}

/* ================================================
   GALLERY PAGE - LIGHT MODE FIXES
   ================================================ */
[data-mode="light"] .gallery-container {
  background: #fafafa !important;
}

[data-mode="light"] .gallery-item {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* ================================================
   AVAILABLE GIRLS PAGE - LIGHT MODE FIXES
   ================================================ */
[data-mode="light"] .available-section {
  background: #fff !important;
}

[data-mode="light"] .available-section h1,
[data-mode="light"] .available-section h2 {
  color: #c82333 !important;
}

[data-mode="light"] .available-section p {
  color: #5a4248 !important;
}

/* ================================================
   EMPLOYMENT PAGE - LIGHT MODE FIXES
   ================================================ */
[data-mode="light"] .employment-container {
  background: #fff !important;
}

[data-mode="light"] .employment-container h1,
[data-mode="light"] .employment-container h2 {
  color: #c82333 !important;
}

[data-mode="light"] .employment-container p,
[data-mode="light"] .employment-container li {
  color: #5a4248 !important;
}

/* ================================================
   HOTELS PAGE - LIGHT MODE FIXES
   ================================================ */
[data-mode="light"] .hotel-section {
  background: #fafafa !important;
}

[data-mode="light"] .hotel-item {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

[data-mode="light"] .hotel-item h3 {
  color: #2d1f24 !important;
}

[data-mode="light"] .hotel-item p {
  color: #5a4248 !important;
}

/* ================================================
   BLOG PAGE - LIGHT MODE FIXES
   ================================================ */
[data-mode="light"] .blog-container {
  background: #fff !important;
}

[data-mode="light"] .blog-item {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

[data-mode="light"] .blog-item h2,
[data-mode="light"] .blog-item h3 {
  color: #2d1f24 !important;
}

[data-mode="light"] .blog-item p {
  color: #5a4248 !important;
}

[data-mode="light"] .blog-item a {
  color: #c82333 !important;
}

/* ================================================
   TERMS/PRIVACY/REPORT PAGES - LIGHT MODE FIXES
   ================================================ */
[data-mode="light"] .legal-content {
  background: #fff !important;
}

[data-mode="light"] .legal-content h1,
[data-mode="light"] .legal-content h2 {
  color: #c82333 !important;
}

[data-mode="light"] .legal-content p,
[data-mode="light"] .legal-content li {
  color: #5a4248 !important;
}

/* ================================================
   AMBIENTE / CATEGORY LIST PAGE - LIGHT MODE FIXES
   ================================================ */
[data-mode="light"] .ambiente-section {
  background: #fafafa !important;
}

[data-mode="light"] .ambiente-card {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

[data-mode="light"] .ambiente-card h3 {
  color: #2d1f24 !important;
}

[data-mode="light"] .ambiente-card p {
  color: #5a4248 !important;
}

/* ================================================
   SWIPER / SLIDER - LIGHT MODE FIXES
   ================================================ */
[data-mode="light"] .swiper-slide {
  background: #fff !important;
}

[data-mode="light"] .swiper-pagination-bullet {
  background: #c82333 !important;
}

[data-mode="light"] .swiper-button-prev,
[data-mode="light"] .swiper-button-next {
  color: #c82333 !important;
}
