/* ==========================================================================
   AAA AGENCY (MASSY MARKETING) - HIGH-CONVERTING LUXURY DESIGN SYSTEM
   Enhanced with Mobile Drawer Navigation, Live Social Proof Toasts & Cross-Browser Styles
   ========================================================================== */

:root {
  /* Typography Stack (Helvetica / Tahoma) */
  --font-base: 'Helvetica Neue', Helvetica, Tahoma, Arial, sans-serif;
  --font-heading: 'Helvetica Neue', Helvetica, Tahoma, Arial, sans-serif;
  --font-display: 'Helvetica Neue', Helvetica, Tahoma, Arial, sans-serif;
  /* Obsidian Dark Palette */
  --bg-dark: #060911;
  --bg-surface: #0B101E;
  --bg-card: rgba(16, 23, 39, 0.75);
  --bg-card-hover: rgba(24, 34, 58, 0.9);
  --bg-glass: rgba(11, 16, 30, 0.7);

  /* Red & White Luxury Palette (Đỏ - Trắng) */
  --gold-primary: #E11D48;
  --gold-light: #FF4D6D;
  --gold-glow: rgba(225, 29, 72, 0.45);
  --purple-accent: #EF4444;
  --purple-glow: rgba(239, 68, 68, 0.35);
  --rose-accent: #F43F5E;
  --emerald-success: #10B981;
  --cyan-bright: #38BDF8;

  /* Typography Colors */
  --text-white: #FFFFFF;
  --text-heading: #FFFFFF;
  --text-body: #CBD5E1;
  --text-dim: #94A3B8;
  --text-gold: #FF4D6D;

  /* Glassmorphism Borders */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(225, 29, 72, 0.35);
  --border-active: rgba(225, 29, 72, 0.75);

  /* Shadows & Radius */
  --shadow-glass: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --shadow-glow: 0 0 35px rgba(225, 29, 72, 0.3);
  --shadow-button: 0 12px 28px rgba(225, 29, 72, 0.4);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Mode Overrides */
body.light-mode {
  --bg-dark: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-hover: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.88);

  --text-white: #0F172A;
  --text-heading: #0F172A;
  --text-body: #334155;
  --text-dim: #64748B;
  --text-gold: #E11D48;

  --border-glass: rgba(15, 23, 42, 0.12);
  --border-glow: rgba(225, 29, 72, 0.4);
  --shadow-glass: 0 10px 30px rgba(15, 23, 42, 0.08);
}

body.light-mode {
  background: 
    radial-gradient(circle at 10% 10%, rgba(225, 29, 72, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 25%, rgba(255, 77, 109, 0.10) 0%, transparent 50%),
    var(--bg-dark);
}

body.light-mode input, 
body.light-mode select, 
body.light-mode textarea {
  background: #FFFFFF;
  color: #0F172A;
  border-color: rgba(15, 23, 42, 0.15);
}

body.light-mode .calc-result-card {
  background: #FFFFFF;
  border-color: rgba(225, 29, 72, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-mode .calc-result-card .result-sub-item h4 {
  color: #0F172A;
}

body.light-mode .floating-badge-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(225, 29, 72, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

body.light-mode .metric-pill {
  background: #F8FAFC;
  border-color: rgba(15, 23, 42, 0.1);
}

body.light-mode .option-card {
  background: #F8FAFC;
  border-color: rgba(15, 23, 42, 0.1);
}

body.light-mode .option-card:hover, 
body.light-mode .option-card.selected {
  background: rgba(225, 29, 72, 0.12);
}

body.light-mode .pricing-card.featured {
  background: linear-gradient(180deg, rgba(225, 29, 72, 0.12) 0%, #FFFFFF 100%);
  border-color: var(--gold-primary);
}

body.light-mode .pricing-price {
  color: #0F172A;
}

body.light-mode .modal-card {
  background: #FFFFFF;
  color: #0F172A;
  border-color: rgba(225, 29, 72, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

body.light-mode .toast-notification {
  background: #FFFFFF;
  color: #0F172A;
  border-color: rgba(229, 184, 105, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

body.light-mode .toast-body strong {
  color: #0F172A;
}

body.light-mode .footer {
  background: #F1F5F9;
  border-top-color: rgba(15, 23, 42, 0.1);
}

body.light-mode .footer-col h4 {
  color: #0F172A;
}

body.light-mode .navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

body.light-mode .custom-range {
  background: rgba(15, 23, 42, 0.1);
}

body.light-mode .wizard-progress-bar {
  background: rgba(15, 23, 42, 0.1);
}

body.light-mode .mobile-drawer {
  background: #FFFFFF;
}

/* Theme & Language Toggle Buttons */
.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: var(--transition-fast);
  cursor: pointer !important;
  flex-shrink: 0;
  position: relative;
  z-index: 110;
  pointer-events: auto !important;
}

body.light-mode .theme-toggle-btn {
  background: rgba(15, 23, 42, 0.06);
  color: #D97706;
}

.theme-toggle-btn:hover {
  transform: scale(1.12) rotate(15deg);
  border-color: var(--gold-primary);
}

.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-heading);
  font-size: 0.825rem;
  font-weight: 700;
  cursor: pointer !important;
  transition: var(--transition-fast);
  flex-shrink: 0;
  position: relative;
  z-index: 110;
  pointer-events: auto !important;
}

body.light-mode .lang-toggle-btn {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.15);
  color: #0F172A;
}

.lang-toggle-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-1px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
  font-family: var(--font-base);
  background-color: var(--bg-dark);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

section[id], .hero-section {
  scroll-margin-top: 95px;
}

body {
  min-height: 100vh;
  font-family: var(--font-base);
  background: 
    radial-gradient(circle at 10% 10%, rgba(225, 29, 72, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 90% 25%, rgba(255, 77, 109, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 65%, rgba(225, 29, 72, 0.08) 0%, transparent 55%),
    var(--bg-dark);
  background-attachment: fixed;
}

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

.font-serif {
  font-family: var(--font-heading);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

input, select, textarea {
  font-family: inherit;
  color: var(--text-white);
  background: rgba(11, 16, 30, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(225, 29, 72, 0.25);
  outline: none;
}

/* Utilities */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #FFFFFF 0%, #FF6B8B 45%, #E11D48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFA8B8 50%, #EF4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid var(--border-glow);
  color: var(--gold-light);
}

.badge-live {
  background: rgba(225, 29, 72, 0.15);
  border-color: rgba(225, 29, 72, 0.4);
  color: #FFA8B8;
}

.dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold-light);
  box-shadow: 0 0 12px var(--gold-light);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 10px rgba(225, 29, 72, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

/* Glass Card Component */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glass), var(--shadow-glow);
  transform: translateY(-5px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #E11D48 0%, #BE123C 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(225, 29, 72, 0.55);
  background: linear-gradient(135deg, #FF4D6D 0%, #E11D48 100%);
  color: #FFFFFF;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-glow);
  color: var(--gold-light);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  padding: 8px 0;
  background: rgba(6, 9, 17, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  margin-right: 28px;
}

.logo-title-group {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.logo-img {
  height: 38px;
  width: auto;
  max-width: 44px;
  object-fit: contain;
  border-radius: 8px;
  background: #FFFFFF;
  padding: 2px 4px;
  box-shadow: 0 0 16px rgba(225, 29, 72, 0.35);
  flex-shrink: 0;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.logo:hover .logo-img {
  transform: scale(1.08);
  box-shadow: 0 0 22px rgba(225, 29, 72, 0.55);
}

body.light-mode .logo-img {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 0 18px rgba(225, 29, 72, 0.4);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-white);
  line-height: 1;
  white-space: nowrap;
}

.logo-sub {
  font-family: var(--font-base);
  font-size: 0.68rem;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
  font-weight: 700;
  white-space: nowrap;
  margin-left: 6px;
  padding-left: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 6px 0;
  transition: var(--transition-fast);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--gold-primary);
  background: transparent;
}

/* Solutions Dropdown Menu */
.nav-item-dropdown {
  position: relative;
  list-style: none;
}

.nav-dropdown-toggle {
  cursor: pointer;
}

.nav-chevron {
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
  color: var(--gold-primary);
  opacity: 0.85;
}

.nav-item-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 320px;
  background: rgba(8, 12, 22, 0.96);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(229, 184, 105, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Invisible hover bridge to prevent menu from closing when moving mouse */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

body.light-mode .nav-dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(229, 184, 105, 0.4);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12), 0 0 20px rgba(229, 184, 105, 0.2);
}

.nav-item-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-body);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.nav-dropdown-item:hover {
  background: rgba(229, 184, 105, 0.1);
  transform: translateX(4px);
}

body.light-mode .nav-dropdown-item:hover {
  background: rgba(229, 184, 105, 0.15);
}

.dropdown-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(229, 184, 105, 0.12);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.dropdown-item-content {
  display: flex;
  flex-direction: column;
}

.dropdown-item-content strong {
  font-size: 0.835rem;
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
}

.dropdown-item-content span {
  font-size: 0.725rem;
  color: var(--text-dim);
  line-height: 1.2;
  margin-top: 2px;
}

.nav-portal-btn {
  background: rgba(229, 184, 105, 0.12) !important;
  border: 1px solid rgba(229, 184, 105, 0.35) !important;
  border-radius: 20px !important;
  padding: 5px 14px !important;
  color: var(--gold-light) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  box-shadow: 0 0 10px rgba(229, 184, 105, 0.15) !important;
  transition: all var(--transition-fast) !important;
}

.nav-portal-btn:hover {
  background: rgba(229, 184, 105, 0.25) !important;
  border-color: var(--gold-primary) !important;
  box-shadow: 0 0 18px rgba(229, 184, 105, 0.4) !important;
  transform: translateY(-1px) !important;
  color: #FFFFFF !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 20px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-glow);
  z-index: 999;
  padding: 70px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  transition: right 0.35s ease;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--transition-fast);
}

.mobile-drawer a:hover {
  color: var(--gold-primary);
}

/* Hero Section */
.hero-section {
  padding: 165px 0 90px;
  position: relative;
}

.hero-content > .badge {
  margin-bottom: 16px;
  display: inline-flex;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.15;
  margin: 22px 0;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 38px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-glass);
}

.stat-item h3 {
  font-size: 1.95rem;
  color: var(--gold-light);
  font-family: var(--font-display);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* Hero Graphic Showcase Container */
.hero-media-container {
  position: relative;
}

.hero-image-wrapper {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border-glow);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), var(--shadow-glow);
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.floating-badge-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(11, 16, 30, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: 2.6rem;
  margin: 18px 0 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-body);
}

/* Interactive ROI Calculator */
.calculator-section {
  padding: 100px 0;
  position: relative;
}

.calc-box {
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  background: radial-gradient(circle at top left, rgba(229, 184, 105, 0.1), transparent 60%), var(--bg-card);
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-label {
  font-weight: 600;
  color: var(--text-heading);
}

.slider-value {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gold-primary);
  font-family: var(--font-display);
}

/* Range Slider Compatibility (WebKit & Firefox) */
.custom-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-light);
  cursor: pointer;
  box-shadow: 0 0 20px var(--gold-primary);
  transition: transform 0.15s ease;
}

.custom-range::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-light);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px var(--gold-primary);
  transition: transform 0.15s ease;
}

.custom-range::-webkit-slider-thumb:hover, .custom-range::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.calc-result-card {
  padding: 40px;
  border-radius: var(--radius-md);
  background: rgba(6, 9, 17, 0.85);
  border: 1px solid var(--border-glow);
  text-align: center;
  position: relative;
}

.result-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin: 14px 0;
  line-height: 1;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border-glass);
}

.result-sub-item h4 {
  font-size: 1.5rem;
  color: var(--text-white);
  font-family: var(--font-display);
}

.result-sub-item span {
  font-size: 0.825rem;
  color: var(--text-dim);
}

/* Services Section */
.services-section {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 38px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(229, 184, 105, 0.12);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.service-list li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-heading);
}

.service-list svg {
  color: var(--emerald-success);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Case Studies Section */
.case-studies-section {
  padding: 100px 0;
}

.case-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.925rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-body);
  transition: var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background: rgba(229, 184, 105, 0.18);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.case-card {
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.case-metric-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.metric-pill {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(6, 9, 17, 0.7);
  border: 1px solid var(--border-glass);
}

.metric-pill h4 {
  font-size: 1.7rem;
  color: var(--emerald-success);
  font-family: var(--font-display);
}

.metric-pill span {
  font-size: 0.825rem;
  color: var(--text-dim);
}

.case-image-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  aspect-ratio: 16/10;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.case-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Salon Audit Blueprint Wizard */
.audit-section {
  padding: 100px 0;
}

.wizard-card {
  padding: 52px;
  max-width: 820px;
  margin: 0 auto;
}

.wizard-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-bottom: 40px;
  overflow: hidden;
}

.wizard-progress-fill {
  height: 100%;
  width: 33.33%;
  background: linear-gradient(90deg, var(--gold-primary), var(--rose-accent));
  transition: width 0.4s ease;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 30px 0;
}

.option-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(6, 9, 17, 0.7);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: left;
}

.option-card:hover, .option-card.selected {
  border-color: var(--gold-primary);
  background: rgba(225, 29, 72, 0.12);
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  padding: 44px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-glass), var(--shadow-glow);
  background: linear-gradient(180deg, rgba(225, 29, 72, 0.14) 0%, rgba(16, 23, 39, 0.85) 100%);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.4);
}

.pricing-header h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.9rem;
  font-weight: 800;
  color: var(--text-white);
  font-family: var(--font-display);
  margin: 18px 0 26px;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 28px 0;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-heading);
}

.pricing-features svg {
  color: var(--gold-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* FAQ Accordion */
.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-heading);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--gold-primary);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 26px;
  color: var(--text-body);
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 26px 26px;
}

/* Live Social Proof Toast Popup */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(11, 16, 30, 0.94);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  max-width: 360px;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--emerald-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.toast-body strong {
  color: var(--text-white);
  font-size: 0.875rem;
  display: block;
}

.toast-body span {
  color: var(--text-dim);
  font-size: 0.775rem;
}

/* Footer */
.footer {
  padding: 80px 0 30px;
  background: rgba(4, 6, 10, 0.96);
  border-top: 1px solid var(--border-glass);
  position: relative;
  z-index: 10;
}

.footer-grid, .footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-body);
  margin-top: 18px;
  max-width: 340px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 22px;
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-col ul, .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.footer-col a, .footer-links a {
  font-size: 0.875rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.footer-col a:hover, .footer-links a:hover {
  color: var(--gold-primary);
  transform: translateX(3px);
}

.footer-bottom, .footer-bottom-inner {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid var(--border-glass);
  font-size: 0.85rem;
  color: var(--text-dim);
}

@media (max-width: 992px) {
  .footer-grid, .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .footer-grid, .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================================================
   FLOATING AI CHATBOT WIDGET STYLES
   ========================================================================== */
.chatbot-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 950;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: #060911;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(229, 184, 105, 0.4), var(--shadow-glow);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-bubble:hover {
  transform: scale(1.12);
}

.chatbot-bubble .chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--emerald-success);
  border: 2px solid var(--bg-dark);
}

.chatbot-window {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 950;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 480px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9) translateY(20px);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.chatbot-window.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

body.light-mode .chatbot-window {
  background: #FFFFFF;
  border-color: rgba(229, 184, 105, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.chatbot-header {
  padding: 16px 20px;
  background: rgba(6, 9, 17, 0.85);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

body.light-mode .chatbot-header {
  background: #F8FAFC;
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

.chat-avatar-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #060911;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.chat-title h4 {
  font-size: 0.95rem;
  color: var(--text-heading);
}

.chat-title span {
  font-size: 0.725rem;
  color: var(--emerald-success);
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-close-btn {
  color: var(--text-dim);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-fast);
  background: none;
  border: none;
}

.chat-close-btn:hover {
  color: var(--gold-primary);
}

.chat-messages {
  flex: 1 1 auto;
  min-height: 0;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.msg-bubble {
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.45;
}

.msg-bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-heading);
  border-bottom-left-radius: 4px;
}

body.light-mode .msg-bot {
  background: #F1F5F9;
  color: #0F172A;
  border-color: rgba(15, 23, 42, 0.08);
}

.msg-user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #060911;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}

.quick-prompts {
  padding: 10px 14px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  border-top: 1px solid var(--border-glass);
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  min-height: 48px;
  align-items: center;
}

body.light-mode .quick-prompts {
  background: #F8FAFC;
  border-top-color: rgba(15, 23, 42, 0.08);
}

.prompt-chip {
  white-space: nowrap;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(229, 184, 105, 0.12);
  border: 1px solid var(--border-glow);
  color: var(--gold-primary);
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.prompt-chip:hover {
  background: var(--gold-primary);
  color: #060911;
}

.chat-input-row {
  padding: 12px 14px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.chat-input-row input {
  padding: 10px 14px;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
}

.chat-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #060911;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
}

.typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 4px 2px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}
.modal-overlay, .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: rgba(4, 6, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active, .modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.85);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card, .modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close, .modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close:hover, .modal-close-btn:hover {
  color: var(--gold-primary);
  transform: scale(1.15);
}

/* E-Book & Course Showcase Styles */
.ebook-card {
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.ebook-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 72, 0.5) !important;
  box-shadow: 0 16px 40px rgba(225, 29, 72, 0.22);
}
.ebook-card:hover .ebook-cover-img {
  transform: scale(1.05);
}
.filter-tab-btn {
  transition: all 0.25s ease;
}
.filter-tab-btn:hover {
  border-color: var(--gold-primary) !important;
  color: #FFFFFF !important;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-grid, .calc-box, .case-card {
    grid-template-columns: 1fr;
  }
  .services-grid, .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 2.85rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 135px 0 60px;
  }
  .services-grid, .pricing-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.35rem;
  }
}

/* ==========================================================================
   AUTH PAGES STYLES (LOGIN & REGISTER)
   ========================================================================== */
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  position: relative;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  padding: 40px 36px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

body.light-mode .auth-card {
  background: #FFFFFF;
  border-color: rgba(229, 184, 105, 0.4);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header h2 {
  font-size: 1.85rem;
  margin-bottom: 8px;
}

.auth-header p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.social-login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-heading);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

body.light-mode .social-btn {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.12);
  color: #0F172A;
}

.social-btn:hover {
  border-color: var(--gold-primary);
  transform: translateY(-1px);
}

.divider-text {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 24px 0;
  color: var(--text-dim);
  font-size: 0.8rem;
}

.divider-text::before,
.divider-text::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-glass);
}

.divider-text span {
  padding: 0 12px;
}

.input-password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-password-wrapper input {
  padding-right: 46px;
}

.toggle-password-btn {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-password-btn:hover {
  color: var(--gold-primary);
}

.form-options-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.remember-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text-body);
}

.forgot-link {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.forgot-link:hover {
  text-decoration: underline;
}

.auth-footer-text {
  text-align: center;
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--text-dim);
}

.auth-footer-text a {
  color: var(--gold-primary);
  font-weight: 700;
  text-decoration: none;
  margin-left: 4px;
}

.auth-footer-text a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   10. ADMIN DASHBOARD STYLES (GLASSMORPHIC ADMIN ENGINE)
   ========================================================================== */
.admin-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 24px 60px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  margin-top: 24px;
}

@media (max-width: 992px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }
}

/* Sidebar */
.admin-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  backdrop-filter: blur(16px);
  height: fit-content;
}

.admin-user-info {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
}

.admin-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #FFFFFF;
  font-size: 1.1rem;
}

.admin-user-details h4 {
  font-size: 0.95rem;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.admin-user-details span {
  font-size: 0.775rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.admin-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-nav-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: left;
}

.admin-nav-btn i {
  width: 20px;
  font-size: 1rem;
  color: var(--text-dim);
}

.admin-nav-btn:hover {
  background: rgba(225, 29, 72, 0.08);
  color: var(--text-heading);
}

.admin-nav-btn.active {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.18), rgba(255, 77, 109, 0.12));
  border-color: var(--border-glow);
  color: #FFFFFF;
}

.admin-nav-btn.active i {
  color: var(--gold-light);
}

/* Admin Main Content */
.admin-tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.admin-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.admin-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.admin-header-bar h2 {
  font-size: 1.75rem;
  font-weight: 800;
}

/* KPI Cards Grid */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  backdrop-filter: blur(16px);
  transition: var(--transition-fast);
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
}

.stat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.stat-card-header span {
  font-size: 0.825rem;
  color: var(--text-dim);
  font-weight: 600;
}

.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(229, 184, 105, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.stat-trend {
  font-size: 0.775rem;
  font-weight: 600;
}

.stat-trend.up { color: var(--emerald-success); }
.stat-trend.down { color: var(--rose-accent); }

/* Data Tables */
.table-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(16px);
  margin-bottom: 28px;
}

.table-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.search-box-group {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(6, 9, 17, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  min-width: 260px;
}

body.light-mode .search-box-group {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.15);
}

.search-box-group input {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--text-heading);
  font-size: 0.875rem;
  outline: none;
  width: 100%;
}

.table-responsive {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-glass);
  vertical-align: middle;
}

.data-table th {
  color: var(--text-dim);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.data-table tr:hover td {
  background: rgba(229, 184, 105, 0.04);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.status-badge.pending {
  background: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-badge.confirmed {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.contacted {
  background: rgba(56, 189, 248, 0.15);
  color: var(--cyan-bright);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.table-action-btn {
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-body);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.table-action-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(229, 184, 105, 0.1);
}

.table-action-btn.delete:hover {
  border-color: var(--rose-accent);
  color: var(--rose-accent);
  background: rgba(244, 63, 94, 0.1);
}

/* Chatbot & Activity Logs Feed */
.activity-log-feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.log-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(6, 9, 17, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 16px;
}

body.light-mode .log-item {
  background: #F8FAFC;
}

.log-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.15);
  color: var(--purple-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.log-content {
  flex: 1;
}

.log-title {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.log-time {
  font-size: 0.775rem;
  color: var(--text-dim);
  font-weight: 400;
}

.log-msg {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* Campaign ROI Progress Bars */
.roi-campaign-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.campaign-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.campaign-row-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 700;
}

.campaign-progress-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

body.light-mode .campaign-progress-bar {
  background: rgba(15, 23, 42, 0.08);
}

.campaign-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-primary), var(--purple-accent));
}

/* ==========================================================================
   LUXURY TOAST NOTIFICATION & CONFIRM MODAL SYSTEM
   Obsidian Glassmorphism, Gold Aura, Animated Progress & Fluid Motion
   ========================================================================== */

#luxury-toast-container {
  position: fixed;
  top: 28px;
  right: 28px;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  gap: 14px;
  pointer-events: none;
  max-width: 440px;
  width: calc(100vw - 36px);
}

.luxury-toast {
  pointer-events: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(11, 16, 30, 0.90);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 16px;
  border: 1px solid rgba(229, 184, 105, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(229, 184, 105, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.12);
  transform-origin: top right;
  animation: luxuryToastSlideIn 0.42s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: transform 0.3s ease, opacity 0.3s ease, max-height 0.35s ease, margin 0.35s ease, padding 0.35s ease;
  user-select: none;
}

.luxury-toast.hide {
  animation: luxuryToastSlideOut 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Toast Icon Wrapper */
.luxury-toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}

.luxury-toast:hover .luxury-toast-icon {
  transform: scale(1.08);
}

/* Toast Body */
.luxury-toast-content {
  flex: 1;
  min-width: 0;
  padding-right: 6px;
}

.luxury-toast-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.luxury-toast-msg {
  font-size: 0.84rem;
  color: #CBD5E1;
  line-height: 1.45;
  word-break: break-word;
}

/* Toast Close Button */
.luxury-toast-close {
  background: transparent;
  border: none;
  color: #64748B;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: -2px;
  margin-right: -4px;
}

.luxury-toast-close:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(90deg) scale(1.1);
}

/* Countdown Progress Bar */
.luxury-toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  border-radius: 0 0 16px 16px;
  transform-origin: left;
  animation: luxuryToastProgress linear forwards;
}

.luxury-toast.paused .luxury-toast-progress {
  animation-play-state: paused;
}

/* Toast Type Variants */
/* 1. Success */
.luxury-toast-success {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(16, 185, 129, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}
.luxury-toast-success .luxury-toast-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(229, 184, 105, 0.2));
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #34D399;
}
.luxury-toast-success .luxury-toast-progress {
  background: linear-gradient(90deg, #10B981, #E5B869);
}

/* 2. Error */
.luxury-toast-error {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(239, 68, 68, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}
.luxury-toast-error .luxury-toast-icon {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #F87171;
}
.luxury-toast-error .luxury-toast-progress {
  background: linear-gradient(90deg, #EF4444, #F43F5E);
}

/* 3. Warning */
.luxury-toast-warning {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(245, 158, 11, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}
.luxury-toast-warning .luxury-toast-icon {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #FBBF24;
}
.luxury-toast-warning .luxury-toast-progress {
  background: linear-gradient(90deg, #F59E0B, #E5B869);
}

/* 4. Info */
.luxury-toast-info {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(168, 85, 247, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}
.luxury-toast-info .luxury-toast-icon {
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.5);
  color: #C084FC;
}
.luxury-toast-info .luxury-toast-progress {
  background: linear-gradient(90deg, #818CF8, #C084FC);
}

/* Light Mode Overrides for Toast */
body.light-mode .luxury-toast {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12), 0 0 25px rgba(229, 184, 105, 0.15);
}
body.light-mode .luxury-toast-title {
  color: #0F172A;
}
body.light-mode .luxury-toast-msg {
  color: #475569;
}
body.light-mode .luxury-toast-close {
  color: #94A3B8;
}
body.light-mode .luxury-toast-close:hover {
  color: #0F172A;
  background: rgba(15, 23, 42, 0.06);
}

/* Keyframe Animations */
@keyframes luxuryToastSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes luxuryToastSlideOut {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
    max-height: 120px;
    margin-bottom: 0;
  }
  100% {
    opacity: 0;
    transform: translateX(40px) scale(0.9);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: -14px;
  }
}

@keyframes luxuryToastProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

/* ==========================================================================
   LUXURY CONFIRM POPUP MODAL
   ========================================================================== */
.luxury-confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 100005;
  background: rgba(3, 5, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-confirm-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.luxury-confirm-card {
  background: rgba(11, 16, 30, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(229, 184, 105, 0.35);
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  padding: 32px 28px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.7), 0 0 35px rgba(229, 184, 105, 0.15);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.luxury-confirm-overlay.active .luxury-confirm-card {
  transform: scale(1) translateY(0);
}

body.light-mode .luxury-confirm-card {
  background: #FFFFFF;
  border-color: rgba(229, 184, 105, 0.5);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.luxury-confirm-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.4);
  color: var(--rose-accent);
  box-shadow: 0 0 25px rgba(244, 63, 94, 0.25);
}

.luxury-confirm-icon.warning {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.4);
  color: #FBBF24;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.25);
}

.luxury-confirm-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

body.light-mode .luxury-confirm-title {
  color: #0F172A;
}

.luxury-confirm-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 26px;
}

body.light-mode .luxury-confirm-desc {
  color: #475569;
}

.luxury-confirm-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-confirm-cancel {
  padding: 11px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-confirm-cancel:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-white);
}

body.light-mode .btn-confirm-cancel {
  background: #F1F5F9;
  border-color: rgba(15, 23, 42, 0.1);
  color: #475569;
}
body.light-mode .btn-confirm-cancel:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.btn-confirm-ok {
  padding: 11px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F43F5E, #E11D48);
  border: none;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(244, 63, 94, 0.35);
  transition: var(--transition-fast);
}

.btn-confirm-ok:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(244, 63, 94, 0.5);
}

.btn-confirm-ok.primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #060911;
  box-shadow: 0 4px 20px rgba(229, 184, 105, 0.35);
}

.btn-confirm-ok.primary:hover {
  box-shadow: 0 6px 25px rgba(229, 184, 105, 0.55);
}

/* Mobile Responsiveness for Toast */
@media (max-width: 640px) {
  #luxury-toast-container {
    top: 14px;
    right: 14px;
    left: 14px;
    width: auto;
    max-width: none;
  }
  .luxury-toast {
    min-width: 0;
    width: 100%;
  }
}

/* ==========================================================================
   TESTIMONIALS & VERIFIED REVIEWS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 100px 0;
  position: relative;
}

.testimonials-filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.t-filter-btn {
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.t-filter-btn:hover {
  color: var(--text-white);
  border-color: rgba(225, 29, 72, 0.4);
  background: rgba(225, 29, 72, 0.08);
}

.t-filter-btn.active {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.25), rgba(255, 77, 109, 0.15));
  border-color: var(--gold-primary);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(225, 29, 72, 0.25);
}

body.light-mode .t-filter-btn {
  background: #F1F5F9;
  border-color: rgba(15, 23, 42, 0.1);
  color: #64748B;
}

body.light-mode .t-filter-btn.active {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 72, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(225, 29, 72, 0.15);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(225, 29, 72, 0.5);
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.25);
  flex-shrink: 0;
}

.testimonial-avatar.alt-1 {
  background: linear-gradient(135deg, #FF4D6D, #E11D48);
  color: #FFFFFF;
  border-color: rgba(255, 77, 109, 0.5);
}

.testimonial-avatar.alt-2 {
  background: linear-gradient(135deg, #FF6B8B, #BE123C);
  color: #FFFFFF;
  border-color: rgba(225, 29, 72, 0.5);
}

.testimonial-meta h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.testimonial-meta span {
  font-size: 0.785rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.725rem;
  color: var(--emerald-success);
  font-weight: 600;
}

.testimonial-stars {
  color: #FF4D6D;
  font-size: 0.9rem;
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
}

.testimonial-metric-box {
  padding-top: 14px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metric-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(225, 29, 72, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
}

.metric-tag.purple {
  color: #FFFFFF;
  background: rgba(225, 29, 72, 0.2);
  border-color: rgba(225, 29, 72, 0.4);
}

.metric-tag.emerald {
  color: #34D399;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ==========================================================================
   TERMS & PRIVACY POLICY MODAL
   ========================================================================== */
.terms-modal-card {
  max-width: 760px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.terms-header {
  padding: 24px 28px 18px;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 9, 17, 0.6);
  flex-shrink: 0;
}

body.light-mode .terms-header {
  background: #F8FAFC;
}

.terms-tab-nav {
  display: flex;
  gap: 8px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-glass);
  overflow-x: auto;
  flex-shrink: 0;
}

.terms-nav-btn {
  padding: 8px 16px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-dim);
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.terms-nav-btn:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.06);
}

.terms-nav-btn.active {
  background: rgba(225, 29, 72, 0.15);
  border-color: rgba(225, 29, 72, 0.4);
  color: #FFFFFF;
}

.terms-scrollable-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 0.885rem;
  color: var(--text-body);
  line-height: 1.65;
}

.terms-section-block h4 {
  color: var(--text-heading);
  font-size: 1.05rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.terms-highlight-box {
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 12px 0;
  color: var(--text-white);
}

body.light-mode .terms-highlight-box {
  background: #FFF1F2;
  border-color: rgba(225, 29, 72, 0.3);
  color: #9F1239;
}

.terms-footer-actions {
  padding: 18px 28px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  background: rgba(6, 9, 17, 0.6);
  flex-shrink: 0;
}

body.light-mode .terms-footer-actions {
  background: #F8FAFC;
}

/* ==========================================================================
   404 ERROR PAGE STYLES
   ========================================================================== */
.error-page-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.error-hero-card {
  max-width: 600px;
  width: 100%;
  text-align: center;
  padding: 48px 36px;
  position: relative;
}

.error-number-display {
  font-size: 6.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 16px 0;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #FFFFFF 0%, #FF4D6D 45%, #E11D48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 35px rgba(225, 29, 72, 0.4));
}

.error-actions-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}



