/* Demo Styles - Subtle Demo Mode Indicators */
/* DUI-011: Updated CSS styling for more subtle demo mode indicators */
/* Created: 2025-08-05 */

/* Ensure banner buttons are readable on purple background */
.demo-banner .btn {
  background: rgba(255, 255, 255, 0.9);
  color: var(--slate-800, #1e293b) !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.demo-banner .btn:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

/* Demo variables (fallbacks) mapped to global tokens */
:root {
  /* Primary demo accents */
  --demo-primary-bg: rgba(79, 70, 229, 0.06);            /* Indigo */
  --demo-primary-hover-bg: rgba(79, 70, 229, 0.09);
  --demo-primary-border: rgba(79, 70, 229, 0.20);
  --demo-primary-contrast-bg: rgba(255, 255, 255, 0.85);
  --demo-primary-contrast-border: rgba(0, 0, 0, 0.12);

  /* Context badges */
  --demo-context-bg: rgba(79, 70, 229, 0.06);
  --demo-context-border: rgba(79, 70, 229, 0.18);

  /* Theme variants */
  --demo-business-bg: rgba(30, 64, 175, 0.08);            /* Blue */
  --demo-business-hover-bg: rgba(30, 64, 175, 0.12);
  --demo-business-border: rgba(30, 64, 175, 0.20);

  --demo-leisure-bg: rgba(124, 58, 237, 0.08);            /* Purple */
  --demo-leisure-hover-bg: rgba(124, 58, 237, 0.12);
  --demo-leisure-border: rgba(124, 58, 237, 0.20);
}

/* =====================================================
   ENHANCED DEMO HEADER BANNERS
   ===================================================== */

/* Unified demo banner styling for property pages */
.demo-banner {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  margin: -2rem -2rem 2rem -2rem;
  box-shadow: var(--glass-shadow);
  opacity: 0.92; /* Subtle opacity reduction */
  transition: opacity 0.3s ease;
}

.demo-banner:hover {
  opacity: 1;
}

.demo-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.demo-banner-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.demo-banner-right {
  flex-shrink: 0;
}

/* Unified demo badge styling */
.demo-badge {
  background: var(--material-ultra-thin-bg); /* More subtle background */
  color: var(--glass-text-overlay); /* Slightly reduced opacity */
  padding: 0.25rem 0.75rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid var(--material-ultra-thin-border);
  transition: all 0.3s ease;
}

.demo-badge:hover {
  background: var(--material-thin-bg);
  color: white;
}

.demo-text {
  color: var(--glass-text-overlay);
  font-weight: 500;
}

/* =====================================================
   DEMO INDICATOR COMPONENTS  
   ===================================================== */

/* Subtle demo indicators for content sections */
.demo-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--demo-primary-bg); /* Much more subtle background */
  color: #4f46e5;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--demo-primary-border);
  transition: all 0.3s ease;
  opacity: 0.85; /* Reduced opacity for subtlety */
}

.demo-indicator:hover {
  background: var(--demo-primary-hover-bg);
  opacity: 1;
  transform: translateY(-1px);
}

.demo-indicator i {
  font-size: 1rem;
  color: #4f46e5;
  opacity: 0.8;
}

/* =====================================================
   CONTEXT BADGES (Minimal Demo Indicators)
   ===================================================== */

.context-badge {
  background: var(--demo-context-bg);
  color: #4f46e5;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--demo-context-border);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.context-badge:hover {
  background: var(--demo-primary-hover-bg);
  opacity: 1;
}

/* =====================================================
   UNIVERSAL PROPERTY COMPONENTS
   ===================================================== */

/* Back to dashboard link - Universal for all demo property pages */
/* Universal Back Button - DRY implementation for all demo/analysis pages */
.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #6b7280;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
  margin-bottom: 1rem;
}

.back-button:hover {
  background: #4b5563;
  color: white;
  text-decoration: none;
}

/* Legacy classes removed - now using universal .back-button class */

/* Property type description - Universal styling */
.property-type {
  color: var(--slate-600, #475569);
  font-style: italic;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

/* Reduce spacing for dashboard title when followed by property type */
.dashboard-title + .property-type {
  margin-top: -1rem;
}

/* Property statistics grid - Universal layout for analytics */
.property-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Stat cards - Override global glass card styling for demo/property consistency */
.property-stats-grid .stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Card headers for stats cards - Override analysis glass headers */
/* Updated selector for new HTML structure */
.dashboard .container .card .card-header {
  background: var(--material-thin-bg);
  color: var(--slate-800, #1e293b);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--material-thin-border);
  backdrop-filter: blur(var(--material-thin-blur)) saturate(var(--material-thin-saturate));
  -webkit-backdrop-filter: blur(var(--material-thin-blur)) saturate(var(--material-thin-saturate));
  border-radius: 12px 12px 0 0;
}

.dashboard .container .card .card-header h3 {
  color: var(--slate-800, #1e293b);
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.dashboard .container .card .card-header small {
  color: var(--slate-500, #64748b);
  font-size: 0.875rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #10b981;
  display: block;
}

.stat-label {
  color: var(--slate-500, #64748b);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Fix subtitle contrast issue - Universal for card headers */
body.page-demo .card-header small {
  color: var(--slate-500, #64748b);
}

/* =====================================================
   PROPERTY-SPECIFIC STYLING
   ===================================================== */

/* Grand Plaza - Business Theme with Blue Accent */
.grand-plaza .demo-indicator {
  background: var(--demo-business-bg);
  color: #1e40af;
  border-color: var(--demo-business-border);
}

.grand-plaza .demo-indicator:hover {
  background: var(--demo-business-hover-bg);
}

.grand-plaza .demo-indicator i {
  color: #1e40af;
}

/* Seaside Resort - Leisure Theme with Purple Accent */
.seaside-resort .demo-indicator {
  background: var(--demo-leisure-bg);
  color: #7c3aed;
  border-color: var(--demo-leisure-border);
}

.seaside-resort .demo-indicator:hover {
  background: var(--demo-leisure-hover-bg);
}

.seaside-resort .demo-indicator i {
  color: #7c3aed;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 768px) {
  .demo-banner {
    padding: 0.75rem 1rem;
    margin: -1rem -1rem 1rem -1rem;
  }
  
  .demo-banner-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .demo-banner-left {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .demo-indicator {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
  
  .demo-badge {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .demo-banner {
    border-radius: 0 0 8px 8px;
  }
  
  .demo-indicator {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
  }
  
  .demo-text {
    font-size: 0.9rem;
  }
}

/* =====================================================
   ACCESSIBILITY & REDUCED MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
  .demo-indicator,
  .demo-badge,
  .demo-banner {
    transition: none;
  }
  
  .demo-indicator:hover {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .demo-indicator {
    background: var(--demo-primary-contrast-bg);
    border-color: var(--demo-primary-contrast-border);
    opacity: 1;
  }
  
  .demo-badge {
    background: var(--material-thin-bg);
    border: 1px solid var(--material-thick-border);
  }
}

/* =====================================================
   PRINT STYLES (Hide Demo Indicators)
   ===================================================== */

@media print {
  .demo-banner,
  .demo-indicator,
  .demo-badge,
  .context-badge {
    display: none !important;
  }
}

/* =====================================================
   LEGACY SUPPORT (Override Existing Inline Styles)
   ===================================================== */

/* Override any existing inline demo indicator styles */
.demo-indicator[style] {
  background: var(--demo-primary-bg) !important;
  color: #4f46e5 !important;
  opacity: 0.85 !important;
}

/* Ensure watermark styles are completely removed */
.demo-watermark::before {
  display: none !important;
}

/* =====================================================
   DEMO ANALYSIS PAGE COMPONENTS
   (Merged from analysis.css - Demo-only styling)
   ===================================================== */

/* Button Styles - Missing from other CSS files */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 6px;
  min-height: 36px;
}

/* Analysis header styles consolidated in dashboard.css for single source of truth */

/* Property Overview Stats */
.overview-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #10b981;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--slate-500, #64748b);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Analysis Results Layout - Override Bootstrap */
.analysis-results {
  margin: 2rem 0 !important;
  display: block !important;
  visibility: visible !important;
}

.analysis-content {
  width: 100% !important;
  display: block !important;
  visibility: visible !important;
}

.analysis-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 2rem !important;
  margin-bottom: 2rem !important;
  visibility: visible !important;
}

/* Analysis Cards - Override Bootstrap */
.analysis-results .card,
.analysis-grid .card {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: var(--material-ultra-thin-bg) !important;
  border: 1px solid var(--material-ultra-thin-border) !important;
  border-radius: 12px !important;
  margin-bottom: 2rem !important;
}

.analysis-results .card-body,
.analysis-grid .card .card-body {
  display: block !important;
  visibility: visible !important;
  padding: 2rem !important;
}

/* Table Styles - Essential for data display - Override Bootstrap */  
.table-container {
  background: white !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: var(--glass-shadow) !important;
  margin-bottom: 1rem !important;
  display: block !important;
  visibility: visible !important;
}

.table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 0 !important;
  display: table !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.table thead {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.table th {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: #1f2937;
  border-bottom: 2px solid var(--material-ultra-thin-bg);
  font-size: 14px;
  text-align: left;
}

.table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--material-ultra-thin-bg);
  font-size: 15px;
  color: #374151;
  vertical-align: top;
}

.table tbody tr:hover {
  background: var(--table-hover-bg);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

/* Badge Styles - For review counts */
.badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.375rem;
  text-align: center;
  white-space: nowrap;
}

.badge-success {
  background-color: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.badge-warning {
  background-color: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.text-muted {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Card Header Styling with Accent Colors - Override Bootstrap */
.analysis-results .card-header,
.analysis-grid .card .card-header {
  padding: 1.5rem !important;
  border-bottom: 1px solid #e2e8f0 !important;
  background: var(--material-thin-bg) !important;
  position: relative !important;
  display: block !important;
  visibility: visible !important;
}

.card-header h3 {
  margin: 0 0 0.5rem 0;
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 600;
}

.card-header small {
  color: #6b7280;
  font-size: 0.875rem;
}

.card-header.accent {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-bottom: 1px solid var(--material-thin-border);
}

.card-header.accent h3 {
  color: white;
}

.card-header.accent small {
  color: var(--glass-text-overlay);
}

.card-header.accent .demo-indicator {
  background: var(--material-thin-bg);
  color: white;
  border: 1px solid var(--material-thin-border);
}

.card-header.negative {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  border-bottom: 1px solid var(--material-thin-border);
}

.card-header.negative h3 {
  color: white;
}

.card-header.negative small {
  color: var(--glass-text-overlay);
}

.card-header.negative .demo-indicator {
  background: var(--material-thin-bg);
  color: white;
  border: 1px solid var(--material-thin-border);
}

/* Sentiment Analysis Components */
.sentiment-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sentiment-fill {
  height: 8px;
  background: #10b981;
  border-radius: 4px;
  position: relative;
}

.sentiment-fill.positive {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.impact-level {
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.impact-level.medium {
  background: var(--warning-bg);
  color: #f59e0b;
}

.impact-level.low {
  background: var(--muted-bg);
  color: #6b7280;
}

/* Keywords Grid - Professional structured layout */
.keywords-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  padding: 1rem 0;
}

.keyword-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #e5e7eb;
  transition: all 0.2s ease;
}

.keyword-item:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.keyword-item.high-frequency {
  border-left-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}

.keyword-item.medium-frequency {
  border-left-color: #f59e0b;
  background: rgba(245, 158, 11, 0.05);
}

.keyword-item.low-frequency {
  border-left-color: #6b7280;
  background: rgba(107, 114, 128, 0.05);
}

.keyword-term {
  font-weight: 600;
  color: #1f2937;
  font-size: 0.875rem;
}

.keyword-count {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 500;
}

/* AI Insights - Force Visibility */
.insights-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 1.5rem !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.insight-item {
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  gap: 1rem;
}

.insight-item.positive {
  background: var(--success-light-bg);
  border-color: var(--success-border);
}

.insight-item.improvement {
  background: var(--warning-light-bg);
  border-color: var(--warning-border);
}

.insight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.insight-item.positive .insight-icon {
  background: var(--success-bg);
  color: #10b981;
}

.insight-item.improvement .insight-icon {
  background: var(--warning-bg);
  color: #f59e0b;
}

.insight-content h4 {
  margin: 0 0 0.5rem 0;
  color: #1f2937;
}

.insight-content p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

/* Demo Watermark - Disabled (Consistent with DUI-010/011 approach) */

/* Demo CTA */
.demo-cta-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  margin-top: 2rem;
  border-radius: 12px;
}

.demo-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.demo-cta-left h3 {
  margin: 0 0 0.5rem 0;
  color: white;
}

.demo-cta-left p {
  margin: 0;
  color: var(--glass-text-overlay);
}

.demo-cta-right {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* AI Assistant Trigger Button */
.ai-assistant-trigger {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.ai-assistant-trigger:hover {
  transform: translateY(-2px);
  box-shadow: var(--glass-shadow-hover);
}

.trigger-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  text-align: left;
}

.trigger-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--material-thin-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.trigger-text {
  flex: 1;
}

.trigger-text h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

.trigger-text p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.trigger-arrow {
  font-size: 1.25rem;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.ai-assistant-trigger:hover .trigger-arrow {
  transform: translateX(4px);
}

/* =====================================================
   REVIEW CARDS & NAVIGATION - Universal Components
   ===================================================== */

/* Demo reviews container - Universal for all demo property pages */
.demo-reviews-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.unified-reviews {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Review card styles merged and moved down to line 1677 */

.navigation-section {
  margin: 2rem 0;
  text-align: center;
}

.analysis-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.analysis-link:hover {
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

/* Property Insights - Universal */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.insight-item {
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  gap: 1rem;
}

.insight-item.positive {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
}

.insight-item.improvement {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.2);
}

.insight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.insight-item.positive .insight-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.insight-item.improvement .insight-icon {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.insight-content h4 {
  margin: 0 0 0.5rem 0;
  color: #1f2937;
  font-size: 1.125rem;
  font-weight: 600;
}

.insight-content p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Analysis CTA - Universal */
.analysis-cta {
  text-align: center;
  padding: 2rem;
  background: var(--material-ultra-thin-bg);
  border-radius: 12px;
  border: 1px solid var(--material-ultra-thin-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(8px);
  margin-top: 2rem;
}

.analysis-cta h4 {
  margin: 0 0 0.5rem 0;
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 600;
}

.analysis-cta p {
  margin: 0 0 1.5rem 0;
  color: #6b7280;
  font-size: 0.95rem;
}

/* CTA Banner - Universal (Deprecated - replaced by liquid glass design) */
.cta-banner {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
}

.cta-banner h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.cta-banner p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cta-button {
  background: white;
  color: #7c3aed;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: #7c3aed;
}

/* Analysis header styles consolidated in dashboard.css for single source of truth */

/* Back to property button - gray style */
/* REMOVED: .back-to-property - replaced by universal .back-button class */

/* AI Sentiment Analysis - Universal */
.sentiment-score-card {
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: var(--glass-shadow);
}

.sentiment-score-value {
  font-size: 4rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sentiment-score-label {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

.sentiment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.sentiment-section {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--glass-shadow);
  border: 1px solid #e5e7eb;
}

.sentiment-section.positive {
  border-left: 4px solid #10b981;
}

.sentiment-section.negative {
  border-left: 4px solid #f59e0b;
}

.sentiment-section h4 {
  margin: 0 0 1rem 0;
  color: #1f2937;
  font-size: 1.125rem;
  font-weight: 600;
}

/* Dimensions Overview - Universal */
.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.dimension-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--glass-shadow);
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease;
}

.dimension-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--glass-shadow-hover);
}

.dimension-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #10b981;
  display: block;
  margin-bottom: 0.5rem;
}

.dimension-label {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Keywords cloud CSS removed - replaced with keywords-grid above */

/* AI Recommendations - Universal */
.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.recommendation-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--glass-shadow);
  border: 1px solid #e5e7eb;
  border-left: 4px solid #4f46e5;
}

.recommendation-item h4 {
  margin: 0 0 0.75rem 0;
  color: #1f2937;
  font-size: 1.125rem;
  font-weight: 600;
}

.recommendation-item p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Floating AI Assistant Button */
.floating-ai-assistant {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.floating-ai-assistant:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(79, 70, 229, 0.6);
}

.floating-ai-assistant i {
  font-size: 1.5rem;
  color: white;
}

.floating-ai-assistant::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #4f46e5, #7c3aed, #06b6d4, #10b981);
  border-radius: 50%;
  z-index: -1;
  animation: spin 4s linear infinite;
  opacity: 0.7;
}

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

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.floating-ai-tooltip {
  position: absolute;
  bottom: 120%;
  right: 0;
  background: var(--material-thin-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--material-thin-border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  white-space: nowrap;
  font-size: 0.875rem;
  color: #1f2937;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-ai-assistant:hover .floating-ai-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Liquid Glass CTA - Modern Universal Design */
.liquid-glass-cta {
  background: var(--material-thin-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--material-thin-border);
  border-radius: 20px;
  margin: 3rem 0;
  padding: 3rem;
  text-align: center;
  box-shadow: var(--glass-shadow-hover);
  position: relative;
  overflow: hidden;
}

.liquid-glass-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-highlight), transparent);
  opacity: 0.8;
}

.liquid-glass-cta h3 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1f2937, #4f46e5);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.liquid-glass-cta p {
  margin: 0 0 2.5rem 0;
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-primary {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
  color: white;
  text-decoration: none;
}

.cta-secondary {
  background: var(--material-ultra-thin-bg);
  color: #4f46e5;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 1px solid var(--material-thin-border);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.cta-secondary:hover {
  background: var(--material-thin-bg);
  transform: translateY(-2px);
  color: #4f46e5;
  text-decoration: none;
  box-shadow: var(--glass-shadow);
}

/* =====================================================
   DEMO ANALYSIS RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 768px) {
  /* Analysis header mobile styles in dashboard.css */
  
  .analysis-grid {
    grid-template-columns: 1fr !important;
  }
  
  .demo-cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .demo-cta-right {
    flex-direction: column;
    width: 100%;
  }
  
  .insights-container {
    grid-template-columns: 1fr !important;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
  }
  
  .liquid-glass-cta {
    padding: 2rem 1rem;
    margin: 2rem 0;
    border-radius: 16px;
  }
  
  .liquid-glass-cta h3 {
    font-size: 1.5rem;
  }
  
  .liquid-glass-cta p {
    font-size: 1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
}

/* ========================================
   SENTIMENT ANALYSIS COMPONENTS
   ======================================== */

/* Sentiment Section Description Text */
.sentiment-score-description {
  margin-top: 1rem;
  opacity: 0.9;
  font-size: 0.9rem;
}

/* Sentiment Lists - Universal styling */
.sentiment-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

/* Positive Sentiment Items */
.sentiment-item-positive {
  background: #ecfdf5;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  border-left: 3px solid #10b981;
}

/* Negative Sentiment Items */
.sentiment-item-negative {
  background: #fffbeb;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  border-left: 3px solid #f59e0b;
}

/* ========================================
   UNIFIED CTA COMPONENT
   ======================================== */

/* Main container */
.unified-cta {
  margin: 4rem 0;
  position: relative;
}

/* Glass background container */
.cta-glass-container {
  background: var(--material-thin-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--material-thin-border);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow-hover);
}

.cta-geometric-border {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(79, 70, 229, 0.1));
  border-radius: 25px;
  z-index: -1;
  animation: subtleBorderPulse 3s ease-in-out infinite;
}

@keyframes subtleBorderPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.cta-content-grid {
  position: relative;
  z-index: 2;
}

/* Dynamic title with rotating text */
.cta-dynamic-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 2rem 0;
  line-height: 1.2;
  text-align: center;
}

.cta-title-line {
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.cta-rotating-line {
  min-height: 1.2em; /* Prevents layout shift */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cta-highlight-text {
  background: linear-gradient(135deg, #4f46e5, #7c3aed, #06b6d4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
  position: relative;
  transition: opacity 0.3s ease;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta-rotating-line::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed, #06b6d4);
  background-size: 200% 200%;
  border-radius: 2px;
  animation: gradientShift 3s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.cta-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Action buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cta-primary {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
  color: white;
  text-decoration: none;
}

.cta-shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.cta-secondary {
  background: var(--material-ultra-thin-bg);
  color: #4f46e5;
  padding: 1rem 2.5rem;
  border: 1px solid var(--material-thin-border);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.cta-secondary:hover {
  background: var(--material-thin-bg);
  color: #4f46e5;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--glass-shadow);
}

/* Floating background elements */
.cta-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.4;
}

.cta-float-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.03);
  border: 1px solid rgba(79, 70, 229, 0.08);
}

.cta-circle-1 {
  width: 40px;
  height: 40px;
  top: 15%;
  left: 15%;
  animation: subtleFloatMove1 12s ease-in-out infinite;
}

.cta-circle-2 {
  width: 30px;
  height: 30px;
  top: 30%;
  right: 20%;
  animation: subtleFloatMove2 10s ease-in-out infinite;
}

.cta-circle-3 {
  width: 50px;
  height: 50px;
  bottom: 20%;
  left: 25%;
  animation: subtleFloatMove3 15s ease-in-out infinite;
}

@keyframes subtleFloatMove1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -8px); }
}

@keyframes subtleFloatMove2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8px, 12px); }
}

@keyframes subtleFloatMove3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6px, -10px) scale(1.05); }
}

/* Responsive design */
@media (max-width: 768px) {
  .cta-glass-container {
    padding: 2rem 1.5rem;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-dynamic-title {
    font-size: 2rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
  }
}



/* ============================================================================
   MIGRATED FROM dashboard.css - Demo Review Styles (Section 2)
   Migrated: 2025-09-05
   Lines: 1774-2330 (557 lines)
   Analysis: 39 classes, 0 dead code (100% active)
   Used in: demo_dashboard.html, demo-grand-plaza.html, demo-seaside-resort.html
   ============================================================================ */


/* Demo Reviews Section Styles */
.demo-reviews-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--material-ultra-thin-shadow);
  border: 1px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--material-regular-shadow);
}

.review-card.response-selected {
  border-color: #10b981;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
}

.review-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: -1.5rem -1.5rem 1rem -1.5rem;
  padding: 1rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  background: transparent;
  gap: 0.75rem;
}

.platform-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

/* Platform icon circles - only for non-image elements (backgrounds removed) */
.platform-icon:not(img) {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #374151;
  transition: all 0.2s ease;
}

.platform-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #374151;
}

/* Platform-specific rating styles */
.review-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  width: 100%;
  justify-content: flex-start;
}

.booking-rating {
  color: #1976d2;
}

.booking-rating .rating-value {
  font-size: 1.25rem;
}

.booking-rating .rating-scale {
  font-size: 0.9rem;
  color: #666;
}

.google-rating {
  color: #4285f4;
}

.google-rating .stars {
  display: flex;
  gap: 2px;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
}

.google-rating .stars i {
  font-size: 16px;
  flex-shrink: 0;
}

.google-rating .stars i.filled {
  color: #fbbf24;
}

.google-rating .stars i:not(.filled) {
  color: #d1d5db;
}

.google-rating .rating-text {
  font-size: 0.9rem;
  margin-left: 0.25rem;
}

.tripadvisor-rating {
  color: #00aa6c;
}

.tripadvisor-rating .bubbles {
  display: flex;
  gap: 3px;
}

.tripadvisor-rating .bubbles i {
  font-size: 14px;
}

.tripadvisor-rating .bubbles i.filled {
  color: #00aa6c;
}

.tripadvisor-rating .bubbles i:not(.filled) {
  color: #d1d5db;
}

.tripadvisor-rating .rating-text {
  font-size: 0.9rem;
  margin-left: 0.25rem;
}

.reviewer-info {
  padding: 0 1.25rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviewer-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.reviewer-name {
  font-weight: 600;
  color: #111827;
  font-size: 0.95rem;
}

.reviewer-location {
  font-size: 0.85rem;
  color: #6b7280;
}

.review-date {
  font-size: 0.85rem;
  color: #6b7280;
}

.review-content {
  padding: 0 1.25rem 1.25rem;
}

.review-content p {
  line-height: 1.6;
  color: #374151;
  margin: 0;
  font-size: 0.95rem;
}

.review-actions {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-generate-response {
  background: var(--material-regular-bg);
  backdrop-filter: blur(var(--material-regular-blur)) saturate(var(--material-regular-saturate));
  -webkit-backdrop-filter: blur(var(--material-regular-blur)) saturate(var(--material-regular-saturate));
  color: var(--ai-icon-blue);
  border: 1px solid var(--material-regular-border);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-generate-response::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ai-accent-gradient);
  opacity: 0.08;
  pointer-events: none;
}

.btn-generate-response:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--material-thick-shadow);
  background: var(--material-thick-bg);
}

.btn-generate-response:hover:not(:disabled)::before {
  opacity: 0.12;
}

.btn-generate-response:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.response-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-weight: 600;
  font-size: 0.9rem;
}

.response-options {
  padding: 1.5rem;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.response-options-header h4 {
  margin: 0 0 1rem 0;
  color: #374151;
  font-size: 1rem;
  font-weight: 600;
}

.response-option {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

.response-option:last-child {
  margin-bottom: 0;
}

.response-option:hover {
  border-color: #007AFF;
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.1);
}

.response-tone-label {
  font-weight: 600;
  color: #007AFF;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.response-text {
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.btn-select-response {
  background: white;
  color: #007AFF;
  border: 1px solid #007AFF;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Ensure select response button is never white on white */
.btn.btn-outline.btn-select-response,
button.btn.btn-outline.btn-select-response {
  color: var(--slate-800, #1e293b) !important;
  border-color: var(--border-neutral, rgba(0,0,0,0.12));
}

.btn-select-response:hover:not(:disabled) {
  background: #007AFF;
  color: white;
  transform: translateY(-1px);
}

.btn-select-response.btn-success {
  background: #10b981;
  color: white;
  border-color: #10b981;
}

.btn-select-response:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Platform theme variations */
.booking-theme {
  border-left: 4px solid #1976d2;
}

.google-theme {
  border-left: 4px solid #4285f4;
}

.tripadvisor-theme {
  border-left: 4px solid #00aa6c;
}

/* Business Response Display Styles */
.business-response {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-top: 1rem;
  overflow: hidden;
  box-shadow: var(--material-ultra-thin-shadow);
  animation: slideDown 0.4s ease-out;
}

.business-response-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--material-regular-bg);
  backdrop-filter: blur(var(--material-regular-blur)) saturate(var(--material-regular-saturate));
  -webkit-backdrop-filter: blur(var(--material-regular-blur)) saturate(var(--material-regular-saturate));
  color: var(--heading-color);
  border-bottom: 1px solid var(--material-regular-border);
  position: relative;
  overflow: hidden;
}

.business-response-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.08) 0%, rgba(51, 65, 85, 0.08) 100%);
  pointer-events: none;
}

.business-response-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.business-response-label i {
  color: #10b981;
  font-size: 1rem;
}

.response-tone-tag {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 0.5rem;
}

.response-date {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
}

.business-response-content {
  padding: 1.25rem;
}

.response-text-display {
  margin: 0;
  line-height: 1.6;
  color: #374151;
  font-size: 0.95rem;
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  border-left: 4px solid #10b981;
  box-shadow: var(--material-ultra-thin-shadow);
  position: relative;
}

.response-text-display::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 2rem;
  color: #10b981;
  font-family: serif;
  opacity: 0.3;
}

/* Platform-specific business response styling */
.booking-theme .business-response {
  border-left: 4px solid #1976d2;
}

.booking-theme .business-response-label i {
  color: #1976d2;
}

.booking-theme .response-tone-tag {
  background: rgba(25, 118, 210, 0.2);
  color: #1976d2;
}

.booking-theme .response-text-display {
  border-left-color: #1976d2;
}

.booking-theme .response-text-display::before {
  color: #1976d2;
}

.google-theme .business-response {
  border-left: 4px solid #4285f4;
}

.google-theme .business-response-label i {
  color: #4285f4;
}

.google-theme .response-tone-tag {
  background: rgba(66, 133, 244, 0.2);
  color: #4285f4;
}

.google-theme .response-text-display {
  border-left-color: #4285f4;
}

.google-theme .response-text-display::before {
  color: #4285f4;
}

.tripadvisor-theme .business-response {
  border-left: 4px solid #00aa6c;
}

.tripadvisor-theme .business-response-label i {
  color: #00aa6c;
}

.tripadvisor-theme .response-tone-tag {
  background: rgba(0, 170, 108, 0.2);
  color: #00aa6c;
}

.tripadvisor-theme .response-text-display {
  border-left-color: #00aa6c;
}

.tripadvisor-theme .response-text-display::before {
  color: #00aa6c;
}

/* Responsive design for demo reviews */
@media (max-width: 768px) {
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .reviewer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .response-option {
    padding: 1rem;
  }
  
  .response-options {
    padding: 1rem;
  }
  
  .btn-generate-response {
    font-size: 0.85rem;
    padding: 0.625rem 1.25rem;
  }
  
  .business-response-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
  }
  
  .business-response-content {
    padding: 1rem;
  }
  
  .response-text-display {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }
}
/* Demo Properties Navigation Section */
.properties-nav-intro {
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.properties-nav-intro p {
  margin: 0;
  color: #1f2937;
  font-size: 0.95rem;
  line-height: 1.6;
}

.properties-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.property-nav-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--material-ultra-thin-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.property-nav-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--material-thin-shadow);
}

.property-nav-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.property-nav-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--material-regular-bg);
  backdrop-filter: blur(var(--material-regular-blur)) saturate(var(--material-regular-saturate));
  -webkit-backdrop-filter: blur(var(--material-regular-blur)) saturate(var(--material-regular-saturate));
  border: 1px solid var(--material-regular-border);
  color: var(--ai-icon-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.property-nav-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ai-accent-gradient);
  opacity: 0.12;
  pointer-events: none;
}

.property-nav-info {
  flex: 1;
}

.property-nav-info h4 {
  margin: 0 0 0.25rem 0;
  color: var(--slate-800, #1e293b);
  font-size: 1.125rem;
  font-weight: 600;
}

.property-nav-type {
  margin: 0 0 0.5rem 0;
  color: var(--slate-600, #475569);
  font-size: 0.875rem;
  font-style: italic;
}

.property-nav-stats {
  color: var(--slate-500, #64748b);
  font-size: 0.75rem;
  font-weight: 500;
}

.property-nav-description {
  margin-bottom: 1.5rem;
}

.property-nav-description p {
  margin: 0;
  color: var(--slate-700, #334155);
  font-size: 0.875rem;
  line-height: 1.5;
}

.property-nav-actions {
  text-align: center;
}

/* Ensure property card buttons are readable */
.property-nav-actions .btn {
  background: var(--color-surface, #ffffff);
  color: var(--slate-800, #1e293b) !important;
  border: 1px solid var(--border-neutral, rgba(0,0,0,0.12));
}

.property-nav-actions .btn:hover {
  background: rgba(0,0,0,0.03);
}

.properties-nav-note {
  background: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: 8px;
  padding: 1rem 1.5rem;
}

.note-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.note-content i {
  color: #f59e0b;
  font-size: 1.125rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.note-text {
  color: #92400e;
  font-size: 0.875rem;
  line-height: 1.5;
}

.note-text strong {
  color: #78350f;
}

/* Responsive Design for Navigation Section */
@media (max-width: 768px) {
  .properties-nav-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .property-nav-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .property-nav-icon {
    align-self: center;
  }
  
  .properties-nav-intro {
    padding: 1rem;
  }
  
  .note-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* Responsive adjustments for mobile devices */
@media (max-width: 480px) {
  /* More compact spacing on mobile */
  .review-card {
    padding: 1rem;
  }
  
  .review-header {
    margin: -1rem -1rem 1rem -1rem;
    padding: 0.75rem;
    gap: 0.5rem;
  }
  
  /* Smaller stars on mobile */
  .google-rating .stars i {
    font-size: 14px;
  }
}
